@aws-sdk/client-transcribe 3.934.0 → 3.936.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/index.js +254 -253
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +250 -0
- package/dist-es/models/errors.js +71 -0
- package/dist-es/models/models_0.js +1 -321
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +482 -0
- package/dist-types/models/errors.d.ts +74 -0
- package/dist-types/models/models_0.d.ts +1 -556
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +298 -0
- package/dist-types/ts3.4/models/errors.d.ts +38 -0
- package/dist-types/ts3.4/models/models_0.d.ts +31 -336
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,35 +1,40 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
BaseModelName,
|
|
3
|
+
CallAnalyticsFeature,
|
|
4
|
+
CallAnalyticsJobStatus,
|
|
5
|
+
CallAnalyticsSkippedReasonCode,
|
|
6
|
+
CLMLanguageCode,
|
|
7
|
+
InputType,
|
|
8
|
+
LanguageCode,
|
|
9
|
+
MediaFormat,
|
|
10
|
+
MedicalContentIdentificationType,
|
|
11
|
+
MedicalScribeJobStatus,
|
|
12
|
+
MedicalScribeLanguageCode,
|
|
13
|
+
MedicalScribeNoteTemplate,
|
|
14
|
+
MedicalScribeParticipantRole,
|
|
15
|
+
ModelStatus,
|
|
16
|
+
OutputLocationType,
|
|
17
|
+
ParticipantRole,
|
|
18
|
+
PiiEntityType,
|
|
19
|
+
Pronouns,
|
|
20
|
+
RedactionOutput,
|
|
21
|
+
RedactionType,
|
|
22
|
+
SentimentValue,
|
|
23
|
+
Specialty,
|
|
24
|
+
SubtitleFormat,
|
|
25
|
+
ToxicityCategory,
|
|
26
|
+
TranscriptFilterType,
|
|
27
|
+
TranscriptionJobStatus,
|
|
28
|
+
Type,
|
|
29
|
+
VocabularyFilterMethod,
|
|
30
|
+
VocabularyState,
|
|
31
|
+
} from "./enums";
|
|
3
32
|
export interface AbsoluteTimeRange {
|
|
4
33
|
StartTime?: number | undefined;
|
|
5
34
|
EndTime?: number | undefined;
|
|
6
35
|
First?: number | undefined;
|
|
7
36
|
Last?: number | undefined;
|
|
8
37
|
}
|
|
9
|
-
export declare class BadRequestException extends __BaseException {
|
|
10
|
-
readonly name: "BadRequestException";
|
|
11
|
-
readonly $fault: "client";
|
|
12
|
-
Message?: string | undefined;
|
|
13
|
-
constructor(
|
|
14
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
15
|
-
);
|
|
16
|
-
}
|
|
17
|
-
export declare const BaseModelName: {
|
|
18
|
-
readonly NARROW_BAND: "NarrowBand";
|
|
19
|
-
readonly WIDE_BAND: "WideBand";
|
|
20
|
-
};
|
|
21
|
-
export type BaseModelName = (typeof BaseModelName)[keyof typeof BaseModelName];
|
|
22
|
-
export declare const CallAnalyticsFeature: {
|
|
23
|
-
readonly GENERATIVE_SUMMARIZATION: "GENERATIVE_SUMMARIZATION";
|
|
24
|
-
};
|
|
25
|
-
export type CallAnalyticsFeature =
|
|
26
|
-
(typeof CallAnalyticsFeature)[keyof typeof CallAnalyticsFeature];
|
|
27
|
-
export declare const CallAnalyticsSkippedReasonCode: {
|
|
28
|
-
readonly FAILED_SAFETY_GUIDELINES: "FAILED_SAFETY_GUIDELINES";
|
|
29
|
-
readonly INSUFFICIENT_CONVERSATION_CONTENT: "INSUFFICIENT_CONVERSATION_CONTENT";
|
|
30
|
-
};
|
|
31
|
-
export type CallAnalyticsSkippedReasonCode =
|
|
32
|
-
(typeof CallAnalyticsSkippedReasonCode)[keyof typeof CallAnalyticsSkippedReasonCode];
|
|
33
38
|
export interface CallAnalyticsSkippedFeature {
|
|
34
39
|
Feature?: CallAnalyticsFeature | undefined;
|
|
35
40
|
ReasonCode?: CallAnalyticsSkippedReasonCode | undefined;
|
|
@@ -38,172 +43,14 @@ export interface CallAnalyticsSkippedFeature {
|
|
|
38
43
|
export interface CallAnalyticsJobDetails {
|
|
39
44
|
Skipped?: CallAnalyticsSkippedFeature[] | undefined;
|
|
40
45
|
}
|
|
41
|
-
export declare const CallAnalyticsJobStatus: {
|
|
42
|
-
readonly COMPLETED: "COMPLETED";
|
|
43
|
-
readonly FAILED: "FAILED";
|
|
44
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
45
|
-
readonly QUEUED: "QUEUED";
|
|
46
|
-
};
|
|
47
|
-
export type CallAnalyticsJobStatus =
|
|
48
|
-
(typeof CallAnalyticsJobStatus)[keyof typeof CallAnalyticsJobStatus];
|
|
49
|
-
export declare const ParticipantRole: {
|
|
50
|
-
readonly AGENT: "AGENT";
|
|
51
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
52
|
-
};
|
|
53
|
-
export type ParticipantRole =
|
|
54
|
-
(typeof ParticipantRole)[keyof typeof ParticipantRole];
|
|
55
46
|
export interface ChannelDefinition {
|
|
56
47
|
ChannelId?: number | undefined;
|
|
57
48
|
ParticipantRole?: ParticipantRole | undefined;
|
|
58
49
|
}
|
|
59
|
-
export declare const LanguageCode: {
|
|
60
|
-
readonly AB_GE: "ab-GE";
|
|
61
|
-
readonly AF_ZA: "af-ZA";
|
|
62
|
-
readonly AR_AE: "ar-AE";
|
|
63
|
-
readonly AR_SA: "ar-SA";
|
|
64
|
-
readonly AST_ES: "ast-ES";
|
|
65
|
-
readonly AZ_AZ: "az-AZ";
|
|
66
|
-
readonly BA_RU: "ba-RU";
|
|
67
|
-
readonly BE_BY: "be-BY";
|
|
68
|
-
readonly BG_BG: "bg-BG";
|
|
69
|
-
readonly BN_IN: "bn-IN";
|
|
70
|
-
readonly BS_BA: "bs-BA";
|
|
71
|
-
readonly CA_ES: "ca-ES";
|
|
72
|
-
readonly CKB_IQ: "ckb-IQ";
|
|
73
|
-
readonly CKB_IR: "ckb-IR";
|
|
74
|
-
readonly CS_CZ: "cs-CZ";
|
|
75
|
-
readonly CY_WL: "cy-WL";
|
|
76
|
-
readonly DA_DK: "da-DK";
|
|
77
|
-
readonly DE_CH: "de-CH";
|
|
78
|
-
readonly DE_DE: "de-DE";
|
|
79
|
-
readonly EL_GR: "el-GR";
|
|
80
|
-
readonly EN_AB: "en-AB";
|
|
81
|
-
readonly EN_AU: "en-AU";
|
|
82
|
-
readonly EN_GB: "en-GB";
|
|
83
|
-
readonly EN_IE: "en-IE";
|
|
84
|
-
readonly EN_IN: "en-IN";
|
|
85
|
-
readonly EN_NZ: "en-NZ";
|
|
86
|
-
readonly EN_US: "en-US";
|
|
87
|
-
readonly EN_WL: "en-WL";
|
|
88
|
-
readonly EN_ZA: "en-ZA";
|
|
89
|
-
readonly ES_ES: "es-ES";
|
|
90
|
-
readonly ES_US: "es-US";
|
|
91
|
-
readonly ET_EE: "et-EE";
|
|
92
|
-
readonly ET_ET: "et-ET";
|
|
93
|
-
readonly EU_ES: "eu-ES";
|
|
94
|
-
readonly FA_IR: "fa-IR";
|
|
95
|
-
readonly FI_FI: "fi-FI";
|
|
96
|
-
readonly FR_CA: "fr-CA";
|
|
97
|
-
readonly FR_FR: "fr-FR";
|
|
98
|
-
readonly GL_ES: "gl-ES";
|
|
99
|
-
readonly GU_IN: "gu-IN";
|
|
100
|
-
readonly HA_NG: "ha-NG";
|
|
101
|
-
readonly HE_IL: "he-IL";
|
|
102
|
-
readonly HI_IN: "hi-IN";
|
|
103
|
-
readonly HR_HR: "hr-HR";
|
|
104
|
-
readonly HU_HU: "hu-HU";
|
|
105
|
-
readonly HY_AM: "hy-AM";
|
|
106
|
-
readonly ID_ID: "id-ID";
|
|
107
|
-
readonly IS_IS: "is-IS";
|
|
108
|
-
readonly IT_IT: "it-IT";
|
|
109
|
-
readonly JA_JP: "ja-JP";
|
|
110
|
-
readonly KAB_DZ: "kab-DZ";
|
|
111
|
-
readonly KA_GE: "ka-GE";
|
|
112
|
-
readonly KK_KZ: "kk-KZ";
|
|
113
|
-
readonly KN_IN: "kn-IN";
|
|
114
|
-
readonly KO_KR: "ko-KR";
|
|
115
|
-
readonly KY_KG: "ky-KG";
|
|
116
|
-
readonly LG_IN: "lg-IN";
|
|
117
|
-
readonly LT_LT: "lt-LT";
|
|
118
|
-
readonly LV_LV: "lv-LV";
|
|
119
|
-
readonly MHR_RU: "mhr-RU";
|
|
120
|
-
readonly MI_NZ: "mi-NZ";
|
|
121
|
-
readonly MK_MK: "mk-MK";
|
|
122
|
-
readonly ML_IN: "ml-IN";
|
|
123
|
-
readonly MN_MN: "mn-MN";
|
|
124
|
-
readonly MR_IN: "mr-IN";
|
|
125
|
-
readonly MS_MY: "ms-MY";
|
|
126
|
-
readonly MT_MT: "mt-MT";
|
|
127
|
-
readonly NL_NL: "nl-NL";
|
|
128
|
-
readonly NO_NO: "no-NO";
|
|
129
|
-
readonly OR_IN: "or-IN";
|
|
130
|
-
readonly PA_IN: "pa-IN";
|
|
131
|
-
readonly PL_PL: "pl-PL";
|
|
132
|
-
readonly PS_AF: "ps-AF";
|
|
133
|
-
readonly PT_BR: "pt-BR";
|
|
134
|
-
readonly PT_PT: "pt-PT";
|
|
135
|
-
readonly RO_RO: "ro-RO";
|
|
136
|
-
readonly RU_RU: "ru-RU";
|
|
137
|
-
readonly RW_RW: "rw-RW";
|
|
138
|
-
readonly SI_LK: "si-LK";
|
|
139
|
-
readonly SK_SK: "sk-SK";
|
|
140
|
-
readonly SL_SI: "sl-SI";
|
|
141
|
-
readonly SO_SO: "so-SO";
|
|
142
|
-
readonly SR_RS: "sr-RS";
|
|
143
|
-
readonly SU_ID: "su-ID";
|
|
144
|
-
readonly SV_SE: "sv-SE";
|
|
145
|
-
readonly SW_BI: "sw-BI";
|
|
146
|
-
readonly SW_KE: "sw-KE";
|
|
147
|
-
readonly SW_RW: "sw-RW";
|
|
148
|
-
readonly SW_TZ: "sw-TZ";
|
|
149
|
-
readonly SW_UG: "sw-UG";
|
|
150
|
-
readonly TA_IN: "ta-IN";
|
|
151
|
-
readonly TE_IN: "te-IN";
|
|
152
|
-
readonly TH_TH: "th-TH";
|
|
153
|
-
readonly TL_PH: "tl-PH";
|
|
154
|
-
readonly TR_TR: "tr-TR";
|
|
155
|
-
readonly TT_RU: "tt-RU";
|
|
156
|
-
readonly UG_CN: "ug-CN";
|
|
157
|
-
readonly UK_UA: "uk-UA";
|
|
158
|
-
readonly UZ_UZ: "uz-UZ";
|
|
159
|
-
readonly VI_VN: "vi-VN";
|
|
160
|
-
readonly WO_SN: "wo-SN";
|
|
161
|
-
readonly ZH_CN: "zh-CN";
|
|
162
|
-
readonly ZH_HK: "zh-HK";
|
|
163
|
-
readonly ZH_TW: "zh-TW";
|
|
164
|
-
readonly ZU_ZA: "zu-ZA";
|
|
165
|
-
};
|
|
166
|
-
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
167
50
|
export interface Media {
|
|
168
51
|
MediaFileUri?: string | undefined;
|
|
169
52
|
RedactedMediaFileUri?: string | undefined;
|
|
170
53
|
}
|
|
171
|
-
export declare const MediaFormat: {
|
|
172
|
-
readonly AMR: "amr";
|
|
173
|
-
readonly FLAC: "flac";
|
|
174
|
-
readonly M4A: "m4a";
|
|
175
|
-
readonly MP3: "mp3";
|
|
176
|
-
readonly MP4: "mp4";
|
|
177
|
-
readonly OGG: "ogg";
|
|
178
|
-
readonly WAV: "wav";
|
|
179
|
-
readonly WEBM: "webm";
|
|
180
|
-
};
|
|
181
|
-
export type MediaFormat = (typeof MediaFormat)[keyof typeof MediaFormat];
|
|
182
|
-
export declare const PiiEntityType: {
|
|
183
|
-
readonly ADDRESS: "ADDRESS";
|
|
184
|
-
readonly ALL: "ALL";
|
|
185
|
-
readonly BANK_ACCOUNT_NUMBER: "BANK_ACCOUNT_NUMBER";
|
|
186
|
-
readonly BANK_ROUTING: "BANK_ROUTING";
|
|
187
|
-
readonly CREDIT_DEBIT_CVV: "CREDIT_DEBIT_CVV";
|
|
188
|
-
readonly CREDIT_DEBIT_EXPIRY: "CREDIT_DEBIT_EXPIRY";
|
|
189
|
-
readonly CREDIT_DEBIT_NUMBER: "CREDIT_DEBIT_NUMBER";
|
|
190
|
-
readonly EMAIL: "EMAIL";
|
|
191
|
-
readonly NAME: "NAME";
|
|
192
|
-
readonly PHONE: "PHONE";
|
|
193
|
-
readonly PIN: "PIN";
|
|
194
|
-
readonly SSN: "SSN";
|
|
195
|
-
};
|
|
196
|
-
export type PiiEntityType = (typeof PiiEntityType)[keyof typeof PiiEntityType];
|
|
197
|
-
export declare const RedactionOutput: {
|
|
198
|
-
readonly REDACTED: "redacted";
|
|
199
|
-
readonly REDACTED_AND_UNREDACTED: "redacted_and_unredacted";
|
|
200
|
-
};
|
|
201
|
-
export type RedactionOutput =
|
|
202
|
-
(typeof RedactionOutput)[keyof typeof RedactionOutput];
|
|
203
|
-
export declare const RedactionType: {
|
|
204
|
-
readonly PII: "PII";
|
|
205
|
-
};
|
|
206
|
-
export type RedactionType = (typeof RedactionType)[keyof typeof RedactionType];
|
|
207
54
|
export interface ContentRedaction {
|
|
208
55
|
RedactionType: RedactionType | undefined;
|
|
209
56
|
RedactionOutput: RedactionOutput | undefined;
|
|
@@ -217,13 +64,6 @@ export interface LanguageIdSettings {
|
|
|
217
64
|
export interface Summarization {
|
|
218
65
|
GenerateAbstractiveSummary: boolean | undefined;
|
|
219
66
|
}
|
|
220
|
-
export declare const VocabularyFilterMethod: {
|
|
221
|
-
readonly MASK: "mask";
|
|
222
|
-
readonly REMOVE: "remove";
|
|
223
|
-
readonly TAG: "tag";
|
|
224
|
-
};
|
|
225
|
-
export type VocabularyFilterMethod =
|
|
226
|
-
(typeof VocabularyFilterMethod)[keyof typeof VocabularyFilterMethod];
|
|
227
67
|
export interface CallAnalyticsJobSettings {
|
|
228
68
|
VocabularyName?: string | undefined;
|
|
229
69
|
VocabularyFilterName?: string | undefined;
|
|
@@ -273,11 +113,6 @@ export interface CallAnalyticsJobSummary {
|
|
|
273
113
|
CallAnalyticsJobDetails?: CallAnalyticsJobDetails | undefined;
|
|
274
114
|
FailureReason?: string | undefined;
|
|
275
115
|
}
|
|
276
|
-
export declare const InputType: {
|
|
277
|
-
readonly POST_CALL: "POST_CALL";
|
|
278
|
-
readonly REAL_TIME: "REAL_TIME";
|
|
279
|
-
};
|
|
280
|
-
export type InputType = (typeof InputType)[keyof typeof InputType];
|
|
281
116
|
export interface RelativeTimeRange {
|
|
282
117
|
StartPercentage?: number | undefined;
|
|
283
118
|
EndPercentage?: number | undefined;
|
|
@@ -297,14 +132,6 @@ export interface NonTalkTimeFilter {
|
|
|
297
132
|
RelativeTimeRange?: RelativeTimeRange | undefined;
|
|
298
133
|
Negate?: boolean | undefined;
|
|
299
134
|
}
|
|
300
|
-
export declare const SentimentValue: {
|
|
301
|
-
readonly MIXED: "MIXED";
|
|
302
|
-
readonly NEGATIVE: "NEGATIVE";
|
|
303
|
-
readonly NEUTRAL: "NEUTRAL";
|
|
304
|
-
readonly POSITIVE: "POSITIVE";
|
|
305
|
-
};
|
|
306
|
-
export type SentimentValue =
|
|
307
|
-
(typeof SentimentValue)[keyof typeof SentimentValue];
|
|
308
135
|
export interface SentimentFilter {
|
|
309
136
|
Sentiments: SentimentValue[] | undefined;
|
|
310
137
|
AbsoluteTimeRange?: AbsoluteTimeRange | undefined;
|
|
@@ -312,11 +139,6 @@ export interface SentimentFilter {
|
|
|
312
139
|
ParticipantRole?: ParticipantRole | undefined;
|
|
313
140
|
Negate?: boolean | undefined;
|
|
314
141
|
}
|
|
315
|
-
export declare const TranscriptFilterType: {
|
|
316
|
-
readonly EXACT: "EXACT";
|
|
317
|
-
};
|
|
318
|
-
export type TranscriptFilterType =
|
|
319
|
-
(typeof TranscriptFilterType)[keyof typeof TranscriptFilterType];
|
|
320
142
|
export interface TranscriptFilter {
|
|
321
143
|
TranscriptFilterType: TranscriptFilterType | undefined;
|
|
322
144
|
AbsoluteTimeRange?: AbsoluteTimeRange | undefined;
|
|
@@ -383,37 +205,9 @@ export interface CategoryProperties {
|
|
|
383
205
|
Tags?: Tag[] | undefined;
|
|
384
206
|
InputType?: InputType | undefined;
|
|
385
207
|
}
|
|
386
|
-
export declare const MedicalScribeNoteTemplate: {
|
|
387
|
-
readonly BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP";
|
|
388
|
-
readonly BIRP: "BIRP";
|
|
389
|
-
readonly DAP: "DAP";
|
|
390
|
-
readonly GIRPP: "GIRPP";
|
|
391
|
-
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
392
|
-
readonly PHYSICAL_SOAP: "PHYSICAL_SOAP";
|
|
393
|
-
readonly SIRP: "SIRP";
|
|
394
|
-
};
|
|
395
|
-
export type MedicalScribeNoteTemplate =
|
|
396
|
-
(typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate];
|
|
397
208
|
export interface ClinicalNoteGenerationSettings {
|
|
398
209
|
NoteTemplate?: MedicalScribeNoteTemplate | undefined;
|
|
399
210
|
}
|
|
400
|
-
export declare const CLMLanguageCode: {
|
|
401
|
-
readonly DE_DE: "de-DE";
|
|
402
|
-
readonly EN_AU: "en-AU";
|
|
403
|
-
readonly EN_GB: "en-GB";
|
|
404
|
-
readonly EN_US: "en-US";
|
|
405
|
-
readonly ES_US: "es-US";
|
|
406
|
-
readonly HI_IN: "hi-IN";
|
|
407
|
-
readonly JA_JP: "ja-JP";
|
|
408
|
-
};
|
|
409
|
-
export type CLMLanguageCode =
|
|
410
|
-
(typeof CLMLanguageCode)[keyof typeof CLMLanguageCode];
|
|
411
|
-
export declare class ConflictException extends __BaseException {
|
|
412
|
-
readonly name: "ConflictException";
|
|
413
|
-
readonly $fault: "client";
|
|
414
|
-
Message?: string | undefined;
|
|
415
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
416
|
-
}
|
|
417
211
|
export interface CreateCallAnalyticsCategoryRequest {
|
|
418
212
|
CategoryName: string | undefined;
|
|
419
213
|
Rules: Rule[] | undefined;
|
|
@@ -423,22 +217,6 @@ export interface CreateCallAnalyticsCategoryRequest {
|
|
|
423
217
|
export interface CreateCallAnalyticsCategoryResponse {
|
|
424
218
|
CategoryProperties?: CategoryProperties | undefined;
|
|
425
219
|
}
|
|
426
|
-
export declare class InternalFailureException extends __BaseException {
|
|
427
|
-
readonly name: "InternalFailureException";
|
|
428
|
-
readonly $fault: "server";
|
|
429
|
-
Message?: string | undefined;
|
|
430
|
-
constructor(
|
|
431
|
-
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
432
|
-
);
|
|
433
|
-
}
|
|
434
|
-
export declare class LimitExceededException extends __BaseException {
|
|
435
|
-
readonly name: "LimitExceededException";
|
|
436
|
-
readonly $fault: "client";
|
|
437
|
-
Message?: string | undefined;
|
|
438
|
-
constructor(
|
|
439
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
440
|
-
);
|
|
441
|
-
}
|
|
442
220
|
export interface InputDataConfig {
|
|
443
221
|
S3Uri: string | undefined;
|
|
444
222
|
TuningDataS3Uri?: string | undefined;
|
|
@@ -451,12 +229,6 @@ export interface CreateLanguageModelRequest {
|
|
|
451
229
|
InputDataConfig: InputDataConfig | undefined;
|
|
452
230
|
Tags?: Tag[] | undefined;
|
|
453
231
|
}
|
|
454
|
-
export declare const ModelStatus: {
|
|
455
|
-
readonly COMPLETED: "COMPLETED";
|
|
456
|
-
readonly FAILED: "FAILED";
|
|
457
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
458
|
-
};
|
|
459
|
-
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
460
232
|
export interface CreateLanguageModelResponse {
|
|
461
233
|
LanguageCode?: CLMLanguageCode | undefined;
|
|
462
234
|
BaseModelName?: BaseModelName | undefined;
|
|
@@ -470,13 +242,6 @@ export interface CreateMedicalVocabularyRequest {
|
|
|
470
242
|
VocabularyFileUri: string | undefined;
|
|
471
243
|
Tags?: Tag[] | undefined;
|
|
472
244
|
}
|
|
473
|
-
export declare const VocabularyState: {
|
|
474
|
-
readonly FAILED: "FAILED";
|
|
475
|
-
readonly PENDING: "PENDING";
|
|
476
|
-
readonly READY: "READY";
|
|
477
|
-
};
|
|
478
|
-
export type VocabularyState =
|
|
479
|
-
(typeof VocabularyState)[keyof typeof VocabularyState];
|
|
480
245
|
export interface CreateMedicalVocabularyResponse {
|
|
481
246
|
VocabularyName?: string | undefined;
|
|
482
247
|
LanguageCode?: LanguageCode | undefined;
|
|
@@ -516,12 +281,6 @@ export interface DeleteCallAnalyticsCategoryRequest {
|
|
|
516
281
|
CategoryName: string | undefined;
|
|
517
282
|
}
|
|
518
283
|
export interface DeleteCallAnalyticsCategoryResponse {}
|
|
519
|
-
export declare class NotFoundException extends __BaseException {
|
|
520
|
-
readonly name: "NotFoundException";
|
|
521
|
-
readonly $fault: "client";
|
|
522
|
-
Message?: string | undefined;
|
|
523
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
524
|
-
}
|
|
525
284
|
export interface DeleteCallAnalyticsJobRequest {
|
|
526
285
|
CallAnalyticsJobName: string | undefined;
|
|
527
286
|
}
|
|
@@ -579,29 +338,10 @@ export interface GetCallAnalyticsJobResponse {
|
|
|
579
338
|
export interface GetMedicalScribeJobRequest {
|
|
580
339
|
MedicalScribeJobName: string | undefined;
|
|
581
340
|
}
|
|
582
|
-
export declare const MedicalScribeParticipantRole: {
|
|
583
|
-
readonly CLINICIAN: "CLINICIAN";
|
|
584
|
-
readonly PATIENT: "PATIENT";
|
|
585
|
-
};
|
|
586
|
-
export type MedicalScribeParticipantRole =
|
|
587
|
-
(typeof MedicalScribeParticipantRole)[keyof typeof MedicalScribeParticipantRole];
|
|
588
341
|
export interface MedicalScribeChannelDefinition {
|
|
589
342
|
ChannelId: number | undefined;
|
|
590
343
|
ParticipantRole: MedicalScribeParticipantRole | undefined;
|
|
591
344
|
}
|
|
592
|
-
export declare const MedicalScribeLanguageCode: {
|
|
593
|
-
readonly EN_US: "en-US";
|
|
594
|
-
};
|
|
595
|
-
export type MedicalScribeLanguageCode =
|
|
596
|
-
(typeof MedicalScribeLanguageCode)[keyof typeof MedicalScribeLanguageCode];
|
|
597
|
-
export declare const MedicalScribeJobStatus: {
|
|
598
|
-
readonly COMPLETED: "COMPLETED";
|
|
599
|
-
readonly FAILED: "FAILED";
|
|
600
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
601
|
-
readonly QUEUED: "QUEUED";
|
|
602
|
-
};
|
|
603
|
-
export type MedicalScribeJobStatus =
|
|
604
|
-
(typeof MedicalScribeJobStatus)[keyof typeof MedicalScribeJobStatus];
|
|
605
345
|
export interface MedicalScribeOutput {
|
|
606
346
|
TranscriptFileUri: string | undefined;
|
|
607
347
|
ClinicalDocumentUri: string | undefined;
|
|
@@ -637,11 +377,6 @@ export interface GetMedicalScribeJobResponse {
|
|
|
637
377
|
export interface GetMedicalTranscriptionJobRequest {
|
|
638
378
|
MedicalTranscriptionJobName: string | undefined;
|
|
639
379
|
}
|
|
640
|
-
export declare const MedicalContentIdentificationType: {
|
|
641
|
-
readonly PHI: "PHI";
|
|
642
|
-
};
|
|
643
|
-
export type MedicalContentIdentificationType =
|
|
644
|
-
(typeof MedicalContentIdentificationType)[keyof typeof MedicalContentIdentificationType];
|
|
645
380
|
export interface MedicalTranscriptionSetting {
|
|
646
381
|
ShowSpeakerLabels?: boolean | undefined;
|
|
647
382
|
MaxSpeakerLabels?: number | undefined;
|
|
@@ -650,26 +385,9 @@ export interface MedicalTranscriptionSetting {
|
|
|
650
385
|
MaxAlternatives?: number | undefined;
|
|
651
386
|
VocabularyName?: string | undefined;
|
|
652
387
|
}
|
|
653
|
-
export declare const Specialty: {
|
|
654
|
-
readonly PRIMARYCARE: "PRIMARYCARE";
|
|
655
|
-
};
|
|
656
|
-
export type Specialty = (typeof Specialty)[keyof typeof Specialty];
|
|
657
388
|
export interface MedicalTranscript {
|
|
658
389
|
TranscriptFileUri?: string | undefined;
|
|
659
390
|
}
|
|
660
|
-
export declare const TranscriptionJobStatus: {
|
|
661
|
-
readonly COMPLETED: "COMPLETED";
|
|
662
|
-
readonly FAILED: "FAILED";
|
|
663
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
664
|
-
readonly QUEUED: "QUEUED";
|
|
665
|
-
};
|
|
666
|
-
export type TranscriptionJobStatus =
|
|
667
|
-
(typeof TranscriptionJobStatus)[keyof typeof TranscriptionJobStatus];
|
|
668
|
-
export declare const Type: {
|
|
669
|
-
readonly CONVERSATION: "CONVERSATION";
|
|
670
|
-
readonly DICTATION: "DICTATION";
|
|
671
|
-
};
|
|
672
|
-
export type Type = (typeof Type)[keyof typeof Type];
|
|
673
391
|
export interface MedicalTranscriptionJob {
|
|
674
392
|
MedicalTranscriptionJobName?: string | undefined;
|
|
675
393
|
TranscriptionJobStatus?: TranscriptionJobStatus | undefined;
|
|
@@ -726,22 +444,11 @@ export interface Settings {
|
|
|
726
444
|
VocabularyFilterName?: string | undefined;
|
|
727
445
|
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
728
446
|
}
|
|
729
|
-
export declare const SubtitleFormat: {
|
|
730
|
-
readonly SRT: "srt";
|
|
731
|
-
readonly VTT: "vtt";
|
|
732
|
-
};
|
|
733
|
-
export type SubtitleFormat =
|
|
734
|
-
(typeof SubtitleFormat)[keyof typeof SubtitleFormat];
|
|
735
447
|
export interface SubtitlesOutput {
|
|
736
448
|
Formats?: SubtitleFormat[] | undefined;
|
|
737
449
|
SubtitleFileUris?: string[] | undefined;
|
|
738
450
|
OutputStartIndex?: number | undefined;
|
|
739
451
|
}
|
|
740
|
-
export declare const ToxicityCategory: {
|
|
741
|
-
readonly ALL: "ALL";
|
|
742
|
-
};
|
|
743
|
-
export type ToxicityCategory =
|
|
744
|
-
(typeof ToxicityCategory)[keyof typeof ToxicityCategory];
|
|
745
452
|
export interface ToxicityDetectionSettings {
|
|
746
453
|
ToxicityCategories: ToxicityCategory[] | undefined;
|
|
747
454
|
}
|
|
@@ -851,12 +558,6 @@ export interface ListMedicalTranscriptionJobsRequest {
|
|
|
851
558
|
NextToken?: string | undefined;
|
|
852
559
|
MaxResults?: number | undefined;
|
|
853
560
|
}
|
|
854
|
-
export declare const OutputLocationType: {
|
|
855
|
-
readonly CUSTOMER_BUCKET: "CUSTOMER_BUCKET";
|
|
856
|
-
readonly SERVICE_BUCKET: "SERVICE_BUCKET";
|
|
857
|
-
};
|
|
858
|
-
export type OutputLocationType =
|
|
859
|
-
(typeof OutputLocationType)[keyof typeof OutputLocationType];
|
|
860
561
|
export interface MedicalTranscriptionJobSummary {
|
|
861
562
|
MedicalTranscriptionJobName?: string | undefined;
|
|
862
563
|
CreationTime?: Date | undefined;
|
|
@@ -954,12 +655,6 @@ export interface ListVocabularyFiltersResponse {
|
|
|
954
655
|
NextToken?: string | undefined;
|
|
955
656
|
VocabularyFilters?: VocabularyFilterInfo[] | undefined;
|
|
956
657
|
}
|
|
957
|
-
export declare const Pronouns: {
|
|
958
|
-
readonly HE_HIM: "HE_HIM";
|
|
959
|
-
readonly SHE_HER: "SHE_HER";
|
|
960
|
-
readonly THEY_THEM: "THEY_THEM";
|
|
961
|
-
};
|
|
962
|
-
export type Pronouns = (typeof Pronouns)[keyof typeof Pronouns];
|
|
963
658
|
export interface MedicalScribePatientContext {
|
|
964
659
|
Pronouns?: Pronouns | undefined;
|
|
965
660
|
}
|
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.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-transcribe",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|