@aws-sdk/client-transcribe-streaming 3.933.0 → 3.935.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 +219 -173
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +215 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -255
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/StartMedicalStreamTranscriptionCommand.d.ts +2 -2
- package/dist-types/commands/StartStreamTranscriptionCommand.d.ts +6 -6
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +407 -0
- package/dist-types/models/errors.d.ts +85 -0
- package/dist-types/models/models_0.d.ts +2 -447
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +256 -0
- package/dist-types/ts3.4/models/errors.d.ts +48 -0
- package/dist-types/ts3.4/models/models_0.d.ts +33 -259
- package/package.json +12 -12
- 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
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
export declare const ItemType: {
|
|
2
|
+
readonly PRONUNCIATION: "pronunciation";
|
|
3
|
+
readonly PUNCTUATION: "punctuation";
|
|
4
|
+
};
|
|
5
|
+
export type ItemType = (typeof ItemType)[keyof typeof ItemType];
|
|
6
|
+
export declare const ParticipantRole: {
|
|
7
|
+
readonly AGENT: "AGENT";
|
|
8
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
9
|
+
};
|
|
10
|
+
export type ParticipantRole =
|
|
11
|
+
(typeof ParticipantRole)[keyof typeof ParticipantRole];
|
|
12
|
+
export declare const ContentRedactionOutput: {
|
|
13
|
+
readonly REDACTED: "redacted";
|
|
14
|
+
readonly REDACTED_AND_UNREDACTED: "redacted_and_unredacted";
|
|
15
|
+
};
|
|
16
|
+
export type ContentRedactionOutput =
|
|
17
|
+
(typeof ContentRedactionOutput)[keyof typeof ContentRedactionOutput];
|
|
18
|
+
export declare const CallAnalyticsLanguageCode: {
|
|
19
|
+
readonly DE_DE: "de-DE";
|
|
20
|
+
readonly EN_AU: "en-AU";
|
|
21
|
+
readonly EN_GB: "en-GB";
|
|
22
|
+
readonly EN_US: "en-US";
|
|
23
|
+
readonly ES_US: "es-US";
|
|
24
|
+
readonly FR_CA: "fr-CA";
|
|
25
|
+
readonly FR_FR: "fr-FR";
|
|
26
|
+
readonly IT_IT: "it-IT";
|
|
27
|
+
readonly PT_BR: "pt-BR";
|
|
28
|
+
};
|
|
29
|
+
export type CallAnalyticsLanguageCode =
|
|
30
|
+
(typeof CallAnalyticsLanguageCode)[keyof typeof CallAnalyticsLanguageCode];
|
|
31
|
+
export declare const Sentiment: {
|
|
32
|
+
readonly MIXED: "MIXED";
|
|
33
|
+
readonly NEGATIVE: "NEGATIVE";
|
|
34
|
+
readonly NEUTRAL: "NEUTRAL";
|
|
35
|
+
readonly POSITIVE: "POSITIVE";
|
|
36
|
+
};
|
|
37
|
+
export type Sentiment = (typeof Sentiment)[keyof typeof Sentiment];
|
|
38
|
+
export declare const ClinicalNoteGenerationStatus: {
|
|
39
|
+
readonly COMPLETED: "COMPLETED";
|
|
40
|
+
readonly FAILED: "FAILED";
|
|
41
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
42
|
+
};
|
|
43
|
+
export type ClinicalNoteGenerationStatus =
|
|
44
|
+
(typeof ClinicalNoteGenerationStatus)[keyof typeof ClinicalNoteGenerationStatus];
|
|
45
|
+
export declare const MedicalScribeNoteTemplate: {
|
|
46
|
+
readonly BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP";
|
|
47
|
+
readonly BIRP: "BIRP";
|
|
48
|
+
readonly DAP: "DAP";
|
|
49
|
+
readonly GIRPP: "GIRPP";
|
|
50
|
+
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
51
|
+
readonly PHYSICAL_SOAP: "PHYSICAL_SOAP";
|
|
52
|
+
readonly SIRP: "SIRP";
|
|
53
|
+
};
|
|
54
|
+
export type MedicalScribeNoteTemplate =
|
|
55
|
+
(typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate];
|
|
56
|
+
export declare const ContentIdentificationType: {
|
|
57
|
+
readonly PII: "PII";
|
|
58
|
+
};
|
|
59
|
+
export type ContentIdentificationType =
|
|
60
|
+
(typeof ContentIdentificationType)[keyof typeof ContentIdentificationType];
|
|
61
|
+
export declare const ContentRedactionType: {
|
|
62
|
+
readonly PII: "PII";
|
|
63
|
+
};
|
|
64
|
+
export type ContentRedactionType =
|
|
65
|
+
(typeof ContentRedactionType)[keyof typeof ContentRedactionType];
|
|
66
|
+
export declare const MedicalScribeParticipantRole: {
|
|
67
|
+
readonly CLINICIAN: "CLINICIAN";
|
|
68
|
+
readonly PATIENT: "PATIENT";
|
|
69
|
+
};
|
|
70
|
+
export type MedicalScribeParticipantRole =
|
|
71
|
+
(typeof MedicalScribeParticipantRole)[keyof typeof MedicalScribeParticipantRole];
|
|
72
|
+
export declare const MedicalScribeLanguageCode: {
|
|
73
|
+
readonly EN_US: "en-US";
|
|
74
|
+
};
|
|
75
|
+
export type MedicalScribeLanguageCode =
|
|
76
|
+
(typeof MedicalScribeLanguageCode)[keyof typeof MedicalScribeLanguageCode];
|
|
77
|
+
export declare const MedicalScribeMediaEncoding: {
|
|
78
|
+
readonly FLAC: "flac";
|
|
79
|
+
readonly OGG_OPUS: "ogg-opus";
|
|
80
|
+
readonly PCM: "pcm";
|
|
81
|
+
};
|
|
82
|
+
export type MedicalScribeMediaEncoding =
|
|
83
|
+
(typeof MedicalScribeMediaEncoding)[keyof typeof MedicalScribeMediaEncoding];
|
|
84
|
+
export declare const MedicalScribeStreamStatus: {
|
|
85
|
+
readonly COMPLETED: "COMPLETED";
|
|
86
|
+
readonly FAILED: "FAILED";
|
|
87
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
88
|
+
readonly PAUSED: "PAUSED";
|
|
89
|
+
};
|
|
90
|
+
export type MedicalScribeStreamStatus =
|
|
91
|
+
(typeof MedicalScribeStreamStatus)[keyof typeof MedicalScribeStreamStatus];
|
|
92
|
+
export declare const MedicalScribeVocabularyFilterMethod: {
|
|
93
|
+
readonly MASK: "mask";
|
|
94
|
+
readonly REMOVE: "remove";
|
|
95
|
+
readonly TAG: "tag";
|
|
96
|
+
};
|
|
97
|
+
export type MedicalScribeVocabularyFilterMethod =
|
|
98
|
+
(typeof MedicalScribeVocabularyFilterMethod)[keyof typeof MedicalScribeVocabularyFilterMethod];
|
|
99
|
+
export declare const LanguageCode: {
|
|
100
|
+
readonly AF_ZA: "af-ZA";
|
|
101
|
+
readonly AM_ET: "am-ET";
|
|
102
|
+
readonly AR_AE: "ar-AE";
|
|
103
|
+
readonly AR_SA: "ar-SA";
|
|
104
|
+
readonly BE_BY: "be-BY";
|
|
105
|
+
readonly BG_BG: "bg-BG";
|
|
106
|
+
readonly BN_IN: "bn-IN";
|
|
107
|
+
readonly BS_BA: "bs-BA";
|
|
108
|
+
readonly CA_ES: "ca-ES";
|
|
109
|
+
readonly CKB_IQ: "ckb-IQ";
|
|
110
|
+
readonly CKB_IR: "ckb-IR";
|
|
111
|
+
readonly CS_CZ: "cs-CZ";
|
|
112
|
+
readonly CY_WL: "cy-WL";
|
|
113
|
+
readonly DA_DK: "da-DK";
|
|
114
|
+
readonly DE_CH: "de-CH";
|
|
115
|
+
readonly DE_DE: "de-DE";
|
|
116
|
+
readonly EL_GR: "el-GR";
|
|
117
|
+
readonly EN_AB: "en-AB";
|
|
118
|
+
readonly EN_AU: "en-AU";
|
|
119
|
+
readonly EN_GB: "en-GB";
|
|
120
|
+
readonly EN_IE: "en-IE";
|
|
121
|
+
readonly EN_IN: "en-IN";
|
|
122
|
+
readonly EN_NZ: "en-NZ";
|
|
123
|
+
readonly EN_US: "en-US";
|
|
124
|
+
readonly EN_WL: "en-WL";
|
|
125
|
+
readonly EN_ZA: "en-ZA";
|
|
126
|
+
readonly ES_ES: "es-ES";
|
|
127
|
+
readonly ES_MX: "es-MX";
|
|
128
|
+
readonly ES_US: "es-US";
|
|
129
|
+
readonly ET_ET: "et-ET";
|
|
130
|
+
readonly EU_ES: "eu-ES";
|
|
131
|
+
readonly FA_AF: "fa-AF";
|
|
132
|
+
readonly FA_IR: "fa-IR";
|
|
133
|
+
readonly FI_FI: "fi-FI";
|
|
134
|
+
readonly FR_CA: "fr-CA";
|
|
135
|
+
readonly FR_FR: "fr-FR";
|
|
136
|
+
readonly GL_ES: "gl-ES";
|
|
137
|
+
readonly GU_IN: "gu-IN";
|
|
138
|
+
readonly HE_IL: "he-IL";
|
|
139
|
+
readonly HI_IN: "hi-IN";
|
|
140
|
+
readonly HR_HR: "hr-HR";
|
|
141
|
+
readonly HT_HT: "ht-HT";
|
|
142
|
+
readonly HU_HU: "hu-HU";
|
|
143
|
+
readonly HY_AM: "hy-AM";
|
|
144
|
+
readonly ID_ID: "id-ID";
|
|
145
|
+
readonly IS_IS: "is-IS";
|
|
146
|
+
readonly IT_IT: "it-IT";
|
|
147
|
+
readonly JA_JP: "ja-JP";
|
|
148
|
+
readonly JV_ID: "jv-ID";
|
|
149
|
+
readonly KAB_DZ: "kab-DZ";
|
|
150
|
+
readonly KA_GE: "ka-GE";
|
|
151
|
+
readonly KK_KZ: "kk-KZ";
|
|
152
|
+
readonly KM_KH: "km-KH";
|
|
153
|
+
readonly KN_IN: "kn-IN";
|
|
154
|
+
readonly KO_KR: "ko-KR";
|
|
155
|
+
readonly LG_IN: "lg-IN";
|
|
156
|
+
readonly LT_LT: "lt-LT";
|
|
157
|
+
readonly LV_LV: "lv-LV";
|
|
158
|
+
readonly MK_MK: "mk-MK";
|
|
159
|
+
readonly ML_IN: "ml-IN";
|
|
160
|
+
readonly MR_IN: "mr-IN";
|
|
161
|
+
readonly MS_MY: "ms-MY";
|
|
162
|
+
readonly MY_MM: "my-MM";
|
|
163
|
+
readonly NE_NP: "ne-NP";
|
|
164
|
+
readonly NL_NL: "nl-NL";
|
|
165
|
+
readonly NO_NO: "no-NO";
|
|
166
|
+
readonly OR_IN: "or-IN";
|
|
167
|
+
readonly PA_IN: "pa-IN";
|
|
168
|
+
readonly PL_PL: "pl-PL";
|
|
169
|
+
readonly PS_AF: "ps-AF";
|
|
170
|
+
readonly PT_BR: "pt-BR";
|
|
171
|
+
readonly PT_PT: "pt-PT";
|
|
172
|
+
readonly RO_RO: "ro-RO";
|
|
173
|
+
readonly RU_RU: "ru-RU";
|
|
174
|
+
readonly SI_LK: "si-LK";
|
|
175
|
+
readonly SK_SK: "sk-SK";
|
|
176
|
+
readonly SL_SI: "sl-SI";
|
|
177
|
+
readonly SO_SO: "so-SO";
|
|
178
|
+
readonly SQ_AL: "sq-AL";
|
|
179
|
+
readonly SR_RS: "sr-RS";
|
|
180
|
+
readonly SU_ID: "su-ID";
|
|
181
|
+
readonly SV_SE: "sv-SE";
|
|
182
|
+
readonly SW_BI: "sw-BI";
|
|
183
|
+
readonly SW_KE: "sw-KE";
|
|
184
|
+
readonly SW_RW: "sw-RW";
|
|
185
|
+
readonly SW_TZ: "sw-TZ";
|
|
186
|
+
readonly SW_UG: "sw-UG";
|
|
187
|
+
readonly TA_IN: "ta-IN";
|
|
188
|
+
readonly TE_IN: "te-IN";
|
|
189
|
+
readonly TH_TH: "th-TH";
|
|
190
|
+
readonly TL_PH: "tl-PH";
|
|
191
|
+
readonly TR_TR: "tr-TR";
|
|
192
|
+
readonly UK_UA: "uk-UA";
|
|
193
|
+
readonly UZ_UZ: "uz-UZ";
|
|
194
|
+
readonly VI_VN: "vi-VN";
|
|
195
|
+
readonly ZH_CN: "zh-CN";
|
|
196
|
+
readonly ZH_HK: "zh-HK";
|
|
197
|
+
readonly ZH_TW: "zh-TW";
|
|
198
|
+
readonly ZU_ZA: "zu-ZA";
|
|
199
|
+
};
|
|
200
|
+
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
201
|
+
export declare const MediaEncoding: {
|
|
202
|
+
readonly FLAC: "flac";
|
|
203
|
+
readonly OGG_OPUS: "ogg-opus";
|
|
204
|
+
readonly PCM: "pcm";
|
|
205
|
+
};
|
|
206
|
+
export type MediaEncoding = (typeof MediaEncoding)[keyof typeof MediaEncoding];
|
|
207
|
+
export declare const MedicalContentIdentificationType: {
|
|
208
|
+
readonly PHI: "PHI";
|
|
209
|
+
};
|
|
210
|
+
export type MedicalContentIdentificationType =
|
|
211
|
+
(typeof MedicalContentIdentificationType)[keyof typeof MedicalContentIdentificationType];
|
|
212
|
+
export declare const Pronouns: {
|
|
213
|
+
readonly HE_HIM: "HE_HIM";
|
|
214
|
+
readonly SHE_HER: "SHE_HER";
|
|
215
|
+
readonly THEY_THEM: "THEY_THEM";
|
|
216
|
+
};
|
|
217
|
+
export type Pronouns = (typeof Pronouns)[keyof typeof Pronouns];
|
|
218
|
+
export declare const MedicalScribeSessionControlEventType: {
|
|
219
|
+
readonly END_OF_SESSION: "END_OF_SESSION";
|
|
220
|
+
};
|
|
221
|
+
export type MedicalScribeSessionControlEventType =
|
|
222
|
+
(typeof MedicalScribeSessionControlEventType)[keyof typeof MedicalScribeSessionControlEventType];
|
|
223
|
+
export declare const MedicalScribeTranscriptItemType: {
|
|
224
|
+
readonly PRONUNCIATION: "pronunciation";
|
|
225
|
+
readonly PUNCTUATION: "punctuation";
|
|
226
|
+
};
|
|
227
|
+
export type MedicalScribeTranscriptItemType =
|
|
228
|
+
(typeof MedicalScribeTranscriptItemType)[keyof typeof MedicalScribeTranscriptItemType];
|
|
229
|
+
export declare const PartialResultsStability: {
|
|
230
|
+
readonly HIGH: "high";
|
|
231
|
+
readonly LOW: "low";
|
|
232
|
+
readonly MEDIUM: "medium";
|
|
233
|
+
};
|
|
234
|
+
export type PartialResultsStability =
|
|
235
|
+
(typeof PartialResultsStability)[keyof typeof PartialResultsStability];
|
|
236
|
+
export declare const Specialty: {
|
|
237
|
+
readonly CARDIOLOGY: "CARDIOLOGY";
|
|
238
|
+
readonly NEUROLOGY: "NEUROLOGY";
|
|
239
|
+
readonly ONCOLOGY: "ONCOLOGY";
|
|
240
|
+
readonly PRIMARYCARE: "PRIMARYCARE";
|
|
241
|
+
readonly RADIOLOGY: "RADIOLOGY";
|
|
242
|
+
readonly UROLOGY: "UROLOGY";
|
|
243
|
+
};
|
|
244
|
+
export type Specialty = (typeof Specialty)[keyof typeof Specialty];
|
|
245
|
+
export declare const VocabularyFilterMethod: {
|
|
246
|
+
readonly MASK: "mask";
|
|
247
|
+
readonly REMOVE: "remove";
|
|
248
|
+
readonly TAG: "tag";
|
|
249
|
+
};
|
|
250
|
+
export type VocabularyFilterMethod =
|
|
251
|
+
(typeof VocabularyFilterMethod)[keyof typeof VocabularyFilterMethod];
|
|
252
|
+
export declare const Type: {
|
|
253
|
+
readonly CONVERSATION: "CONVERSATION";
|
|
254
|
+
readonly DICTATION: "DICTATION";
|
|
255
|
+
};
|
|
256
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { TranscribeStreamingServiceException as __BaseException } from "./TranscribeStreamingServiceException";
|
|
3
|
+
export declare class BadRequestException extends __BaseException {
|
|
4
|
+
readonly name: "BadRequestException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalFailureException extends __BaseException {
|
|
18
|
+
readonly name: "InternalFailureException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
Message?: string | undefined;
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class LimitExceededException extends __BaseException {
|
|
26
|
+
readonly name: "LimitExceededException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
Message?: string | undefined;
|
|
29
|
+
constructor(
|
|
30
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
34
|
+
readonly name: "ServiceUnavailableException";
|
|
35
|
+
readonly $fault: "server";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
42
|
+
readonly name: "ResourceNotFoundException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
Message?: string | undefined;
|
|
45
|
+
constructor(
|
|
46
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
47
|
+
);
|
|
48
|
+
}
|