@wildix/wda-stream-client 1.1.60 → 1.1.62
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.
- package/dist-cjs/WdaStream.js +6 -0
- package/dist-cjs/commands/GetOngoingCallAnnotationsCommand.js +21 -0
- package/dist-cjs/commands/GetOngoingChatAnnotationsCommand.js +21 -0
- package/dist-cjs/commands/GetOngoingConferenceAnnotationsCommand.js +21 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +70 -25
- package/dist-cjs/models/models_1.js +7 -1
- package/dist-cjs/protocols/Aws_restJson1.js +396 -2
- package/dist-es/WdaStream.js +6 -0
- package/dist-es/commands/GetOngoingCallAnnotationsCommand.js +17 -0
- package/dist-es/commands/GetOngoingChatAnnotationsCommand.js +17 -0
- package/dist-es/commands/GetOngoingConferenceAnnotationsCommand.js +17 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +68 -23
- package/dist-es/models/models_1.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +391 -3
- package/dist-types/WdaStream.d.ts +21 -0
- package/dist-types/WdaStreamClient.d.ts +5 -2
- package/dist-types/commands/ConsumeEventCommand.d.ts +125 -29
- package/dist-types/commands/DescribeEventCommand.d.ts +462 -99
- package/dist-types/commands/GetOngoingCallAnnotationsCommand.d.ts +287 -0
- package/dist-types/commands/GetOngoingCallCommand.d.ts +1 -0
- package/dist-types/commands/GetOngoingCallTranscriptionCommand.d.ts +2 -2
- package/dist-types/commands/GetOngoingChatAnnotationsCommand.d.ts +190 -0
- package/dist-types/commands/GetOngoingConferenceAnnotationsCommand.d.ts +134 -0
- package/dist-types/commands/GetOngoingConferenceCommand.d.ts +2 -1
- package/dist-types/commands/GetOngoingConferenceTranscriptionCommand.d.ts +3 -2
- package/dist-types/commands/QueryConversationsCommand.d.ts +6 -3
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +729 -377
- package/dist-types/models/models_1.d.ts +387 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- 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_agent_status" || "service_call" || "service_call_complete", // required
|
|
49
49
|
* // start: "STRING_VALUE", // required
|
|
50
50
|
* // subject: "STRING_VALUE", // required
|
|
51
51
|
* // participants: [ // ConferenceParticipantsList // required
|
|
@@ -67,6 +67,7 @@ declare const GetOngoingConferenceCommand_base: {
|
|
|
67
67
|
* // ],
|
|
68
68
|
* // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
|
|
69
69
|
* // transcriptionLanguage: "STRING_VALUE",
|
|
70
|
+
* // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
|
|
70
71
|
* // participantsGroupIds: [ // ConversationParticipantsGroupList
|
|
71
72
|
* // "STRING_VALUE",
|
|
72
73
|
* // ],
|
|
@@ -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_agent_status" || "service_call" || "service_call_complete", // required
|
|
49
49
|
* // start: "STRING_VALUE", // required
|
|
50
50
|
* // subject: "STRING_VALUE", // required
|
|
51
51
|
* // participants: [ // ConferenceParticipantsList // required
|
|
@@ -67,6 +67,7 @@ declare const GetOngoingConferenceTranscriptionCommand_base: {
|
|
|
67
67
|
* // ],
|
|
68
68
|
* // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
|
|
69
69
|
* // transcriptionLanguage: "STRING_VALUE",
|
|
70
|
+
* // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
|
|
70
71
|
* // participantsGroupIds: [ // ConversationParticipantsGroupList
|
|
71
72
|
* // "STRING_VALUE",
|
|
72
73
|
* // ],
|
|
@@ -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_agent_status" || "service_call" || "service_call_complete", // required
|
|
80
81
|
* // conferenceStartTime: Number("long"), // required
|
|
81
82
|
* // transcriptionStartTime: Number("long"), // required
|
|
82
83
|
* // chunk: { // ConferenceTranscriptionChunk
|
|
@@ -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_agent_status" || "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
|
|
@@ -158,6 +158,7 @@ declare const QueryConversationsCommand_base: {
|
|
|
158
158
|
* // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
|
|
159
159
|
* // transcriptionLanguage: "STRING_VALUE",
|
|
160
160
|
* // transcriptionSeconds: Number("int"),
|
|
161
|
+
* // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
|
|
161
162
|
* // attachment: "STRING_VALUE",
|
|
162
163
|
* // attachmentType: "VOICEMAIL" || "FAX",
|
|
163
164
|
* // attachmentDestinations: [ // CallFlowAttachmentDestinationList
|
|
@@ -244,7 +245,7 @@ declare const QueryConversationsCommand_base: {
|
|
|
244
245
|
* // id: "STRING_VALUE", // required
|
|
245
246
|
* // time: Number("long"), // required
|
|
246
247
|
* // 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
|
|
248
|
+
* // 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_agent_status" || "service_call" || "service_call_complete", // required
|
|
248
249
|
* // start: "STRING_VALUE", // required
|
|
249
250
|
* // subject: "STRING_VALUE", // required
|
|
250
251
|
* // participants: [ // ConferenceParticipantsList // required
|
|
@@ -266,6 +267,7 @@ declare const QueryConversationsCommand_base: {
|
|
|
266
267
|
* // ],
|
|
267
268
|
* // transcriptionStatus: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE",
|
|
268
269
|
* // transcriptionLanguage: "STRING_VALUE",
|
|
270
|
+
* // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
|
|
269
271
|
* // participantsGroupIds: [
|
|
270
272
|
* // "STRING_VALUE",
|
|
271
273
|
* // ],
|
|
@@ -277,7 +279,7 @@ declare const QueryConversationsCommand_base: {
|
|
|
277
279
|
* // chatId: "STRING_VALUE",
|
|
278
280
|
* // time: Number("long"), // required
|
|
279
281
|
* // 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
|
|
282
|
+
* // 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_agent_status" || "service_call" || "service_call_complete", // required
|
|
281
283
|
* // start: "STRING_VALUE", // required
|
|
282
284
|
* // channelId: "STRING_VALUE", // required
|
|
283
285
|
* // channelType: "direct" || "group", // required
|
|
@@ -356,6 +358,7 @@ declare const QueryConversationsCommand_base: {
|
|
|
356
358
|
* // ],
|
|
357
359
|
* // direction: "INTERNAL" || "INBOUND" || "OUTBOUND", // required
|
|
358
360
|
* // status: "WAITFIRSTREPLY" || "WAITREPLYFROMGUEST" || "WAITREPLYFROMAGENT" || "COMPLETED" || "MISSED", // required
|
|
361
|
+
* // annotationsStatus: "AVAILABLE" || "UNAVAILABLE",
|
|
359
362
|
* // },
|
|
360
363
|
* // ],
|
|
361
364
|
* // };
|
|
@@ -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";
|