@wildix/wda-history-client 1.0.10 → 1.0.11

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,7 +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
+ 'filename': smithy_client_1.expectString,
228
228
  'text': smithy_client_1.expectString,
229
229
  });
230
230
  Object.assign(contents, doc);
@@ -346,7 +346,7 @@ const de_GetConferenceTranscriptionTextCommand = async (output, context) => {
346
346
  const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await parseBody(output.body, context))), "body");
347
347
  const doc = (0, smithy_client_1.take)(data, {
348
348
  'chunks': smithy_client_1._json,
349
- 'key': smithy_client_1.expectString,
349
+ 'filename': smithy_client_1.expectString,
350
350
  'text': smithy_client_1.expectString,
351
351
  });
352
352
  Object.assign(contents, doc);
@@ -213,7 +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
+ 'filename': __expectString,
217
217
  'text': __expectString,
218
218
  });
219
219
  Object.assign(contents, doc);
@@ -332,7 +332,7 @@ export const de_GetConferenceTranscriptionTextCommand = async (output, context)
332
332
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
333
333
  const doc = take(data, {
334
334
  'chunks': _json,
335
- 'key': __expectString,
335
+ 'filename': __expectString,
336
336
  'text': __expectString,
337
337
  });
338
338
  Object.assign(contents, doc);
@@ -37,7 +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
+ * // filename: "STRING_VALUE", // required
41
41
  * // text: "STRING_VALUE", // required
42
42
  * // chunks: [ // TranscriptionTextChunkList // required
43
43
  * // { // TranscriptionTextChunk
@@ -36,7 +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
+ * // filename: "STRING_VALUE", // required
40
40
  * // text: "STRING_VALUE", // required
41
41
  * // chunks: [ // TranscriptionTextChunkList // required
42
42
  * // { // TranscriptionTextChunk
@@ -487,11 +487,7 @@ 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
+ filename: string;
495
491
  text: string;
496
492
  chunks: (TranscriptionTextChunk)[];
497
493
  }
@@ -532,11 +528,7 @@ export interface GetConferenceTranscriptionTextInput {
532
528
  * @public
533
529
  */
534
530
  export interface GetConferenceTranscriptionTextOutput {
535
- /**
536
- * @public
537
- * An identifier that could be used as a file name for the transcription.
538
- */
539
- key: string;
531
+ filename: string;
540
532
  text: string;
541
533
  chunks: (TranscriptionTextChunk)[];
542
534
  }
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.10",
4
+ "version": "1.0.11",
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",