@wildix/wda-stream-client 1.1.56 → 1.1.57

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 (37) hide show
  1. package/dist-cjs/WdaStream.js +6 -0
  2. package/dist-cjs/commands/GetOngoingCallAnnotationsCommand.js +21 -0
  3. package/dist-cjs/commands/GetOngoingChatAnnotationsCommand.js +21 -0
  4. package/dist-cjs/commands/GetOngoingConferenceAnnotationsCommand.js +21 -0
  5. package/dist-cjs/commands/index.js +3 -0
  6. package/dist-cjs/models/models_0.js +64 -31
  7. package/dist-cjs/models/models_1.js +7 -1
  8. package/dist-cjs/protocols/Aws_restJson1.js +300 -3
  9. package/dist-es/WdaStream.js +6 -0
  10. package/dist-es/commands/GetOngoingCallAnnotationsCommand.js +17 -0
  11. package/dist-es/commands/GetOngoingChatAnnotationsCommand.js +17 -0
  12. package/dist-es/commands/GetOngoingConferenceAnnotationsCommand.js +17 -0
  13. package/dist-es/commands/index.js +3 -0
  14. package/dist-es/models/models_0.js +62 -29
  15. package/dist-es/models/models_1.js +6 -0
  16. package/dist-es/protocols/Aws_restJson1.js +295 -4
  17. package/dist-types/WdaStream.d.ts +21 -0
  18. package/dist-types/WdaStreamClient.d.ts +5 -2
  19. package/dist-types/commands/ConsumeEventCommand.d.ts +146 -88
  20. package/dist-types/commands/DescribeEventCommand.d.ts +303 -195
  21. package/dist-types/commands/GetOngoingCallAnnotationsCommand.d.ts +286 -0
  22. package/dist-types/commands/GetOngoingCallCommand.d.ts +1 -1
  23. package/dist-types/commands/GetOngoingCallTranscriptionCommand.d.ts +2 -2
  24. package/dist-types/commands/GetOngoingChatAnnotationsCommand.d.ts +190 -0
  25. package/dist-types/commands/GetOngoingConferenceAnnotationsCommand.d.ts +134 -0
  26. package/dist-types/commands/GetOngoingConferenceCommand.d.ts +2 -1
  27. package/dist-types/commands/GetOngoingConferenceTranscriptionCommand.d.ts +3 -2
  28. package/dist-types/commands/ListServicesCommand.d.ts +0 -1
  29. package/dist-types/commands/QueryConversationsCommand.d.ts +6 -4
  30. package/dist-types/commands/index.d.ts +3 -0
  31. package/dist-types/models/models_0.d.ts +675 -705
  32. package/dist-types/models/models_1.d.ts +254 -18
  33. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  34. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  35. package/dist-types/runtimeConfig.d.ts +1 -1
  36. package/dist-types/runtimeConfig.native.d.ts +1 -1
  37. package/package.json +1 -1
@@ -45,7 +45,7 @@ declare const GetOngoingConferenceCommand_base: {
45
45
  * // id: "STRING_VALUE", // required
46
46
  * // time: Number("long"), // required
47
47
  * // company: "STRING_VALUE", // required
48
- * // event: "chat" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_agent_status" || "service_call" || "service_call_complete", // required
48
+ * // 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
49
49
  * // start: "STRING_VALUE", // required
50
50
  * // subject: "STRING_VALUE", // required
51
51
  * // participants: [ // ConferenceParticipantsList // required
@@ -66,6 +66,7 @@ declare const GetOngoingConferenceCommand_base: {
66
66
  * // },
67
67
  * // ],
68
68
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
69
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
69
70
  * // transcriptionLanguage: "STRING_VALUE",
70
71
  * // participantsGroupIds: [ // ConversationParticipantsGroupList
71
72
  * // "STRING_VALUE",
@@ -45,7 +45,7 @@ declare const GetOngoingConferenceTranscriptionCommand_base: {
45
45
  * // id: "STRING_VALUE", // required
46
46
  * // time: Number("long"), // required
47
47
  * // company: "STRING_VALUE", // required
48
- * // event: "chat" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_agent_status" || "service_call" || "service_call_complete", // required
48
+ * // 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
49
49
  * // start: "STRING_VALUE", // required
50
50
  * // subject: "STRING_VALUE", // required
51
51
  * // participants: [ // ConferenceParticipantsList // required
@@ -66,6 +66,7 @@ declare const GetOngoingConferenceTranscriptionCommand_base: {
66
66
  * // },
67
67
  * // ],
68
68
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
69
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
69
70
  * // transcriptionLanguage: "STRING_VALUE",
70
71
  * // participantsGroupIds: [ // ConversationParticipantsGroupList
71
72
  * // "STRING_VALUE",
@@ -76,7 +77,7 @@ declare const GetOngoingConferenceTranscriptionCommand_base: {
76
77
  * // id: "STRING_VALUE", // required
77
78
  * // time: Number("long"), // required
78
79
  * // company: "STRING_VALUE", // required
79
- * // event: "chat" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_agent_status" || "service_call" || "service_call_complete", // required
80
+ * // 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
80
81
  * // conferenceStartTime: Number("long"), // required
81
82
  * // transcriptionStartTime: Number("long"), // required
82
83
  * // chunk: { // ConferenceTranscriptionChunk
@@ -50,7 +50,6 @@ declare const ListServicesCommand_base: {
50
50
  * // id: "STRING_VALUE", // required
51
51
  * // name: "STRING_VALUE", // required
52
52
  * // pbx: "STRING_VALUE",
53
- * // aclGroup: "STRING_VALUE",
54
53
  * // },
55
54
  * // ],
56
55
  * // };
@@ -56,7 +56,7 @@ declare const QueryConversationsCommand_base: {
56
56
  * // licenses: [ // LicensesList // required
57
57
  * // "x-bees" || "uc",
58
58
  * // ],
59
- * // event: "chat" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_agent_status" || "service_call" || "service_call_complete", // required
59
+ * // 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
60
60
  * // eventTrigger: "call.start" || "call.update" || "call.split" || "call.agents_start" || "call.agents_cancel" || "call.record_start" || "call.record_stop" || "call.record_pause" || "call.record_unpause" || "call.transcription" || "call.attachment", // required
61
61
  * // start: "STRING_VALUE", // required
62
62
  * // flows: [ // CallAnalyticsLiveProgressEventFlowList // required
@@ -118,10 +118,10 @@ declare const QueryConversationsCommand_base: {
118
118
  * // trunkDirection: "STRING_VALUE",
119
119
  * // queueName: "STRING_VALUE",
120
120
  * // queueId: "STRING_VALUE",
121
- * // queuePosition: Number("int"),
122
121
  * // tags: [ // CallFlowTags
123
122
  * // "STRING_VALUE",
124
123
  * // ],
124
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
125
125
  * // flags: [ // CallFlowFlags
126
126
  * // "STRING_VALUE",
127
127
  * // ],
@@ -244,7 +244,7 @@ declare const QueryConversationsCommand_base: {
244
244
  * // id: "STRING_VALUE", // required
245
245
  * // time: Number("long"), // required
246
246
  * // company: "STRING_VALUE", // required
247
- * // event: "chat" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_agent_status" || "service_call" || "service_call_complete", // required
247
+ * // 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
248
248
  * // start: "STRING_VALUE", // required
249
249
  * // subject: "STRING_VALUE", // required
250
250
  * // participants: [ // ConferenceParticipantsList // required
@@ -265,6 +265,7 @@ declare const QueryConversationsCommand_base: {
265
265
  * // },
266
266
  * // ],
267
267
  * // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
268
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
268
269
  * // transcriptionLanguage: "STRING_VALUE",
269
270
  * // participantsGroupIds: [
270
271
  * // "STRING_VALUE",
@@ -277,7 +278,7 @@ declare const QueryConversationsCommand_base: {
277
278
  * // chatId: "STRING_VALUE",
278
279
  * // time: Number("long"), // required
279
280
  * // company: "STRING_VALUE", // required
280
- * // event: "chat" || "chat_transcription" || "chat_complete" || "chat_interrupted" || "chat_missed" || "call_cost" || "call" || "call_complete" || "call_interrupted" || "call_transcription" || "conference" || "conference_complete" || "conference_interrupted" || "conference_transcription" || "conference_join" || "conference_leave" || "service" || "service_complete" || "service_agent" || "service_agent_status" || "service_call" || "service_call_complete", // required
281
+ * // 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
281
282
  * // start: "STRING_VALUE", // required
282
283
  * // channelId: "STRING_VALUE", // required
283
284
  * // channelType: "direct" || "group", // required
@@ -356,6 +357,7 @@ declare const QueryConversationsCommand_base: {
356
357
  * // ],
357
358
  * // direction: "INTERNAL" || "INBOUND" || "OUTBOUND", // required
358
359
  * // status: "WAITFIRSTREPLY" || "WAITREPLYFROMGUEST" || "WAITREPLYFROMAGENT" || "COMPLETED" || "MISSED", // required
360
+ * // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
359
361
  * // },
360
362
  * // ],
361
363
  * // };
@@ -2,8 +2,11 @@ export * from "./ConsumeEventCommand";
2
2
  export * from "./DescribeEventCommand";
3
3
  export * from "./GetConferenceIdCommand";
4
4
  export * from "./GetOngoingCallCommand";
5
+ export * from "./GetOngoingCallAnnotationsCommand";
5
6
  export * from "./GetOngoingCallTranscriptionCommand";
7
+ export * from "./GetOngoingChatAnnotationsCommand";
6
8
  export * from "./GetOngoingConferenceCommand";
9
+ export * from "./GetOngoingConferenceAnnotationsCommand";
7
10
  export * from "./GetOngoingConferenceTranscriptionCommand";
8
11
  export * from "./ListServicesCommand";
9
12
  export * from "./QueryConversationsCommand";