@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.
- package/README.md +7 -9
- package/dist-cjs/models/models_0.js +8 -3
- package/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +3 -0
- package/dist-types/Transcribe.d.ts +234 -251
- package/dist-types/TranscribeClient.d.ts +9 -11
- package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +12 -22
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +3 -4
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +12 -11
- package/dist-types/commands/CreateVocabularyCommand.d.ts +10 -9
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +9 -8
- package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +2 -2
- package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +3 -2
- package/dist-types/commands/DeleteLanguageModelCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +2 -2
- package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +3 -2
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +3 -3
- package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +3 -3
- package/dist-types/commands/DescribeLanguageModelCommand.d.ts +3 -5
- package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +1 -2
- package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +11 -10
- package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +6 -6
- package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +5 -6
- package/dist-types/commands/GetTranscriptionJobCommand.d.ts +8 -8
- package/dist-types/commands/GetVocabularyCommand.d.ts +6 -6
- package/dist-types/commands/GetVocabularyFilterCommand.d.ts +1 -6
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +3 -3
- package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +3 -4
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +3 -4
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +3 -4
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +3 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +3 -4
- package/dist-types/commands/ListVocabulariesCommand.d.ts +3 -4
- package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +1 -2
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +28 -26
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +20 -20
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +29 -29
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +3 -2
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +3 -3
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +3 -2
- package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +1349 -1305
- package/dist-types/ts3.4/models/models_0.d.ts +7 -0
- 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.
|
|
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.
|
|
22
|
+
"@aws-sdk/client-sts": "3.218.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.215.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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.
|
|
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",
|