forked from pubnub/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.ts
More file actions
377 lines (305 loc) · 7.92 KB
/
Copy pathinterfaces.ts
File metadata and controls
377 lines (305 loc) · 7.92 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
export interface CallbackStruct {
status: Function;
presence: Function;
message: Function;
}
export interface ProxyStruct {
port: number;
hostname: string;
headers: Object;
}
export interface KeepAliveStruct {
keepAlive: number;
keepAliveMsecs: number;
freeSocketKeepAliveTimeout: number;
timeout: number;
maxSockets: number;
maxFreeSockets: number;
}
export interface NetworkingModules {
keepAlive?: Function;
sendBeacon?: Function;
get: Function;
post: Function;
proxy?: Function;
}
export interface ConfigConstructArgs {
setup: InternalSetupStruct | any;
db: DatabaseInterface;
}
export interface InternalSetupStruct {
publishKey?: string; // API key required for publishing
subscribeKey: string; // API key required to subscribe
cipherKey: string; // decryption keys
origin?: string; // an optional FQDN which will recieve calls from the SDK.
ssl?: boolean; // is SSL enabled?
shutdown?: Function; // function to call when pubnub is shutting down.
sendBeacon?: Function; // executes a call against the Beacon API
useSendBeacon?: boolean; // enable, disable usage of send beacons
subscribeRequestTimeout?: number; // how long to wait for subscribe requst
transactionalRequestTimeout?: number; // how long to wait for transactional requests
proxy?: ProxyStruct; // configuration to support proxy settings.
keepAlive?: boolean; // is keep-alive enabled?
keepAliveSettings?: KeepAliveStruct; // configuration on keep-alive usage
suppressLev?: boolean;
db: DatabaseInterface; // get / set implementation to store data
networking: any; // component of networking to use
sdkFamily: string;
listenToBrowserNetworkEvents?: boolean; // option only available for web distribution
}
export interface DatabaseInterface {
get: Function;
set: Function;
}
export interface EndpointKeyDefinition {
required: boolean;
}
export interface SupportedParams {
subscribeKey: EndpointKeyDefinition;
uuid: EndpointKeyDefinition;
}
export interface EndpointDefinition {
params: SupportedParams;
timeout: number;
url: string;
operation?: string;
}
export interface StateChangeAnnouncement {
state: Object;
channels: string[];
channelGroups: string[];
}
// ****************** SUBSCRIPTIONS ********************************************
export interface SubscribeMetadata {
timetoken: number;
region: number;
}
export class PublishMetaData {
publishTimetoken: number;
region: number;
constructor() {}
}
export class SubscribeMessage {
shard: number;
subscriptionMatch: string;
channel: string;
payload: Object;
flags: string;
issuingClientId: string;
subscribeKey: string;
originationTimetoken: string;
publishMetaData: PublishMetaData;
constructor() {}
}
// subscribe responses
export interface SubscribeEnvelope {
messages: SubscribeMessage[];
metadata: SubscribeMetadata;
}
// ****************** Announcements ********************************************
export class PresenceAnnouncement {
event: string;
uuid: string;
timestamp: number;
occupancy: number;
state: Object;
subscribedChannel: string; // deprecated
actualChannel: string; // deprecated
channel: string;
subscription: string;
timetoken: number;
userMetadata: Object;
action?: string;
join?: string[];
leave?: string[];
timeout?: any;
constructor () {}
}
export class MessageAnnouncement {
message: Object;
subscribedChannel: string; // deprecated
actualChannel: string; // deprecated
channel: string;
subscription: string;
timetoken: number | string;
userMetadata: Object;
publisher: string;
constructor() {}
}
export class StatusAnnouncement {
error: boolean;
statusCode: number;
category: string;
operation? : string;
errorData: Object;
lastTimetoken: number;
currentTimetoken: number;
// send back channel, channel groups that were affected by this operation
affectedChannels: string[];
affectedChannelGroups: string[];
subscribedChannels?: any;
constructor() {}
}
// *****************************************************************************
// Time endpoints
export interface TimeResponse {
timetoken: number;
}
// history
export interface FetchHistoryArguments {
channel: string; // fetch history from a channel
start: number | string; // start timetoken for history fetching
end: number | string; // end timetoken for history fetching
includeTimetoken: boolean; // include time token for each history call
reverse: boolean;
count: number;
stringifiedTimeToken: boolean;
}
export interface FetchMessagesArguments {
channels: string[]; // fetch history from a channel
start: number | string; // start timetoken for history fetching
end: number | string; // end timetoken for history fetching
count: number;
}
export interface FetchMessagesResponse {
channels: any;
}
export interface HistoryItem {
timetoken: number | string | null;
entry: any;
}
export interface HistoryResponse {
messages: HistoryItem[];
startTimeToken: number | string;
endTimeToken: number | string;
}
export interface HistoryV3Response {
channels: Object;
}
// CG endpoints
export interface AddChannelParams {
channels: string[];
channelGroup: string;
}
export interface RemoveChannelParams {
channels: string[];
channelGroup: string;
}
export interface DeleteGroupParams {
channelGroup: string;
}
export interface ListAllGroupsResponse {
groups: string[];
}
export interface ListChannelsParams {
channelGroup: string;
}
export interface ListChannelsResponse {
channels: string[];
}
// push
export interface ProvisionDeviceArgs {
operation: 'add' | 'remove';
pushGateway: 'gcm' | 'apns' | 'mpns';
device: string;
channels: string[];
}
export interface ModifyDeviceArgs {
pushGateway: 'gcm' | 'apns' | 'mpns';
device: string;
channels: string[];
}
export interface ListChannelsArgs {
pushGateway: 'gcm' | 'apns' | 'mpns';
device: string;
}
export interface RemoveDeviceArgs {
pushGateway: 'gcm' | 'apns' | 'mpns';
device: string;
}
export interface ListPushChannelsResponse {
channels: string[];
}
// presence
export interface LeaveArguments {
channels: string[];
channelGroups: string[];
}
export interface HereNowArguments {
channels: string[];
channelGroups: string[];
includeUUIDs: boolean;
includeState: boolean;
}
export interface WhereNowArguments {
uuid: string;
}
export interface WhereNowResponse {
channels: string[];
}
//
export interface GetStateArguments {
uuid: string;
channels: string[];
channelGroups: string[];
}
export interface GetStateResponse {
channels: Object;
}
//
export interface SetStateArguments {
channels: string[];
channelGroups: string[];
state: Object;
}
export interface SetStateResponse {
state: Object;
}
export interface HeartbeatArguments {
channels: string[];
channelGroups: string[];
state: Object;
}
// subscribe
export interface SubscribeArguments {
channels: string[];
channelGroups: string[];
timetoken: number;
filterExpression?: string;
region?: string;
}
// access manager
export interface AuditArguments {
channel: string;
channelGroup: string;
authKeys: string[];
}
export interface GrantArguments {
channels: string[];
channelGroups: string[];
ttl: number;
read: boolean;
write: boolean;
manage: boolean;
authKeys: string[];
}
// publish
export interface PublishResponse {
timetoken: number;
}
export interface PublishArguments {
message: Object | string | number | boolean; // the contents of the dispatch
channel: string; // the destination of our dispatch
sendByPost: boolean | null; // use POST when dispatching the message
storeInHistory: boolean | null; // store the published message in remote history
meta: Object; // psv2 supports filtering by metadata
replicate: boolean | null; // indicates to server on replication status to other data centers.
ttl?: number;
}
//
export interface ModulesInject {
config: any;
}
export interface ReconnectionManagerArgs {
timeEndpoint: any;
}