@wildix/wda-stream-client 1.1.57 → 1.1.58

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.
@@ -353,6 +353,7 @@ exports.CallEndConsume = {
353
353
  CALLER: "caller",
354
354
  };
355
355
  exports.CallEventType = {
356
+ ANNOTATIONS_RECORD_EVENT: "CallAnalyticsAnnotationsRecordEvent",
356
357
  COST_RECORD_EVENT: "CallAnalyticsCostRecordEvent",
357
358
  LIVE_ANNOTATION_EVENT: "CallAnalyticsLiveAnnotationEvent",
358
359
  LIVE_COMPLETE_EVENT: "CallAnalyticsLiveCompleteEvent",
@@ -374,6 +375,7 @@ exports.ChatConsumeEventType = {
374
375
  CHAT_UPDATE: "CHAT.UPDATE",
375
376
  };
376
377
  exports.ChatEventType = {
378
+ ANNOTATIONS_RECORD_EVENT: "ChatAnalyticsAnnotationsRecordEvent",
377
379
  LIVE_ANNOTATION_EVENT: "ChatAnalyticsLiveAnnotationEvent",
378
380
  LIVE_COMPLETE_EVENT: "ChatAnalyticsLiveCompleteEvent",
379
381
  LIVE_INTERRUPTED_EVENT: "ChatAnalyticsLiveInterruptedEvent",
@@ -402,6 +404,7 @@ exports.ConferenceConsumeDirection = {
402
404
  OUTBOUND: "outbound",
403
405
  };
404
406
  exports.ConferenceEventType = {
407
+ ANNOTATIONS_RECORD_EVENT: "ConferenceAnalyticsAnnotationsRecordEvent",
405
408
  LIVE_ANNOTATION_EVENT: "ConferenceAnalyticsLiveAnnotationEvent",
406
409
  LIVE_COMPLETE_EVENT: "ConferenceAnalyticsLiveCompleteEvent",
407
410
  LIVE_INTERRUPTED_EVENT: "ConferenceAnalyticsLiveInterruptedEvent",
@@ -280,6 +280,7 @@ const de_DescribeEventCommand = async (output, context) => {
280
280
  });
281
281
  const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
282
282
  const doc = (0, smithy_client_1.take)(data, {
283
+ 'CallAnalyticsAnnotationsRecordEvent': _ => de_CallAnalyticsAnnotationsRecordEvent(_, context),
283
284
  'CallAnalyticsCostRecordEvent': _ => de_CallAnalyticsCostRecordEvent(_, context),
284
285
  'CallAnalyticsLiveAnnotationEvent': _ => de_CallAnalyticsLiveAnnotationEvent(_, context),
285
286
  'CallAnalyticsLiveCompleteEvent': smithy_client_1._json,
@@ -289,6 +290,7 @@ const de_DescribeEventCommand = async (output, context) => {
289
290
  'CallAnalyticsRecordEvent': smithy_client_1._json,
290
291
  'CallAnalyticsTranscriptionRecordEvent': _ => de_CallAnalyticsTranscriptionRecordEvent(_, context),
291
292
  'CallEventType': smithy_client_1.expectString,
293
+ 'ChatAnalyticsAnnotationsRecordEvent': _ => de_ChatAnalyticsAnnotationsRecordEvent(_, context),
292
294
  'ChatAnalyticsLiveAnnotationEvent': _ => de_ChatAnalyticsLiveAnnotationEvent(_, context),
293
295
  'ChatAnalyticsLiveCompleteEvent': smithy_client_1._json,
294
296
  'ChatAnalyticsLiveInterruptedEvent': smithy_client_1._json,
@@ -298,6 +300,7 @@ const de_DescribeEventCommand = async (output, context) => {
298
300
  'ChatAnalyticsRecordEvent': smithy_client_1._json,
299
301
  'ChatAnalyticsTranscriptionRecordEvent': _ => de_ChatAnalyticsTranscriptionRecordEvent(_, context),
300
302
  'ChatEventType': smithy_client_1.expectString,
303
+ 'ConferenceAnalyticsAnnotationsRecordEvent': _ => de_ConferenceAnalyticsAnnotationsRecordEvent(_, context),
301
304
  'ConferenceAnalyticsLiveAnnotationEvent': _ => de_ConferenceAnalyticsLiveAnnotationEvent(_, context),
302
305
  'ConferenceAnalyticsLiveCompleteEvent': smithy_client_1._json,
303
306
  'ConferenceAnalyticsLiveInterruptedEvent': smithy_client_1._json,
@@ -870,11 +873,31 @@ const de_AnnotationResultValue = (output, context) => {
870
873
  'value': (_) => de_Document(_, context),
871
874
  });
872
875
  };
876
+ const de_Annotations = (output, context) => {
877
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
878
+ return de_Annotation(entry, context);
879
+ });
880
+ return retVal;
881
+ };
873
882
  const de_AnnotationVariablesValue = (output, context) => {
874
883
  return (0, smithy_client_1.take)(output, {
875
884
  'value': (_) => de_Document(_, context),
876
885
  });
877
886
  };
887
+ const de_CallAnalyticsAnnotationsRecordEvent = (output, context) => {
888
+ return (0, smithy_client_1.take)(output, {
889
+ 'annotations': (_) => de_Annotations(_, context),
890
+ 'callStartTime': smithy_client_1.expectLong,
891
+ 'company': smithy_client_1.expectString,
892
+ 'flowIndex': smithy_client_1.expectInt32,
893
+ 'flowStartTime': smithy_client_1.expectLong,
894
+ 'id': smithy_client_1.expectString,
895
+ 'licenses': smithy_client_1._json,
896
+ 'pbx': smithy_client_1.expectString,
897
+ 'time': smithy_client_1.expectLong,
898
+ 'type': smithy_client_1.expectString,
899
+ });
900
+ };
878
901
  const de_CallAnalyticsCostRecordEvent = (output, context) => {
879
902
  return (0, smithy_client_1.take)(output, {
880
903
  'company': smithy_client_1.expectString,
@@ -979,6 +1002,16 @@ const de_CallTranscriptionList = (output, context) => {
979
1002
  });
980
1003
  return retVal;
981
1004
  };
1005
+ const de_ChatAnalyticsAnnotationsRecordEvent = (output, context) => {
1006
+ return (0, smithy_client_1.take)(output, {
1007
+ 'annotations': (_) => de_Annotations(_, context),
1008
+ 'chatId': smithy_client_1.expectString,
1009
+ 'company': smithy_client_1.expectString,
1010
+ 'id': smithy_client_1.expectString,
1011
+ 'time': smithy_client_1.expectLong,
1012
+ 'type': smithy_client_1.expectString,
1013
+ });
1014
+ };
982
1015
  const de_ChatAnalyticsLiveAnnotationEvent = (output, context) => {
983
1016
  return (0, smithy_client_1.take)(output, {
984
1017
  'annotation': (_) => de_Annotation(_, context),
@@ -1005,6 +1038,15 @@ const de_ChatAnalyticsTranscriptionRecordEvent = (output, context) => {
1005
1038
  'type': smithy_client_1.expectString,
1006
1039
  });
1007
1040
  };
1041
+ const de_ConferenceAnalyticsAnnotationsRecordEvent = (output, context) => {
1042
+ return (0, smithy_client_1.take)(output, {
1043
+ 'annotations': (_) => de_Annotations(_, context),
1044
+ 'company': smithy_client_1.expectString,
1045
+ 'id': smithy_client_1.expectString,
1046
+ 'time': smithy_client_1.expectLong,
1047
+ 'type': smithy_client_1.expectString,
1048
+ });
1049
+ };
1008
1050
  const de_ConferenceAnalyticsLiveAnnotationEvent = (output, context) => {
1009
1051
  return (0, smithy_client_1.take)(output, {
1010
1052
  'annotation': (_) => de_Annotation(_, context),
@@ -347,6 +347,7 @@ export const CallEndConsume = {
347
347
  CALLER: "caller",
348
348
  };
349
349
  export const CallEventType = {
350
+ ANNOTATIONS_RECORD_EVENT: "CallAnalyticsAnnotationsRecordEvent",
350
351
  COST_RECORD_EVENT: "CallAnalyticsCostRecordEvent",
351
352
  LIVE_ANNOTATION_EVENT: "CallAnalyticsLiveAnnotationEvent",
352
353
  LIVE_COMPLETE_EVENT: "CallAnalyticsLiveCompleteEvent",
@@ -368,6 +369,7 @@ export const ChatConsumeEventType = {
368
369
  CHAT_UPDATE: "CHAT.UPDATE",
369
370
  };
370
371
  export const ChatEventType = {
372
+ ANNOTATIONS_RECORD_EVENT: "ChatAnalyticsAnnotationsRecordEvent",
371
373
  LIVE_ANNOTATION_EVENT: "ChatAnalyticsLiveAnnotationEvent",
372
374
  LIVE_COMPLETE_EVENT: "ChatAnalyticsLiveCompleteEvent",
373
375
  LIVE_INTERRUPTED_EVENT: "ChatAnalyticsLiveInterruptedEvent",
@@ -396,6 +398,7 @@ export const ConferenceConsumeDirection = {
396
398
  OUTBOUND: "outbound",
397
399
  };
398
400
  export const ConferenceEventType = {
401
+ ANNOTATIONS_RECORD_EVENT: "ConferenceAnalyticsAnnotationsRecordEvent",
399
402
  LIVE_ANNOTATION_EVENT: "ConferenceAnalyticsLiveAnnotationEvent",
400
403
  LIVE_COMPLETE_EVENT: "ConferenceAnalyticsLiveCompleteEvent",
401
404
  LIVE_INTERRUPTED_EVENT: "ConferenceAnalyticsLiveInterruptedEvent",
@@ -261,6 +261,7 @@ export const de_DescribeEventCommand = async (output, context) => {
261
261
  });
262
262
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
263
263
  const doc = take(data, {
264
+ 'CallAnalyticsAnnotationsRecordEvent': _ => de_CallAnalyticsAnnotationsRecordEvent(_, context),
264
265
  'CallAnalyticsCostRecordEvent': _ => de_CallAnalyticsCostRecordEvent(_, context),
265
266
  'CallAnalyticsLiveAnnotationEvent': _ => de_CallAnalyticsLiveAnnotationEvent(_, context),
266
267
  'CallAnalyticsLiveCompleteEvent': _json,
@@ -270,6 +271,7 @@ export const de_DescribeEventCommand = async (output, context) => {
270
271
  'CallAnalyticsRecordEvent': _json,
271
272
  'CallAnalyticsTranscriptionRecordEvent': _ => de_CallAnalyticsTranscriptionRecordEvent(_, context),
272
273
  'CallEventType': __expectString,
274
+ 'ChatAnalyticsAnnotationsRecordEvent': _ => de_ChatAnalyticsAnnotationsRecordEvent(_, context),
273
275
  'ChatAnalyticsLiveAnnotationEvent': _ => de_ChatAnalyticsLiveAnnotationEvent(_, context),
274
276
  'ChatAnalyticsLiveCompleteEvent': _json,
275
277
  'ChatAnalyticsLiveInterruptedEvent': _json,
@@ -279,6 +281,7 @@ export const de_DescribeEventCommand = async (output, context) => {
279
281
  'ChatAnalyticsRecordEvent': _json,
280
282
  'ChatAnalyticsTranscriptionRecordEvent': _ => de_ChatAnalyticsTranscriptionRecordEvent(_, context),
281
283
  'ChatEventType': __expectString,
284
+ 'ConferenceAnalyticsAnnotationsRecordEvent': _ => de_ConferenceAnalyticsAnnotationsRecordEvent(_, context),
282
285
  'ConferenceAnalyticsLiveAnnotationEvent': _ => de_ConferenceAnalyticsLiveAnnotationEvent(_, context),
283
286
  'ConferenceAnalyticsLiveCompleteEvent': _json,
284
287
  'ConferenceAnalyticsLiveInterruptedEvent': _json,
@@ -837,11 +840,31 @@ const de_AnnotationResultValue = (output, context) => {
837
840
  'value': (_) => de_Document(_, context),
838
841
  });
839
842
  };
843
+ const de_Annotations = (output, context) => {
844
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
845
+ return de_Annotation(entry, context);
846
+ });
847
+ return retVal;
848
+ };
840
849
  const de_AnnotationVariablesValue = (output, context) => {
841
850
  return take(output, {
842
851
  'value': (_) => de_Document(_, context),
843
852
  });
844
853
  };
854
+ const de_CallAnalyticsAnnotationsRecordEvent = (output, context) => {
855
+ return take(output, {
856
+ 'annotations': (_) => de_Annotations(_, context),
857
+ 'callStartTime': __expectLong,
858
+ 'company': __expectString,
859
+ 'flowIndex': __expectInt32,
860
+ 'flowStartTime': __expectLong,
861
+ 'id': __expectString,
862
+ 'licenses': _json,
863
+ 'pbx': __expectString,
864
+ 'time': __expectLong,
865
+ 'type': __expectString,
866
+ });
867
+ };
845
868
  const de_CallAnalyticsCostRecordEvent = (output, context) => {
846
869
  return take(output, {
847
870
  'company': __expectString,
@@ -946,6 +969,16 @@ const de_CallTranscriptionList = (output, context) => {
946
969
  });
947
970
  return retVal;
948
971
  };
972
+ const de_ChatAnalyticsAnnotationsRecordEvent = (output, context) => {
973
+ return take(output, {
974
+ 'annotations': (_) => de_Annotations(_, context),
975
+ 'chatId': __expectString,
976
+ 'company': __expectString,
977
+ 'id': __expectString,
978
+ 'time': __expectLong,
979
+ 'type': __expectString,
980
+ });
981
+ };
949
982
  const de_ChatAnalyticsLiveAnnotationEvent = (output, context) => {
950
983
  return take(output, {
951
984
  'annotation': (_) => de_Annotation(_, context),
@@ -972,6 +1005,15 @@ const de_ChatAnalyticsTranscriptionRecordEvent = (output, context) => {
972
1005
  'type': __expectString,
973
1006
  });
974
1007
  };
1008
+ const de_ConferenceAnalyticsAnnotationsRecordEvent = (output, context) => {
1009
+ return take(output, {
1010
+ 'annotations': (_) => de_Annotations(_, context),
1011
+ 'company': __expectString,
1012
+ 'id': __expectString,
1013
+ 'time': __expectLong,
1014
+ 'type': __expectString,
1015
+ });
1016
+ };
975
1017
  const de_ConferenceAnalyticsLiveAnnotationEvent = (output, context) => {
976
1018
  return take(output, {
977
1019
  'annotation': (_) => de_Annotation(_, context),
@@ -195,7 +195,6 @@ declare const DescribeEventCommand_base: {
195
195
  * // tags: [ // CallFlowTags
196
196
  * // "STRING_VALUE",
197
197
  * // ],
198
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
199
198
  * // flags: [ // CallFlowFlags
200
199
  * // "STRING_VALUE",
201
200
  * // ],
@@ -232,6 +231,7 @@ declare const DescribeEventCommand_base: {
232
231
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
233
232
  * // transcriptionLanguage: "STRING_VALUE",
234
233
  * // transcriptionSeconds: Number("int"),
234
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
235
235
  * // attachment: "STRING_VALUE",
236
236
  * // attachmentType: "VOICEMAIL" || "FAX",
237
237
  * // attachmentDestinations: [ // CallFlowAttachmentDestinationList
@@ -480,7 +480,6 @@ declare const DescribeEventCommand_base: {
480
480
  * // tags: [
481
481
  * // "STRING_VALUE",
482
482
  * // ],
483
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
484
483
  * // flags: [
485
484
  * // "STRING_VALUE",
486
485
  * // ],
@@ -517,6 +516,7 @@ declare const DescribeEventCommand_base: {
517
516
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
518
517
  * // transcriptionLanguage: "STRING_VALUE",
519
518
  * // transcriptionSeconds: Number("int"),
519
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
520
520
  * // attachment: "STRING_VALUE",
521
521
  * // attachmentType: "VOICEMAIL" || "FAX",
522
522
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -569,6 +569,38 @@ declare const DescribeEventCommand_base: {
569
569
  * // type: "chat" || "chat_annotation" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_annotation" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_annotation" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_call" || "service_call_complete", // required
570
570
  * // complete: true || false, // required
571
571
  * // },
572
+ * // CallAnalyticsAnnotationsRecordEvent: { // CallAnalyticsAnnotationsRecordEvent
573
+ * // id: "STRING_VALUE", // required
574
+ * // pbx: "STRING_VALUE", // required
575
+ * // time: Number("long"), // required
576
+ * // company: "STRING_VALUE", // required
577
+ * // licenses: "<LicensesList>", // required
578
+ * // flowIndex: Number("int"), // required
579
+ * // flowStartTime: Number("long"), // required
580
+ * // callStartTime: Number("long"), // required
581
+ * // annotations: [ // Annotations // required
582
+ * // {
583
+ * // id: "STRING_VALUE", // required
584
+ * // time: Number("long"), // required
585
+ * // payload: {// Union: only one key present
586
+ * // tag: "STRING_VALUE",
587
+ * // text: "STRING_VALUE",
588
+ * // variables: {
589
+ * // value: "DOCUMENT_VALUE", // required
590
+ * // },
591
+ * // result: {
592
+ * // value: "DOCUMENT_VALUE", // required
593
+ * // },
594
+ * // },
595
+ * // source: {
596
+ * // type: "chatbot" || "voicebot" || "user" || "system", // required
597
+ * // id: "STRING_VALUE",
598
+ * // name: "STRING_VALUE",
599
+ * // },
600
+ * // },
601
+ * // ],
602
+ * // type: "chat" || "chat_annotation" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_annotation" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_annotation" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_call" || "service_call_complete", // required
603
+ * // },
572
604
  * // CallAnalyticsTranscriptionRecordEvent: { // CallAnalyticsTranscriptionRecordEvent
573
605
  * // id: "STRING_VALUE", // required
574
606
  * // pbx: "STRING_VALUE", // required
@@ -1025,6 +1057,34 @@ declare const DescribeEventCommand_base: {
1025
1057
  * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1026
1058
  * // type: "STRING_VALUE", // required
1027
1059
  * // },
1060
+ * // ChatAnalyticsAnnotationsRecordEvent: { // ChatAnalyticsAnnotationsRecordEvent
1061
+ * // id: "STRING_VALUE",
1062
+ * // chatId: "STRING_VALUE",
1063
+ * // time: Number("long"), // required
1064
+ * // company: "STRING_VALUE", // required
1065
+ * // annotations: [ // required
1066
+ * // {
1067
+ * // id: "STRING_VALUE", // required
1068
+ * // time: Number("long"), // required
1069
+ * // payload: {// Union: only one key present
1070
+ * // tag: "STRING_VALUE",
1071
+ * // text: "STRING_VALUE",
1072
+ * // variables: {
1073
+ * // value: "DOCUMENT_VALUE", // required
1074
+ * // },
1075
+ * // result: {
1076
+ * // value: "DOCUMENT_VALUE", // required
1077
+ * // },
1078
+ * // },
1079
+ * // source: {
1080
+ * // type: "chatbot" || "voicebot" || "user" || "system", // required
1081
+ * // id: "STRING_VALUE",
1082
+ * // name: "STRING_VALUE",
1083
+ * // },
1084
+ * // },
1085
+ * // ],
1086
+ * // type: "chat" || "chat_annotation" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_annotation" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_annotation" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_call" || "service_call_complete", // required
1087
+ * // },
1028
1088
  * // ChatAnalyticsTranscriptionRecordEvent: { // ChatAnalyticsTranscriptionRecordEvent
1029
1089
  * // id: "STRING_VALUE",
1030
1090
  * // chatId: "STRING_VALUE",
@@ -1142,8 +1202,8 @@ declare const DescribeEventCommand_base: {
1142
1202
  * // },
1143
1203
  * // ],
1144
1204
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
1145
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1146
1205
  * // transcriptionLanguage: "STRING_VALUE",
1206
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1147
1207
  * // participantsGroupIds: [
1148
1208
  * // "STRING_VALUE",
1149
1209
  * // ],
@@ -1293,12 +1353,21 @@ declare const DescribeEventCommand_base: {
1293
1353
  * // },
1294
1354
  * // ],
1295
1355
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
1296
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1297
1356
  * // transcriptionLanguage: "STRING_VALUE",
1298
1357
  * // transcriptionSeconds: Number("int"),
1358
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1299
1359
  * // type: "chat" || "chat_annotation" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_annotation" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_annotation" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_call" || "service_call_complete", // required
1300
1360
  * // transcriptions: "STRING_VALUE",
1301
1361
  * // },
1362
+ * // ConferenceAnalyticsAnnotationsRecordEvent: { // ConferenceAnalyticsAnnotationsRecordEvent
1363
+ * // id: "STRING_VALUE", // required
1364
+ * // time: Number("long"), // required
1365
+ * // company: "STRING_VALUE", // required
1366
+ * // annotations: [ // required
1367
+ * // "<Annotation>",
1368
+ * // ],
1369
+ * // type: "chat" || "chat_annotation" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_annotation" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_annotation" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_call" || "service_call_complete", // required
1370
+ * // },
1302
1371
  * // ConferenceAnalyticsTranscriptionRecordEvent: { // ConferenceAnalyticsTranscriptionRecordEvent
1303
1372
  * // id: "STRING_VALUE", // required
1304
1373
  * // time: Number("long"), // required
@@ -1567,7 +1636,6 @@ declare const DescribeEventCommand_base: {
1567
1636
  * // tags: [
1568
1637
  * // "STRING_VALUE",
1569
1638
  * // ],
1570
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1571
1639
  * // flags: [
1572
1640
  * // "STRING_VALUE",
1573
1641
  * // ],
@@ -1604,6 +1672,7 @@ declare const DescribeEventCommand_base: {
1604
1672
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
1605
1673
  * // transcriptionLanguage: "STRING_VALUE",
1606
1674
  * // transcriptionSeconds: Number("int"),
1675
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1607
1676
  * // attachment: "STRING_VALUE",
1608
1677
  * // attachmentType: "VOICEMAIL" || "FAX",
1609
1678
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -1690,25 +1759,7 @@ declare const DescribeEventCommand_base: {
1690
1759
  * // flowIndex: Number("int"), // required
1691
1760
  * // flowStartTime: Number("long"), // required
1692
1761
  * // callStartTime: Number("long"), // required
1693
- * // annotation: {
1694
- * // id: "STRING_VALUE", // required
1695
- * // time: Number("long"), // required
1696
- * // payload: {// Union: only one key present
1697
- * // tag: "STRING_VALUE",
1698
- * // text: "STRING_VALUE",
1699
- * // variables: {
1700
- * // value: "DOCUMENT_VALUE", // required
1701
- * // },
1702
- * // result: {
1703
- * // value: "DOCUMENT_VALUE", // required
1704
- * // },
1705
- * // },
1706
- * // source: {
1707
- * // type: "chatbot" || "voicebot" || "user" || "system", // required
1708
- * // id: "STRING_VALUE",
1709
- * // name: "STRING_VALUE",
1710
- * // },
1711
- * // },
1762
+ * // annotation: "<Annotation>", // required
1712
1763
  * // },
1713
1764
  * // },
1714
1765
  * // WebhookCallLiveTranscriptionEvent: { // WebhookCallLiveTranscriptionEvent
@@ -1772,7 +1823,6 @@ declare const DescribeEventCommand_base: {
1772
1823
  * // tags: [
1773
1824
  * // "STRING_VALUE",
1774
1825
  * // ],
1775
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1776
1826
  * // flags: [
1777
1827
  * // "STRING_VALUE",
1778
1828
  * // ],
@@ -1796,6 +1846,7 @@ declare const DescribeEventCommand_base: {
1796
1846
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
1797
1847
  * // transcriptionLanguage: "STRING_VALUE",
1798
1848
  * // transcriptionSeconds: Number("int"),
1849
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1799
1850
  * // attachment: "STRING_VALUE",
1800
1851
  * // attachmentType: "VOICEMAIL" || "FAX",
1801
1852
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -1871,7 +1922,6 @@ declare const DescribeEventCommand_base: {
1871
1922
  * // tags: [
1872
1923
  * // "STRING_VALUE",
1873
1924
  * // ],
1874
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1875
1925
  * // flags: [
1876
1926
  * // "STRING_VALUE",
1877
1927
  * // ],
@@ -1895,6 +1945,7 @@ declare const DescribeEventCommand_base: {
1895
1945
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
1896
1946
  * // transcriptionLanguage: "STRING_VALUE",
1897
1947
  * // transcriptionSeconds: Number("int"),
1948
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1898
1949
  * // attachment: "STRING_VALUE",
1899
1950
  * // attachmentType: "VOICEMAIL" || "FAX",
1900
1951
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -1968,7 +2019,6 @@ declare const DescribeEventCommand_base: {
1968
2019
  * // queueName: "STRING_VALUE",
1969
2020
  * // queueId: "STRING_VALUE",
1970
2021
  * // tags: "<CallFlowTags>",
1971
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1972
2022
  * // flags: "<CallFlowFlags>",
1973
2023
  * // callerMos: "STRING_VALUE",
1974
2024
  * // calleeMos: "STRING_VALUE",
@@ -1986,6 +2036,7 @@ declare const DescribeEventCommand_base: {
1986
2036
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
1987
2037
  * // transcriptionLanguage: "STRING_VALUE",
1988
2038
  * // transcriptionSeconds: Number("int"),
2039
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
1989
2040
  * // attachment: "STRING_VALUE",
1990
2041
  * // attachmentType: "VOICEMAIL" || "FAX",
1991
2042
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -2042,7 +2093,6 @@ declare const DescribeEventCommand_base: {
2042
2093
  * // queueName: "STRING_VALUE",
2043
2094
  * // queueId: "STRING_VALUE",
2044
2095
  * // tags: "<CallFlowTags>",
2045
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2046
2096
  * // flags: "<CallFlowFlags>",
2047
2097
  * // callerMos: "STRING_VALUE",
2048
2098
  * // calleeMos: "STRING_VALUE",
@@ -2060,6 +2110,7 @@ declare const DescribeEventCommand_base: {
2060
2110
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
2061
2111
  * // transcriptionLanguage: "STRING_VALUE",
2062
2112
  * // transcriptionSeconds: Number("int"),
2113
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2063
2114
  * // attachment: "STRING_VALUE",
2064
2115
  * // attachmentType: "VOICEMAIL" || "FAX",
2065
2116
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -2108,7 +2159,6 @@ declare const DescribeEventCommand_base: {
2108
2159
  * // queueName: "STRING_VALUE",
2109
2160
  * // queueId: "STRING_VALUE",
2110
2161
  * // tags: "<CallFlowTags>",
2111
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2112
2162
  * // flags: "<CallFlowFlags>",
2113
2163
  * // callerMos: "STRING_VALUE",
2114
2164
  * // calleeMos: "STRING_VALUE",
@@ -2126,6 +2176,7 @@ declare const DescribeEventCommand_base: {
2126
2176
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
2127
2177
  * // transcriptionLanguage: "STRING_VALUE",
2128
2178
  * // transcriptionSeconds: Number("int"),
2179
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2129
2180
  * // attachment: "STRING_VALUE",
2130
2181
  * // attachmentType: "VOICEMAIL" || "FAX",
2131
2182
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -2178,7 +2229,6 @@ declare const DescribeEventCommand_base: {
2178
2229
  * // queueName: "STRING_VALUE",
2179
2230
  * // queueId: "STRING_VALUE",
2180
2231
  * // tags: "<CallFlowTags>",
2181
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2182
2232
  * // flags: "<CallFlowFlags>",
2183
2233
  * // callerMos: "STRING_VALUE",
2184
2234
  * // calleeMos: "STRING_VALUE",
@@ -2196,6 +2246,7 @@ declare const DescribeEventCommand_base: {
2196
2246
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
2197
2247
  * // transcriptionLanguage: "STRING_VALUE",
2198
2248
  * // transcriptionSeconds: Number("int"),
2249
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2199
2250
  * // attachment: "STRING_VALUE",
2200
2251
  * // attachmentType: "VOICEMAIL" || "FAX",
2201
2252
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -2240,7 +2291,6 @@ declare const DescribeEventCommand_base: {
2240
2291
  * // queueName: "STRING_VALUE",
2241
2292
  * // queueId: "STRING_VALUE",
2242
2293
  * // tags: "<CallFlowTags>",
2243
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2244
2294
  * // flags: "<CallFlowFlags>",
2245
2295
  * // callerMos: "STRING_VALUE",
2246
2296
  * // calleeMos: "STRING_VALUE",
@@ -2258,6 +2308,7 @@ declare const DescribeEventCommand_base: {
2258
2308
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
2259
2309
  * // transcriptionLanguage: "STRING_VALUE",
2260
2310
  * // transcriptionSeconds: Number("int"),
2311
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2261
2312
  * // attachment: "STRING_VALUE",
2262
2313
  * // attachmentType: "VOICEMAIL" || "FAX",
2263
2314
  * // attachmentDestinations: "<CallFlowAttachmentDestinationList>",
@@ -2327,8 +2378,8 @@ declare const DescribeEventCommand_base: {
2327
2378
  * // "<ConferenceParticipant>",
2328
2379
  * // ],
2329
2380
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
2330
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2331
2381
  * // transcriptionLanguage: "STRING_VALUE",
2382
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2332
2383
  * // participantsGroupIds: "<ConversationParticipantsGroupList>",
2333
2384
  * // },
2334
2385
  * // },
@@ -2374,25 +2425,7 @@ declare const DescribeEventCommand_base: {
2374
2425
  * // time: Number("long"), // required
2375
2426
  * // company: "STRING_VALUE", // required
2376
2427
  * // event: "chat" || "chat_annotation" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_annotation" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_annotation" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_call" || "service_call_complete", // required
2377
- * // annotation: {
2378
- * // id: "STRING_VALUE", // required
2379
- * // time: Number("long"), // required
2380
- * // payload: {// Union: only one key present
2381
- * // tag: "STRING_VALUE",
2382
- * // text: "STRING_VALUE",
2383
- * // variables: {
2384
- * // value: "DOCUMENT_VALUE", // required
2385
- * // },
2386
- * // result: {
2387
- * // value: "DOCUMENT_VALUE", // required
2388
- * // },
2389
- * // },
2390
- * // source: {
2391
- * // type: "chatbot" || "voicebot" || "user" || "system", // required
2392
- * // id: "STRING_VALUE",
2393
- * // name: "STRING_VALUE",
2394
- * // },
2395
- * // },
2428
+ * // annotation: "<Annotation>", // required
2396
2429
  * // },
2397
2430
  * // },
2398
2431
  * // WebhookConferenceLiveJoinEvent: { // WebhookConferenceLiveJoinEvent
@@ -2480,9 +2513,9 @@ declare const DescribeEventCommand_base: {
2480
2513
  * // },
2481
2514
  * // ],
2482
2515
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
2483
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2484
2516
  * // transcriptionLanguage: "STRING_VALUE",
2485
2517
  * // transcriptionSeconds: Number("int"),
2518
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2486
2519
  * // type: "chat" || "chat_annotation" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_annotation" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_annotation" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_call" || "service_call_complete", // required
2487
2520
  * // transcriptions: "STRING_VALUE",
2488
2521
  * // },
@@ -2511,9 +2544,9 @@ declare const DescribeEventCommand_base: {
2511
2544
  * // participants: "<ConferenceAnalyticsRecordParticipantList>", // required
2512
2545
  * // recordings: "<ConferenceRecordingList>",
2513
2546
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
2514
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2515
2547
  * // transcriptionLanguage: "STRING_VALUE",
2516
2548
  * // transcriptionSeconds: Number("int"),
2549
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2517
2550
  * // type: "call" || "call_transcription" || "call_annotations" || "conference" || "conference_transcription" || "conference_annotations" || "chat" || "chat_transcription" || "chat_annotations", // required
2518
2551
  * // },
2519
2552
  * // chunks: [ // required
@@ -2551,9 +2584,9 @@ declare const DescribeEventCommand_base: {
2551
2584
  * // participants: "<ConferenceAnalyticsRecordParticipantList>", // required
2552
2585
  * // recordings: "<ConferenceRecordingList>",
2553
2586
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
2554
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2555
2587
  * // transcriptionLanguage: "STRING_VALUE",
2556
2588
  * // transcriptionSeconds: Number("int"),
2589
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2557
2590
  * // type: "call" || "call_transcription" || "call_annotations" || "conference" || "conference_transcription" || "conference_annotations" || "chat" || "chat_transcription" || "chat_annotations", // required
2558
2591
  * // },
2559
2592
  * // transcription: "STRING_VALUE", // required
@@ -2583,9 +2616,9 @@ declare const DescribeEventCommand_base: {
2583
2616
  * // participants: "<ConferenceAnalyticsRecordParticipantList>", // required
2584
2617
  * // recordings: "<ConferenceRecordingList>",
2585
2618
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
2586
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2587
2619
  * // transcriptionLanguage: "STRING_VALUE",
2588
2620
  * // transcriptionSeconds: Number("int"),
2621
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
2589
2622
  * // type: "call" || "call_transcription" || "call_annotations" || "conference" || "conference_transcription" || "conference_annotations" || "chat" || "chat_transcription" || "chat_annotations", // required
2590
2623
  * // },
2591
2624
  * // summary: {
@@ -3121,9 +3154,9 @@ declare const DescribeEventCommand_base: {
3121
3154
  * // ],
3122
3155
  * // event: "chat" || "chat_annotation" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_annotation" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_annotation" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_call" || "service_call_complete", // required
3123
3156
  * // },
3124
- * // CallEventType: "CallAnalyticsLiveProgressEvent" || "CallAnalyticsLiveCompleteEvent" || "CallAnalyticsLiveInterruptedEvent" || "CallAnalyticsLiveAnnotationEvent" || "CallAnalyticsLiveTranscriptionEvent" || "CallAnalyticsRecordEvent" || "CallAnalyticsTranscriptionRecordEvent" || "CallAnalyticsCostRecordEvent",
3125
- * // ConferenceEventType: "ConferenceAnalyticsLiveProgressEvent" || "ConferenceAnalyticsLiveCompleteEvent" || "ConferenceAnalyticsLiveInterruptedEvent" || "ConferenceAnalyticsLiveAnnotationEvent" || "ConferenceAnalyticsLiveTranscriptionEvent" || "ConferenceAnalyticsLiveJoinEvent" || "ConferenceAnalyticsLiveLeaveEvent" || "ConferenceAnalyticsRecordEvent" || "ConferenceAnalyticsTranscriptionRecordEvent",
3126
- * // ChatEventType: "ChatAnalyticsLiveCompleteEvent" || "ChatAnalyticsLiveInterruptedEvent" || "ChatAnalyticsLiveProgressEvent" || "ChatAnalyticsLiveAnnotationEvent" || "ChatAnalyticsLiveTranscriptionEvent" || "ChatAnalyticsManagerMissedEvent" || "ChatAnalyticsRecordEvent" || "ChatAnalyticsTranscriptionRecordEvent",
3157
+ * // CallEventType: "CallAnalyticsLiveProgressEvent" || "CallAnalyticsLiveCompleteEvent" || "CallAnalyticsLiveInterruptedEvent" || "CallAnalyticsLiveAnnotationEvent" || "CallAnalyticsLiveTranscriptionEvent" || "CallAnalyticsRecordEvent" || "CallAnalyticsAnnotationsRecordEvent" || "CallAnalyticsTranscriptionRecordEvent" || "CallAnalyticsCostRecordEvent",
3158
+ * // ConferenceEventType: "ConferenceAnalyticsLiveProgressEvent" || "ConferenceAnalyticsLiveCompleteEvent" || "ConferenceAnalyticsLiveInterruptedEvent" || "ConferenceAnalyticsLiveAnnotationEvent" || "ConferenceAnalyticsLiveTranscriptionEvent" || "ConferenceAnalyticsLiveJoinEvent" || "ConferenceAnalyticsLiveLeaveEvent" || "ConferenceAnalyticsRecordEvent" || "ConferenceAnalyticsAnnotationsRecordEvent" || "ConferenceAnalyticsTranscriptionRecordEvent",
3159
+ * // ChatEventType: "ChatAnalyticsLiveCompleteEvent" || "ChatAnalyticsLiveInterruptedEvent" || "ChatAnalyticsLiveProgressEvent" || "ChatAnalyticsLiveAnnotationEvent" || "ChatAnalyticsLiveTranscriptionEvent" || "ChatAnalyticsManagerMissedEvent" || "ChatAnalyticsRecordEvent" || "ChatAnalyticsAnnotationsRecordEvent" || "ChatAnalyticsTranscriptionRecordEvent",
3127
3160
  * // PresenceEventType: "PresenceAnalyticsStatusEvent" || "PresenceAnalyticsConferenceEvent" || "PresenceAnalyticsTelephonyEvent",
3128
3161
  * // ServiceEventType: "ServiceAnalyticsLiveProgressEvent" || "ServiceAnalyticsLiveCompleteEvent",
3129
3162
  * // ServiceCallEventType: "ServiceCallAnalyticsLiveProgressEvent" || "ServiceCallAnalyticsLiveCompleteEvent",
@@ -104,7 +104,6 @@ declare const GetOngoingCallAnnotationsCommand_base: {
104
104
  * // tags: [ // CallFlowTags
105
105
  * // "STRING_VALUE",
106
106
  * // ],
107
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
108
107
  * // flags: [ // CallFlowFlags
109
108
  * // "STRING_VALUE",
110
109
  * // ],
@@ -141,6 +140,7 @@ declare const GetOngoingCallAnnotationsCommand_base: {
141
140
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
142
141
  * // transcriptionLanguage: "STRING_VALUE",
143
142
  * // transcriptionSeconds: Number("int"),
143
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
144
144
  * // attachment: "STRING_VALUE",
145
145
  * // attachmentType: "VOICEMAIL" || "FAX",
146
146
  * // attachmentDestinations: [ // CallFlowAttachmentDestinationList
@@ -104,7 +104,6 @@ declare const GetOngoingCallCommand_base: {
104
104
  * // tags: [ // CallFlowTags
105
105
  * // "STRING_VALUE",
106
106
  * // ],
107
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
108
107
  * // flags: [ // CallFlowFlags
109
108
  * // "STRING_VALUE",
110
109
  * // ],
@@ -141,6 +140,7 @@ declare const GetOngoingCallCommand_base: {
141
140
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
142
141
  * // transcriptionLanguage: "STRING_VALUE",
143
142
  * // transcriptionSeconds: Number("int"),
143
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
144
144
  * // attachment: "STRING_VALUE",
145
145
  * // attachmentType: "VOICEMAIL" || "FAX",
146
146
  * // attachmentDestinations: [ // CallFlowAttachmentDestinationList
@@ -104,7 +104,6 @@ declare const GetOngoingCallTranscriptionCommand_base: {
104
104
  * // tags: [ // CallFlowTags
105
105
  * // "STRING_VALUE",
106
106
  * // ],
107
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
108
107
  * // flags: [ // CallFlowFlags
109
108
  * // "STRING_VALUE",
110
109
  * // ],
@@ -141,6 +140,7 @@ declare const GetOngoingCallTranscriptionCommand_base: {
141
140
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
142
141
  * // transcriptionLanguage: "STRING_VALUE",
143
142
  * // transcriptionSeconds: Number("int"),
143
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
144
144
  * // attachment: "STRING_VALUE",
145
145
  * // attachmentType: "VOICEMAIL" || "FAX",
146
146
  * // attachmentDestinations: [ // CallFlowAttachmentDestinationList
@@ -66,8 +66,8 @@ declare const GetOngoingConferenceAnnotationsCommand_base: {
66
66
  * // },
67
67
  * // ],
68
68
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
69
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
70
69
  * // transcriptionLanguage: "STRING_VALUE",
70
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
71
71
  * // participantsGroupIds: [ // ConversationParticipantsGroupList
72
72
  * // "STRING_VALUE",
73
73
  * // ],
@@ -66,8 +66,8 @@ declare const GetOngoingConferenceCommand_base: {
66
66
  * // },
67
67
  * // ],
68
68
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
69
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
70
69
  * // transcriptionLanguage: "STRING_VALUE",
70
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
71
71
  * // participantsGroupIds: [ // ConversationParticipantsGroupList
72
72
  * // "STRING_VALUE",
73
73
  * // ],
@@ -66,8 +66,8 @@ declare const GetOngoingConferenceTranscriptionCommand_base: {
66
66
  * // },
67
67
  * // ],
68
68
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
69
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
70
69
  * // transcriptionLanguage: "STRING_VALUE",
70
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
71
71
  * // participantsGroupIds: [ // ConversationParticipantsGroupList
72
72
  * // "STRING_VALUE",
73
73
  * // ],
@@ -121,7 +121,6 @@ declare const QueryConversationsCommand_base: {
121
121
  * // tags: [ // CallFlowTags
122
122
  * // "STRING_VALUE",
123
123
  * // ],
124
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
125
124
  * // flags: [ // CallFlowFlags
126
125
  * // "STRING_VALUE",
127
126
  * // ],
@@ -158,6 +157,7 @@ declare const QueryConversationsCommand_base: {
158
157
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
159
158
  * // transcriptionLanguage: "STRING_VALUE",
160
159
  * // transcriptionSeconds: Number("int"),
160
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
161
161
  * // attachment: "STRING_VALUE",
162
162
  * // attachmentType: "VOICEMAIL" || "FAX",
163
163
  * // attachmentDestinations: [ // CallFlowAttachmentDestinationList
@@ -265,8 +265,8 @@ declare const QueryConversationsCommand_base: {
265
265
  * // },
266
266
  * // ],
267
267
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
268
- * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
269
268
  * // transcriptionLanguage: "STRING_VALUE",
269
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
270
270
  * // participantsGroupIds: [
271
271
  * // "STRING_VALUE",
272
272
  * // ],
@@ -583,7 +583,6 @@ export interface CallRecord {
583
583
  queueName?: string | undefined;
584
584
  queueId?: string | undefined;
585
585
  tags?: (string)[] | undefined;
586
- annotationsStatus?: AnnotationsStatus | undefined;
587
586
  flags?: (string)[] | undefined;
588
587
  callerMos?: string | undefined;
589
588
  calleeMos?: string | undefined;
@@ -613,6 +612,7 @@ export interface CallRecord {
613
612
  transcriptionStatus?: CallFlowTranscriptionStatus | undefined;
614
613
  transcriptionLanguage?: string | undefined;
615
614
  transcriptionSeconds?: number | undefined;
615
+ annotationsStatus?: AnnotationsStatus | undefined;
616
616
  /**
617
617
  * Consider to use `attachments` instead.
618
618
  *
@@ -1399,9 +1399,9 @@ export interface ConferenceRecord {
1399
1399
  participants: (ConferenceAnalyticsRecordParticipant)[];
1400
1400
  recordings?: (ConferenceRecording)[] | undefined;
1401
1401
  transcriptionStatus: ConferenceTranscriptionStatus;
1402
- annotationsStatus?: AnnotationsStatus | undefined;
1403
1402
  transcriptionLanguage?: string | undefined;
1404
1403
  transcriptionSeconds?: number | undefined;
1404
+ annotationsStatus?: AnnotationsStatus | undefined;
1405
1405
  type: RecordType;
1406
1406
  }
1407
1407
  /**
@@ -1564,15 +1564,6 @@ export interface CallAgentsStartConsumeEvent {
1564
1564
  type: CallConsumeEventType;
1565
1565
  data: CallAgentsStartOrEndConsumeEventData;
1566
1566
  }
1567
- /**
1568
- * @public
1569
- */
1570
- export interface CallTranscription {
1571
- flowIndex: number;
1572
- flowStartTime: number;
1573
- callStartTime: number;
1574
- chunks: Record<string, CallTranscriptionChunk>;
1575
- }
1576
1567
  /**
1577
1568
  * @public
1578
1569
  * @enum
@@ -1607,6 +1598,30 @@ export declare const LiveEventType: {
1607
1598
  * @public
1608
1599
  */
1609
1600
  export type LiveEventType = typeof LiveEventType[keyof typeof LiveEventType];
1601
+ /**
1602
+ * @public
1603
+ */
1604
+ export interface CallAnalyticsAnnotationsRecordEvent {
1605
+ id: string;
1606
+ pbx: string;
1607
+ time: number;
1608
+ company: string;
1609
+ licenses: (License)[];
1610
+ flowIndex: number;
1611
+ flowStartTime: number;
1612
+ callStartTime: number;
1613
+ annotations: (Annotation)[];
1614
+ type: LiveEventType;
1615
+ }
1616
+ /**
1617
+ * @public
1618
+ */
1619
+ export interface CallTranscription {
1620
+ flowIndex: number;
1621
+ flowStartTime: number;
1622
+ callStartTime: number;
1623
+ chunks: Record<string, CallTranscriptionChunk>;
1624
+ }
1610
1625
  /**
1611
1626
  * @public
1612
1627
  */
@@ -1742,7 +1757,6 @@ export interface CallAnalyticsLiveProgressEventFlow {
1742
1757
  queueName?: string | undefined;
1743
1758
  queueId?: string | undefined;
1744
1759
  tags?: (string)[] | undefined;
1745
- annotationsStatus?: AnnotationsStatus | undefined;
1746
1760
  flags?: (string)[] | undefined;
1747
1761
  callerMos?: string | undefined;
1748
1762
  calleeMos?: string | undefined;
@@ -1772,6 +1786,7 @@ export interface CallAnalyticsLiveProgressEventFlow {
1772
1786
  transcriptionStatus?: CallFlowTranscriptionStatus | undefined;
1773
1787
  transcriptionLanguage?: string | undefined;
1774
1788
  transcriptionSeconds?: number | undefined;
1789
+ annotationsStatus?: AnnotationsStatus | undefined;
1775
1790
  /**
1776
1791
  * Consider to use `attachments` instead.
1777
1792
  *
@@ -1901,7 +1916,6 @@ export interface CallAnalyticsRecordEventFlow {
1901
1916
  queueName?: string | undefined;
1902
1917
  queueId?: string | undefined;
1903
1918
  tags?: (string)[] | undefined;
1904
- annotationsStatus?: AnnotationsStatus | undefined;
1905
1919
  flags?: (string)[] | undefined;
1906
1920
  callerMos?: string | undefined;
1907
1921
  calleeMos?: string | undefined;
@@ -1931,6 +1945,7 @@ export interface CallAnalyticsRecordEventFlow {
1931
1945
  transcriptionStatus?: CallFlowTranscriptionStatus | undefined;
1932
1946
  transcriptionLanguage?: string | undefined;
1933
1947
  transcriptionSeconds?: number | undefined;
1948
+ annotationsStatus?: AnnotationsStatus | undefined;
1934
1949
  /**
1935
1950
  * Consider to use `attachments` instead.
1936
1951
  *
@@ -2086,6 +2101,7 @@ export interface CallEndConsumeEvent {
2086
2101
  * @enum
2087
2102
  */
2088
2103
  export declare const CallEventType: {
2104
+ readonly ANNOTATIONS_RECORD_EVENT: "CallAnalyticsAnnotationsRecordEvent";
2089
2105
  readonly COST_RECORD_EVENT: "CallAnalyticsCostRecordEvent";
2090
2106
  readonly LIVE_ANNOTATION_EVENT: "CallAnalyticsLiveAnnotationEvent";
2091
2107
  readonly LIVE_COMPLETE_EVENT: "CallAnalyticsLiveCompleteEvent";
@@ -2370,6 +2386,25 @@ export interface CallUpdateConsumeEvent {
2370
2386
  type: CallConsumeEventType;
2371
2387
  data: CallUpdateConsumeEventData;
2372
2388
  }
2389
+ /**
2390
+ * @public
2391
+ */
2392
+ export interface ChatAnalyticsAnnotationsRecordEvent {
2393
+ /**
2394
+ * A unique chat channel identifier, distinguish each chat channel across different types.
2395
+ * @public
2396
+ */
2397
+ id?: string | undefined;
2398
+ /**
2399
+ * A unique identifier that distinguishes each chat session within a channel.
2400
+ * @public
2401
+ */
2402
+ chatId?: string | undefined;
2403
+ time: number;
2404
+ company: string;
2405
+ annotations: (Annotation)[];
2406
+ type: LiveEventType;
2407
+ }
2373
2408
  /**
2374
2409
  * @public
2375
2410
  */
@@ -2606,6 +2641,7 @@ export interface ChatConsumeEventParticipants {
2606
2641
  * @enum
2607
2642
  */
2608
2643
  export declare const ChatEventType: {
2644
+ readonly ANNOTATIONS_RECORD_EVENT: "ChatAnalyticsAnnotationsRecordEvent";
2609
2645
  readonly LIVE_ANNOTATION_EVENT: "ChatAnalyticsLiveAnnotationEvent";
2610
2646
  readonly LIVE_COMPLETE_EVENT: "ChatAnalyticsLiveCompleteEvent";
2611
2647
  readonly LIVE_INTERRUPTED_EVENT: "ChatAnalyticsLiveInterruptedEvent";
@@ -2699,6 +2735,16 @@ export interface ChatUpdateConsumeEvent {
2699
2735
  time: number;
2700
2736
  data: ChatUpdateConsumeEventData;
2701
2737
  }
2738
+ /**
2739
+ * @public
2740
+ */
2741
+ export interface ConferenceAnalyticsAnnotationsRecordEvent {
2742
+ id: string;
2743
+ time: number;
2744
+ company: string;
2745
+ annotations: (Annotation)[];
2746
+ type: LiveEventType;
2747
+ }
2702
2748
  /**
2703
2749
  * @public
2704
2750
  */
@@ -2761,8 +2807,8 @@ export interface ConferenceAnalyticsLiveProgressEvent {
2761
2807
  subject: string;
2762
2808
  participants: (ConferenceParticipant)[];
2763
2809
  transcriptionStatus?: ConferenceTranscriptionStatus | undefined;
2764
- annotationsStatus?: AnnotationsStatus | undefined;
2765
2810
  transcriptionLanguage?: string | undefined;
2811
+ annotationsStatus?: AnnotationsStatus | undefined;
2766
2812
  /**
2767
2813
  * List of unique group IDs from all participants involved in the conversation
2768
2814
  * @public
@@ -2801,9 +2847,9 @@ export interface ConferenceAnalyticsRecordEvent {
2801
2847
  participants: (ConferenceAnalyticsRecordParticipant)[];
2802
2848
  recordings?: (ConferenceRecording)[] | undefined;
2803
2849
  transcriptionStatus: ConferenceTranscriptionStatus;
2804
- annotationsStatus?: AnnotationsStatus | undefined;
2805
2850
  transcriptionLanguage?: string | undefined;
2806
2851
  transcriptionSeconds?: number | undefined;
2852
+ annotationsStatus?: AnnotationsStatus | undefined;
2807
2853
  type: LiveEventType;
2808
2854
  transcriptions?: string | undefined;
2809
2855
  }
@@ -2892,6 +2938,7 @@ export interface ConferenceEndConsumeEvent {
2892
2938
  * @enum
2893
2939
  */
2894
2940
  export declare const ConferenceEventType: {
2941
+ readonly ANNOTATIONS_RECORD_EVENT: "ConferenceAnalyticsAnnotationsRecordEvent";
2895
2942
  readonly LIVE_ANNOTATION_EVENT: "ConferenceAnalyticsLiveAnnotationEvent";
2896
2943
  readonly LIVE_COMPLETE_EVENT: "ConferenceAnalyticsLiveCompleteEvent";
2897
2944
  readonly LIVE_INTERRUPTED_EVENT: "ConferenceAnalyticsLiveInterruptedEvent";
@@ -6638,34 +6685,3 @@ export interface WebhookConferenceTranscriptionCompletedEventData {
6638
6685
  conference: ConferenceRecord;
6639
6686
  chunks: (TranscriptionTextChunk)[];
6640
6687
  }
6641
- /**
6642
- * @public
6643
- */
6644
- export interface WebhookConferenceTranscriptionCompletedEvent {
6645
- id: string;
6646
- pbx?: string | undefined;
6647
- company?: string | undefined;
6648
- type: WebhookEventType;
6649
- time: number;
6650
- integrationId: string;
6651
- data: WebhookConferenceTranscriptionCompletedEventData;
6652
- }
6653
- /**
6654
- * @public
6655
- */
6656
- export interface WebhookConferenceTranscriptionTextCompletedEventData {
6657
- conference: ConferenceRecord;
6658
- transcription: string;
6659
- }
6660
- /**
6661
- * @public
6662
- */
6663
- export interface WebhookConferenceTranscriptionTextCompletedEvent {
6664
- id: string;
6665
- pbx?: string | undefined;
6666
- company?: string | undefined;
6667
- type: WebhookEventType;
6668
- time: number;
6669
- integrationId: string;
6670
- data: WebhookConferenceTranscriptionTextCompletedEventData;
6671
- }
@@ -1,7 +1,38 @@
1
1
  import { WdaStreamServiceException as __BaseException } from "./WdaStreamServiceException";
2
- import { CallAnalyticsCostRecordEvent, CallAnalyticsLiveAnnotationEvent, CallAnalyticsLiveCompleteEvent, CallAnalyticsLiveInterruptedEvent, CallAnalyticsLiveProgressEvent, CallAnalyticsLiveProgressEventFlow, CallAnalyticsLiveTranscriptionEvent, CallAnalyticsRecordEvent, CallAnalyticsTranscriptionRecordEvent, CallDevice, CallEventType, ChatAnalyticsLiveAnnotationEvent, ChatAnalyticsLiveCompleteEvent, ChatAnalyticsLiveInterruptedEvent, ChatAnalyticsLiveProgressEvent, ChatAnalyticsLiveTranscriptionEvent, ChatAnalyticsManagerMissedEvent, ChatAnalyticsRecordEvent, ChatAnalyticsTranscriptionRecordEvent, ChatEventType, ConferenceAnalyticsLiveAnnotationEvent, ConferenceAnalyticsLiveCompleteEvent, ConferenceAnalyticsLiveInterruptedEvent, ConferenceAnalyticsLiveJoinEvent, ConferenceAnalyticsLiveLeaveEvent, ConferenceAnalyticsLiveProgressEvent, ConferenceAnalyticsLiveTranscriptionEvent, ConferenceAnalyticsRecordEvent, ConferenceAnalyticsTranscriptionRecordEvent, ConferenceEventType, ConferenceParticipant, PresenceAnalyticsConferenceEvent, PresenceAnalyticsStatusEvent, PresenceAnalyticsTelephonyEvent, PresenceEventType, ServiceAnalyticsLiveCompleteEvent, ServiceAnalyticsLiveProgressEvent, ServiceCallAnalyticsLiveCompleteEvent, ServiceCallAnalyticsLiveProgressEvent, ServiceCallEventType, ServiceEventType, SmsStatusConsumeEventData, WebhookCallCompletedEvent, WebhookCallLiveAnnotationEvent, WebhookCallLiveCompletedEvent, WebhookCallLiveInterruptedEvent, WebhookCallLiveProgressEvent, WebhookCallLiveRecordPauseEvent, WebhookCallLiveRecordStartEvent, WebhookCallLiveRecordStopEvent, WebhookCallLiveRecordUnpauseEvent, WebhookCallLiveTranscriptionEvent, WebhookCallSummaryCompletedEvent, WebhookCallTranscriptionCompletedEvent, WebhookCallTranscriptionTextCompletedEvent, WebhookChatCompletedEvent, WebhookChatLiveAnnotationEvent, WebhookChatLiveCompletedEvent, WebhookChatLiveInterruptedEvent, WebhookChatLiveProgressEvent, WebhookChatManagerMissedEvent, WebhookChatSummaryCompletedEvent, WebhookConferenceCompletedEvent, WebhookConferenceLiveAnnotationEvent, WebhookConferenceLiveCompletedEvent, WebhookConferenceLiveInterruptedEvent, WebhookConferenceLiveJoinEvent, WebhookConferenceLiveLeaveEvent, WebhookConferenceLiveProgressEvent, WebhookConferenceLiveTranscriptionEvent, WebhookConferenceSummaryCompletedEvent, WebhookConferenceTranscriptionCompletedEvent, WebhookConferenceTranscriptionTextCompletedEvent, WebhookEventType, WebsocketAuthorizeAction, WebsocketSubscribeAction, WebsocketTopic, WebsocketUnsubscribeAction } from "./models_0";
2
+ import { CallAnalyticsAnnotationsRecordEvent, CallAnalyticsCostRecordEvent, CallAnalyticsLiveAnnotationEvent, CallAnalyticsLiveCompleteEvent, CallAnalyticsLiveInterruptedEvent, CallAnalyticsLiveProgressEvent, CallAnalyticsLiveProgressEventFlow, CallAnalyticsLiveTranscriptionEvent, CallAnalyticsRecordEvent, CallAnalyticsTranscriptionRecordEvent, CallDevice, CallEventType, ChatAnalyticsAnnotationsRecordEvent, ChatAnalyticsLiveAnnotationEvent, ChatAnalyticsLiveCompleteEvent, ChatAnalyticsLiveInterruptedEvent, ChatAnalyticsLiveProgressEvent, ChatAnalyticsLiveTranscriptionEvent, ChatAnalyticsManagerMissedEvent, ChatAnalyticsRecordEvent, ChatAnalyticsTranscriptionRecordEvent, ChatEventType, ConferenceAnalyticsAnnotationsRecordEvent, ConferenceAnalyticsLiveAnnotationEvent, ConferenceAnalyticsLiveCompleteEvent, ConferenceAnalyticsLiveInterruptedEvent, ConferenceAnalyticsLiveJoinEvent, ConferenceAnalyticsLiveLeaveEvent, ConferenceAnalyticsLiveProgressEvent, ConferenceAnalyticsLiveTranscriptionEvent, ConferenceAnalyticsRecordEvent, ConferenceAnalyticsTranscriptionRecordEvent, ConferenceEventType, ConferenceParticipant, ConferenceRecord, PresenceAnalyticsConferenceEvent, PresenceAnalyticsStatusEvent, PresenceAnalyticsTelephonyEvent, PresenceEventType, ServiceAnalyticsLiveCompleteEvent, ServiceAnalyticsLiveProgressEvent, ServiceCallAnalyticsLiveCompleteEvent, ServiceCallAnalyticsLiveProgressEvent, ServiceCallEventType, ServiceEventType, SmsStatusConsumeEventData, WebhookCallCompletedEvent, WebhookCallLiveAnnotationEvent, WebhookCallLiveCompletedEvent, WebhookCallLiveInterruptedEvent, WebhookCallLiveProgressEvent, WebhookCallLiveRecordPauseEvent, WebhookCallLiveRecordStartEvent, WebhookCallLiveRecordStopEvent, WebhookCallLiveRecordUnpauseEvent, WebhookCallLiveTranscriptionEvent, WebhookCallSummaryCompletedEvent, WebhookCallTranscriptionCompletedEvent, WebhookCallTranscriptionTextCompletedEvent, WebhookChatCompletedEvent, WebhookChatLiveAnnotationEvent, WebhookChatLiveCompletedEvent, WebhookChatLiveInterruptedEvent, WebhookChatLiveProgressEvent, WebhookChatManagerMissedEvent, WebhookChatSummaryCompletedEvent, WebhookConferenceCompletedEvent, WebhookConferenceLiveAnnotationEvent, WebhookConferenceLiveCompletedEvent, WebhookConferenceLiveInterruptedEvent, WebhookConferenceLiveJoinEvent, WebhookConferenceLiveLeaveEvent, WebhookConferenceLiveProgressEvent, WebhookConferenceLiveTranscriptionEvent, WebhookConferenceSummaryCompletedEvent, WebhookConferenceTranscriptionCompletedEventData, WebhookEventType, WebsocketAuthorizeAction, WebsocketSubscribeAction, WebsocketTopic, WebsocketUnsubscribeAction } from "./models_0";
3
3
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
4
4
  import { DocumentType as __DocumentType } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface WebhookConferenceTranscriptionCompletedEvent {
9
+ id: string;
10
+ pbx?: string | undefined;
11
+ company?: string | undefined;
12
+ type: WebhookEventType;
13
+ time: number;
14
+ integrationId: string;
15
+ data: WebhookConferenceTranscriptionCompletedEventData;
16
+ }
17
+ /**
18
+ * @public
19
+ */
20
+ export interface WebhookConferenceTranscriptionTextCompletedEventData {
21
+ conference: ConferenceRecord;
22
+ transcription: string;
23
+ }
24
+ /**
25
+ * @public
26
+ */
27
+ export interface WebhookConferenceTranscriptionTextCompletedEvent {
28
+ id: string;
29
+ pbx?: string | undefined;
30
+ company?: string | undefined;
31
+ type: WebhookEventType;
32
+ time: number;
33
+ integrationId: string;
34
+ data: WebhookConferenceTranscriptionTextCompletedEventData;
35
+ }
5
36
  /**
6
37
  * @public
7
38
  */
@@ -299,6 +330,7 @@ export interface DescribeEventOutput {
299
330
  CallAnalyticsLiveAnnotationEvent?: CallAnalyticsLiveAnnotationEvent | undefined;
300
331
  CallAnalyticsLiveTranscriptionEvent?: CallAnalyticsLiveTranscriptionEvent | undefined;
301
332
  CallAnalyticsRecordEvent?: CallAnalyticsRecordEvent | undefined;
333
+ CallAnalyticsAnnotationsRecordEvent?: CallAnalyticsAnnotationsRecordEvent | undefined;
302
334
  CallAnalyticsTranscriptionRecordEvent?: CallAnalyticsTranscriptionRecordEvent | undefined;
303
335
  CallAnalyticsCostRecordEvent?: CallAnalyticsCostRecordEvent | undefined;
304
336
  ChatAnalyticsLiveCompleteEvent?: ChatAnalyticsLiveCompleteEvent | undefined;
@@ -308,6 +340,7 @@ export interface DescribeEventOutput {
308
340
  ChatAnalyticsLiveTranscriptionEvent?: ChatAnalyticsLiveTranscriptionEvent | undefined;
309
341
  ChatAnalyticsManagerMissedEvent?: ChatAnalyticsManagerMissedEvent | undefined;
310
342
  ChatAnalyticsRecordEvent?: ChatAnalyticsRecordEvent | undefined;
343
+ ChatAnalyticsAnnotationsRecordEvent?: ChatAnalyticsAnnotationsRecordEvent | undefined;
311
344
  ChatAnalyticsTranscriptionRecordEvent?: ChatAnalyticsTranscriptionRecordEvent | undefined;
312
345
  ConferenceAnalyticsLiveProgressEvent?: ConferenceAnalyticsLiveProgressEvent | undefined;
313
346
  ConferenceAnalyticsLiveCompleteEvent?: ConferenceAnalyticsLiveCompleteEvent | undefined;
@@ -317,6 +350,7 @@ export interface DescribeEventOutput {
317
350
  ConferenceAnalyticsLiveJoinEvent?: ConferenceAnalyticsLiveJoinEvent | undefined;
318
351
  ConferenceAnalyticsLiveLeaveEvent?: ConferenceAnalyticsLiveLeaveEvent | undefined;
319
352
  ConferenceAnalyticsRecordEvent?: ConferenceAnalyticsRecordEvent | undefined;
353
+ ConferenceAnalyticsAnnotationsRecordEvent?: ConferenceAnalyticsAnnotationsRecordEvent | undefined;
320
354
  ConferenceAnalyticsTranscriptionRecordEvent?: ConferenceAnalyticsTranscriptionRecordEvent | undefined;
321
355
  PresenceAnalyticsStatusEvent?: PresenceAnalyticsStatusEvent | undefined;
322
356
  PresenceAnalyticsConferenceEvent?: PresenceAnalyticsConferenceEvent | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-stream-client",
3
3
  "description": "@wildix/wda-stream-client client",
4
- "version": "1.1.57",
4
+ "version": "1.1.58",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",