@aws-sdk/client-transcribe 3.301.0 → 3.306.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 +146 -167
- package/dist-es/models/models_0.js +146 -167
- package/dist-types/models/models_0.d.ts +252 -147
- package/dist-types/ts3.4/models/models_0.d.ts +179 -146
- package/package.json +34 -34
|
@@ -14,99 +14,110 @@ export declare class BadRequestException extends __BaseException {
|
|
|
14
14
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
15
15
|
);
|
|
16
16
|
}
|
|
17
|
-
export declare
|
|
18
|
-
NARROW_BAND
|
|
19
|
-
WIDE_BAND
|
|
20
|
-
}
|
|
21
|
-
export
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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 CallAnalyticsJobStatus: {
|
|
23
|
+
readonly COMPLETED: "COMPLETED";
|
|
24
|
+
readonly FAILED: "FAILED";
|
|
25
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
26
|
+
readonly QUEUED: "QUEUED";
|
|
27
|
+
};
|
|
28
|
+
export type CallAnalyticsJobStatus =
|
|
29
|
+
(typeof CallAnalyticsJobStatus)[keyof typeof CallAnalyticsJobStatus];
|
|
30
|
+
export declare const ParticipantRole: {
|
|
31
|
+
readonly AGENT: "AGENT";
|
|
32
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
33
|
+
};
|
|
34
|
+
export type ParticipantRole =
|
|
35
|
+
(typeof ParticipantRole)[keyof typeof ParticipantRole];
|
|
31
36
|
export interface ChannelDefinition {
|
|
32
37
|
ChannelId?: number;
|
|
33
38
|
ParticipantRole?: ParticipantRole | string;
|
|
34
39
|
}
|
|
35
|
-
export declare
|
|
36
|
-
AF_ZA
|
|
37
|
-
AR_AE
|
|
38
|
-
AR_SA
|
|
39
|
-
DA_DK
|
|
40
|
-
DE_CH
|
|
41
|
-
DE_DE
|
|
42
|
-
EN_AB
|
|
43
|
-
EN_AU
|
|
44
|
-
EN_GB
|
|
45
|
-
EN_IE
|
|
46
|
-
EN_IN
|
|
47
|
-
EN_NZ
|
|
48
|
-
EN_US
|
|
49
|
-
EN_WL
|
|
50
|
-
EN_ZA
|
|
51
|
-
ES_ES
|
|
52
|
-
ES_US
|
|
53
|
-
FA_IR
|
|
54
|
-
FR_CA
|
|
55
|
-
FR_FR
|
|
56
|
-
HE_IL
|
|
57
|
-
HI_IN
|
|
58
|
-
ID_ID
|
|
59
|
-
IT_IT
|
|
60
|
-
JA_JP
|
|
61
|
-
KO_KR
|
|
62
|
-
MS_MY
|
|
63
|
-
NL_NL
|
|
64
|
-
PT_BR
|
|
65
|
-
PT_PT
|
|
66
|
-
RU_RU
|
|
67
|
-
SV_SE
|
|
68
|
-
TA_IN
|
|
69
|
-
TE_IN
|
|
70
|
-
TH_TH
|
|
71
|
-
TR_TR
|
|
72
|
-
VI_VN
|
|
73
|
-
ZH_CN
|
|
74
|
-
ZH_TW
|
|
75
|
-
}
|
|
40
|
+
export declare const LanguageCode: {
|
|
41
|
+
readonly AF_ZA: "af-ZA";
|
|
42
|
+
readonly AR_AE: "ar-AE";
|
|
43
|
+
readonly AR_SA: "ar-SA";
|
|
44
|
+
readonly DA_DK: "da-DK";
|
|
45
|
+
readonly DE_CH: "de-CH";
|
|
46
|
+
readonly DE_DE: "de-DE";
|
|
47
|
+
readonly EN_AB: "en-AB";
|
|
48
|
+
readonly EN_AU: "en-AU";
|
|
49
|
+
readonly EN_GB: "en-GB";
|
|
50
|
+
readonly EN_IE: "en-IE";
|
|
51
|
+
readonly EN_IN: "en-IN";
|
|
52
|
+
readonly EN_NZ: "en-NZ";
|
|
53
|
+
readonly EN_US: "en-US";
|
|
54
|
+
readonly EN_WL: "en-WL";
|
|
55
|
+
readonly EN_ZA: "en-ZA";
|
|
56
|
+
readonly ES_ES: "es-ES";
|
|
57
|
+
readonly ES_US: "es-US";
|
|
58
|
+
readonly FA_IR: "fa-IR";
|
|
59
|
+
readonly FR_CA: "fr-CA";
|
|
60
|
+
readonly FR_FR: "fr-FR";
|
|
61
|
+
readonly HE_IL: "he-IL";
|
|
62
|
+
readonly HI_IN: "hi-IN";
|
|
63
|
+
readonly ID_ID: "id-ID";
|
|
64
|
+
readonly IT_IT: "it-IT";
|
|
65
|
+
readonly JA_JP: "ja-JP";
|
|
66
|
+
readonly KO_KR: "ko-KR";
|
|
67
|
+
readonly MS_MY: "ms-MY";
|
|
68
|
+
readonly NL_NL: "nl-NL";
|
|
69
|
+
readonly PT_BR: "pt-BR";
|
|
70
|
+
readonly PT_PT: "pt-PT";
|
|
71
|
+
readonly RU_RU: "ru-RU";
|
|
72
|
+
readonly SV_SE: "sv-SE";
|
|
73
|
+
readonly TA_IN: "ta-IN";
|
|
74
|
+
readonly TE_IN: "te-IN";
|
|
75
|
+
readonly TH_TH: "th-TH";
|
|
76
|
+
readonly TR_TR: "tr-TR";
|
|
77
|
+
readonly VI_VN: "vi-VN";
|
|
78
|
+
readonly ZH_CN: "zh-CN";
|
|
79
|
+
readonly ZH_TW: "zh-TW";
|
|
80
|
+
};
|
|
81
|
+
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
76
82
|
export interface Media {
|
|
77
83
|
MediaFileUri?: string;
|
|
78
84
|
RedactedMediaFileUri?: string;
|
|
79
85
|
}
|
|
80
|
-
export declare
|
|
81
|
-
AMR
|
|
82
|
-
FLAC
|
|
83
|
-
MP3
|
|
84
|
-
MP4
|
|
85
|
-
OGG
|
|
86
|
-
WAV
|
|
87
|
-
WEBM
|
|
88
|
-
}
|
|
89
|
-
export
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
86
|
+
export declare const MediaFormat: {
|
|
87
|
+
readonly AMR: "amr";
|
|
88
|
+
readonly FLAC: "flac";
|
|
89
|
+
readonly MP3: "mp3";
|
|
90
|
+
readonly MP4: "mp4";
|
|
91
|
+
readonly OGG: "ogg";
|
|
92
|
+
readonly WAV: "wav";
|
|
93
|
+
readonly WEBM: "webm";
|
|
94
|
+
};
|
|
95
|
+
export type MediaFormat = (typeof MediaFormat)[keyof typeof MediaFormat];
|
|
96
|
+
export declare const PiiEntityType: {
|
|
97
|
+
readonly ADDRESS: "ADDRESS";
|
|
98
|
+
readonly ALL: "ALL";
|
|
99
|
+
readonly BANK_ACCOUNT_NUMBER: "BANK_ACCOUNT_NUMBER";
|
|
100
|
+
readonly BANK_ROUTING: "BANK_ROUTING";
|
|
101
|
+
readonly CREDIT_DEBIT_CVV: "CREDIT_DEBIT_CVV";
|
|
102
|
+
readonly CREDIT_DEBIT_EXPIRY: "CREDIT_DEBIT_EXPIRY";
|
|
103
|
+
readonly CREDIT_DEBIT_NUMBER: "CREDIT_DEBIT_NUMBER";
|
|
104
|
+
readonly EMAIL: "EMAIL";
|
|
105
|
+
readonly NAME: "NAME";
|
|
106
|
+
readonly PHONE: "PHONE";
|
|
107
|
+
readonly PIN: "PIN";
|
|
108
|
+
readonly SSN: "SSN";
|
|
109
|
+
};
|
|
110
|
+
export type PiiEntityType = (typeof PiiEntityType)[keyof typeof PiiEntityType];
|
|
111
|
+
export declare const RedactionOutput: {
|
|
112
|
+
readonly REDACTED: "redacted";
|
|
113
|
+
readonly REDACTED_AND_UNREDACTED: "redacted_and_unredacted";
|
|
114
|
+
};
|
|
115
|
+
export type RedactionOutput =
|
|
116
|
+
(typeof RedactionOutput)[keyof typeof RedactionOutput];
|
|
117
|
+
export declare const RedactionType: {
|
|
118
|
+
readonly PII: "PII";
|
|
119
|
+
};
|
|
120
|
+
export type RedactionType = (typeof RedactionType)[keyof typeof RedactionType];
|
|
110
121
|
export interface ContentRedaction {
|
|
111
122
|
RedactionType: RedactionType | string | undefined;
|
|
112
123
|
RedactionOutput: RedactionOutput | string | undefined;
|
|
@@ -117,11 +128,13 @@ export interface LanguageIdSettings {
|
|
|
117
128
|
VocabularyFilterName?: string;
|
|
118
129
|
LanguageModelName?: string;
|
|
119
130
|
}
|
|
120
|
-
export declare
|
|
121
|
-
MASK
|
|
122
|
-
REMOVE
|
|
123
|
-
TAG
|
|
124
|
-
}
|
|
131
|
+
export declare const VocabularyFilterMethod: {
|
|
132
|
+
readonly MASK: "mask";
|
|
133
|
+
readonly REMOVE: "remove";
|
|
134
|
+
readonly TAG: "tag";
|
|
135
|
+
};
|
|
136
|
+
export type VocabularyFilterMethod =
|
|
137
|
+
(typeof VocabularyFilterMethod)[keyof typeof VocabularyFilterMethod];
|
|
125
138
|
export interface CallAnalyticsJobSettings {
|
|
126
139
|
VocabularyName?: string;
|
|
127
140
|
VocabularyFilterName?: string;
|
|
@@ -161,10 +174,11 @@ export interface CallAnalyticsJobSummary {
|
|
|
161
174
|
CallAnalyticsJobStatus?: CallAnalyticsJobStatus | string;
|
|
162
175
|
FailureReason?: string;
|
|
163
176
|
}
|
|
164
|
-
export declare
|
|
165
|
-
POST_CALL
|
|
166
|
-
REAL_TIME
|
|
167
|
-
}
|
|
177
|
+
export declare const InputType: {
|
|
178
|
+
readonly POST_CALL: "POST_CALL";
|
|
179
|
+
readonly REAL_TIME: "REAL_TIME";
|
|
180
|
+
};
|
|
181
|
+
export type InputType = (typeof InputType)[keyof typeof InputType];
|
|
168
182
|
export interface RelativeTimeRange {
|
|
169
183
|
StartPercentage?: number;
|
|
170
184
|
EndPercentage?: number;
|
|
@@ -184,12 +198,14 @@ export interface NonTalkTimeFilter {
|
|
|
184
198
|
RelativeTimeRange?: RelativeTimeRange;
|
|
185
199
|
Negate?: boolean;
|
|
186
200
|
}
|
|
187
|
-
export declare
|
|
188
|
-
MIXED
|
|
189
|
-
NEGATIVE
|
|
190
|
-
NEUTRAL
|
|
191
|
-
POSITIVE
|
|
192
|
-
}
|
|
201
|
+
export declare const SentimentValue: {
|
|
202
|
+
readonly MIXED: "MIXED";
|
|
203
|
+
readonly NEGATIVE: "NEGATIVE";
|
|
204
|
+
readonly NEUTRAL: "NEUTRAL";
|
|
205
|
+
readonly POSITIVE: "POSITIVE";
|
|
206
|
+
};
|
|
207
|
+
export type SentimentValue =
|
|
208
|
+
(typeof SentimentValue)[keyof typeof SentimentValue];
|
|
193
209
|
export interface SentimentFilter {
|
|
194
210
|
Sentiments: (SentimentValue | string)[] | undefined;
|
|
195
211
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
@@ -197,9 +213,11 @@ export interface SentimentFilter {
|
|
|
197
213
|
ParticipantRole?: ParticipantRole | string;
|
|
198
214
|
Negate?: boolean;
|
|
199
215
|
}
|
|
200
|
-
export declare
|
|
201
|
-
EXACT
|
|
202
|
-
}
|
|
216
|
+
export declare const TranscriptFilterType: {
|
|
217
|
+
readonly EXACT: "EXACT";
|
|
218
|
+
};
|
|
219
|
+
export type TranscriptFilterType =
|
|
220
|
+
(typeof TranscriptFilterType)[keyof typeof TranscriptFilterType];
|
|
203
221
|
export interface TranscriptFilter {
|
|
204
222
|
TranscriptFilterType: TranscriptFilterType | string | undefined;
|
|
205
223
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
@@ -266,15 +284,17 @@ export interface CategoryProperties {
|
|
|
266
284
|
LastUpdateTime?: Date;
|
|
267
285
|
InputType?: InputType | string;
|
|
268
286
|
}
|
|
269
|
-
export declare
|
|
270
|
-
DE_DE
|
|
271
|
-
EN_AU
|
|
272
|
-
EN_GB
|
|
273
|
-
EN_US
|
|
274
|
-
ES_US
|
|
275
|
-
HI_IN
|
|
276
|
-
JA_JP
|
|
277
|
-
}
|
|
287
|
+
export declare const CLMLanguageCode: {
|
|
288
|
+
readonly DE_DE: "de-DE";
|
|
289
|
+
readonly EN_AU: "en-AU";
|
|
290
|
+
readonly EN_GB: "en-GB";
|
|
291
|
+
readonly EN_US: "en-US";
|
|
292
|
+
readonly ES_US: "es-US";
|
|
293
|
+
readonly HI_IN: "hi-IN";
|
|
294
|
+
readonly JA_JP: "ja-JP";
|
|
295
|
+
};
|
|
296
|
+
export type CLMLanguageCode =
|
|
297
|
+
(typeof CLMLanguageCode)[keyof typeof CLMLanguageCode];
|
|
278
298
|
export declare class ConflictException extends __BaseException {
|
|
279
299
|
readonly name: "ConflictException";
|
|
280
300
|
readonly $fault: "client";
|
|
@@ -321,11 +341,12 @@ export interface CreateLanguageModelRequest {
|
|
|
321
341
|
InputDataConfig: InputDataConfig | undefined;
|
|
322
342
|
Tags?: Tag[];
|
|
323
343
|
}
|
|
324
|
-
export declare
|
|
325
|
-
COMPLETED
|
|
326
|
-
FAILED
|
|
327
|
-
IN_PROGRESS
|
|
328
|
-
}
|
|
344
|
+
export declare const ModelStatus: {
|
|
345
|
+
readonly COMPLETED: "COMPLETED";
|
|
346
|
+
readonly FAILED: "FAILED";
|
|
347
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
348
|
+
};
|
|
349
|
+
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
329
350
|
export interface CreateLanguageModelResponse {
|
|
330
351
|
LanguageCode?: CLMLanguageCode | string;
|
|
331
352
|
BaseModelName?: BaseModelName | string;
|
|
@@ -339,11 +360,13 @@ export interface CreateMedicalVocabularyRequest {
|
|
|
339
360
|
VocabularyFileUri: string | undefined;
|
|
340
361
|
Tags?: Tag[];
|
|
341
362
|
}
|
|
342
|
-
export declare
|
|
343
|
-
FAILED
|
|
344
|
-
PENDING
|
|
345
|
-
READY
|
|
346
|
-
}
|
|
363
|
+
export declare const VocabularyState: {
|
|
364
|
+
readonly FAILED: "FAILED";
|
|
365
|
+
readonly PENDING: "PENDING";
|
|
366
|
+
readonly READY: "READY";
|
|
367
|
+
};
|
|
368
|
+
export type VocabularyState =
|
|
369
|
+
(typeof VocabularyState)[keyof typeof VocabularyState];
|
|
347
370
|
export interface CreateMedicalVocabularyResponse {
|
|
348
371
|
VocabularyName?: string;
|
|
349
372
|
LanguageCode?: LanguageCode | string;
|
|
@@ -443,9 +466,11 @@ export interface GetCallAnalyticsJobResponse {
|
|
|
443
466
|
export interface GetMedicalTranscriptionJobRequest {
|
|
444
467
|
MedicalTranscriptionJobName: string | undefined;
|
|
445
468
|
}
|
|
446
|
-
export declare
|
|
447
|
-
PHI
|
|
448
|
-
}
|
|
469
|
+
export declare const MedicalContentIdentificationType: {
|
|
470
|
+
readonly PHI: "PHI";
|
|
471
|
+
};
|
|
472
|
+
export type MedicalContentIdentificationType =
|
|
473
|
+
(typeof MedicalContentIdentificationType)[keyof typeof MedicalContentIdentificationType];
|
|
449
474
|
export interface MedicalTranscriptionSetting {
|
|
450
475
|
ShowSpeakerLabels?: boolean;
|
|
451
476
|
MaxSpeakerLabels?: number;
|
|
@@ -454,22 +479,26 @@ export interface MedicalTranscriptionSetting {
|
|
|
454
479
|
MaxAlternatives?: number;
|
|
455
480
|
VocabularyName?: string;
|
|
456
481
|
}
|
|
457
|
-
export declare
|
|
458
|
-
PRIMARYCARE
|
|
459
|
-
}
|
|
482
|
+
export declare const Specialty: {
|
|
483
|
+
readonly PRIMARYCARE: "PRIMARYCARE";
|
|
484
|
+
};
|
|
485
|
+
export type Specialty = (typeof Specialty)[keyof typeof Specialty];
|
|
460
486
|
export interface MedicalTranscript {
|
|
461
487
|
TranscriptFileUri?: string;
|
|
462
488
|
}
|
|
463
|
-
export declare
|
|
464
|
-
COMPLETED
|
|
465
|
-
FAILED
|
|
466
|
-
IN_PROGRESS
|
|
467
|
-
QUEUED
|
|
468
|
-
}
|
|
469
|
-
export
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
489
|
+
export declare const TranscriptionJobStatus: {
|
|
490
|
+
readonly COMPLETED: "COMPLETED";
|
|
491
|
+
readonly FAILED: "FAILED";
|
|
492
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
493
|
+
readonly QUEUED: "QUEUED";
|
|
494
|
+
};
|
|
495
|
+
export type TranscriptionJobStatus =
|
|
496
|
+
(typeof TranscriptionJobStatus)[keyof typeof TranscriptionJobStatus];
|
|
497
|
+
export declare const Type: {
|
|
498
|
+
readonly CONVERSATION: "CONVERSATION";
|
|
499
|
+
readonly DICTATION: "DICTATION";
|
|
500
|
+
};
|
|
501
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
473
502
|
export interface MedicalTranscriptionJob {
|
|
474
503
|
MedicalTranscriptionJobName?: string;
|
|
475
504
|
TranscriptionJobStatus?: TranscriptionJobStatus | string;
|
|
@@ -526,10 +555,12 @@ export interface Settings {
|
|
|
526
555
|
VocabularyFilterName?: string;
|
|
527
556
|
VocabularyFilterMethod?: VocabularyFilterMethod | string;
|
|
528
557
|
}
|
|
529
|
-
export declare
|
|
530
|
-
SRT
|
|
531
|
-
VTT
|
|
532
|
-
}
|
|
558
|
+
export declare const SubtitleFormat: {
|
|
559
|
+
readonly SRT: "srt";
|
|
560
|
+
readonly VTT: "vtt";
|
|
561
|
+
};
|
|
562
|
+
export type SubtitleFormat =
|
|
563
|
+
(typeof SubtitleFormat)[keyof typeof SubtitleFormat];
|
|
533
564
|
export interface SubtitlesOutput {
|
|
534
565
|
Formats?: (SubtitleFormat | string)[];
|
|
535
566
|
SubtitleFileUris?: string[];
|
|
@@ -618,10 +649,12 @@ export interface ListMedicalTranscriptionJobsRequest {
|
|
|
618
649
|
NextToken?: string;
|
|
619
650
|
MaxResults?: number;
|
|
620
651
|
}
|
|
621
|
-
export declare
|
|
622
|
-
CUSTOMER_BUCKET
|
|
623
|
-
SERVICE_BUCKET
|
|
624
|
-
}
|
|
652
|
+
export declare const OutputLocationType: {
|
|
653
|
+
readonly CUSTOMER_BUCKET: "CUSTOMER_BUCKET";
|
|
654
|
+
readonly SERVICE_BUCKET: "SERVICE_BUCKET";
|
|
655
|
+
};
|
|
656
|
+
export type OutputLocationType =
|
|
657
|
+
(typeof OutputLocationType)[keyof typeof OutputLocationType];
|
|
625
658
|
export interface MedicalTranscriptionJobSummary {
|
|
626
659
|
MedicalTranscriptionJobName?: string;
|
|
627
660
|
CreationTime?: Date;
|
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.306.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,42 +21,42 @@
|
|
|
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/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|