@aws-sdk/client-transcribe 3.458.0 → 3.460.0

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.
Files changed (46) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/Transcribe.js +8 -0
  3. package/dist-cjs/commands/DeleteMedicalScribeJobCommand.js +51 -0
  4. package/dist-cjs/commands/GetMedicalScribeJobCommand.js +51 -0
  5. package/dist-cjs/commands/ListMedicalScribeJobsCommand.js +51 -0
  6. package/dist-cjs/commands/StartMedicalScribeJobCommand.js +51 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +14 -1
  9. package/dist-cjs/pagination/ListMedicalScribeJobsPaginator.js +29 -0
  10. package/dist-cjs/pagination/index.js +1 -0
  11. package/dist-cjs/protocols/Aws_json1_1.js +242 -2
  12. package/dist-es/Transcribe.js +8 -0
  13. package/dist-es/commands/DeleteMedicalScribeJobCommand.js +47 -0
  14. package/dist-es/commands/GetMedicalScribeJobCommand.js +47 -0
  15. package/dist-es/commands/ListMedicalScribeJobsCommand.js +47 -0
  16. package/dist-es/commands/StartMedicalScribeJobCommand.js +47 -0
  17. package/dist-es/commands/index.js +4 -0
  18. package/dist-es/models/models_0.js +13 -0
  19. package/dist-es/pagination/ListMedicalScribeJobsPaginator.js +25 -0
  20. package/dist-es/pagination/index.js +1 -0
  21. package/dist-es/protocols/Aws_json1_1.js +232 -0
  22. package/dist-types/Transcribe.d.ts +28 -0
  23. package/dist-types/TranscribeClient.d.ts +6 -2
  24. package/dist-types/commands/DeleteMedicalScribeJobCommand.d.ts +87 -0
  25. package/dist-types/commands/GetMedicalScribeJobCommand.d.ts +135 -0
  26. package/dist-types/commands/ListMedicalScribeJobsCommand.d.ts +104 -0
  27. package/dist-types/commands/StartMedicalScribeJobCommand.d.ts +203 -0
  28. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +1 -1
  29. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +1 -1
  30. package/dist-types/commands/index.d.ts +4 -0
  31. package/dist-types/models/models_0.d.ts +623 -77
  32. package/dist-types/pagination/ListMedicalScribeJobsPaginator.d.ts +7 -0
  33. package/dist-types/pagination/index.d.ts +1 -0
  34. package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
  35. package/dist-types/ts3.4/Transcribe.d.ts +68 -0
  36. package/dist-types/ts3.4/TranscribeClient.d.ts +24 -0
  37. package/dist-types/ts3.4/commands/DeleteMedicalScribeJobCommand.d.ts +37 -0
  38. package/dist-types/ts3.4/commands/GetMedicalScribeJobCommand.d.ts +39 -0
  39. package/dist-types/ts3.4/commands/ListMedicalScribeJobsCommand.d.ts +42 -0
  40. package/dist-types/ts3.4/commands/StartMedicalScribeJobCommand.d.ts +42 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +93 -0
  43. package/dist-types/ts3.4/pagination/ListMedicalScribeJobsPaginator.d.ts +11 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  45. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
  46. package/package.json +12 -12
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListMedicalScribeJobsCommandInput,
4
+ ListMedicalScribeJobsCommandOutput,
5
+ } from "../commands/ListMedicalScribeJobsCommand";
6
+ import { TranscribePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListMedicalScribeJobs(
8
+ config: TranscribePaginationConfiguration,
9
+ input: ListMedicalScribeJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListMedicalScribeJobsCommandOutput>;
@@ -2,6 +2,7 @@ export * from "./Interfaces";
2
2
  export * from "./ListCallAnalyticsCategoriesPaginator";
3
3
  export * from "./ListCallAnalyticsJobsPaginator";
4
4
  export * from "./ListLanguageModelsPaginator";
5
+ export * from "./ListMedicalScribeJobsPaginator";
5
6
  export * from "./ListMedicalTranscriptionJobsPaginator";
6
7
  export * from "./ListMedicalVocabulariesPaginator";
7
8
  export * from "./ListTranscriptionJobsPaginator";
@@ -35,6 +35,10 @@ import {
35
35
  DeleteLanguageModelCommandInput,
36
36
  DeleteLanguageModelCommandOutput,
37
37
  } from "../commands/DeleteLanguageModelCommand";
38
+ import {
39
+ DeleteMedicalScribeJobCommandInput,
40
+ DeleteMedicalScribeJobCommandOutput,
41
+ } from "../commands/DeleteMedicalScribeJobCommand";
38
42
  import {
39
43
  DeleteMedicalTranscriptionJobCommandInput,
40
44
  DeleteMedicalTranscriptionJobCommandOutput,
@@ -67,6 +71,10 @@ import {
67
71
  GetCallAnalyticsJobCommandInput,
68
72
  GetCallAnalyticsJobCommandOutput,
69
73
  } from "../commands/GetCallAnalyticsJobCommand";
74
+ import {
75
+ GetMedicalScribeJobCommandInput,
76
+ GetMedicalScribeJobCommandOutput,
77
+ } from "../commands/GetMedicalScribeJobCommand";
70
78
  import {
71
79
  GetMedicalTranscriptionJobCommandInput,
72
80
  GetMedicalTranscriptionJobCommandOutput,
@@ -99,6 +107,10 @@ import {
99
107
  ListLanguageModelsCommandInput,
100
108
  ListLanguageModelsCommandOutput,
101
109
  } from "../commands/ListLanguageModelsCommand";
110
+ import {
111
+ ListMedicalScribeJobsCommandInput,
112
+ ListMedicalScribeJobsCommandOutput,
113
+ } from "../commands/ListMedicalScribeJobsCommand";
102
114
  import {
103
115
  ListMedicalTranscriptionJobsCommandInput,
104
116
  ListMedicalTranscriptionJobsCommandOutput,
@@ -127,6 +139,10 @@ import {
127
139
  StartCallAnalyticsJobCommandInput,
128
140
  StartCallAnalyticsJobCommandOutput,
129
141
  } from "../commands/StartCallAnalyticsJobCommand";
142
+ import {
143
+ StartMedicalScribeJobCommandInput,
144
+ StartMedicalScribeJobCommandOutput,
145
+ } from "../commands/StartMedicalScribeJobCommand";
130
146
  import {
131
147
  StartMedicalTranscriptionJobCommandInput,
132
148
  StartMedicalTranscriptionJobCommandOutput,
@@ -191,6 +207,10 @@ export declare const se_DeleteLanguageModelCommand: (
191
207
  input: DeleteLanguageModelCommandInput,
192
208
  context: __SerdeContext
193
209
  ) => Promise<__HttpRequest>;
210
+ export declare const se_DeleteMedicalScribeJobCommand: (
211
+ input: DeleteMedicalScribeJobCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
194
214
  export declare const se_DeleteMedicalTranscriptionJobCommand: (
195
215
  input: DeleteMedicalTranscriptionJobCommandInput,
196
216
  context: __SerdeContext
@@ -223,6 +243,10 @@ export declare const se_GetCallAnalyticsJobCommand: (
223
243
  input: GetCallAnalyticsJobCommandInput,
224
244
  context: __SerdeContext
225
245
  ) => Promise<__HttpRequest>;
246
+ export declare const se_GetMedicalScribeJobCommand: (
247
+ input: GetMedicalScribeJobCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
226
250
  export declare const se_GetMedicalTranscriptionJobCommand: (
227
251
  input: GetMedicalTranscriptionJobCommandInput,
228
252
  context: __SerdeContext
@@ -255,6 +279,10 @@ export declare const se_ListLanguageModelsCommand: (
255
279
  input: ListLanguageModelsCommandInput,
256
280
  context: __SerdeContext
257
281
  ) => Promise<__HttpRequest>;
282
+ export declare const se_ListMedicalScribeJobsCommand: (
283
+ input: ListMedicalScribeJobsCommandInput,
284
+ context: __SerdeContext
285
+ ) => Promise<__HttpRequest>;
258
286
  export declare const se_ListMedicalTranscriptionJobsCommand: (
259
287
  input: ListMedicalTranscriptionJobsCommandInput,
260
288
  context: __SerdeContext
@@ -283,6 +311,10 @@ export declare const se_StartCallAnalyticsJobCommand: (
283
311
  input: StartCallAnalyticsJobCommandInput,
284
312
  context: __SerdeContext
285
313
  ) => Promise<__HttpRequest>;
314
+ export declare const se_StartMedicalScribeJobCommand: (
315
+ input: StartMedicalScribeJobCommandInput,
316
+ context: __SerdeContext
317
+ ) => Promise<__HttpRequest>;
286
318
  export declare const se_StartMedicalTranscriptionJobCommand: (
287
319
  input: StartMedicalTranscriptionJobCommandInput,
288
320
  context: __SerdeContext
@@ -347,6 +379,10 @@ export declare const de_DeleteLanguageModelCommand: (
347
379
  output: __HttpResponse,
348
380
  context: __SerdeContext
349
381
  ) => Promise<DeleteLanguageModelCommandOutput>;
382
+ export declare const de_DeleteMedicalScribeJobCommand: (
383
+ output: __HttpResponse,
384
+ context: __SerdeContext
385
+ ) => Promise<DeleteMedicalScribeJobCommandOutput>;
350
386
  export declare const de_DeleteMedicalTranscriptionJobCommand: (
351
387
  output: __HttpResponse,
352
388
  context: __SerdeContext
@@ -379,6 +415,10 @@ export declare const de_GetCallAnalyticsJobCommand: (
379
415
  output: __HttpResponse,
380
416
  context: __SerdeContext
381
417
  ) => Promise<GetCallAnalyticsJobCommandOutput>;
418
+ export declare const de_GetMedicalScribeJobCommand: (
419
+ output: __HttpResponse,
420
+ context: __SerdeContext
421
+ ) => Promise<GetMedicalScribeJobCommandOutput>;
382
422
  export declare const de_GetMedicalTranscriptionJobCommand: (
383
423
  output: __HttpResponse,
384
424
  context: __SerdeContext
@@ -411,6 +451,10 @@ export declare const de_ListLanguageModelsCommand: (
411
451
  output: __HttpResponse,
412
452
  context: __SerdeContext
413
453
  ) => Promise<ListLanguageModelsCommandOutput>;
454
+ export declare const de_ListMedicalScribeJobsCommand: (
455
+ output: __HttpResponse,
456
+ context: __SerdeContext
457
+ ) => Promise<ListMedicalScribeJobsCommandOutput>;
414
458
  export declare const de_ListMedicalTranscriptionJobsCommand: (
415
459
  output: __HttpResponse,
416
460
  context: __SerdeContext
@@ -439,6 +483,10 @@ export declare const de_StartCallAnalyticsJobCommand: (
439
483
  output: __HttpResponse,
440
484
  context: __SerdeContext
441
485
  ) => Promise<StartCallAnalyticsJobCommandOutput>;
486
+ export declare const de_StartMedicalScribeJobCommand: (
487
+ output: __HttpResponse,
488
+ context: __SerdeContext
489
+ ) => Promise<StartMedicalScribeJobCommandOutput>;
442
490
  export declare const de_StartMedicalTranscriptionJobCommand: (
443
491
  output: __HttpResponse,
444
492
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transcribe",
3
3
  "description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native",
4
- "version": "3.458.0",
4
+ "version": "3.460.0",
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",
@@ -21,19 +21,19 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.458.0",
24
+ "@aws-sdk/client-sts": "3.460.0",
25
25
  "@aws-sdk/core": "3.451.0",
26
- "@aws-sdk/credential-provider-node": "3.458.0",
27
- "@aws-sdk/middleware-host-header": "3.451.0",
28
- "@aws-sdk/middleware-logger": "3.451.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.451.0",
30
- "@aws-sdk/middleware-signing": "3.451.0",
31
- "@aws-sdk/middleware-user-agent": "3.451.0",
26
+ "@aws-sdk/credential-provider-node": "3.460.0",
27
+ "@aws-sdk/middleware-host-header": "3.460.0",
28
+ "@aws-sdk/middleware-logger": "3.460.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.460.0",
30
+ "@aws-sdk/middleware-signing": "3.460.0",
31
+ "@aws-sdk/middleware-user-agent": "3.460.0",
32
32
  "@aws-sdk/region-config-resolver": "3.451.0",
33
- "@aws-sdk/types": "3.451.0",
34
- "@aws-sdk/util-endpoints": "3.451.0",
35
- "@aws-sdk/util-user-agent-browser": "3.451.0",
36
- "@aws-sdk/util-user-agent-node": "3.451.0",
33
+ "@aws-sdk/types": "3.460.0",
34
+ "@aws-sdk/util-endpoints": "3.460.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.460.0",
36
+ "@aws-sdk/util-user-agent-node": "3.460.0",
37
37
  "@smithy/config-resolver": "^2.0.18",
38
38
  "@smithy/fetch-http-handler": "^2.2.6",
39
39
  "@smithy/hash-node": "^2.0.15",