@wildix/wda-stream-client 1.1.67 → 3.1.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/dist-cjs/WdaStream.js +3 -3
  2. package/dist-cjs/WdaStreamClient.js +34 -26
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/ConsumeEventCommand.js +10 -11
  6. package/dist-cjs/commands/DescribeEventCommand.js +10 -11
  7. package/dist-cjs/commands/GetConferenceIdCommand.js +10 -11
  8. package/dist-cjs/commands/GetOngoingCallAnnotationsCommand.js +10 -11
  9. package/dist-cjs/commands/GetOngoingCallCommand.js +10 -11
  10. package/dist-cjs/commands/GetOngoingCallTranscriptionCommand.js +10 -11
  11. package/dist-cjs/commands/GetOngoingChatAnnotationsCommand.js +10 -11
  12. package/dist-cjs/commands/GetOngoingConferenceAnnotationsCommand.js +10 -11
  13. package/dist-cjs/commands/GetOngoingConferenceCommand.js +10 -11
  14. package/dist-cjs/commands/GetOngoingConferenceTranscriptionCommand.js +10 -11
  15. package/dist-cjs/commands/ListServicesCommand.js +10 -11
  16. package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
  17. package/dist-cjs/commands/QueryPresenceCommand.js +10 -11
  18. package/dist-cjs/commands/QueryPresencesCommand.js +10 -11
  19. package/dist-cjs/commands/UpdatePresenceLastSeenCommand.js +10 -11
  20. package/dist-cjs/commands/index.js +2 -2
  21. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  22. package/dist-cjs/endpoint/bdd.js +28 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  24. package/dist-cjs/index.js +5 -1
  25. package/dist-cjs/models/WdaStreamServiceException.js +3 -3
  26. package/dist-cjs/models/enums.js +508 -0
  27. package/dist-cjs/models/errors.js +56 -0
  28. package/dist-cjs/models/models_0.js +0 -660
  29. package/dist-cjs/models/models_1.js +0 -48
  30. package/dist-cjs/runtimeConfig.browser.js +11 -11
  31. package/dist-cjs/runtimeConfig.js +22 -18
  32. package/dist-cjs/runtimeConfig.shared.js +30 -10
  33. package/dist-cjs/runtimeExtensions.js +6 -5
  34. package/dist-cjs/schemas/schemas_0.js +2528 -0
  35. package/dist-es/WdaStream.js +2 -2
  36. package/dist-es/WdaStreamClient.js +30 -22
  37. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  38. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  39. package/dist-es/commands/ConsumeEventCommand.js +9 -10
  40. package/dist-es/commands/DescribeEventCommand.js +9 -10
  41. package/dist-es/commands/GetConferenceIdCommand.js +9 -10
  42. package/dist-es/commands/GetOngoingCallAnnotationsCommand.js +9 -10
  43. package/dist-es/commands/GetOngoingCallCommand.js +9 -10
  44. package/dist-es/commands/GetOngoingCallTranscriptionCommand.js +9 -10
  45. package/dist-es/commands/GetOngoingChatAnnotationsCommand.js +9 -10
  46. package/dist-es/commands/GetOngoingConferenceAnnotationsCommand.js +9 -10
  47. package/dist-es/commands/GetOngoingConferenceCommand.js +9 -10
  48. package/dist-es/commands/GetOngoingConferenceTranscriptionCommand.js +9 -10
  49. package/dist-es/commands/ListServicesCommand.js +9 -10
  50. package/dist-es/commands/QueryConversationsCommand.js +9 -10
  51. package/dist-es/commands/QueryPresenceCommand.js +9 -10
  52. package/dist-es/commands/QueryPresencesCommand.js +9 -10
  53. package/dist-es/commands/UpdatePresenceLastSeenCommand.js +9 -10
  54. package/dist-es/commands/index.js +2 -2
  55. package/dist-es/endpoint/EndpointParameters.js +12 -0
  56. package/dist-es/endpoint/bdd.js +25 -0
  57. package/dist-es/endpoint/endpointResolver.js +12 -0
  58. package/dist-es/index.js +5 -1
  59. package/dist-es/models/WdaStreamServiceException.js +1 -1
  60. package/dist-es/models/enums.js +504 -0
  61. package/dist-es/models/errors.js +49 -0
  62. package/dist-es/models/models_0.js +1 -656
  63. package/dist-es/models/models_1.js +1 -45
  64. package/dist-es/runtimeConfig.browser.js +7 -7
  65. package/dist-es/runtimeConfig.js +17 -13
  66. package/dist-es/runtimeConfig.shared.js +24 -4
  67. package/dist-es/runtimeExtensions.js +6 -5
  68. package/dist-es/schemas/schemas_0.js +2519 -0
  69. package/dist-types/WdaStream.d.ts +16 -16
  70. package/dist-types/WdaStreamClient.d.ts +45 -27
  71. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  72. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  73. package/dist-types/commands/ConsumeEventCommand.d.ts +16 -7
  74. package/dist-types/commands/DescribeEventCommand.d.ts +24 -18
  75. package/dist-types/commands/GetConferenceIdCommand.d.ts +11 -7
  76. package/dist-types/commands/GetOngoingCallAnnotationsCommand.d.ts +13 -9
  77. package/dist-types/commands/GetOngoingCallCommand.d.ts +13 -9
  78. package/dist-types/commands/GetOngoingCallTranscriptionCommand.d.ts +14 -10
  79. package/dist-types/commands/GetOngoingChatAnnotationsCommand.d.ts +11 -7
  80. package/dist-types/commands/GetOngoingConferenceAnnotationsCommand.d.ts +11 -7
  81. package/dist-types/commands/GetOngoingConferenceCommand.d.ts +11 -7
  82. package/dist-types/commands/GetOngoingConferenceTranscriptionCommand.d.ts +11 -7
  83. package/dist-types/commands/ListServicesCommand.d.ts +11 -7
  84. package/dist-types/commands/QueryConversationsCommand.d.ts +13 -9
  85. package/dist-types/commands/QueryPresenceCommand.d.ts +12 -7
  86. package/dist-types/commands/QueryPresencesCommand.d.ts +11 -7
  87. package/dist-types/commands/UpdatePresenceLastSeenCommand.d.ts +11 -7
  88. package/dist-types/commands/index.d.ts +2 -2
  89. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  90. package/dist-types/endpoint/bdd.d.ts +2 -0
  91. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  92. package/dist-types/extensionConfiguration.d.ts +4 -3
  93. package/dist-types/index.d.ts +6 -1
  94. package/dist-types/models/WdaStreamServiceException.d.ts +1 -1
  95. package/dist-types/models/enums.d.ts +1088 -0
  96. package/dist-types/models/errors.d.ts +46 -0
  97. package/dist-types/models/models_0.d.ts +1111 -1206
  98. package/dist-types/models/models_1.d.ts +3 -982
  99. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  100. package/dist-types/runtimeConfig.d.ts +34 -15
  101. package/dist-types/runtimeConfig.native.d.ts +36 -17
  102. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  103. package/dist-types/runtimeExtensions.d.ts +1 -1
  104. package/dist-types/schemas/schemas_0.d.ts +333 -0
  105. package/package.json +14 -40
  106. package/dist-cjs/models/index.js +0 -5
  107. package/dist-cjs/protocols/Aws_restJson1.js +0 -1340
  108. package/dist-es/models/index.js +0 -2
  109. package/dist-es/protocols/Aws_restJson1.js +0 -1307
  110. package/dist-types/models/index.d.ts +0 -2
  111. package/dist-types/protocols/Aws_restJson1.d.ts +0 -137
@@ -0,0 +1,1088 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const CallDirection: {
6
+ readonly INBOUND: "INBOUND";
7
+ readonly INTERNAL: "INTERNAL";
8
+ readonly OUTBOUND: "OUTBOUND";
9
+ readonly UNDEFINED: "UNDEFINED";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type CallDirection = (typeof CallDirection)[keyof typeof CallDirection];
15
+ /**
16
+ * @public
17
+ * @enum
18
+ */
19
+ export declare const ConversationStatus: {
20
+ readonly COMPLETED: "COMPLETED";
21
+ readonly MISSED: "MISSED";
22
+ };
23
+ /**
24
+ * @public
25
+ */
26
+ export type ConversationStatus = (typeof ConversationStatus)[keyof typeof ConversationStatus];
27
+ /**
28
+ * @public
29
+ * @enum
30
+ */
31
+ export declare const WhatsAppEventType: {
32
+ readonly WHATSAPP_INBOUND: "WHATSAPP.INBOUND";
33
+ readonly WHATSAPP_STATUS: "WHATSAPP.STATUS";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type WhatsAppEventType = (typeof WhatsAppEventType)[keyof typeof WhatsAppEventType];
39
+ /**
40
+ * @public
41
+ * @enum
42
+ */
43
+ export declare const WhatsAppStatus: {
44
+ readonly CHANNEL_CLOSED: "24H_CHANNEL_CLOSED";
45
+ readonly DELETED: "DELETED";
46
+ readonly DELIVERED: "DELIVERED";
47
+ readonly ERROR: "ERROR";
48
+ readonly READ: "READ";
49
+ readonly SENT: "SENT";
50
+ };
51
+ /**
52
+ * @public
53
+ */
54
+ export type WhatsAppStatus = (typeof WhatsAppStatus)[keyof typeof WhatsAppStatus];
55
+ /**
56
+ * @public
57
+ * @enum
58
+ */
59
+ export declare const AnnotationSourceType: {
60
+ readonly CHATBOT: "chatbot";
61
+ readonly SYSTEM: "system";
62
+ readonly USER: "user";
63
+ readonly VOICEBOT: "voicebot";
64
+ };
65
+ /**
66
+ * @public
67
+ */
68
+ export type AnnotationSourceType = (typeof AnnotationSourceType)[keyof typeof AnnotationSourceType];
69
+ /**
70
+ * @public
71
+ * @enum
72
+ */
73
+ export declare const License: {
74
+ readonly UC: "uc";
75
+ readonly XBEES: "x-bees";
76
+ };
77
+ /**
78
+ * @public
79
+ */
80
+ export type License = (typeof License)[keyof typeof License];
81
+ /**
82
+ * @public
83
+ * @enum
84
+ */
85
+ export declare const RecordType: {
86
+ readonly CALL: "call";
87
+ readonly CALL_ANNOTATIONS: "call_annotations";
88
+ readonly CALL_TRANSCRIPTION: "call_transcription";
89
+ readonly CHAT: "chat";
90
+ readonly CHAT_ANNOTATIONS: "chat_annotations";
91
+ readonly CHAT_TRANSCRIPTION: "chat_transcription";
92
+ readonly CONFERENCE: "conference";
93
+ readonly CONFERENCE_ANNOTATIONS: "conference_annotations";
94
+ readonly CONFERENCE_TRANSCRIPTION: "conference_transcription";
95
+ };
96
+ /**
97
+ * @public
98
+ */
99
+ export type RecordType = (typeof RecordType)[keyof typeof RecordType];
100
+ /**
101
+ * @public
102
+ * @enum
103
+ */
104
+ export declare const AnnotationsStatus: {
105
+ readonly AVAILABLE: "AVAILABLE";
106
+ readonly UNAVAILABLE: "UNAVAILABLE";
107
+ };
108
+ /**
109
+ * @public
110
+ */
111
+ export type AnnotationsStatus = (typeof AnnotationsStatus)[keyof typeof AnnotationsStatus];
112
+ /**
113
+ * @public
114
+ * @enum
115
+ */
116
+ export declare const CallRecordOwner: {
117
+ readonly CALLEE: "callee";
118
+ readonly CALLER: "caller";
119
+ readonly SYSTEM: "system";
120
+ };
121
+ /**
122
+ * @public
123
+ */
124
+ export type CallRecordOwner = (typeof CallRecordOwner)[keyof typeof CallRecordOwner];
125
+ /**
126
+ * @public
127
+ * @enum
128
+ */
129
+ export declare const CallFlowAttachmentStatus: {
130
+ readonly ERROR: "error";
131
+ readonly OK: "ok";
132
+ };
133
+ /**
134
+ * @public
135
+ */
136
+ export type CallFlowAttachmentStatus = (typeof CallFlowAttachmentStatus)[keyof typeof CallFlowAttachmentStatus];
137
+ /**
138
+ * @public
139
+ * @enum
140
+ */
141
+ export declare const CallRecordPauseReason: {
142
+ readonly HOLD: "hold";
143
+ readonly PAUSE: "pause";
144
+ };
145
+ /**
146
+ * @public
147
+ */
148
+ export type CallRecordPauseReason = (typeof CallRecordPauseReason)[keyof typeof CallRecordPauseReason];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const CallFlowAttachmentType: {
154
+ readonly FAX: "FAX";
155
+ readonly VOICEMAIL: "VOICEMAIL";
156
+ };
157
+ /**
158
+ * @public
159
+ */
160
+ export type CallFlowAttachmentType = (typeof CallFlowAttachmentType)[keyof typeof CallFlowAttachmentType];
161
+ /**
162
+ * @public
163
+ * @enum
164
+ */
165
+ export declare const CallParticipantRole: {
166
+ readonly AGENT: "AGENT";
167
+ readonly CLIENT: "CLIENT";
168
+ };
169
+ /**
170
+ * @public
171
+ */
172
+ export type CallParticipantRole = (typeof CallParticipantRole)[keyof typeof CallParticipantRole];
173
+ /**
174
+ * @public
175
+ * @enum
176
+ */
177
+ export declare const CallParticipantType: {
178
+ readonly LOCAL: "LOCAL";
179
+ readonly REMOTE: "REMOTE";
180
+ };
181
+ /**
182
+ * @public
183
+ */
184
+ export type CallParticipantType = (typeof CallParticipantType)[keyof typeof CallParticipantType];
185
+ /**
186
+ * @public
187
+ * @enum
188
+ */
189
+ export declare const CallDevice: {
190
+ readonly COLLABORATION7_ANDROID: "COLLABORATION7_ANDROID";
191
+ readonly COLLABORATION7_IOS: "COLLABORATION7_IOS";
192
+ readonly COLLABORATION7_WEB: "COLLABORATION7_WEB";
193
+ readonly COLLABORATION_ANDROID: "COLLABORATION_ANDROID";
194
+ readonly COLLABORATION_IOS: "COLLABORATION_IOS";
195
+ readonly COLLABORATION_WEB: "COLLABORATION_WEB";
196
+ readonly TEAMS4WILDIX: "TEAMS4WILDIX";
197
+ readonly UNKNOWN: "UNKNOWN";
198
+ readonly VOICEBOT: "VOICEBOT";
199
+ readonly WILDIX_DEVICE: "WILDIX_DEVICE";
200
+ readonly WILDIX_PHONE: "WILDIX_PHONE";
201
+ readonly XBEES_ANDROID: "XBEES_ANDROID";
202
+ readonly XBEES_IOS: "XBEES_IOS";
203
+ readonly XBEES_WEB: "XBEES_WEB";
204
+ readonly XHOPPERS_ANDROID: "XHOPPERS_ANDROID";
205
+ readonly XHOPPERS_IOS: "XHOPPERS_IOS";
206
+ readonly XHOPPERS_WEB: "XHOPPERS_WEB";
207
+ };
208
+ /**
209
+ * @public
210
+ */
211
+ export type CallDevice = (typeof CallDevice)[keyof typeof CallDevice];
212
+ /**
213
+ * @public
214
+ * @enum
215
+ */
216
+ export declare const CallFlowTranscriptionStatus: {
217
+ readonly AVAILABLE: "AVAILABLE";
218
+ readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
219
+ readonly UNAVAILABLE: "UNAVAILABLE";
220
+ };
221
+ /**
222
+ * @public
223
+ */
224
+ export type CallFlowTranscriptionStatus = (typeof CallFlowTranscriptionStatus)[keyof typeof CallFlowTranscriptionStatus];
225
+ /**
226
+ * @public
227
+ * @enum
228
+ */
229
+ export declare const CallTranscriptionSpeaker: {
230
+ readonly CALLEE: "callee";
231
+ readonly CALLER: "caller";
232
+ };
233
+ /**
234
+ * @public
235
+ */
236
+ export type CallTranscriptionSpeaker = (typeof CallTranscriptionSpeaker)[keyof typeof CallTranscriptionSpeaker];
237
+ /**
238
+ * @public
239
+ * @enum
240
+ */
241
+ export declare const TranscriptionSentiment: {
242
+ readonly MIXED: "MIXED";
243
+ readonly NEGATIVE: "NEGATIVE";
244
+ readonly NEUTRAL: "NEUTRAL";
245
+ readonly POSITIVE: "POSITIVE";
246
+ };
247
+ /**
248
+ * @public
249
+ */
250
+ export type TranscriptionSentiment = (typeof TranscriptionSentiment)[keyof typeof TranscriptionSentiment];
251
+ /**
252
+ * @public
253
+ * @enum
254
+ */
255
+ export declare const ChannelAccess: {
256
+ readonly PRIVATE: "private";
257
+ readonly PUBLIC: "public";
258
+ };
259
+ /**
260
+ * @public
261
+ */
262
+ export type ChannelAccess = (typeof ChannelAccess)[keyof typeof ChannelAccess];
263
+ /**
264
+ * @public
265
+ * @enum
266
+ */
267
+ export declare const ChannelType: {
268
+ readonly DIRECT: "direct";
269
+ readonly GROUP: "group";
270
+ };
271
+ /**
272
+ * @public
273
+ */
274
+ export type ChannelType = (typeof ChannelType)[keyof typeof ChannelType];
275
+ /**
276
+ * @public
277
+ * @enum
278
+ */
279
+ export declare const ChannelContextEventAttendeeStatus: {
280
+ readonly ACCEPTED: "accepted";
281
+ readonly DECLINED: "declined";
282
+ readonly NONE: "none";
283
+ readonly TENTATIVE: "tentative";
284
+ };
285
+ /**
286
+ * @public
287
+ */
288
+ export type ChannelContextEventAttendeeStatus = (typeof ChannelContextEventAttendeeStatus)[keyof typeof ChannelContextEventAttendeeStatus];
289
+ /**
290
+ * @public
291
+ * @enum
292
+ */
293
+ export declare const ChannelContextSource: {
294
+ readonly KITE: "kite";
295
+ };
296
+ /**
297
+ * @public
298
+ */
299
+ export type ChannelContextSource = (typeof ChannelContextSource)[keyof typeof ChannelContextSource];
300
+ /**
301
+ * @public
302
+ * @enum
303
+ */
304
+ export declare const ChannelWhatsAppStatus: {
305
+ readonly CHANNEL_CLOSED: "24h_channel_closed";
306
+ };
307
+ /**
308
+ * @public
309
+ */
310
+ export type ChannelWhatsAppStatus = (typeof ChannelWhatsAppStatus)[keyof typeof ChannelWhatsAppStatus];
311
+ /**
312
+ * @public
313
+ * @enum
314
+ */
315
+ export declare const ChatDirection: {
316
+ readonly INBOUND: "INBOUND";
317
+ readonly INTERNAL: "INTERNAL";
318
+ readonly OUTBOUND: "OUTBOUND";
319
+ };
320
+ /**
321
+ * @public
322
+ */
323
+ export type ChatDirection = (typeof ChatDirection)[keyof typeof ChatDirection];
324
+ /**
325
+ * @public
326
+ * @enum
327
+ */
328
+ export declare const ChatParticipantRole: {
329
+ readonly AGENT: "AGENT";
330
+ readonly CLIENT: "CLIENT";
331
+ };
332
+ /**
333
+ * @public
334
+ */
335
+ export type ChatParticipantRole = (typeof ChatParticipantRole)[keyof typeof ChatParticipantRole];
336
+ /**
337
+ * @public
338
+ * @enum
339
+ */
340
+ export declare const ChatParticipantType: {
341
+ readonly LOCAL: "LOCAL";
342
+ readonly REMOTE: "REMOTE";
343
+ };
344
+ /**
345
+ * @public
346
+ */
347
+ export type ChatParticipantType = (typeof ChatParticipantType)[keyof typeof ChatParticipantType];
348
+ /**
349
+ * @public
350
+ * @enum
351
+ */
352
+ export declare const ChatStatus: {
353
+ readonly COMPLETED: "COMPLETED";
354
+ readonly MISSED: "MISSED";
355
+ readonly WAITFIRSTREPLY: "WAITFIRSTREPLY";
356
+ readonly WAITREPLYFROMAGENT: "WAITREPLYFROMAGENT";
357
+ readonly WAITREPLYFROMGUEST: "WAITREPLYFROMGUEST";
358
+ };
359
+ /**
360
+ * @public
361
+ */
362
+ export type ChatStatus = (typeof ChatStatus)[keyof typeof ChatStatus];
363
+ /**
364
+ * @public
365
+ * @enum
366
+ */
367
+ export declare const ChatTag: {
368
+ readonly SMS: "sms";
369
+ readonly TELEPHONY: "telephony";
370
+ readonly WHATSAPP: "whatsapp";
371
+ };
372
+ /**
373
+ * @public
374
+ */
375
+ export type ChatTag = (typeof ChatTag)[keyof typeof ChatTag];
376
+ /**
377
+ * @public
378
+ * @enum
379
+ */
380
+ export declare const ButtonVariant: {
381
+ readonly CONTAINED: "contained";
382
+ readonly OUTLINED: "outlined";
383
+ };
384
+ /**
385
+ * @public
386
+ */
387
+ export type ButtonVariant = (typeof ButtonVariant)[keyof typeof ButtonVariant];
388
+ /**
389
+ * @public
390
+ * @enum
391
+ */
392
+ export declare const MessageSmsStatus: {
393
+ readonly DELIVERED: "delivered";
394
+ readonly ERROR: "error";
395
+ readonly SENT: "sent";
396
+ readonly TRYING: "trying";
397
+ };
398
+ /**
399
+ * @public
400
+ */
401
+ export type MessageSmsStatus = (typeof MessageSmsStatus)[keyof typeof MessageSmsStatus];
402
+ /**
403
+ * @public
404
+ * @enum
405
+ */
406
+ export declare const MessageType: {
407
+ readonly DELETED: "deleted";
408
+ readonly REGULAR: "regular";
409
+ readonly SYSTEM: "system";
410
+ };
411
+ /**
412
+ * @public
413
+ */
414
+ export type MessageType = (typeof MessageType)[keyof typeof MessageType];
415
+ /**
416
+ * @public
417
+ * @enum
418
+ */
419
+ export declare const MessageWhatsAppStatus: {
420
+ readonly DELIVERED: "delivered";
421
+ readonly ERROR: "error";
422
+ readonly SENT: "sent";
423
+ readonly TRYING: "trying";
424
+ };
425
+ /**
426
+ * @public
427
+ */
428
+ export type MessageWhatsAppStatus = (typeof MessageWhatsAppStatus)[keyof typeof MessageWhatsAppStatus];
429
+ /**
430
+ * @public
431
+ * @enum
432
+ */
433
+ export declare const ConferenceDirection: {
434
+ readonly INBOUND: "INBOUND";
435
+ readonly INTERNAL: "INTERNAL";
436
+ readonly OUTBOUND: "OUTBOUND";
437
+ };
438
+ /**
439
+ * @public
440
+ */
441
+ export type ConferenceDirection = (typeof ConferenceDirection)[keyof typeof ConferenceDirection];
442
+ /**
443
+ * @public
444
+ * @enum
445
+ */
446
+ export declare const PbxLicenseType: {
447
+ readonly BASIC: "basic";
448
+ readonly BUSINESS: "business";
449
+ readonly ESSENTIAL: "essential";
450
+ readonly PREMIUM: "premium";
451
+ readonly WIZYCONF: "wizyconf";
452
+ };
453
+ /**
454
+ * @public
455
+ */
456
+ export type PbxLicenseType = (typeof PbxLicenseType)[keyof typeof PbxLicenseType];
457
+ /**
458
+ * @public
459
+ * @enum
460
+ */
461
+ export declare const ConferenceParticipantRole: {
462
+ readonly AGENT: "AGENT";
463
+ readonly CLIENT: "CLIENT";
464
+ };
465
+ /**
466
+ * @public
467
+ */
468
+ export type ConferenceParticipantRole = (typeof ConferenceParticipantRole)[keyof typeof ConferenceParticipantRole];
469
+ /**
470
+ * @public
471
+ * @enum
472
+ */
473
+ export declare const ConferenceParticipantType: {
474
+ readonly EXTERNAL: "EXTERNAL";
475
+ readonly EXTERNAL_DIAL_IN: "EXTERNAL_DIAL_IN";
476
+ readonly PBX: "PBX";
477
+ readonly PBX_SIP: "PBX_SIP";
478
+ readonly XBS: "XBS";
479
+ };
480
+ /**
481
+ * @public
482
+ */
483
+ export type ConferenceParticipantType = (typeof ConferenceParticipantType)[keyof typeof ConferenceParticipantType];
484
+ /**
485
+ * @public
486
+ * @enum
487
+ */
488
+ export declare const ConferenceTranscriptionStatus: {
489
+ readonly AVAILABLE: "AVAILABLE";
490
+ readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
491
+ readonly UNAVAILABLE: "UNAVAILABLE";
492
+ };
493
+ /**
494
+ * @public
495
+ */
496
+ export type ConferenceTranscriptionStatus = (typeof ConferenceTranscriptionStatus)[keyof typeof ConferenceTranscriptionStatus];
497
+ /**
498
+ * @public
499
+ * @enum
500
+ */
501
+ export declare const CallConsumeEventType: {
502
+ readonly CALL_AGENTS_CANCEL: "CALL.AGENTS_CANCEL";
503
+ readonly CALL_AGENTS_START: "CALL.AGENTS_START";
504
+ readonly CALL_ANNOTATE: "CALL.ANNOTATE";
505
+ readonly CALL_ATTACHMENT: "CALL.ATTACHMENT";
506
+ readonly CALL_END: "CALL.END";
507
+ readonly CALL_LIVE: "CALL.LIVE";
508
+ readonly CALL_POST_TRANSCRIPTION: "CALL.POST_TRANSCRIPTION";
509
+ readonly CALL_RECORD_PAUSE: "CALL.RECORD_PAUSE";
510
+ readonly CALL_RECORD_START: "CALL.RECORD_START";
511
+ readonly CALL_RECORD_STOP: "CALL.RECORD_STOP";
512
+ readonly CALL_RECORD_UNPAUSE: "CALL.RECORD_UNPAUSE";
513
+ readonly CALL_SPLIT: "CALL.SPLIT";
514
+ readonly CALL_START: "CALL.START";
515
+ readonly CALL_TRANSCRIPTION: "CALL.TRANSCRIPTION";
516
+ readonly CALL_UPDATE: "CALL.UPDATE";
517
+ };
518
+ /**
519
+ * @public
520
+ */
521
+ export type CallConsumeEventType = (typeof CallConsumeEventType)[keyof typeof CallConsumeEventType];
522
+ /**
523
+ * @public
524
+ * @enum
525
+ */
526
+ export declare const LiveEventType: {
527
+ readonly CALL: "call";
528
+ readonly CALL_ANNOTATION: "call_annotation";
529
+ readonly CALL_COMPLETE: "call_complete";
530
+ readonly CALL_INTERRUPTED: "call_interrupted";
531
+ readonly CALL_TRANSCRIPTION: "call_transcription";
532
+ readonly CHAT: "chat";
533
+ readonly CHAT_ANNOTATION: "chat_annotation";
534
+ readonly CHAT_COMPLETE: "chat_complete";
535
+ readonly CHAT_COST: "call_cost";
536
+ readonly CHAT_INTERRUPTED: "chat_interrupted";
537
+ readonly CHAT_MISSED: "chat_missed";
538
+ readonly CHAT_TRANSCRIPTION: "chat_transcription";
539
+ readonly CONFERENCE: "conference";
540
+ readonly CONFERENCE_ANNOTATION: "conference_annotation";
541
+ readonly CONFERENCE_COMPLETE: "conference_complete";
542
+ readonly CONFERENCE_INTERRUPTED: "conference_interrupted";
543
+ readonly CONFERENCE_JOIN: "conference_join";
544
+ readonly CONFERENCE_LEAVE: "conference_leave";
545
+ readonly CONFERENCE_TRANSCRIPTION: "conference_transcription";
546
+ readonly SERVICE: "service";
547
+ readonly SERVICE_AGENT: "service_agent";
548
+ readonly SERVICE_AGENT_STATUS: "service_agent_status";
549
+ readonly SERVICE_CALL: "service_call";
550
+ readonly SERVICE_CALL_COMPLETE: "service_call_complete";
551
+ readonly SERVICE_COMPLETE: "service_complete";
552
+ };
553
+ /**
554
+ * @public
555
+ */
556
+ export type LiveEventType = (typeof LiveEventType)[keyof typeof LiveEventType];
557
+ /**
558
+ * @public
559
+ * @enum
560
+ */
561
+ export declare const CallAnalyticsLiveProgressEventTrigger: {
562
+ readonly AGENTS_CANCEL: "call.agents_cancel";
563
+ readonly AGENTS_START: "call.agents_start";
564
+ readonly ATTACHMENT: "call.attachment";
565
+ readonly RECORD_PAUSE: "call.record_pause";
566
+ readonly RECORD_START: "call.record_start";
567
+ readonly RECORD_STOP: "call.record_stop";
568
+ readonly RECORD_UNPAUSE: "call.record_unpause";
569
+ readonly SPLIT: "call.split";
570
+ readonly START: "call.start";
571
+ readonly TRANSCRIPTION: "call.transcription";
572
+ readonly UPDATE: "call.update";
573
+ };
574
+ /**
575
+ * @public
576
+ */
577
+ export type CallAnalyticsLiveProgressEventTrigger = (typeof CallAnalyticsLiveProgressEventTrigger)[keyof typeof CallAnalyticsLiveProgressEventTrigger];
578
+ /**
579
+ * @public
580
+ * @enum
581
+ */
582
+ export declare const CallFlowStatus: {
583
+ readonly CONNECTING: "CONNECTING";
584
+ readonly HOLD: "HOLD";
585
+ readonly TALKING: "TALKING";
586
+ };
587
+ /**
588
+ * @public
589
+ */
590
+ export type CallFlowStatus = (typeof CallFlowStatus)[keyof typeof CallFlowStatus];
591
+ /**
592
+ * @public
593
+ * @enum
594
+ */
595
+ export declare const CallEndBy: {
596
+ readonly CALLEE: "CALLEE";
597
+ readonly CALLER: "CALLER";
598
+ };
599
+ /**
600
+ * @public
601
+ */
602
+ export type CallEndBy = (typeof CallEndBy)[keyof typeof CallEndBy];
603
+ /**
604
+ * @public
605
+ * @enum
606
+ */
607
+ export declare const CallFlowAttachmentConsumeType: {
608
+ readonly FAX: "fax";
609
+ readonly TRANSCRIPTION: "transcription";
610
+ readonly VOICEMAIL: "voicemail";
611
+ };
612
+ /**
613
+ * @public
614
+ */
615
+ export type CallFlowAttachmentConsumeType = (typeof CallFlowAttachmentConsumeType)[keyof typeof CallFlowAttachmentConsumeType];
616
+ /**
617
+ * @public
618
+ * @enum
619
+ */
620
+ export declare const CallEndConsume: {
621
+ readonly CALLEE: "callee";
622
+ readonly CALLER: "caller";
623
+ };
624
+ /**
625
+ * @public
626
+ */
627
+ export type CallEndConsume = (typeof CallEndConsume)[keyof typeof CallEndConsume];
628
+ /**
629
+ * @public
630
+ * @enum
631
+ */
632
+ export declare const CallRtpIpFamily: {
633
+ readonly IPV4: "IPv4";
634
+ readonly IPV6: "IPv6";
635
+ };
636
+ /**
637
+ * @public
638
+ */
639
+ export type CallRtpIpFamily = (typeof CallRtpIpFamily)[keyof typeof CallRtpIpFamily];
640
+ /**
641
+ * @public
642
+ * @enum
643
+ */
644
+ export declare const CallEventType: {
645
+ readonly ANNOTATIONS_RECORD_EVENT: "CallAnalyticsAnnotationsRecordEvent";
646
+ readonly COST_RECORD_EVENT: "CallAnalyticsCostRecordEvent";
647
+ readonly LIVE_ANNOTATION_EVENT: "CallAnalyticsLiveAnnotationEvent";
648
+ readonly LIVE_COMPLETE_EVENT: "CallAnalyticsLiveCompleteEvent";
649
+ readonly LIVE_INTERRUPTED_EVENT: "CallAnalyticsLiveInterruptedEvent";
650
+ readonly LIVE_PROGRESS_EVENT: "CallAnalyticsLiveProgressEvent";
651
+ readonly LIVE_TRANSCRIPTION_EVENT: "CallAnalyticsLiveTranscriptionEvent";
652
+ readonly RECORD_EVENT: "CallAnalyticsRecordEvent";
653
+ readonly TRANSCRIPTION_RECORD_EVENT: "CallAnalyticsTranscriptionRecordEvent";
654
+ };
655
+ /**
656
+ * @public
657
+ */
658
+ export type CallEventType = (typeof CallEventType)[keyof typeof CallEventType];
659
+ /**
660
+ * @public
661
+ * @enum
662
+ */
663
+ export declare const CallFlowConsumeStatus: {
664
+ readonly CONNECTING: "connecting";
665
+ readonly HOLD: "hold";
666
+ readonly TALKING: "talking";
667
+ };
668
+ /**
669
+ * @public
670
+ */
671
+ export type CallFlowConsumeStatus = (typeof CallFlowConsumeStatus)[keyof typeof CallFlowConsumeStatus];
672
+ /**
673
+ * @public
674
+ * @enum
675
+ */
676
+ export declare const ChatConsumeEventType: {
677
+ readonly CHAT_ANNOTATE: "CHAT.ANNOTATE";
678
+ readonly CHAT_MESSAGE: "CHAT.MESSAGE";
679
+ readonly CHAT_NEW: "CHAT.NEW";
680
+ readonly CHAT_UPDATE: "CHAT.UPDATE";
681
+ };
682
+ /**
683
+ * @public
684
+ */
685
+ export type ChatConsumeEventType = (typeof ChatConsumeEventType)[keyof typeof ChatConsumeEventType];
686
+ /**
687
+ * @public
688
+ * @enum
689
+ */
690
+ export declare const ChatEventType: {
691
+ readonly ANNOTATIONS_RECORD_EVENT: "ChatAnalyticsAnnotationsRecordEvent";
692
+ readonly LIVE_ANNOTATION_EVENT: "ChatAnalyticsLiveAnnotationEvent";
693
+ readonly LIVE_COMPLETE_EVENT: "ChatAnalyticsLiveCompleteEvent";
694
+ readonly LIVE_INTERRUPTED_EVENT: "ChatAnalyticsLiveInterruptedEvent";
695
+ readonly LIVE_PROGRESS_EVENT: "ChatAnalyticsLiveProgressEvent";
696
+ readonly LIVE_TRANSCRIPTION_EVENT: "ChatAnalyticsLiveTranscriptionEvent";
697
+ readonly MANAGER_MISSED_EVENT: "ChatAnalyticsManagerMissedEvent";
698
+ readonly RECORD_EVENT: "ChatAnalyticsRecordEvent";
699
+ readonly TRANSCRIPTION_RECORD_EVENT: "ChatAnalyticsTranscriptionRecordEvent";
700
+ };
701
+ /**
702
+ * @public
703
+ */
704
+ export type ChatEventType = (typeof ChatEventType)[keyof typeof ChatEventType];
705
+ /**
706
+ * @public
707
+ * @enum
708
+ */
709
+ export declare const ConferenceConsumeEventType: {
710
+ readonly CONFERENCE_ANNOTATE: "CONFERENCE.ANNOTATE";
711
+ readonly CONFERENCE_END: "CONFERENCE.END";
712
+ readonly CONFERENCE_JOIN: "CONFERENCE.JOIN";
713
+ readonly CONFERENCE_KEEP_ALIVE: "CONFERENCE.KEEP_ALIVE";
714
+ readonly CONFERENCE_LEAVE: "CONFERENCE.LEAVE";
715
+ readonly CONFERENCE_RECORD_START: "CONFERENCE.RECORD_START";
716
+ readonly CONFERENCE_RECORD_STOP: "CONFERENCE.RECORD_STOP";
717
+ readonly CONFERENCE_START: "CONFERENCE.START";
718
+ readonly CONFERENCE_STATS: "CONFERENCE.STATS";
719
+ readonly CONFERENCE_TIMEFRAMES: "CONFERENCE.TIMEFRAMES";
720
+ readonly CONFERENCE_TRANSCRIPTION: "CONFERENCE.TRANSCRIPTION";
721
+ };
722
+ /**
723
+ * @public
724
+ */
725
+ export type ConferenceConsumeEventType = (typeof ConferenceConsumeEventType)[keyof typeof ConferenceConsumeEventType];
726
+ /**
727
+ * @public
728
+ * @enum
729
+ */
730
+ export declare const ConferenceConsumeDirection: {
731
+ readonly INBOUND: "inbound";
732
+ readonly INTERNAL: "internal";
733
+ readonly OUTBOUND: "outbound";
734
+ };
735
+ /**
736
+ * @public
737
+ */
738
+ export type ConferenceConsumeDirection = (typeof ConferenceConsumeDirection)[keyof typeof ConferenceConsumeDirection];
739
+ /**
740
+ * @public
741
+ * @enum
742
+ */
743
+ export declare const ConferenceEventType: {
744
+ readonly ANNOTATIONS_RECORD_EVENT: "ConferenceAnalyticsAnnotationsRecordEvent";
745
+ readonly LIVE_ANNOTATION_EVENT: "ConferenceAnalyticsLiveAnnotationEvent";
746
+ readonly LIVE_COMPLETE_EVENT: "ConferenceAnalyticsLiveCompleteEvent";
747
+ readonly LIVE_INTERRUPTED_EVENT: "ConferenceAnalyticsLiveInterruptedEvent";
748
+ readonly LIVE_JOIN_EVENT: "ConferenceAnalyticsLiveJoinEvent";
749
+ readonly LIVE_LEAVE_EVENT: "ConferenceAnalyticsLiveLeaveEvent";
750
+ readonly LIVE_PROGRESS_EVENT: "ConferenceAnalyticsLiveProgressEvent";
751
+ readonly LIVE_TRANSCRIPTION_EVENT: "ConferenceAnalyticsLiveTranscriptionEvent";
752
+ readonly RECORD_EVENT: "ConferenceAnalyticsRecordEvent";
753
+ readonly TRANSCRIPTION_RECORD_EVENT: "ConferenceAnalyticsTranscriptionRecordEvent";
754
+ };
755
+ /**
756
+ * @public
757
+ */
758
+ export type ConferenceEventType = (typeof ConferenceEventType)[keyof typeof ConferenceEventType];
759
+ /**
760
+ * @public
761
+ * @enum
762
+ */
763
+ export declare const ConferenceTranscriptionSentiment: {
764
+ readonly MIXED: "MIXED";
765
+ readonly NEGATIVE: "NEGATIVE";
766
+ readonly NEUTRAL: "NEUTRAL";
767
+ readonly POSITIVE: "POSITIVE";
768
+ };
769
+ /**
770
+ * @public
771
+ */
772
+ export type ConferenceTranscriptionSentiment = (typeof ConferenceTranscriptionSentiment)[keyof typeof ConferenceTranscriptionSentiment];
773
+ /**
774
+ * @public
775
+ * @enum
776
+ */
777
+ export declare const PresenceConsumeEventType: {
778
+ readonly PRESENCE: "PRESENCE";
779
+ readonly PRESENCE_TELEPHONY: "PRESENCE.TELEPHONY";
780
+ };
781
+ /**
782
+ * @public
783
+ */
784
+ export type PresenceConsumeEventType = (typeof PresenceConsumeEventType)[keyof typeof PresenceConsumeEventType];
785
+ /**
786
+ * @public
787
+ * @enum
788
+ */
789
+ export declare const ServiceAgentType: {
790
+ readonly DYNAMIC: "DYNAMIC";
791
+ readonly STATIC: "STATIC";
792
+ };
793
+ /**
794
+ * @public
795
+ */
796
+ export type ServiceAgentType = (typeof ServiceAgentType)[keyof typeof ServiceAgentType];
797
+ /**
798
+ * @public
799
+ * @enum
800
+ */
801
+ export declare const ServiceConsumeEventType: {
802
+ readonly SERVICE_AGENT_JOIN: "SERVICE.AGENT_JOIN";
803
+ readonly SERVICE_AGENT_LEAVE: "SERVICE.AGENT_LEAVE";
804
+ readonly SERVICE_AGENT_UPDATE: "SERVICE.AGENT_UPDATE";
805
+ readonly SERVICE_CALL_END: "SERVICE.CALL_END";
806
+ readonly SERVICE_CALL_INIT: "SERVICE.CALL_INIT";
807
+ readonly SERVICE_CALL_UPDATE: "SERVICE.CALL_UPDATE";
808
+ readonly SERVICE_END: "SERVICE.END";
809
+ readonly SERVICE_INIT: "SERVICE.INIT";
810
+ readonly SERVICE_UPDATE: "SERVICE.UPDATE";
811
+ };
812
+ /**
813
+ * @public
814
+ */
815
+ export type ServiceConsumeEventType = (typeof ServiceConsumeEventType)[keyof typeof ServiceConsumeEventType];
816
+ /**
817
+ * @public
818
+ * @enum
819
+ */
820
+ export declare const ServiceCallAction: {
821
+ readonly ANSWER: "ANSWER";
822
+ readonly CANCEL: "CANCEL";
823
+ readonly END: "END";
824
+ readonly INIT: "INIT";
825
+ readonly REJECT: "REJECT";
826
+ readonly RING: "RING";
827
+ readonly WAIT: "WAIT";
828
+ };
829
+ /**
830
+ * @public
831
+ */
832
+ export type ServiceCallAction = (typeof ServiceCallAction)[keyof typeof ServiceCallAction];
833
+ /**
834
+ * @public
835
+ * @enum
836
+ */
837
+ export declare const SmsConsumeEventType: {
838
+ readonly SMS_INBOUND: "SMS.INBOUND";
839
+ readonly SMS_STATUS: "SMS.STATUS";
840
+ };
841
+ /**
842
+ * @public
843
+ */
844
+ export type SmsConsumeEventType = (typeof SmsConsumeEventType)[keyof typeof SmsConsumeEventType];
845
+ /**
846
+ * @public
847
+ * @enum
848
+ */
849
+ export declare const SmsChannelType: {
850
+ readonly ONE_WAY: "1-way-sms";
851
+ readonly TWO_WAY: "2-way-sms";
852
+ };
853
+ /**
854
+ * @public
855
+ */
856
+ export type SmsChannelType = (typeof SmsChannelType)[keyof typeof SmsChannelType];
857
+ /**
858
+ * @public
859
+ * @enum
860
+ */
861
+ export declare const SmsStatus: {
862
+ readonly DELIVERED: "delivered";
863
+ readonly ERROR: "error";
864
+ readonly SENT: "sent";
865
+ readonly TRYING: "trying";
866
+ };
867
+ /**
868
+ * @public
869
+ */
870
+ export type SmsStatus = (typeof SmsStatus)[keyof typeof SmsStatus];
871
+ /**
872
+ * @public
873
+ * @enum
874
+ */
875
+ export declare const LanguageDetection: {
876
+ readonly AUTO: "auto";
877
+ readonly OFF: "off";
878
+ };
879
+ /**
880
+ * @public
881
+ */
882
+ export type LanguageDetection = (typeof LanguageDetection)[keyof typeof LanguageDetection];
883
+ /**
884
+ * @public
885
+ * @enum
886
+ */
887
+ export declare const UsageEventType: {
888
+ readonly USAGE_STT: "USAGE.STT";
889
+ };
890
+ /**
891
+ * @public
892
+ */
893
+ export type UsageEventType = (typeof UsageEventType)[keyof typeof UsageEventType];
894
+ /**
895
+ * @public
896
+ * @enum
897
+ */
898
+ export declare const WebsocketAction: {
899
+ readonly AUTHORIZE: "authorize";
900
+ readonly SUBSCRIBE: "subscribe";
901
+ readonly UNSUBSCRIBE: "unsubscribe";
902
+ };
903
+ /**
904
+ * @public
905
+ */
906
+ export type WebsocketAction = (typeof WebsocketAction)[keyof typeof WebsocketAction];
907
+ /**
908
+ * @public
909
+ * @enum
910
+ */
911
+ export declare const WebsocketTopic: {
912
+ readonly CONVERSATIONS: "conversations";
913
+ readonly PRESENCE: "presence";
914
+ readonly SERVICES: "services";
915
+ readonly TRANSCRIPTIONS: "transcriptions";
916
+ };
917
+ /**
918
+ * @public
919
+ */
920
+ export type WebsocketTopic = (typeof WebsocketTopic)[keyof typeof WebsocketTopic];
921
+ /**
922
+ * @public
923
+ * @enum
924
+ */
925
+ export declare const PresenceAnalyticsEventType: {
926
+ readonly PRESENCE: "PRESENCE";
927
+ readonly PRESENCE_TELEPHONY: "PRESENCE_TELEPHONY";
928
+ };
929
+ /**
930
+ * @public
931
+ */
932
+ export type PresenceAnalyticsEventType = (typeof PresenceAnalyticsEventType)[keyof typeof PresenceAnalyticsEventType];
933
+ /**
934
+ * @public
935
+ * @enum
936
+ */
937
+ export declare const PresenceEventType: {
938
+ readonly CONFERENCE_EVENT: "PresenceAnalyticsConferenceEvent";
939
+ readonly STATUS_EVENT: "PresenceAnalyticsStatusEvent";
940
+ readonly TELEPHONY_EVENT: "PresenceAnalyticsTelephonyEvent";
941
+ };
942
+ /**
943
+ * @public
944
+ */
945
+ export type PresenceEventType = (typeof PresenceEventType)[keyof typeof PresenceEventType];
946
+ /**
947
+ * @public
948
+ * @enum
949
+ */
950
+ export declare const ServiceAnalyticsEventTrigger: {
951
+ readonly SERVICE_AGENT_JOIN: "service.agent_join";
952
+ readonly SERVICE_AGENT_LEAVE: "service.agent_leave";
953
+ readonly SERVICE_AGENT_UPDATE: "service.agent_update";
954
+ readonly SERVICE_CALL_END: "service.call_end";
955
+ readonly SERVICE_CALL_INIT: "service.call_init";
956
+ readonly SERVICE_CALL_UPDATE: "service.call_update";
957
+ readonly SERVICE_END: "service.end";
958
+ readonly SERVICE_INIT: "service.init";
959
+ readonly SERVICE_UPDATE: "service.update";
960
+ };
961
+ /**
962
+ * @public
963
+ */
964
+ export type ServiceAnalyticsEventTrigger = (typeof ServiceAnalyticsEventTrigger)[keyof typeof ServiceAnalyticsEventTrigger];
965
+ /**
966
+ * @public
967
+ * @enum
968
+ */
969
+ export declare const ServiceCallEventType: {
970
+ readonly LIVE_COMPLETE_EVENT: "ServiceCallAnalyticsLiveCompleteEvent";
971
+ readonly LIVE_PROGRESS_EVENT: "ServiceCallAnalyticsLiveProgressEvent";
972
+ readonly RECORD_EVENT: "ServiceCallAnalyticsRecordEvent";
973
+ };
974
+ /**
975
+ * @public
976
+ */
977
+ export type ServiceCallEventType = (typeof ServiceCallEventType)[keyof typeof ServiceCallEventType];
978
+ /**
979
+ * @public
980
+ * @enum
981
+ */
982
+ export declare const ServiceEventType: {
983
+ readonly AGENTS_STATUS_RECORD_EVENT: "ServiceAgentsStatusAnalyticsRecordEvent";
984
+ readonly LIVE_COMPLETE_EVENT: "ServiceAnalyticsLiveCompleteEvent";
985
+ readonly LIVE_PROGRESS_EVENT: "ServiceAnalyticsLiveProgressEvent";
986
+ };
987
+ /**
988
+ * @public
989
+ */
990
+ export type ServiceEventType = (typeof ServiceEventType)[keyof typeof ServiceEventType];
991
+ /**
992
+ * @public
993
+ * @enum
994
+ */
995
+ export declare const WebhookEventType: {
996
+ readonly CALL_ANNOTATIONS_COMPLETED: "call:annotations:completed";
997
+ readonly CALL_COMPLETED: "call:completed";
998
+ readonly CALL_LIVE_ANNOTATION: "call:live:annotation";
999
+ readonly CALL_LIVE_COMPLETED: "call:live:completed";
1000
+ readonly CALL_LIVE_INTERRUPTED: "call:live:interrupted";
1001
+ readonly CALL_LIVE_PROGRESS: "call:live:progress";
1002
+ readonly CALL_LIVE_RECORD_PAUSE: "call:live:record:pause";
1003
+ readonly CALL_LIVE_RECORD_START: "call:live:record:start";
1004
+ readonly CALL_LIVE_RECORD_STOP: "call:live:record:stop";
1005
+ readonly CALL_LIVE_RECORD_UNPAUSE: "call:live:record:unpause";
1006
+ readonly CALL_LIVE_TRANSCRIPTION: "call:live:transcription";
1007
+ readonly CALL_SUMMARY_COMPLETED: "call:summary:completed";
1008
+ readonly CALL_TRANSCRIPTION_COMPLETED: "call:transcription:completed";
1009
+ readonly CALL_TRANSCRIPTION_TEXT_COMPLETED: "call:transcription:text:completed";
1010
+ readonly CHAT_ANNOTATIONS_COMPLETED: "chat:annotations:completed";
1011
+ readonly CHAT_COMPLETED: "chat:completed";
1012
+ readonly CHAT_LIVE_ANNOTATION: "chat:live:annotation";
1013
+ readonly CHAT_LIVE_COMPLETED: "chat:live:completed";
1014
+ readonly CHAT_LIVE_INTERRUPTED: "chat:live:interrupted";
1015
+ readonly CHAT_LIVE_MISSED: "chat:live:missed";
1016
+ readonly CHAT_LIVE_PROGRESS: "chat:live:progress";
1017
+ readonly CHAT_MANAGER_MISSED: "chat:manager:missed";
1018
+ readonly CHAT_SUMMARY_COMPLETED: "chat:summary:completed";
1019
+ readonly CONFERENCE_ANNOTATIONS_COMPLETED: "conference:annotations:completed";
1020
+ readonly CONFERENCE_COMPLETED: "conference:completed";
1021
+ readonly CONFERENCE_LIVE_ANNOTATION: "conference:live:annotation";
1022
+ readonly CONFERENCE_LIVE_COMPLETED: "conference:live:completed";
1023
+ readonly CONFERENCE_LIVE_INTERRUPTED: "conference:live:interrupted";
1024
+ readonly CONFERENCE_LIVE_JOIN: "conference:live:join";
1025
+ readonly CONFERENCE_LIVE_LEAVE: "conference:live:leave";
1026
+ readonly CONFERENCE_LIVE_PROGRESS: "conference:live:progress";
1027
+ readonly CONFERENCE_LIVE_TRANSCRIPTION: "conference:live:transcription";
1028
+ readonly CONFERENCE_SUMMARY_COMPLETED: "conference:summary:completed";
1029
+ readonly CONFERENCE_TRANSCRIPTION_COMPLETED: "conference:transcription:completed";
1030
+ readonly CONFERENCE_TRANSCRIPTION_TEXT_COMPLETED: "conference:transcription:text:completed";
1031
+ readonly OLD_CALL_END: "call:end";
1032
+ readonly OLD_CALL_START: "call:start";
1033
+ readonly OLD_CALL_UPDATE: "call:update";
1034
+ readonly PRESENCE_CONFERENCE: "presence:conference";
1035
+ readonly PRESENCE_TELEPHONY: "presence:telephony";
1036
+ readonly PRESENCE_USER: "presence:user";
1037
+ readonly SERVICE_CALL_LIVE_COMPLETED: "service:call:live:completed";
1038
+ readonly SERVICE_CALL_LIVE_PROGRESS: "service:call:live:progress";
1039
+ readonly SMS_STATUS: "sms:status";
1040
+ };
1041
+ /**
1042
+ * @public
1043
+ */
1044
+ export type WebhookEventType = (typeof WebhookEventType)[keyof typeof WebhookEventType];
1045
+ /**
1046
+ * @public
1047
+ * @enum
1048
+ */
1049
+ export declare const WebsocketEvent: {
1050
+ readonly AUTHORIZED: "authorized";
1051
+ readonly BROADCAST: "broadcast";
1052
+ readonly SUBSCRIBED: "subscribed";
1053
+ readonly UNSUBSCRIBE: "unsubscribed";
1054
+ };
1055
+ /**
1056
+ * @public
1057
+ */
1058
+ export type WebsocketEvent = (typeof WebsocketEvent)[keyof typeof WebsocketEvent];
1059
+ /**
1060
+ * @public
1061
+ * @enum
1062
+ */
1063
+ export declare const PresenceStatus: {
1064
+ readonly AWAY: "AWAY";
1065
+ readonly DND: "DND";
1066
+ readonly OFFLINE: "OFFLINE";
1067
+ readonly ONLINE: "ONLINE";
1068
+ readonly ONLY_SIP: "ONLY_SIP";
1069
+ };
1070
+ /**
1071
+ * @public
1072
+ */
1073
+ export type PresenceStatus = (typeof PresenceStatus)[keyof typeof PresenceStatus];
1074
+ /**
1075
+ * @public
1076
+ * @enum
1077
+ */
1078
+ export declare const TelephonyStatus: {
1079
+ readonly REGISTERED: "REGISTERED";
1080
+ readonly RINGING: "RINGING";
1081
+ readonly RT: "RT";
1082
+ readonly TALKING: "TALKING";
1083
+ readonly UNREGISTERED: "UNREGISTERED";
1084
+ };
1085
+ /**
1086
+ * @public
1087
+ */
1088
+ export type TelephonyStatus = (typeof TelephonyStatus)[keyof typeof TelephonyStatus];