@aws-sdk/client-transcribe 3.95.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.
- package/CHANGELOG.md +27 -0
- package/README.md +24 -1
- package/dist-cjs/models/models_0.js +8 -2
- package/dist-cjs/protocols/Aws_json1_1.js +27 -0
- package/dist-cjs/runtimeConfig.js +2 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +28 -2
- package/dist-es/runtimeConfig.js +2 -0
- package/dist-types/Transcribe.d.ts +359 -109
- package/dist-types/TranscribeClient.d.ts +24 -1
- package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +25 -7
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +18 -5
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +10 -8
- package/dist-types/commands/CreateVocabularyCommand.d.ts +8 -5
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +9 -3
- package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +3 -2
- package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +2 -2
- package/dist-types/commands/DeleteLanguageModelCommand.d.ts +3 -2
- package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +2 -1
- package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +2 -3
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +3 -2
- package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +3 -2
- package/dist-types/commands/DescribeLanguageModelCommand.d.ts +7 -5
- package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +3 -1
- package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +11 -6
- package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +8 -4
- package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +7 -1
- package/dist-types/commands/GetTranscriptionJobCommand.d.ts +10 -5
- package/dist-types/commands/GetVocabularyCommand.d.ts +7 -1
- package/dist-types/commands/GetVocabularyFilterCommand.d.ts +7 -1
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +3 -4
- package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +4 -1
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +4 -4
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +4 -2
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +4 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -1
- package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +4 -1
- package/dist-types/commands/ListVocabulariesCommand.d.ts +4 -2
- package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +4 -1
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +48 -6
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +49 -1
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +35 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -1
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +4 -3
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +3 -4
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +2 -3
- package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +3 -1
- package/dist-types/models/models_0.d.ts +2001 -1183
- package/dist-types/ts3.4/models/models_0.d.ts +22 -1
- package/package.json +6 -6
|
@@ -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
|
|
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.
|
|
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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.100.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.100.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.80.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.94.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.78.0",
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
38
|
+
"@aws-sdk/smithy-client": "3.99.0",
|
|
39
39
|
"@aws-sdk/types": "3.78.0",
|
|
40
40
|
"@aws-sdk/url-parser": "3.78.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.99.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.99.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.78.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-node": "3.80.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|