@wildix/wda-stream-client 1.1.32 → 1.1.33

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.
@@ -261,6 +261,7 @@ const de_GetOngoingCallCommand = async (output, context) => {
261
261
  });
262
262
  const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
263
263
  const doc = (0, smithy_client_1.take)(data, {
264
+ 'company': smithy_client_1.expectString,
264
265
  'flows': smithy_client_1._json,
265
266
  'transcriptions': smithy_client_1._json,
266
267
  });
@@ -247,6 +247,7 @@ export const de_GetOngoingCallCommand = async (output, context) => {
247
247
  });
248
248
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
249
249
  const doc = take(data, {
250
+ 'company': __expectString,
250
251
  'flows': _json,
251
252
  'transcriptions': _json,
252
253
  });
@@ -41,6 +41,7 @@ declare const GetOngoingCallCommand_base: {
41
41
  * const command = new GetOngoingCallCommand(input);
42
42
  * const response = await client.send(command);
43
43
  * // { // GetOngoingCallOutput
44
+ * // company: "STRING_VALUE", // required
44
45
  * // flows: [ // CallAnalyticsLiveProgressEventFlowList // required
45
46
  * // { // CallAnalyticsLiveProgressEventFlow
46
47
  * // flowIndex: Number("int"), // required
@@ -5134,6 +5134,7 @@ export interface GetOngoingCallInput {
5134
5134
  * @public
5135
5135
  */
5136
5136
  export interface GetOngoingCallOutput {
5137
+ company: string;
5137
5138
  flows: (CallAnalyticsLiveProgressEventFlow)[];
5138
5139
  transcriptions?: (CallAnalyticsLiveTranscriptionEvent)[] | undefined;
5139
5140
  }
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.32",
4
+ "version": "1.1.33",
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",