@wildix/wda-history-client 1.0.9 → 1.0.10

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.
@@ -224,6 +224,7 @@ const de_GetCallTranscriptionTextCommand = async (output, context) => {
224
224
  const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await parseBody(output.body, context))), "body");
225
225
  const doc = (0, smithy_client_1.take)(data, {
226
226
  'chunks': smithy_client_1._json,
227
+ 'key': smithy_client_1.expectString,
227
228
  'text': smithy_client_1.expectString,
228
229
  });
229
230
  Object.assign(contents, doc);
@@ -345,6 +346,7 @@ const de_GetConferenceTranscriptionTextCommand = async (output, context) => {
345
346
  const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await parseBody(output.body, context))), "body");
346
347
  const doc = (0, smithy_client_1.take)(data, {
347
348
  'chunks': smithy_client_1._json,
349
+ 'key': smithy_client_1.expectString,
348
350
  'text': smithy_client_1.expectString,
349
351
  });
350
352
  Object.assign(contents, doc);
@@ -213,6 +213,7 @@ export const de_GetCallTranscriptionTextCommand = async (output, context) => {
213
213
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
214
214
  const doc = take(data, {
215
215
  'chunks': _json,
216
+ 'key': __expectString,
216
217
  'text': __expectString,
217
218
  });
218
219
  Object.assign(contents, doc);
@@ -331,6 +332,7 @@ export const de_GetConferenceTranscriptionTextCommand = async (output, context)
331
332
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
332
333
  const doc = take(data, {
333
334
  'chunks': _json,
335
+ 'key': __expectString,
334
336
  'text': __expectString,
335
337
  });
336
338
  Object.assign(contents, doc);
@@ -37,6 +37,7 @@ export interface GetCallTranscriptionTextCommandOutput extends GetCallTranscript
37
37
  * const command = new GetCallTranscriptionTextCommand(input);
38
38
  * const response = await client.send(command);
39
39
  * // { // GetCallTranscriptionTextOutput
40
+ * // key: "STRING_VALUE", // required
40
41
  * // text: "STRING_VALUE", // required
41
42
  * // chunks: [ // TranscriptionTextChunkList // required
42
43
  * // { // TranscriptionTextChunk
@@ -36,6 +36,7 @@ export interface GetConferenceTranscriptionTextCommandOutput extends GetConferen
36
36
  * const command = new GetConferenceTranscriptionTextCommand(input);
37
37
  * const response = await client.send(command);
38
38
  * // { // GetConferenceTranscriptionTextOutput
39
+ * // key: "STRING_VALUE", // required
39
40
  * // text: "STRING_VALUE", // required
40
41
  * // chunks: [ // TranscriptionTextChunkList // required
41
42
  * // { // TranscriptionTextChunk
@@ -487,6 +487,11 @@ export interface TranscriptionTextChunk {
487
487
  * @public
488
488
  */
489
489
  export interface GetCallTranscriptionTextOutput {
490
+ /**
491
+ * @public
492
+ * An identifier that could be used as a file name for the transcription.
493
+ */
494
+ key: string;
490
495
  text: string;
491
496
  chunks: (TranscriptionTextChunk)[];
492
497
  }
@@ -527,6 +532,11 @@ export interface GetConferenceTranscriptionTextInput {
527
532
  * @public
528
533
  */
529
534
  export interface GetConferenceTranscriptionTextOutput {
535
+ /**
536
+ * @public
537
+ * An identifier that could be used as a file name for the transcription.
538
+ */
539
+ key: string;
530
540
  text: string;
531
541
  chunks: (TranscriptionTextChunk)[];
532
542
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-history-client",
3
3
  "description": "@wildix/wda-history-client client",
4
- "version": "1.0.9",
4
+ "version": "1.0.10",
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",