@aws-sdk/client-transcribe 3.215.0 → 3.218.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 (49) hide show
  1. package/README.md +7 -9
  2. package/dist-cjs/models/models_0.js +8 -3
  3. package/dist-cjs/protocols/Aws_json1_1.js +3 -0
  4. package/dist-es/models/models_0.js +5 -0
  5. package/dist-es/protocols/Aws_json1_1.js +3 -0
  6. package/dist-types/Transcribe.d.ts +234 -251
  7. package/dist-types/TranscribeClient.d.ts +9 -11
  8. package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +12 -22
  9. package/dist-types/commands/CreateLanguageModelCommand.d.ts +3 -4
  10. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +12 -11
  11. package/dist-types/commands/CreateVocabularyCommand.d.ts +10 -9
  12. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +9 -8
  13. package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +2 -2
  14. package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +3 -2
  15. package/dist-types/commands/DeleteLanguageModelCommand.d.ts +3 -3
  16. package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +3 -3
  17. package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +2 -2
  18. package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +3 -2
  19. package/dist-types/commands/DeleteVocabularyCommand.d.ts +3 -3
  20. package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +3 -3
  21. package/dist-types/commands/DescribeLanguageModelCommand.d.ts +3 -5
  22. package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +1 -2
  23. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +11 -10
  24. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +6 -6
  25. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +5 -6
  26. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +8 -8
  27. package/dist-types/commands/GetVocabularyCommand.d.ts +6 -6
  28. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +1 -6
  29. package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +3 -3
  30. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +3 -4
  31. package/dist-types/commands/ListLanguageModelsCommand.d.ts +3 -4
  32. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +3 -4
  33. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +3 -4
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  35. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +3 -4
  36. package/dist-types/commands/ListVocabulariesCommand.d.ts +3 -4
  37. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +1 -2
  38. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +28 -26
  39. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +20 -20
  40. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +29 -29
  41. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  42. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  43. package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +3 -2
  44. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +3 -3
  45. package/dist-types/commands/UpdateVocabularyCommand.d.ts +3 -2
  46. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +3 -3
  47. package/dist-types/models/models_0.d.ts +1349 -1305
  48. package/dist-types/ts3.4/models/models_0.d.ts +7 -0
  49. package/package.json +4 -4
@@ -159,6 +159,10 @@ export interface CallAnalyticsJobSummary {
159
159
  CallAnalyticsJobStatus?: CallAnalyticsJobStatus | string;
160
160
  FailureReason?: string;
161
161
  }
162
+ export declare enum InputType {
163
+ POST_CALL = "POST_CALL",
164
+ REAL_TIME = "REAL_TIME",
165
+ }
162
166
  export interface RelativeTimeRange {
163
167
  StartPercentage?: number;
164
168
  EndPercentage?: number;
@@ -258,6 +262,7 @@ export interface CategoryProperties {
258
262
  Rules?: Rule[];
259
263
  CreateTime?: Date;
260
264
  LastUpdateTime?: Date;
265
+ InputType?: InputType | string;
261
266
  }
262
267
  export declare enum CLMLanguageCode {
263
268
  EN_AU = "en-AU",
@@ -275,6 +280,7 @@ export declare class ConflictException extends __BaseException {
275
280
  export interface CreateCallAnalyticsCategoryRequest {
276
281
  CategoryName: string | undefined;
277
282
  Rules: Rule[] | undefined;
283
+ InputType?: InputType | string;
278
284
  }
279
285
  export interface CreateCallAnalyticsCategoryResponse {
280
286
  CategoryProperties?: CategoryProperties;
@@ -776,6 +782,7 @@ export interface UntagResourceResponse {}
776
782
  export interface UpdateCallAnalyticsCategoryRequest {
777
783
  CategoryName: string | undefined;
778
784
  Rules: Rule[] | undefined;
785
+ InputType?: InputType | string;
779
786
  }
780
787
  export interface UpdateCallAnalyticsCategoryResponse {
781
788
  CategoryProperties?: CategoryProperties;
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.215.0",
4
+ "version": "3.218.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",
@@ -19,9 +19,9 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.215.0",
22
+ "@aws-sdk/client-sts": "3.218.0",
23
23
  "@aws-sdk/config-resolver": "3.215.0",
24
- "@aws-sdk/credential-provider-node": "3.215.0",
24
+ "@aws-sdk/credential-provider-node": "3.218.0",
25
25
  "@aws-sdk/fetch-http-handler": "3.215.0",
26
26
  "@aws-sdk/hash-node": "3.215.0",
27
27
  "@aws-sdk/invalid-dependency": "3.215.0",
@@ -46,7 +46,7 @@
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
47
  "@aws-sdk/util-defaults-mode-browser": "3.215.0",
48
48
  "@aws-sdk/util-defaults-mode-node": "3.215.0",
49
- "@aws-sdk/util-endpoints": "3.215.0",
49
+ "@aws-sdk/util-endpoints": "3.216.0",
50
50
  "@aws-sdk/util-user-agent-browser": "3.215.0",
51
51
  "@aws-sdk/util-user-agent-node": "3.215.0",
52
52
  "@aws-sdk/util-utf8-browser": "3.188.0",