forked from pubnub/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow_interfaces.js
More file actions
808 lines (655 loc) · 14.7 KB
/
Copy pathflow_interfaces.js
File metadata and controls
808 lines (655 loc) · 14.7 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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
/* eslint no-unused-vars: 0 */
declare module 'uuid' {
declare function v4(): string;
}
declare module 'superagent' {
declare function type(): superagent;
}
export type CallbackStruct = {
status: Function,
presence: Function,
message: Function,
signal: Function,
messageAction: Function,
user: Function,
space: Function,
membership: Function
}
export type ProxyStruct = {
port: number,
hostname: string,
headers: Object
}
export type KeepAliveStruct = {
keepAlive: number,
keepAliveMsecs: number,
freeSocketKeepAliveTimeout: number,
timeout: number,
maxSockets: number,
maxFreeSockets: number
}
export type NetworkingModules = {
keepAlive: ?Function,
sendBeacon: ?Function,
get: Function,
post: Function,
patch: Function
}
export type InternalSetupStruct = {
useSendBeacon: ?boolean, // configuration on beacon usage
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: Function, // get / set implementation to store data
networking: Function // component of networking to use
}
type DatabaseInterface = {
get: Function,
set: Function
}
type EndpointKeyDefinition = {
required: boolean
}
type SupportedParams = {
subscribeKey: EndpointKeyDefinition,
uuid: EndpointKeyDefinition,
}
export type EndpointDefinition = {
params: SupportedParams,
headers?: Object,
timeout: number,
url: string
}
export type StateChangeAnnouncement = {
state: Object,
channels: Array<string>,
channelGroups: Array<string>
}
// ****************** SUBSCRIPTIONS ********************************************
type SubscribeMetadata = {
timetoken: number,
region: number
}
type PublishMetaData = {
publishTimetoken: number,
region: number
}
type SubscribeMessage = {
shard: string,
subscriptionMatch: string,
channel: string,
messageType: number,
payload: Object,
flags: string,
issuingClientId: string,
subscribeKey: string,
originationTimetoken: string,
publishMetaData: PublishMetaData
}
// subscribe responses
type SubscribeEnvelope = {
messages: Array<SubscribeMessage>,
metadata: SubscribeMetadata;
}
// *****************************************************************************
// ****************** Announcements ********************************************
type 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
}
type MessageAnnouncement = {
message: Object,
subscribedChannel: string, // deprecated
actualChannel: string, // deprecated
channel: string,
subscription: string,
timetoken: number | string,
userMetadata: Object,
publisher: string
}
type SignalAnnouncement = {
message: Object,
channel: string,
subscription: string,
timetoken: number | string,
userMetadata: Object,
publisher: string
}
type ObjectMessage = {
event: string,
type: string,
data: Object
}
type ObjectAnnouncement = {
message: ObjectMessage,
channel: string,
subscription: string,
timetoken: number | string,
userMetadata: Object,
publisher: string
}
export type StatusAnnouncement = {
error: boolean,
statusCode: number,
category: string,
errorData: Object,
lastTimetoken: number,
currentTimetoken: number,
// send back channel, channel groups that were affected by this operation
affectedChannels: Array<String>,
affectedChannelGroups: Array<String>,
}
// *****************************************************************************
// Time endpoints
type TimeResponse = {
timetoken: number
};
// history
type 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
includeMeta: boolean, // include message meta for each history entry
reverse: boolean,
count: number
}
// history
export type MessageCounterArguments = {
channels: Array<string>, // fetch history from a channel
timetoken: number | null,
channelTimetokens: Array<string> | null
}
type FetchMessagesArguments = {
channels: string, // fetch history from a channel
start: number | string, // start timetoken for history fetching
end: number | string, // end timetoken for history fetching
includeMeta: boolean, // include message meta for each history entry
includeMessageActions: boolean, // include message actions for each history entry
count: number
}
type HistoryItem = {
timetoken: number | string | null,
meta: Object | null,
entry: any,
}
type HistoryResponse = {
messages: Array<HistoryItem>,
startTimeToken: number | string,
endTimeToken: number | string,
}
export type MessageCountersResponse = {
channels: Object
}
type HistoryV3Response = {
channels: Object
}
// CG endpoints
type AddChannelParams = {
channels: Array<string>,
channelGroup: string,
}
type RemoveChannelParams = {
channels: Array<string>,
channelGroup: string,
}
type DeleteGroupParams = {
channelGroup: string,
}
type ListAllGroupsResponse = {
groups: Array<string>
}
type ListChannelsParams = {
channelGroup: string,
}
type ListChannelsResponse = {
channels: Array<string>
}
//
// push
export type APNS2Target = {
topic: string,
environment?: 'development' | 'production',
excludedDevices?: Array<string>
}
export type APNS2Configuration = {
collapseId?: string,
expirationDate?: Date,
targets: Array<APNS2Target>
}
type ProvisionDeviceArgs = {
operation: 'add' | 'remove',
pushGateway: 'gcm' | 'apns' | 'apns2' | 'mpns',
environment?: 'development' | 'production',
topic?: string,
device: string,
channels: Array<string>
};
type ModifyDeviceArgs = {
pushGateway: 'gcm' | 'apns' | 'apns2' | 'mpns',
environment?: 'development' | 'production',
topic?: string,
device: string,
channels: Array<string>
};
type ListChannelsArgs = {
pushGateway: 'gcm' | 'apns' | 'apns2' | 'mpns',
environment?: 'development' | 'production',
topic?: string,
device: string,
};
type RemoveDeviceArgs = {
pushGateway: 'gcm' | 'apns' | 'apns2' | 'mpns',
environment?: 'development' | 'production',
topic?: string,
device: string,
};
type ListPushChannelsResponse = {
channels: Array<string>
}
//
// presence
type LeaveArguments = {
channels: Array<string>,
channelGroups: Array<string>,
}
type HereNowArguments = {
channels: Array<string>,
channelGroups: Array<string>,
includeUUIDs: boolean,
includeState: boolean
}
type WhereNowArguments = {
uuid: string,
}
type WhereNowResponse = {
channels: Array<string>,
}
//
type GetStateArguments = {
uuid: string,
channels: Array<string>,
channelGroups: Array<string>
}
type GetStateResponse = {
channels: Object
}
//
type SetStateArguments = {
channels: Array<string>,
channelGroups: Array<string>,
state: Object
}
type SetStateResponse = {
state: Object
}
type HeartbeatArguments = {
channels: Array<string>,
channelGroups: Array<string>,
state: Object
}
//
// subscribe
type SubscribeArguments = {
channels: Array<string>,
channelGroups: Array<string>,
timetoken: number,
filterExpression: ?string,
region: ?string,
state: Object
}
//
// access manager
type AuditArguments = {
channel: string,
channelGroup: string,
authKeys: Array<string>,
}
type GrantArguments = {
channels: Array<string>,
channelGroups: Array<string>,
ttl: number,
read: boolean,
write: boolean,
manage: boolean,
authKeys: Array<string>
}
// Base permissions object
interface GrantTokenObject {
create: boolean,
read: boolean,
write: boolean,
manage: boolean,
delete: boolean,
}
interface GrantTokenInput {
ttl: number,
resources?: {
channels?: {
[key: String]: GrantTokenObject,
},
groups?: {
[key: String]: GrantTokenObject,
},
users?: {
[key: String]: GrantTokenObject,
},
spaces?: {
[key: String]: GrantTokenObject,
},
},
patterns?: {
channels?: {
[key: String]: GrantTokenObject,
},
groups?: {
[key: String]: GrantTokenObject,
},
users?: {
[key: String]: GrantTokenObject,
},
spaces?: {
[key: String]: GrantTokenObject,
},
},
meta?: Object
}
interface GrantTokenOutput extends GrantTokenInput {
version: number,
timestamp: number,
signature: Buffer
}
// token manager
type TokensDefinition = {
user?: string,
space?: string,
users?: {
[key: String]: String
},
spaces?: {
[key: String]: String
}
};
type GetTokensInput= {
user?: boolean,
space?: boolean,
users?: Array<string>,
spaces?: Array<string>
};
// publish
type PublishResponse = {
timetoken: number
};
type 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.
}
// signal
type SignalResponse = {
timetoken: number
};
type SignalArguments = {
message: Object | string | number | boolean,
channel: string
}
// Actions
interface MessageAction {
type: string,
value: string,
}
interface PublishedMessageAction extends MessageAction {
messageTimetoken: string,
actionTimetoken: string,
uuid: string,
}
type MessageActionAnnouncement = {
data: PublishedMessageAction,
event: string,
channel: string,
subscription: string,
timetoken: number | string,
userMetadata: Object,
publisher: string
}
interface AddMessageActionInput {
messageTimetoken: string,
channel: string,
action: MessageAction,
}
interface AddMessageActionResponse {
data: PublishedMessageAction,
}
interface RemoveMessageActionInput {
messageTimetoken: string,
actionTimetoken: string,
channel: string,
}
interface RemoveMessageActionResponse {
data: {},
}
interface GetMessageActionsInput {
channel: string,
start?: number | string,
end?: number | string,
limit?: number,
}
interface GetMessageActionsResponse {
data: Array<PublishedMessageAction>,
start?: string,
end?: string,
}
// Users Object
type UserListInput = {
limit?: number,
page?: {
next?: string,
prev?: string,
},
include?: {
totalCount?: boolean,
customFields?: boolean,
}
}
type SingleUserInput = {
userId: string,
include?: {
customFields?: boolean,
}
}
type UsersObjectInput = {
id: string,
name: string,
externalId?: string,
profileUrl?: string,
email?: string,
custom?: Object,
};
type UserResponse = {
status: number,
data: {
...UsersObjectInput,
created: string,
updated: string,
eTag: string,
},
};
type UsersListResponse = {
status: number,
totalCount: number,
next: String,
prev: String,
data: Array<UserResponse>,
};
// Spaces Object
type SpaceListInput = {
limit?: number,
page?: {
next?: string,
prev?: string,
},
include?: {
totalCount?: boolean,
customFields?: boolean,
}
}
type SingleSpaceInput = {
spaceId: string,
include?: {
customFields?: boolean,
}
}
type SpacesObjectInput = {
id: string,
name: string,
description?: String,
custom?: Object,
include?: {
customFields?: boolean,
}
};
type SpacesResponse = {
status: number,
data: {
...SpacesObjectInput,
created: string,
updated: string,
eTag: string,
},
};
type SpaceResponse = {
status: number,
data: {
...SpacesObjectInput,
created: string,
updated: string,
eTag: string,
},
};
type SpacesListResponse = {
status: number,
totalCount: number,
next: String,
prev: String,
data: Array<SpaceResponse>,
};
// Memberships Object
type MembershipsInput = {
userId: string,
limit?: number,
page?: {
next?: string,
prev?: string,
},
include?: {
totalCount?: boolean,
customFields?: boolean,
spaceFields?: boolean,
customSpaceFields?: boolean,
}
}
type MembershipsObjectInput = {
id: string,
custom?: Object,
space?: SpacesResponse,
};
type MembershipsResponse = {
status: number,
data: {
...MembershipsObjectInput,
created: string,
updated: string,
eTag: string,
},
};
type MembershipsListResponse = {
status: number,
totalCount: number,
next: String,
prev: String,
data: Array<MembershipsResponse>,
};
interface AddMemberships extends MembershipsInput {
addMemberships: Array<MembershipsObjectInput>,
}
interface UpdateMemberships extends MembershipsInput {
updateMemberships: Array<MembershipsObjectInput>,
}
interface RemoveMemberships extends MembershipsInput {
removeMemberships: Array<string>,
}
interface AddUpdateRemoveMemberships extends AddMemberships, UpdateMemberships, RemoveMemberships {}
// Members Object
type MembersInput = {
spaceId: string,
limit?: number,
page?: {
next?: string,
prev?: string,
},
include?: {
totalCount?: boolean,
customFields?: boolean,
userFields?: boolean,
customUserFields?: boolean,
}
}
type MembersObjectInput = {
id: string,
custom?: Object,
user?: UserResponse,
};
type MembersResponse = {
status: number,
data: {
...MembersObjectInput,
created: string,
updated: string,
eTag: string,
},
};
type MembersListResponse = {
status: number,
totalCount: number,
next: String,
prev: String,
data: Array<MembersResponse>,
};
interface AddMembers extends MembersInput {
addMembers: Array<MembersObjectInput>,
}
interface UpdateMembers extends MembersInput {
updateMembers: Array<MembersObjectInput>,
}
interface RemoveMembers extends MembersInput {
removeMembers: Array<string>,
}
interface AddUpdateRemoveMembers extends AddMembers, UpdateMembers, RemoveMembers {}
//
type ModulesInject = {
config: Object;
}
module.exports = {};