@aws-sdk/client-transcribe 3.427.0 → 3.429.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/dist-cjs/models/models_0.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +1 -1
- package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/GetTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +1 -1
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +2 -2
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +97 -96
- package/dist-types/ts3.4/models/models_0.d.ts +97 -96
- package/package.json +31 -31
|
@@ -35,7 +35,7 @@ export type ParticipantRole =
|
|
|
35
35
|
(typeof ParticipantRole)[keyof typeof ParticipantRole];
|
|
36
36
|
export interface ChannelDefinition {
|
|
37
37
|
ChannelId?: number;
|
|
38
|
-
ParticipantRole?: ParticipantRole
|
|
38
|
+
ParticipantRole?: ParticipantRole;
|
|
39
39
|
}
|
|
40
40
|
export declare const LanguageCode: {
|
|
41
41
|
readonly AF_ZA: "af-ZA";
|
|
@@ -86,6 +86,7 @@ export interface Media {
|
|
|
86
86
|
export declare const MediaFormat: {
|
|
87
87
|
readonly AMR: "amr";
|
|
88
88
|
readonly FLAC: "flac";
|
|
89
|
+
readonly M4A: "m4a";
|
|
89
90
|
readonly MP3: "mp3";
|
|
90
91
|
readonly MP4: "mp4";
|
|
91
92
|
readonly OGG: "ogg";
|
|
@@ -119,9 +120,9 @@ export declare const RedactionType: {
|
|
|
119
120
|
};
|
|
120
121
|
export type RedactionType = (typeof RedactionType)[keyof typeof RedactionType];
|
|
121
122
|
export interface ContentRedaction {
|
|
122
|
-
RedactionType: RedactionType |
|
|
123
|
-
RedactionOutput: RedactionOutput |
|
|
124
|
-
PiiEntityTypes?:
|
|
123
|
+
RedactionType: RedactionType | undefined;
|
|
124
|
+
RedactionOutput: RedactionOutput | undefined;
|
|
125
|
+
PiiEntityTypes?: PiiEntityType[];
|
|
125
126
|
}
|
|
126
127
|
export interface LanguageIdSettings {
|
|
127
128
|
VocabularyName?: string;
|
|
@@ -138,11 +139,11 @@ export type VocabularyFilterMethod =
|
|
|
138
139
|
export interface CallAnalyticsJobSettings {
|
|
139
140
|
VocabularyName?: string;
|
|
140
141
|
VocabularyFilterName?: string;
|
|
141
|
-
VocabularyFilterMethod?: VocabularyFilterMethod
|
|
142
|
+
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
142
143
|
LanguageModelName?: string;
|
|
143
144
|
ContentRedaction?: ContentRedaction;
|
|
144
|
-
LanguageOptions?:
|
|
145
|
-
LanguageIdSettings?: Record<
|
|
145
|
+
LanguageOptions?: LanguageCode[];
|
|
146
|
+
LanguageIdSettings?: Record<LanguageCode, LanguageIdSettings>;
|
|
146
147
|
}
|
|
147
148
|
export interface Transcript {
|
|
148
149
|
TranscriptFileUri?: string;
|
|
@@ -150,10 +151,10 @@ export interface Transcript {
|
|
|
150
151
|
}
|
|
151
152
|
export interface CallAnalyticsJob {
|
|
152
153
|
CallAnalyticsJobName?: string;
|
|
153
|
-
CallAnalyticsJobStatus?: CallAnalyticsJobStatus
|
|
154
|
-
LanguageCode?: LanguageCode
|
|
154
|
+
CallAnalyticsJobStatus?: CallAnalyticsJobStatus;
|
|
155
|
+
LanguageCode?: LanguageCode;
|
|
155
156
|
MediaSampleRateHertz?: number;
|
|
156
|
-
MediaFormat?: MediaFormat
|
|
157
|
+
MediaFormat?: MediaFormat;
|
|
157
158
|
Media?: Media;
|
|
158
159
|
Transcript?: Transcript;
|
|
159
160
|
StartTime?: Date;
|
|
@@ -170,8 +171,8 @@ export interface CallAnalyticsJobSummary {
|
|
|
170
171
|
CreationTime?: Date;
|
|
171
172
|
StartTime?: Date;
|
|
172
173
|
CompletionTime?: Date;
|
|
173
|
-
LanguageCode?: LanguageCode
|
|
174
|
-
CallAnalyticsJobStatus?: CallAnalyticsJobStatus
|
|
174
|
+
LanguageCode?: LanguageCode;
|
|
175
|
+
CallAnalyticsJobStatus?: CallAnalyticsJobStatus;
|
|
175
176
|
FailureReason?: string;
|
|
176
177
|
}
|
|
177
178
|
export declare const InputType: {
|
|
@@ -187,7 +188,7 @@ export interface RelativeTimeRange {
|
|
|
187
188
|
}
|
|
188
189
|
export interface InterruptionFilter {
|
|
189
190
|
Threshold?: number;
|
|
190
|
-
ParticipantRole?: ParticipantRole
|
|
191
|
+
ParticipantRole?: ParticipantRole;
|
|
191
192
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
192
193
|
RelativeTimeRange?: RelativeTimeRange;
|
|
193
194
|
Negate?: boolean;
|
|
@@ -207,10 +208,10 @@ export declare const SentimentValue: {
|
|
|
207
208
|
export type SentimentValue =
|
|
208
209
|
(typeof SentimentValue)[keyof typeof SentimentValue];
|
|
209
210
|
export interface SentimentFilter {
|
|
210
|
-
Sentiments:
|
|
211
|
+
Sentiments: SentimentValue[] | undefined;
|
|
211
212
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
212
213
|
RelativeTimeRange?: RelativeTimeRange;
|
|
213
|
-
ParticipantRole?: ParticipantRole
|
|
214
|
+
ParticipantRole?: ParticipantRole;
|
|
214
215
|
Negate?: boolean;
|
|
215
216
|
}
|
|
216
217
|
export declare const TranscriptFilterType: {
|
|
@@ -219,10 +220,10 @@ export declare const TranscriptFilterType: {
|
|
|
219
220
|
export type TranscriptFilterType =
|
|
220
221
|
(typeof TranscriptFilterType)[keyof typeof TranscriptFilterType];
|
|
221
222
|
export interface TranscriptFilter {
|
|
222
|
-
TranscriptFilterType: TranscriptFilterType |
|
|
223
|
+
TranscriptFilterType: TranscriptFilterType | undefined;
|
|
223
224
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
224
225
|
RelativeTimeRange?: RelativeTimeRange;
|
|
225
|
-
ParticipantRole?: ParticipantRole
|
|
226
|
+
ParticipantRole?: ParticipantRole;
|
|
226
227
|
Negate?: boolean;
|
|
227
228
|
Targets: string[] | undefined;
|
|
228
229
|
}
|
|
@@ -282,7 +283,7 @@ export interface CategoryProperties {
|
|
|
282
283
|
Rules?: Rule[];
|
|
283
284
|
CreateTime?: Date;
|
|
284
285
|
LastUpdateTime?: Date;
|
|
285
|
-
InputType?: InputType
|
|
286
|
+
InputType?: InputType;
|
|
286
287
|
}
|
|
287
288
|
export declare const CLMLanguageCode: {
|
|
288
289
|
readonly DE_DE: "de-DE";
|
|
@@ -304,7 +305,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
304
305
|
export interface CreateCallAnalyticsCategoryRequest {
|
|
305
306
|
CategoryName: string | undefined;
|
|
306
307
|
Rules: Rule[] | undefined;
|
|
307
|
-
InputType?: InputType
|
|
308
|
+
InputType?: InputType;
|
|
308
309
|
}
|
|
309
310
|
export interface CreateCallAnalyticsCategoryResponse {
|
|
310
311
|
CategoryProperties?: CategoryProperties;
|
|
@@ -335,8 +336,8 @@ export interface Tag {
|
|
|
335
336
|
Value: string | undefined;
|
|
336
337
|
}
|
|
337
338
|
export interface CreateLanguageModelRequest {
|
|
338
|
-
LanguageCode: CLMLanguageCode |
|
|
339
|
-
BaseModelName: BaseModelName |
|
|
339
|
+
LanguageCode: CLMLanguageCode | undefined;
|
|
340
|
+
BaseModelName: BaseModelName | undefined;
|
|
340
341
|
ModelName: string | undefined;
|
|
341
342
|
InputDataConfig: InputDataConfig | undefined;
|
|
342
343
|
Tags?: Tag[];
|
|
@@ -348,15 +349,15 @@ export declare const ModelStatus: {
|
|
|
348
349
|
};
|
|
349
350
|
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
350
351
|
export interface CreateLanguageModelResponse {
|
|
351
|
-
LanguageCode?: CLMLanguageCode
|
|
352
|
-
BaseModelName?: BaseModelName
|
|
352
|
+
LanguageCode?: CLMLanguageCode;
|
|
353
|
+
BaseModelName?: BaseModelName;
|
|
353
354
|
ModelName?: string;
|
|
354
355
|
InputDataConfig?: InputDataConfig;
|
|
355
|
-
ModelStatus?: ModelStatus
|
|
356
|
+
ModelStatus?: ModelStatus;
|
|
356
357
|
}
|
|
357
358
|
export interface CreateMedicalVocabularyRequest {
|
|
358
359
|
VocabularyName: string | undefined;
|
|
359
|
-
LanguageCode: LanguageCode |
|
|
360
|
+
LanguageCode: LanguageCode | undefined;
|
|
360
361
|
VocabularyFileUri: string | undefined;
|
|
361
362
|
Tags?: Tag[];
|
|
362
363
|
}
|
|
@@ -369,14 +370,14 @@ export type VocabularyState =
|
|
|
369
370
|
(typeof VocabularyState)[keyof typeof VocabularyState];
|
|
370
371
|
export interface CreateMedicalVocabularyResponse {
|
|
371
372
|
VocabularyName?: string;
|
|
372
|
-
LanguageCode?: LanguageCode
|
|
373
|
-
VocabularyState?: VocabularyState
|
|
373
|
+
LanguageCode?: LanguageCode;
|
|
374
|
+
VocabularyState?: VocabularyState;
|
|
374
375
|
LastModifiedTime?: Date;
|
|
375
376
|
FailureReason?: string;
|
|
376
377
|
}
|
|
377
378
|
export interface CreateVocabularyRequest {
|
|
378
379
|
VocabularyName: string | undefined;
|
|
379
|
-
LanguageCode: LanguageCode |
|
|
380
|
+
LanguageCode: LanguageCode | undefined;
|
|
380
381
|
Phrases?: string[];
|
|
381
382
|
VocabularyFileUri?: string;
|
|
382
383
|
Tags?: Tag[];
|
|
@@ -384,14 +385,14 @@ export interface CreateVocabularyRequest {
|
|
|
384
385
|
}
|
|
385
386
|
export interface CreateVocabularyResponse {
|
|
386
387
|
VocabularyName?: string;
|
|
387
|
-
LanguageCode?: LanguageCode
|
|
388
|
-
VocabularyState?: VocabularyState
|
|
388
|
+
LanguageCode?: LanguageCode;
|
|
389
|
+
VocabularyState?: VocabularyState;
|
|
389
390
|
LastModifiedTime?: Date;
|
|
390
391
|
FailureReason?: string;
|
|
391
392
|
}
|
|
392
393
|
export interface CreateVocabularyFilterRequest {
|
|
393
394
|
VocabularyFilterName: string | undefined;
|
|
394
|
-
LanguageCode: LanguageCode |
|
|
395
|
+
LanguageCode: LanguageCode | undefined;
|
|
395
396
|
Words?: string[];
|
|
396
397
|
VocabularyFilterFileUri?: string;
|
|
397
398
|
Tags?: Tag[];
|
|
@@ -399,7 +400,7 @@ export interface CreateVocabularyFilterRequest {
|
|
|
399
400
|
}
|
|
400
401
|
export interface CreateVocabularyFilterResponse {
|
|
401
402
|
VocabularyFilterName?: string;
|
|
402
|
-
LanguageCode?: LanguageCode
|
|
403
|
+
LanguageCode?: LanguageCode;
|
|
403
404
|
LastModifiedTime?: Date;
|
|
404
405
|
}
|
|
405
406
|
export interface DeleteCallAnalyticsCategoryRequest {
|
|
@@ -441,9 +442,9 @@ export interface LanguageModel {
|
|
|
441
442
|
ModelName?: string;
|
|
442
443
|
CreateTime?: Date;
|
|
443
444
|
LastModifiedTime?: Date;
|
|
444
|
-
LanguageCode?: CLMLanguageCode
|
|
445
|
-
BaseModelName?: BaseModelName
|
|
446
|
-
ModelStatus?: ModelStatus
|
|
445
|
+
LanguageCode?: CLMLanguageCode;
|
|
446
|
+
BaseModelName?: BaseModelName;
|
|
447
|
+
ModelStatus?: ModelStatus;
|
|
447
448
|
UpgradeAvailability?: boolean;
|
|
448
449
|
FailureReason?: string;
|
|
449
450
|
InputDataConfig?: InputDataConfig;
|
|
@@ -501,10 +502,10 @@ export declare const Type: {
|
|
|
501
502
|
export type Type = (typeof Type)[keyof typeof Type];
|
|
502
503
|
export interface MedicalTranscriptionJob {
|
|
503
504
|
MedicalTranscriptionJobName?: string;
|
|
504
|
-
TranscriptionJobStatus?: TranscriptionJobStatus
|
|
505
|
-
LanguageCode?: LanguageCode
|
|
505
|
+
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
506
|
+
LanguageCode?: LanguageCode;
|
|
506
507
|
MediaSampleRateHertz?: number;
|
|
507
|
-
MediaFormat?: MediaFormat
|
|
508
|
+
MediaFormat?: MediaFormat;
|
|
508
509
|
Media?: Media;
|
|
509
510
|
Transcript?: MedicalTranscript;
|
|
510
511
|
StartTime?: Date;
|
|
@@ -512,9 +513,9 @@ export interface MedicalTranscriptionJob {
|
|
|
512
513
|
CompletionTime?: Date;
|
|
513
514
|
FailureReason?: string;
|
|
514
515
|
Settings?: MedicalTranscriptionSetting;
|
|
515
|
-
ContentIdentificationType?: MedicalContentIdentificationType
|
|
516
|
-
Specialty?: Specialty
|
|
517
|
-
Type?: Type
|
|
516
|
+
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
517
|
+
Specialty?: Specialty;
|
|
518
|
+
Type?: Type;
|
|
518
519
|
Tags?: Tag[];
|
|
519
520
|
}
|
|
520
521
|
export interface GetMedicalTranscriptionJobResponse {
|
|
@@ -525,8 +526,8 @@ export interface GetMedicalVocabularyRequest {
|
|
|
525
526
|
}
|
|
526
527
|
export interface GetMedicalVocabularyResponse {
|
|
527
528
|
VocabularyName?: string;
|
|
528
|
-
LanguageCode?: LanguageCode
|
|
529
|
-
VocabularyState?: VocabularyState
|
|
529
|
+
LanguageCode?: LanguageCode;
|
|
530
|
+
VocabularyState?: VocabularyState;
|
|
530
531
|
LastModifiedTime?: Date;
|
|
531
532
|
FailureReason?: string;
|
|
532
533
|
DownloadUri?: string;
|
|
@@ -539,7 +540,7 @@ export interface JobExecutionSettings {
|
|
|
539
540
|
DataAccessRoleArn?: string;
|
|
540
541
|
}
|
|
541
542
|
export interface LanguageCodeItem {
|
|
542
|
-
LanguageCode?: LanguageCode
|
|
543
|
+
LanguageCode?: LanguageCode;
|
|
543
544
|
DurationInSeconds?: number;
|
|
544
545
|
}
|
|
545
546
|
export interface ModelSettings {
|
|
@@ -553,7 +554,7 @@ export interface Settings {
|
|
|
553
554
|
ShowAlternatives?: boolean;
|
|
554
555
|
MaxAlternatives?: number;
|
|
555
556
|
VocabularyFilterName?: string;
|
|
556
|
-
VocabularyFilterMethod?: VocabularyFilterMethod
|
|
557
|
+
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
557
558
|
}
|
|
558
559
|
export declare const SubtitleFormat: {
|
|
559
560
|
readonly SRT: "srt";
|
|
@@ -562,7 +563,7 @@ export declare const SubtitleFormat: {
|
|
|
562
563
|
export type SubtitleFormat =
|
|
563
564
|
(typeof SubtitleFormat)[keyof typeof SubtitleFormat];
|
|
564
565
|
export interface SubtitlesOutput {
|
|
565
|
-
Formats?:
|
|
566
|
+
Formats?: SubtitleFormat[];
|
|
566
567
|
SubtitleFileUris?: string[];
|
|
567
568
|
OutputStartIndex?: number;
|
|
568
569
|
}
|
|
@@ -572,14 +573,14 @@ export declare const ToxicityCategory: {
|
|
|
572
573
|
export type ToxicityCategory =
|
|
573
574
|
(typeof ToxicityCategory)[keyof typeof ToxicityCategory];
|
|
574
575
|
export interface ToxicityDetectionSettings {
|
|
575
|
-
ToxicityCategories:
|
|
576
|
+
ToxicityCategories: ToxicityCategory[] | undefined;
|
|
576
577
|
}
|
|
577
578
|
export interface TranscriptionJob {
|
|
578
579
|
TranscriptionJobName?: string;
|
|
579
|
-
TranscriptionJobStatus?: TranscriptionJobStatus
|
|
580
|
-
LanguageCode?: LanguageCode
|
|
580
|
+
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
581
|
+
LanguageCode?: LanguageCode;
|
|
581
582
|
MediaSampleRateHertz?: number;
|
|
582
|
-
MediaFormat?: MediaFormat
|
|
583
|
+
MediaFormat?: MediaFormat;
|
|
583
584
|
Media?: Media;
|
|
584
585
|
Transcript?: Transcript;
|
|
585
586
|
StartTime?: Date;
|
|
@@ -592,12 +593,12 @@ export interface TranscriptionJob {
|
|
|
592
593
|
ContentRedaction?: ContentRedaction;
|
|
593
594
|
IdentifyLanguage?: boolean;
|
|
594
595
|
IdentifyMultipleLanguages?: boolean;
|
|
595
|
-
LanguageOptions?:
|
|
596
|
+
LanguageOptions?: LanguageCode[];
|
|
596
597
|
IdentifiedLanguageScore?: number;
|
|
597
598
|
LanguageCodes?: LanguageCodeItem[];
|
|
598
599
|
Tags?: Tag[];
|
|
599
600
|
Subtitles?: SubtitlesOutput;
|
|
600
|
-
LanguageIdSettings?: Record<
|
|
601
|
+
LanguageIdSettings?: Record<LanguageCode, LanguageIdSettings>;
|
|
601
602
|
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
602
603
|
}
|
|
603
604
|
export interface GetTranscriptionJobResponse {
|
|
@@ -608,8 +609,8 @@ export interface GetVocabularyRequest {
|
|
|
608
609
|
}
|
|
609
610
|
export interface GetVocabularyResponse {
|
|
610
611
|
VocabularyName?: string;
|
|
611
|
-
LanguageCode?: LanguageCode
|
|
612
|
-
VocabularyState?: VocabularyState
|
|
612
|
+
LanguageCode?: LanguageCode;
|
|
613
|
+
VocabularyState?: VocabularyState;
|
|
613
614
|
LastModifiedTime?: Date;
|
|
614
615
|
FailureReason?: string;
|
|
615
616
|
DownloadUri?: string;
|
|
@@ -619,7 +620,7 @@ export interface GetVocabularyFilterRequest {
|
|
|
619
620
|
}
|
|
620
621
|
export interface GetVocabularyFilterResponse {
|
|
621
622
|
VocabularyFilterName?: string;
|
|
622
|
-
LanguageCode?: LanguageCode
|
|
623
|
+
LanguageCode?: LanguageCode;
|
|
623
624
|
LastModifiedTime?: Date;
|
|
624
625
|
DownloadUri?: string;
|
|
625
626
|
}
|
|
@@ -632,18 +633,18 @@ export interface ListCallAnalyticsCategoriesResponse {
|
|
|
632
633
|
Categories?: CategoryProperties[];
|
|
633
634
|
}
|
|
634
635
|
export interface ListCallAnalyticsJobsRequest {
|
|
635
|
-
Status?: CallAnalyticsJobStatus
|
|
636
|
+
Status?: CallAnalyticsJobStatus;
|
|
636
637
|
JobNameContains?: string;
|
|
637
638
|
NextToken?: string;
|
|
638
639
|
MaxResults?: number;
|
|
639
640
|
}
|
|
640
641
|
export interface ListCallAnalyticsJobsResponse {
|
|
641
|
-
Status?: CallAnalyticsJobStatus
|
|
642
|
+
Status?: CallAnalyticsJobStatus;
|
|
642
643
|
NextToken?: string;
|
|
643
644
|
CallAnalyticsJobSummaries?: CallAnalyticsJobSummary[];
|
|
644
645
|
}
|
|
645
646
|
export interface ListLanguageModelsRequest {
|
|
646
|
-
StatusEquals?: ModelStatus
|
|
647
|
+
StatusEquals?: ModelStatus;
|
|
647
648
|
NameContains?: string;
|
|
648
649
|
NextToken?: string;
|
|
649
650
|
MaxResults?: number;
|
|
@@ -653,7 +654,7 @@ export interface ListLanguageModelsResponse {
|
|
|
653
654
|
Models?: LanguageModel[];
|
|
654
655
|
}
|
|
655
656
|
export interface ListMedicalTranscriptionJobsRequest {
|
|
656
|
-
Status?: TranscriptionJobStatus
|
|
657
|
+
Status?: TranscriptionJobStatus;
|
|
657
658
|
JobNameContains?: string;
|
|
658
659
|
NextToken?: string;
|
|
659
660
|
MaxResults?: number;
|
|
@@ -669,33 +670,33 @@ export interface MedicalTranscriptionJobSummary {
|
|
|
669
670
|
CreationTime?: Date;
|
|
670
671
|
StartTime?: Date;
|
|
671
672
|
CompletionTime?: Date;
|
|
672
|
-
LanguageCode?: LanguageCode
|
|
673
|
-
TranscriptionJobStatus?: TranscriptionJobStatus
|
|
673
|
+
LanguageCode?: LanguageCode;
|
|
674
|
+
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
674
675
|
FailureReason?: string;
|
|
675
|
-
OutputLocationType?: OutputLocationType
|
|
676
|
-
Specialty?: Specialty
|
|
677
|
-
ContentIdentificationType?: MedicalContentIdentificationType
|
|
678
|
-
Type?: Type
|
|
676
|
+
OutputLocationType?: OutputLocationType;
|
|
677
|
+
Specialty?: Specialty;
|
|
678
|
+
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
679
|
+
Type?: Type;
|
|
679
680
|
}
|
|
680
681
|
export interface ListMedicalTranscriptionJobsResponse {
|
|
681
|
-
Status?: TranscriptionJobStatus
|
|
682
|
+
Status?: TranscriptionJobStatus;
|
|
682
683
|
NextToken?: string;
|
|
683
684
|
MedicalTranscriptionJobSummaries?: MedicalTranscriptionJobSummary[];
|
|
684
685
|
}
|
|
685
686
|
export interface ListMedicalVocabulariesRequest {
|
|
686
687
|
NextToken?: string;
|
|
687
688
|
MaxResults?: number;
|
|
688
|
-
StateEquals?: VocabularyState
|
|
689
|
+
StateEquals?: VocabularyState;
|
|
689
690
|
NameContains?: string;
|
|
690
691
|
}
|
|
691
692
|
export interface VocabularyInfo {
|
|
692
693
|
VocabularyName?: string;
|
|
693
|
-
LanguageCode?: LanguageCode
|
|
694
|
+
LanguageCode?: LanguageCode;
|
|
694
695
|
LastModifiedTime?: Date;
|
|
695
|
-
VocabularyState?: VocabularyState
|
|
696
|
+
VocabularyState?: VocabularyState;
|
|
696
697
|
}
|
|
697
698
|
export interface ListMedicalVocabulariesResponse {
|
|
698
|
-
Status?: VocabularyState
|
|
699
|
+
Status?: VocabularyState;
|
|
699
700
|
NextToken?: string;
|
|
700
701
|
Vocabularies?: VocabularyInfo[];
|
|
701
702
|
}
|
|
@@ -707,7 +708,7 @@ export interface ListTagsForResourceResponse {
|
|
|
707
708
|
Tags?: Tag[];
|
|
708
709
|
}
|
|
709
710
|
export interface ListTranscriptionJobsRequest {
|
|
710
|
-
Status?: TranscriptionJobStatus
|
|
711
|
+
Status?: TranscriptionJobStatus;
|
|
711
712
|
JobNameContains?: string;
|
|
712
713
|
NextToken?: string;
|
|
713
714
|
MaxResults?: number;
|
|
@@ -717,10 +718,10 @@ export interface TranscriptionJobSummary {
|
|
|
717
718
|
CreationTime?: Date;
|
|
718
719
|
StartTime?: Date;
|
|
719
720
|
CompletionTime?: Date;
|
|
720
|
-
LanguageCode?: LanguageCode
|
|
721
|
-
TranscriptionJobStatus?: TranscriptionJobStatus
|
|
721
|
+
LanguageCode?: LanguageCode;
|
|
722
|
+
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
722
723
|
FailureReason?: string;
|
|
723
|
-
OutputLocationType?: OutputLocationType
|
|
724
|
+
OutputLocationType?: OutputLocationType;
|
|
724
725
|
ContentRedaction?: ContentRedaction;
|
|
725
726
|
ModelSettings?: ModelSettings;
|
|
726
727
|
IdentifyLanguage?: boolean;
|
|
@@ -730,18 +731,18 @@ export interface TranscriptionJobSummary {
|
|
|
730
731
|
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
731
732
|
}
|
|
732
733
|
export interface ListTranscriptionJobsResponse {
|
|
733
|
-
Status?: TranscriptionJobStatus
|
|
734
|
+
Status?: TranscriptionJobStatus;
|
|
734
735
|
NextToken?: string;
|
|
735
736
|
TranscriptionJobSummaries?: TranscriptionJobSummary[];
|
|
736
737
|
}
|
|
737
738
|
export interface ListVocabulariesRequest {
|
|
738
739
|
NextToken?: string;
|
|
739
740
|
MaxResults?: number;
|
|
740
|
-
StateEquals?: VocabularyState
|
|
741
|
+
StateEquals?: VocabularyState;
|
|
741
742
|
NameContains?: string;
|
|
742
743
|
}
|
|
743
744
|
export interface ListVocabulariesResponse {
|
|
744
|
-
Status?: VocabularyState
|
|
745
|
+
Status?: VocabularyState;
|
|
745
746
|
NextToken?: string;
|
|
746
747
|
Vocabularies?: VocabularyInfo[];
|
|
747
748
|
}
|
|
@@ -752,7 +753,7 @@ export interface ListVocabularyFiltersRequest {
|
|
|
752
753
|
}
|
|
753
754
|
export interface VocabularyFilterInfo {
|
|
754
755
|
VocabularyFilterName?: string;
|
|
755
|
-
LanguageCode?: LanguageCode
|
|
756
|
+
LanguageCode?: LanguageCode;
|
|
756
757
|
LastModifiedTime?: Date;
|
|
757
758
|
}
|
|
758
759
|
export interface ListVocabularyFiltersResponse {
|
|
@@ -773,32 +774,32 @@ export interface StartCallAnalyticsJobResponse {
|
|
|
773
774
|
}
|
|
774
775
|
export interface StartMedicalTranscriptionJobRequest {
|
|
775
776
|
MedicalTranscriptionJobName: string | undefined;
|
|
776
|
-
LanguageCode: LanguageCode |
|
|
777
|
+
LanguageCode: LanguageCode | undefined;
|
|
777
778
|
MediaSampleRateHertz?: number;
|
|
778
|
-
MediaFormat?: MediaFormat
|
|
779
|
+
MediaFormat?: MediaFormat;
|
|
779
780
|
Media: Media | undefined;
|
|
780
781
|
OutputBucketName: string | undefined;
|
|
781
782
|
OutputKey?: string;
|
|
782
783
|
OutputEncryptionKMSKeyId?: string;
|
|
783
784
|
KMSEncryptionContext?: Record<string, string>;
|
|
784
785
|
Settings?: MedicalTranscriptionSetting;
|
|
785
|
-
ContentIdentificationType?: MedicalContentIdentificationType
|
|
786
|
-
Specialty: Specialty |
|
|
787
|
-
Type: Type |
|
|
786
|
+
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
787
|
+
Specialty: Specialty | undefined;
|
|
788
|
+
Type: Type | undefined;
|
|
788
789
|
Tags?: Tag[];
|
|
789
790
|
}
|
|
790
791
|
export interface StartMedicalTranscriptionJobResponse {
|
|
791
792
|
MedicalTranscriptionJob?: MedicalTranscriptionJob;
|
|
792
793
|
}
|
|
793
794
|
export interface Subtitles {
|
|
794
|
-
Formats?:
|
|
795
|
+
Formats?: SubtitleFormat[];
|
|
795
796
|
OutputStartIndex?: number;
|
|
796
797
|
}
|
|
797
798
|
export interface StartTranscriptionJobRequest {
|
|
798
799
|
TranscriptionJobName: string | undefined;
|
|
799
|
-
LanguageCode?: LanguageCode
|
|
800
|
+
LanguageCode?: LanguageCode;
|
|
800
801
|
MediaSampleRateHertz?: number;
|
|
801
|
-
MediaFormat?: MediaFormat
|
|
802
|
+
MediaFormat?: MediaFormat;
|
|
802
803
|
Media: Media | undefined;
|
|
803
804
|
OutputBucketName?: string;
|
|
804
805
|
OutputKey?: string;
|
|
@@ -810,10 +811,10 @@ export interface StartTranscriptionJobRequest {
|
|
|
810
811
|
ContentRedaction?: ContentRedaction;
|
|
811
812
|
IdentifyLanguage?: boolean;
|
|
812
813
|
IdentifyMultipleLanguages?: boolean;
|
|
813
|
-
LanguageOptions?:
|
|
814
|
+
LanguageOptions?: LanguageCode[];
|
|
814
815
|
Subtitles?: Subtitles;
|
|
815
816
|
Tags?: Tag[];
|
|
816
|
-
LanguageIdSettings?: Record<
|
|
817
|
+
LanguageIdSettings?: Record<LanguageCode, LanguageIdSettings>;
|
|
817
818
|
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
818
819
|
}
|
|
819
820
|
export interface StartTranscriptionJobResponse {
|
|
@@ -832,34 +833,34 @@ export interface UntagResourceResponse {}
|
|
|
832
833
|
export interface UpdateCallAnalyticsCategoryRequest {
|
|
833
834
|
CategoryName: string | undefined;
|
|
834
835
|
Rules: Rule[] | undefined;
|
|
835
|
-
InputType?: InputType
|
|
836
|
+
InputType?: InputType;
|
|
836
837
|
}
|
|
837
838
|
export interface UpdateCallAnalyticsCategoryResponse {
|
|
838
839
|
CategoryProperties?: CategoryProperties;
|
|
839
840
|
}
|
|
840
841
|
export interface UpdateMedicalVocabularyRequest {
|
|
841
842
|
VocabularyName: string | undefined;
|
|
842
|
-
LanguageCode: LanguageCode |
|
|
843
|
+
LanguageCode: LanguageCode | undefined;
|
|
843
844
|
VocabularyFileUri: string | undefined;
|
|
844
845
|
}
|
|
845
846
|
export interface UpdateMedicalVocabularyResponse {
|
|
846
847
|
VocabularyName?: string;
|
|
847
|
-
LanguageCode?: LanguageCode
|
|
848
|
+
LanguageCode?: LanguageCode;
|
|
848
849
|
LastModifiedTime?: Date;
|
|
849
|
-
VocabularyState?: VocabularyState
|
|
850
|
+
VocabularyState?: VocabularyState;
|
|
850
851
|
}
|
|
851
852
|
export interface UpdateVocabularyRequest {
|
|
852
853
|
VocabularyName: string | undefined;
|
|
853
|
-
LanguageCode: LanguageCode |
|
|
854
|
+
LanguageCode: LanguageCode | undefined;
|
|
854
855
|
Phrases?: string[];
|
|
855
856
|
VocabularyFileUri?: string;
|
|
856
857
|
DataAccessRoleArn?: string;
|
|
857
858
|
}
|
|
858
859
|
export interface UpdateVocabularyResponse {
|
|
859
860
|
VocabularyName?: string;
|
|
860
|
-
LanguageCode?: LanguageCode
|
|
861
|
+
LanguageCode?: LanguageCode;
|
|
861
862
|
LastModifiedTime?: Date;
|
|
862
|
-
VocabularyState?: VocabularyState
|
|
863
|
+
VocabularyState?: VocabularyState;
|
|
863
864
|
}
|
|
864
865
|
export interface UpdateVocabularyFilterRequest {
|
|
865
866
|
VocabularyFilterName: string | undefined;
|
|
@@ -869,6 +870,6 @@ export interface UpdateVocabularyFilterRequest {
|
|
|
869
870
|
}
|
|
870
871
|
export interface UpdateVocabularyFilterResponse {
|
|
871
872
|
VocabularyFilterName?: string;
|
|
872
|
-
LanguageCode?: LanguageCode
|
|
873
|
+
LanguageCode?: LanguageCode;
|
|
873
874
|
LastModifiedTime?: Date;
|
|
874
875
|
}
|
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.429.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,39 +21,39 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|