This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaliases.go
56 lines (47 loc) · 2.31 KB
/
aliases.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package chatkit
import (
"github.com/pusher/chatkit-server-go/internal/authorizer"
"github.com/pusher/chatkit-server-go/internal/core"
"github.com/pusher/chatkit-server-go/internal/cursors"
auth "github.com/pusher/pusher-platform-go/auth"
platformclient "github.com/pusher/pusher-platform-go/client"
)
const GrantTypeClientCredentials = auth.GrantTypeClientCredentials
type (
AuthenticatePayload = auth.Payload
AuthenticateOptions = auth.Options
ErrorResponse = platformclient.ErrorResponse
RequestOptions = platformclient.RequestOptions
CreateRoleOptions = authorizer.CreateRoleOptions
UpdateRolePermissionsOptions = authorizer.UpdateRolePermissionsOptions
Role = authorizer.Role
Cursor = cursors.Cursor
GetUsersOptions = core.GetUsersOptions
CreateUserOptions = core.CreateUserOptions
UpdateUserOptions = core.UpdateUserOptions
GetRoomsOptions = core.GetRoomsOptions
CreateRoomOptions = core.CreateRoomOptions
UpdateRoomOptions = core.UpdateRoomOptions
SendMessageOptions = core.SendMessageOptions
SendMultipartMessageOptions = core.SendMultipartMessageOptions
SendSimpleMessageOptions = core.SendSimpleMessageOptions
NewPart = core.NewPart
NewInlinePart = core.NewInlinePart
NewURLPart = core.NewURLPart
NewAttachmentPart = core.NewAttachmentPart
GetRoomMessagesOptions = core.GetRoomMessagesOptions
DeleteMessageOptions = core.DeleteMessageOptions
EditMessageOptions = core.EditMessageOptions
EditSimpleMessageOptions = core.EditSimpleMessageOptions
EditMultipartMessageOptions = core.EditMultipartMessageOptions
FetchMultipartMessageOptions = core.FetchMultipartMessageOptions
FetchMultipartMessagesOptions = core.FetchMultipartMessagesOptions
User = core.User
Room = core.Room
RoomWithoutMembers = core.RoomWithoutMembers
Message = core.Message
MultipartMessage = core.MultipartMessage
Part = core.Part
Attachment = core.Attachment
)
var ExplicitlyResetPushNotificationTitleOverride = &core.ExplicitlyResetPushNotificationTitleOverride