@wildix/wda-stream-client 1.1.48 → 1.1.49
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/models/models_0.js +12 -0
- package/dist-cjs/protocols/Aws_restJson1.js +92 -5
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/protocols/Aws_restJson1.js +92 -5
- package/dist-types/commands/ConsumeEventCommand.d.ts +33 -11
- package/dist-types/commands/DescribeEventCommand.d.ts +291 -73
- package/dist-types/commands/GetConferenceIdCommand.d.ts +1 -1
- package/dist-types/commands/GetOngoingCallCommand.d.ts +2 -0
- package/dist-types/commands/GetOngoingCallTranscriptionCommand.d.ts +1 -0
- package/dist-types/commands/QueryConversationsCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +284 -154
- package/dist-types/models/models_1.d.ts +159 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ServiceInputTypes, ServiceOutputTypes, WdaStreamClientResolvedConfig } from "../WdaStreamClient";
|
|
2
|
-
import { GetConferenceIdInput, GetConferenceIdOutput } from "../models/
|
|
2
|
+
import { GetConferenceIdInput, GetConferenceIdOutput } from "../models/models_1";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
5
|
/**
|
|
@@ -230,6 +230,8 @@ declare const GetOngoingCallCommand_base: {
|
|
|
230
230
|
*
|
|
231
231
|
* @throws {@link MatchNotFoundException} (client fault)
|
|
232
232
|
*
|
|
233
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
234
|
+
*
|
|
233
235
|
* @throws {@link WdaStreamServiceException}
|
|
234
236
|
* <p>Base exception class for all service exceptions from WdaStream service.</p>
|
|
235
237
|
*
|
|
@@ -238,6 +238,7 @@ declare const GetOngoingCallTranscriptionCommand_base: {
|
|
|
238
238
|
* // isFinal: true || false, // required
|
|
239
239
|
* // start: Number("long"), // required
|
|
240
240
|
* // end: Number("long"), // required
|
|
241
|
+
* // confidence: Number("double"),
|
|
241
242
|
* // sentiment: "STRING_VALUE",
|
|
242
243
|
* // },
|
|
243
244
|
* // participant: {
|
|
@@ -57,7 +57,7 @@ declare const QueryConversationsCommand_base: {
|
|
|
57
57
|
* // "x-bees" || "uc",
|
|
58
58
|
* // ],
|
|
59
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_call" || "service_call_complete", // required
|
|
60
|
-
* // eventTrigger: "call.start" || "call.update" || "call.split" || "call.agents_start" || "call.agents_cancel" || "call.record_start" || "call.record_stop" || "call.transcription" || "call.attachment", // required
|
|
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
|
|
63
63
|
* // { // CallAnalyticsLiveProgressEventFlow
|