@aws-sdk/client-chime-sdk-voice 3.301.0 → 3.303.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 +121 -140
- package/dist-es/models/models_0.js +121 -140
- package/dist-types/models/models_0.d.ts +216 -121
- package/dist-types/ts3.4/models/models_0.d.ts +155 -121
- package/package.json +34 -34
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ChimeSDKVoiceServiceException as __BaseException } from "./ChimeSDKVoiceServiceException";
|
|
3
|
-
export declare
|
|
4
|
-
AccessDenied
|
|
5
|
-
BadRequest
|
|
6
|
-
Conflict
|
|
7
|
-
Forbidden
|
|
8
|
-
Gone
|
|
9
|
-
NotFound
|
|
10
|
-
PhoneNumberAssociationsExist
|
|
11
|
-
PreconditionFailed
|
|
12
|
-
ResourceLimitExceeded
|
|
13
|
-
ServiceFailure
|
|
14
|
-
ServiceUnavailable
|
|
15
|
-
Throttled
|
|
16
|
-
Throttling
|
|
17
|
-
Unauthorized
|
|
18
|
-
Unprocessable
|
|
19
|
-
VoiceConnectorGroupAssociationsExist
|
|
20
|
-
}
|
|
3
|
+
export declare const ErrorCode: {
|
|
4
|
+
readonly AccessDenied: "AccessDenied";
|
|
5
|
+
readonly BadRequest: "BadRequest";
|
|
6
|
+
readonly Conflict: "Conflict";
|
|
7
|
+
readonly Forbidden: "Forbidden";
|
|
8
|
+
readonly Gone: "Gone";
|
|
9
|
+
readonly NotFound: "NotFound";
|
|
10
|
+
readonly PhoneNumberAssociationsExist: "PhoneNumberAssociationsExist";
|
|
11
|
+
readonly PreconditionFailed: "PreconditionFailed";
|
|
12
|
+
readonly ResourceLimitExceeded: "ResourceLimitExceeded";
|
|
13
|
+
readonly ServiceFailure: "ServiceFailure";
|
|
14
|
+
readonly ServiceUnavailable: "ServiceUnavailable";
|
|
15
|
+
readonly Throttled: "Throttled";
|
|
16
|
+
readonly Throttling: "Throttling";
|
|
17
|
+
readonly Unauthorized: "Unauthorized";
|
|
18
|
+
readonly Unprocessable: "Unprocessable";
|
|
19
|
+
readonly VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist";
|
|
20
|
+
};
|
|
21
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
21
22
|
export declare class AccessDeniedException extends __BaseException {
|
|
22
23
|
readonly name: "AccessDeniedException";
|
|
23
24
|
readonly $fault: "client";
|
|
@@ -39,10 +40,12 @@ export interface Address {
|
|
|
39
40
|
postalCodePlus4?: string;
|
|
40
41
|
country?: string;
|
|
41
42
|
}
|
|
42
|
-
export declare
|
|
43
|
-
ACTIVE
|
|
44
|
-
INACTIVE
|
|
45
|
-
}
|
|
43
|
+
export declare const AlexaSkillStatus: {
|
|
44
|
+
readonly ACTIVE: "ACTIVE";
|
|
45
|
+
readonly INACTIVE: "INACTIVE";
|
|
46
|
+
};
|
|
47
|
+
export type AlexaSkillStatus =
|
|
48
|
+
(typeof AlexaSkillStatus)[keyof typeof AlexaSkillStatus];
|
|
46
49
|
export interface AssociatePhoneNumbersWithVoiceConnectorRequest {
|
|
47
50
|
VoiceConnectorId: string | undefined;
|
|
48
51
|
E164PhoneNumbers: string[] | undefined;
|
|
@@ -129,10 +132,12 @@ export interface BatchDeletePhoneNumberRequest {
|
|
|
129
132
|
export interface BatchDeletePhoneNumberResponse {
|
|
130
133
|
PhoneNumberErrors?: PhoneNumberError[];
|
|
131
134
|
}
|
|
132
|
-
export declare
|
|
133
|
-
SipMediaApplicationDialIn
|
|
134
|
-
VoiceConnector
|
|
135
|
-
}
|
|
135
|
+
export declare const PhoneNumberProductType: {
|
|
136
|
+
readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
|
|
137
|
+
readonly VoiceConnector: "VoiceConnector";
|
|
138
|
+
};
|
|
139
|
+
export type PhoneNumberProductType =
|
|
140
|
+
(typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
|
|
136
141
|
export interface UpdatePhoneNumberRequestItem {
|
|
137
142
|
PhoneNumberId: string | undefined;
|
|
138
143
|
ProductType?: PhoneNumberProductType | string;
|
|
@@ -149,12 +154,14 @@ export interface CallDetails {
|
|
|
149
154
|
TransactionId?: string;
|
|
150
155
|
IsCaller?: boolean;
|
|
151
156
|
}
|
|
152
|
-
export declare
|
|
153
|
-
Unassigned
|
|
154
|
-
UpdateFailed
|
|
155
|
-
UpdateInProgress
|
|
156
|
-
UpdateSucceeded
|
|
157
|
-
}
|
|
157
|
+
export declare const CallingNameStatus: {
|
|
158
|
+
readonly Unassigned: "Unassigned";
|
|
159
|
+
readonly UpdateFailed: "UpdateFailed";
|
|
160
|
+
readonly UpdateInProgress: "UpdateInProgress";
|
|
161
|
+
readonly UpdateSucceeded: "UpdateSucceeded";
|
|
162
|
+
};
|
|
163
|
+
export type CallingNameStatus =
|
|
164
|
+
(typeof CallingNameStatus)[keyof typeof CallingNameStatus];
|
|
158
165
|
export interface CandidateAddress {
|
|
159
166
|
streetInfo?: string;
|
|
160
167
|
streetNumber?: string;
|
|
@@ -164,40 +171,47 @@ export interface CandidateAddress {
|
|
|
164
171
|
postalCodePlus4?: string;
|
|
165
172
|
country?: string;
|
|
166
173
|
}
|
|
167
|
-
export declare
|
|
168
|
-
SMS
|
|
169
|
-
Voice
|
|
170
|
-
}
|
|
174
|
+
export declare const Capability: {
|
|
175
|
+
readonly SMS: "SMS";
|
|
176
|
+
readonly Voice: "Voice";
|
|
177
|
+
};
|
|
178
|
+
export type Capability = (typeof Capability)[keyof typeof Capability];
|
|
171
179
|
export interface CreatePhoneNumberOrderRequest {
|
|
172
180
|
ProductType: PhoneNumberProductType | string | undefined;
|
|
173
181
|
E164PhoneNumbers: string[] | undefined;
|
|
174
182
|
}
|
|
175
|
-
export declare
|
|
176
|
-
Acquired
|
|
177
|
-
Failed
|
|
178
|
-
Processing
|
|
179
|
-
}
|
|
183
|
+
export declare const OrderedPhoneNumberStatus: {
|
|
184
|
+
readonly Acquired: "Acquired";
|
|
185
|
+
readonly Failed: "Failed";
|
|
186
|
+
readonly Processing: "Processing";
|
|
187
|
+
};
|
|
188
|
+
export type OrderedPhoneNumberStatus =
|
|
189
|
+
(typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
|
|
180
190
|
export interface OrderedPhoneNumber {
|
|
181
191
|
E164PhoneNumber?: string;
|
|
182
192
|
Status?: OrderedPhoneNumberStatus | string;
|
|
183
193
|
}
|
|
184
|
-
export declare
|
|
185
|
-
New
|
|
186
|
-
Porting
|
|
187
|
-
}
|
|
188
|
-
export
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
194
|
+
export declare const PhoneNumberOrderType: {
|
|
195
|
+
readonly New: "New";
|
|
196
|
+
readonly Porting: "Porting";
|
|
197
|
+
};
|
|
198
|
+
export type PhoneNumberOrderType =
|
|
199
|
+
(typeof PhoneNumberOrderType)[keyof typeof PhoneNumberOrderType];
|
|
200
|
+
export declare const PhoneNumberOrderStatus: {
|
|
201
|
+
readonly CancelRequested: "CancelRequested";
|
|
202
|
+
readonly Cancelled: "Cancelled";
|
|
203
|
+
readonly ChangeRequested: "ChangeRequested";
|
|
204
|
+
readonly Exception: "Exception";
|
|
205
|
+
readonly FOC: "FOC";
|
|
206
|
+
readonly Failed: "Failed";
|
|
207
|
+
readonly Partial: "Partial";
|
|
208
|
+
readonly PendingDocuments: "PendingDocuments";
|
|
209
|
+
readonly Processing: "Processing";
|
|
210
|
+
readonly Submitted: "Submitted";
|
|
211
|
+
readonly Successful: "Successful";
|
|
212
|
+
};
|
|
213
|
+
export type PhoneNumberOrderStatus =
|
|
214
|
+
(typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
|
|
201
215
|
export interface PhoneNumberOrder {
|
|
202
216
|
PhoneNumberOrderId?: string;
|
|
203
217
|
ProductType?: PhoneNumberProductType | string;
|
|
@@ -219,18 +233,21 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
219
233
|
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
220
234
|
);
|
|
221
235
|
}
|
|
222
|
-
export declare
|
|
223
|
-
AreaCode
|
|
224
|
-
Country
|
|
225
|
-
}
|
|
236
|
+
export declare const GeoMatchLevel: {
|
|
237
|
+
readonly AreaCode: "AreaCode";
|
|
238
|
+
readonly Country: "Country";
|
|
239
|
+
};
|
|
240
|
+
export type GeoMatchLevel = (typeof GeoMatchLevel)[keyof typeof GeoMatchLevel];
|
|
226
241
|
export interface GeoMatchParams {
|
|
227
242
|
Country: string | undefined;
|
|
228
243
|
AreaCode: string | undefined;
|
|
229
244
|
}
|
|
230
|
-
export declare
|
|
231
|
-
AvoidSticky
|
|
232
|
-
PreferSticky
|
|
233
|
-
}
|
|
245
|
+
export declare const NumberSelectionBehavior: {
|
|
246
|
+
readonly AvoidSticky: "AvoidSticky";
|
|
247
|
+
readonly PreferSticky: "PreferSticky";
|
|
248
|
+
};
|
|
249
|
+
export type NumberSelectionBehavior =
|
|
250
|
+
(typeof NumberSelectionBehavior)[keyof typeof NumberSelectionBehavior];
|
|
234
251
|
export interface CreateProxySessionRequest {
|
|
235
252
|
VoiceConnectorId: string | undefined;
|
|
236
253
|
ParticipantPhoneNumbers: string[] | undefined;
|
|
@@ -245,11 +262,13 @@ export interface Participant {
|
|
|
245
262
|
PhoneNumber?: string;
|
|
246
263
|
ProxyPhoneNumber?: string;
|
|
247
264
|
}
|
|
248
|
-
export declare
|
|
249
|
-
Closed
|
|
250
|
-
InProgress
|
|
251
|
-
Open
|
|
252
|
-
}
|
|
265
|
+
export declare const ProxySessionStatus: {
|
|
266
|
+
readonly Closed: "Closed";
|
|
267
|
+
readonly InProgress: "InProgress";
|
|
268
|
+
readonly Open: "Open";
|
|
269
|
+
};
|
|
270
|
+
export type ProxySessionStatus =
|
|
271
|
+
(typeof ProxySessionStatus)[keyof typeof ProxySessionStatus];
|
|
253
272
|
export interface ProxySession {
|
|
254
273
|
VoiceConnectorId?: string;
|
|
255
274
|
ProxySessionId?: string;
|
|
@@ -312,10 +331,12 @@ export interface SipRuleTargetApplication {
|
|
|
312
331
|
Priority?: number;
|
|
313
332
|
AwsRegion?: string;
|
|
314
333
|
}
|
|
315
|
-
export declare
|
|
316
|
-
RequestUriHostname
|
|
317
|
-
ToPhoneNumber
|
|
318
|
-
}
|
|
334
|
+
export declare const SipRuleTriggerType: {
|
|
335
|
+
readonly RequestUriHostname: "RequestUriHostname";
|
|
336
|
+
readonly ToPhoneNumber: "ToPhoneNumber";
|
|
337
|
+
};
|
|
338
|
+
export type SipRuleTriggerType =
|
|
339
|
+
(typeof SipRuleTriggerType)[keyof typeof SipRuleTriggerType];
|
|
319
340
|
export interface CreateSipRuleRequest {
|
|
320
341
|
Name: string | undefined;
|
|
321
342
|
TriggerType: SipRuleTriggerType | string | undefined;
|
|
@@ -336,18 +357,20 @@ export interface SipRule {
|
|
|
336
357
|
export interface CreateSipRuleResponse {
|
|
337
358
|
SipRule?: SipRule;
|
|
338
359
|
}
|
|
339
|
-
export declare
|
|
340
|
-
AP_NORTHEAST_1
|
|
341
|
-
AP_NORTHEAST_2
|
|
342
|
-
AP_SOUTHEAST_1
|
|
343
|
-
AP_SOUTHEAST_2
|
|
344
|
-
CA_CENTRAL_1
|
|
345
|
-
EU_CENTRAL_1
|
|
346
|
-
EU_WEST_1
|
|
347
|
-
EU_WEST_2
|
|
348
|
-
US_EAST_1
|
|
349
|
-
US_WEST_2
|
|
350
|
-
}
|
|
360
|
+
export declare const VoiceConnectorAwsRegion: {
|
|
361
|
+
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
362
|
+
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
363
|
+
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
364
|
+
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
365
|
+
readonly CA_CENTRAL_1: "ca-central-1";
|
|
366
|
+
readonly EU_CENTRAL_1: "eu-central-1";
|
|
367
|
+
readonly EU_WEST_1: "eu-west-1";
|
|
368
|
+
readonly EU_WEST_2: "eu-west-2";
|
|
369
|
+
readonly US_EAST_1: "us-east-1";
|
|
370
|
+
readonly US_WEST_2: "us-west-2";
|
|
371
|
+
};
|
|
372
|
+
export type VoiceConnectorAwsRegion =
|
|
373
|
+
(typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
|
|
351
374
|
export interface CreateVoiceConnectorRequest {
|
|
352
375
|
Name: string | undefined;
|
|
353
376
|
AwsRegion?: VoiceConnectorAwsRegion | string;
|
|
@@ -501,11 +524,13 @@ export interface GetGlobalSettingsResponse {
|
|
|
501
524
|
export interface GetPhoneNumberRequest {
|
|
502
525
|
PhoneNumberId: string | undefined;
|
|
503
526
|
}
|
|
504
|
-
export declare
|
|
505
|
-
SipRuleId
|
|
506
|
-
VoiceConnectorGroupId
|
|
507
|
-
VoiceConnectorId
|
|
508
|
-
}
|
|
527
|
+
export declare const PhoneNumberAssociationName: {
|
|
528
|
+
readonly SipRuleId: "SipRuleId";
|
|
529
|
+
readonly VoiceConnectorGroupId: "VoiceConnectorGroupId";
|
|
530
|
+
readonly VoiceConnectorId: "VoiceConnectorId";
|
|
531
|
+
};
|
|
532
|
+
export type PhoneNumberAssociationName =
|
|
533
|
+
(typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
|
|
509
534
|
export interface PhoneNumberAssociation {
|
|
510
535
|
Value?: string;
|
|
511
536
|
Name?: PhoneNumberAssociationName | string;
|
|
@@ -519,23 +544,27 @@ export interface PhoneNumberCapabilities {
|
|
|
519
544
|
InboundMMS?: boolean;
|
|
520
545
|
OutboundMMS?: boolean;
|
|
521
546
|
}
|
|
522
|
-
export declare
|
|
523
|
-
AcquireFailed
|
|
524
|
-
AcquireInProgress
|
|
525
|
-
Assigned
|
|
526
|
-
Cancelled
|
|
527
|
-
DeleteFailed
|
|
528
|
-
DeleteInProgress
|
|
529
|
-
PortinCancelRequested
|
|
530
|
-
PortinInProgress
|
|
531
|
-
ReleaseFailed
|
|
532
|
-
ReleaseInProgress
|
|
533
|
-
Unassigned
|
|
534
|
-
}
|
|
535
|
-
export
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
547
|
+
export declare const PhoneNumberStatus: {
|
|
548
|
+
readonly AcquireFailed: "AcquireFailed";
|
|
549
|
+
readonly AcquireInProgress: "AcquireInProgress";
|
|
550
|
+
readonly Assigned: "Assigned";
|
|
551
|
+
readonly Cancelled: "Cancelled";
|
|
552
|
+
readonly DeleteFailed: "DeleteFailed";
|
|
553
|
+
readonly DeleteInProgress: "DeleteInProgress";
|
|
554
|
+
readonly PortinCancelRequested: "PortinCancelRequested";
|
|
555
|
+
readonly PortinInProgress: "PortinInProgress";
|
|
556
|
+
readonly ReleaseFailed: "ReleaseFailed";
|
|
557
|
+
readonly ReleaseInProgress: "ReleaseInProgress";
|
|
558
|
+
readonly Unassigned: "Unassigned";
|
|
559
|
+
};
|
|
560
|
+
export type PhoneNumberStatus =
|
|
561
|
+
(typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus];
|
|
562
|
+
export declare const PhoneNumberType: {
|
|
563
|
+
readonly Local: "Local";
|
|
564
|
+
readonly TollFree: "TollFree";
|
|
565
|
+
};
|
|
566
|
+
export type PhoneNumberType =
|
|
567
|
+
(typeof PhoneNumberType)[keyof typeof PhoneNumberType];
|
|
539
568
|
export interface PhoneNumber {
|
|
540
569
|
PhoneNumberId?: string;
|
|
541
570
|
E164PhoneNumber?: string;
|
|
@@ -667,10 +696,12 @@ export interface GetVoiceConnectorLoggingConfigurationResponse {
|
|
|
667
696
|
export interface GetVoiceConnectorOriginationRequest {
|
|
668
697
|
VoiceConnectorId: string | undefined;
|
|
669
698
|
}
|
|
670
|
-
export declare
|
|
671
|
-
TCP
|
|
672
|
-
UDP
|
|
673
|
-
}
|
|
699
|
+
export declare const OriginationRouteProtocol: {
|
|
700
|
+
readonly TCP: "TCP";
|
|
701
|
+
readonly UDP: "UDP";
|
|
702
|
+
};
|
|
703
|
+
export type OriginationRouteProtocol =
|
|
704
|
+
(typeof OriginationRouteProtocol)[keyof typeof OriginationRouteProtocol];
|
|
674
705
|
export interface OriginationRoute {
|
|
675
706
|
Host?: string;
|
|
676
707
|
Port?: number;
|
|
@@ -704,11 +735,13 @@ export interface MediaInsightsConfiguration {
|
|
|
704
735
|
Disabled?: boolean;
|
|
705
736
|
ConfigurationArn?: string;
|
|
706
737
|
}
|
|
707
|
-
export declare
|
|
708
|
-
EventBridge
|
|
709
|
-
SNS
|
|
710
|
-
SQS
|
|
711
|
-
}
|
|
738
|
+
export declare const NotificationTarget: {
|
|
739
|
+
readonly EventBridge: "EventBridge";
|
|
740
|
+
readonly SNS: "SNS";
|
|
741
|
+
readonly SQS: "SQS";
|
|
742
|
+
};
|
|
743
|
+
export type NotificationTarget =
|
|
744
|
+
(typeof NotificationTarget)[keyof typeof NotificationTarget];
|
|
712
745
|
export interface StreamingNotificationTarget {
|
|
713
746
|
NotificationTarget?: NotificationTarget | string;
|
|
714
747
|
}
|
|
@@ -999,9 +1032,10 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
999
1032
|
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
1000
1033
|
);
|
|
1001
1034
|
}
|
|
1002
|
-
export declare
|
|
1003
|
-
EN_US
|
|
1004
|
-
}
|
|
1035
|
+
export declare const LanguageCode: {
|
|
1036
|
+
readonly EN_US: "en-US";
|
|
1037
|
+
};
|
|
1038
|
+
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
1005
1039
|
export interface StartVoiceToneAnalysisTaskRequest {
|
|
1006
1040
|
VoiceConnectorId: string | undefined;
|
|
1007
1041
|
TransactionId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-voice",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Voice Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.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.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.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",
|