@wildix/wda-insights-client 1.0.6 → 1.0.7
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/protocols/Aws_restJson1.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/GetCallSummaryCommand.d.ts +8 -0
- package/dist-types/commands/GetConferenceSummaryCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +11 -0
- package/package.json +1 -1
|
@@ -176,6 +176,7 @@ const de_GetCallSummaryCommand = async (output, context) => {
|
|
|
176
176
|
});
|
|
177
177
|
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await parseBody(output.body, context))), "body");
|
|
178
178
|
const doc = (0, smithy_client_1.take)(data, {
|
|
179
|
+
'choices': smithy_client_1._json,
|
|
179
180
|
'status': smithy_client_1.expectString,
|
|
180
181
|
'summary': smithy_client_1._json,
|
|
181
182
|
});
|
|
@@ -217,6 +218,7 @@ const de_GetConferenceSummaryCommand = async (output, context) => {
|
|
|
217
218
|
});
|
|
218
219
|
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await parseBody(output.body, context))), "body");
|
|
219
220
|
const doc = (0, smithy_client_1.take)(data, {
|
|
221
|
+
'choices': smithy_client_1._json,
|
|
220
222
|
'status': smithy_client_1.expectString,
|
|
221
223
|
'summary': smithy_client_1._json,
|
|
222
224
|
});
|
|
@@ -166,6 +166,7 @@ export const de_GetCallSummaryCommand = async (output, context) => {
|
|
|
166
166
|
});
|
|
167
167
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
168
168
|
const doc = take(data, {
|
|
169
|
+
'choices': _json,
|
|
169
170
|
'status': __expectString,
|
|
170
171
|
'summary': _json,
|
|
171
172
|
});
|
|
@@ -206,6 +207,7 @@ export const de_GetConferenceSummaryCommand = async (output, context) => {
|
|
|
206
207
|
});
|
|
207
208
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
208
209
|
const doc = take(data, {
|
|
210
|
+
'choices': _json,
|
|
209
211
|
'status': __expectString,
|
|
210
212
|
'summary': _json,
|
|
211
213
|
});
|
|
@@ -51,6 +51,14 @@ export interface GetCallSummaryCommandOutput extends GetCallSummaryOutput, __Met
|
|
|
51
51
|
* // instance: "STRING_VALUE", // required
|
|
52
52
|
* // quality: "RECOMMENDED" || "MAX", // required
|
|
53
53
|
* // },
|
|
54
|
+
* // choices: [ // InsightsSummaryChoices
|
|
55
|
+
* // { // InsightsSummaryChoice
|
|
56
|
+
* // locale: "STRING_VALUE", // required
|
|
57
|
+
* // template: "STRING_VALUE", // required
|
|
58
|
+
* // instance: "STRING_VALUE", // required
|
|
59
|
+
* // quality: "RECOMMENDED" || "MAX", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
54
62
|
* // };
|
|
55
63
|
*
|
|
56
64
|
* ```
|
|
@@ -50,6 +50,14 @@ export interface GetConferenceSummaryCommandOutput extends GetConferenceSummaryO
|
|
|
50
50
|
* // instance: "STRING_VALUE", // required
|
|
51
51
|
* // quality: "RECOMMENDED" || "MAX", // required
|
|
52
52
|
* // },
|
|
53
|
+
* // choices: [ // InsightsSummaryChoices
|
|
54
|
+
* // { // InsightsSummaryChoice
|
|
55
|
+
* // locale: "STRING_VALUE", // required
|
|
56
|
+
* // template: "STRING_VALUE", // required
|
|
57
|
+
* // instance: "STRING_VALUE", // required
|
|
58
|
+
* // quality: "RECOMMENDED" || "MAX", // required
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
53
61
|
* // };
|
|
54
62
|
*
|
|
55
63
|
* ```
|
|
@@ -374,6 +374,15 @@ export interface GetCallSummaryInput {
|
|
|
374
374
|
instance?: string;
|
|
375
375
|
quality?: InsightsQuality | string;
|
|
376
376
|
}
|
|
377
|
+
/**
|
|
378
|
+
* @public
|
|
379
|
+
*/
|
|
380
|
+
export interface InsightsSummaryChoice {
|
|
381
|
+
locale: string;
|
|
382
|
+
template: string;
|
|
383
|
+
instance: string;
|
|
384
|
+
quality: InsightsQuality | string;
|
|
385
|
+
}
|
|
377
386
|
/**
|
|
378
387
|
* @public
|
|
379
388
|
* @enum
|
|
@@ -408,6 +417,7 @@ export interface TranscriptionSummary {
|
|
|
408
417
|
export interface GetCallSummaryOutput {
|
|
409
418
|
status: InsightsStatus | string;
|
|
410
419
|
summary?: TranscriptionSummary;
|
|
420
|
+
choices?: (InsightsSummaryChoice)[];
|
|
411
421
|
}
|
|
412
422
|
/**
|
|
413
423
|
* @public
|
|
@@ -426,6 +436,7 @@ export interface GetConferenceSummaryInput {
|
|
|
426
436
|
export interface GetConferenceSummaryOutput {
|
|
427
437
|
status: InsightsStatus | string;
|
|
428
438
|
summary?: TranscriptionSummary;
|
|
439
|
+
choices?: (InsightsSummaryChoice)[];
|
|
429
440
|
}
|
|
430
441
|
/**
|
|
431
442
|
* @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-insights-client",
|
|
3
3
|
"description": "@wildix/wda-insights-client client",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.7",
|
|
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",
|