@aws-sdk/client-transcribe 3.100.0 → 3.102.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 (50) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +24 -1
  3. package/dist-cjs/models/models_0.js +8 -2
  4. package/dist-cjs/protocols/Aws_json1_1.js +27 -0
  5. package/dist-es/models/models_0.js +4 -0
  6. package/dist-es/protocols/Aws_json1_1.js +28 -2
  7. package/dist-types/Transcribe.d.ts +359 -109
  8. package/dist-types/TranscribeClient.d.ts +24 -1
  9. package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +25 -7
  10. package/dist-types/commands/CreateLanguageModelCommand.d.ts +18 -5
  11. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +10 -8
  12. package/dist-types/commands/CreateVocabularyCommand.d.ts +8 -5
  13. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +9 -3
  14. package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +3 -2
  15. package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +2 -2
  16. package/dist-types/commands/DeleteLanguageModelCommand.d.ts +3 -2
  17. package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +3 -3
  18. package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +2 -1
  19. package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +2 -3
  20. package/dist-types/commands/DeleteVocabularyCommand.d.ts +3 -2
  21. package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +3 -2
  22. package/dist-types/commands/DescribeLanguageModelCommand.d.ts +7 -5
  23. package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +3 -1
  24. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +11 -6
  25. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +8 -4
  26. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +7 -1
  27. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +10 -5
  28. package/dist-types/commands/GetVocabularyCommand.d.ts +7 -1
  29. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +7 -1
  30. package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +3 -4
  31. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +4 -1
  32. package/dist-types/commands/ListLanguageModelsCommand.d.ts +4 -4
  33. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +4 -2
  34. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +4 -2
  35. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -1
  36. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +4 -1
  37. package/dist-types/commands/ListVocabulariesCommand.d.ts +4 -2
  38. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +4 -1
  39. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +48 -6
  40. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +49 -1
  41. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +35 -1
  42. package/dist-types/commands/TagResourceCommand.d.ts +3 -1
  43. package/dist-types/commands/UntagResourceCommand.d.ts +3 -1
  44. package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +4 -3
  45. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +3 -4
  46. package/dist-types/commands/UpdateVocabularyCommand.d.ts +2 -3
  47. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +3 -1
  48. package/dist-types/models/models_0.d.ts +2001 -1183
  49. package/dist-types/ts3.4/models/models_0.d.ts +22 -1
  50. package/package.json +1 -1
@@ -924,6 +924,17 @@ export declare namespace JobExecutionSettings {
924
924
  const filterSensitiveLog: (obj: JobExecutionSettings) => any;
925
925
  }
926
926
 
927
+ export interface LanguageCodeItem {
928
+
929
+ LanguageCode?: LanguageCode | string;
930
+
931
+ DurationInSeconds?: number;
932
+ }
933
+ export declare namespace LanguageCodeItem {
934
+
935
+ const filterSensitiveLog: (obj: LanguageCodeItem) => any;
936
+ }
937
+
927
938
  export interface ModelSettings {
928
939
 
929
940
  LanguageModelName?: string;
@@ -1007,10 +1018,14 @@ export interface TranscriptionJob {
1007
1018
 
1008
1019
  IdentifyLanguage?: boolean;
1009
1020
 
1021
+ IdentifyMultipleLanguages?: boolean;
1022
+
1010
1023
  LanguageOptions?: (LanguageCode | string)[];
1011
1024
 
1012
1025
  IdentifiedLanguageScore?: number;
1013
1026
 
1027
+ LanguageCodes?: LanguageCodeItem[];
1028
+
1014
1029
  Tags?: Tag[];
1015
1030
 
1016
1031
  Subtitles?: SubtitlesOutput;
@@ -1306,7 +1321,11 @@ export interface TranscriptionJobSummary {
1306
1321
 
1307
1322
  IdentifyLanguage?: boolean;
1308
1323
 
1324
+ IdentifyMultipleLanguages?: boolean;
1325
+
1309
1326
  IdentifiedLanguageScore?: number;
1327
+
1328
+ LanguageCodes?: LanguageCodeItem[];
1310
1329
  }
1311
1330
  export declare namespace TranscriptionJobSummary {
1312
1331
 
@@ -1395,7 +1414,7 @@ export interface StartCallAnalyticsJobRequest {
1395
1414
 
1396
1415
  OutputEncryptionKMSKeyId?: string;
1397
1416
 
1398
- DataAccessRoleArn: string | undefined;
1417
+ DataAccessRoleArn?: string;
1399
1418
 
1400
1419
  Settings?: CallAnalyticsJobSettings;
1401
1420
 
@@ -1500,6 +1519,8 @@ export interface StartTranscriptionJobRequest {
1500
1519
 
1501
1520
  IdentifyLanguage?: boolean;
1502
1521
 
1522
+ IdentifyMultipleLanguages?: boolean;
1523
+
1503
1524
  LanguageOptions?: (LanguageCode | string)[];
1504
1525
 
1505
1526
  Subtitles?: Subtitles;
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.100.0",
4
+ "version": "3.102.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",