@aws-sdk/client-ram 3.52.0 → 3.54.1
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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/RAMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +289 -2
- package/dist-cjs/protocols/Aws_restJson1.js +437 -1523
- package/dist-es/index.js +1 -0
- package/dist-es/models/RAMServiceException.js +12 -0
- package/dist-es/models/models_0.js +266 -1
- package/dist-es/protocols/Aws_restJson1.js +779 -1646
- package/dist-types/RAMClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RAMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +156 -89
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/RAMClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RAMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +112 -89
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { RAMServiceException as __BaseException } from "./RAMServiceException";
|
|
2
3
|
export interface AcceptResourceShareInvitationRequest {
|
|
3
4
|
|
|
4
5
|
resourceShareInvitationArn: string | undefined;
|
|
@@ -73,64 +74,74 @@ export declare namespace AcceptResourceShareInvitationResponse {
|
|
|
73
74
|
const filterSensitiveLog: (obj: AcceptResourceShareInvitationResponse) => any;
|
|
74
75
|
}
|
|
75
76
|
|
|
76
|
-
export
|
|
77
|
-
name: "IdempotentParameterMismatchException";
|
|
78
|
-
$fault: "client";
|
|
79
|
-
|
|
77
|
+
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
78
|
+
readonly name: "IdempotentParameterMismatchException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
|
|
81
|
+
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
|
|
80
82
|
}
|
|
81
83
|
|
|
82
|
-
export
|
|
83
|
-
name: "InvalidClientTokenException";
|
|
84
|
-
$fault: "client";
|
|
85
|
-
|
|
84
|
+
export declare class InvalidClientTokenException extends __BaseException {
|
|
85
|
+
readonly name: "InvalidClientTokenException";
|
|
86
|
+
readonly $fault: "client";
|
|
87
|
+
|
|
88
|
+
constructor(opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>);
|
|
86
89
|
}
|
|
87
90
|
|
|
88
|
-
export
|
|
89
|
-
name: "MalformedArnException";
|
|
90
|
-
$fault: "client";
|
|
91
|
-
|
|
91
|
+
export declare class MalformedArnException extends __BaseException {
|
|
92
|
+
readonly name: "MalformedArnException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
|
|
95
|
+
constructor(opts: __ExceptionOptionType<MalformedArnException, __BaseException>);
|
|
92
96
|
}
|
|
93
97
|
|
|
94
|
-
export
|
|
95
|
-
name: "OperationNotPermittedException";
|
|
96
|
-
$fault: "client";
|
|
97
|
-
|
|
98
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
99
|
+
readonly name: "OperationNotPermittedException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
|
|
102
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
98
103
|
}
|
|
99
104
|
|
|
100
|
-
export
|
|
101
|
-
name: "ResourceShareInvitationAlreadyAcceptedException";
|
|
102
|
-
$fault: "client";
|
|
103
|
-
|
|
105
|
+
export declare class ResourceShareInvitationAlreadyAcceptedException extends __BaseException {
|
|
106
|
+
readonly name: "ResourceShareInvitationAlreadyAcceptedException";
|
|
107
|
+
readonly $fault: "client";
|
|
108
|
+
|
|
109
|
+
constructor(opts: __ExceptionOptionType<ResourceShareInvitationAlreadyAcceptedException, __BaseException>);
|
|
104
110
|
}
|
|
105
111
|
|
|
106
|
-
export
|
|
107
|
-
name: "ResourceShareInvitationAlreadyRejectedException";
|
|
108
|
-
$fault: "client";
|
|
109
|
-
|
|
112
|
+
export declare class ResourceShareInvitationAlreadyRejectedException extends __BaseException {
|
|
113
|
+
readonly name: "ResourceShareInvitationAlreadyRejectedException";
|
|
114
|
+
readonly $fault: "client";
|
|
115
|
+
|
|
116
|
+
constructor(opts: __ExceptionOptionType<ResourceShareInvitationAlreadyRejectedException, __BaseException>);
|
|
110
117
|
}
|
|
111
118
|
|
|
112
|
-
export
|
|
113
|
-
name: "ResourceShareInvitationArnNotFoundException";
|
|
114
|
-
$fault: "client";
|
|
115
|
-
|
|
119
|
+
export declare class ResourceShareInvitationArnNotFoundException extends __BaseException {
|
|
120
|
+
readonly name: "ResourceShareInvitationArnNotFoundException";
|
|
121
|
+
readonly $fault: "client";
|
|
122
|
+
|
|
123
|
+
constructor(opts: __ExceptionOptionType<ResourceShareInvitationArnNotFoundException, __BaseException>);
|
|
116
124
|
}
|
|
117
125
|
|
|
118
|
-
export
|
|
119
|
-
name: "ResourceShareInvitationExpiredException";
|
|
120
|
-
$fault: "client";
|
|
121
|
-
|
|
126
|
+
export declare class ResourceShareInvitationExpiredException extends __BaseException {
|
|
127
|
+
readonly name: "ResourceShareInvitationExpiredException";
|
|
128
|
+
readonly $fault: "client";
|
|
129
|
+
|
|
130
|
+
constructor(opts: __ExceptionOptionType<ResourceShareInvitationExpiredException, __BaseException>);
|
|
122
131
|
}
|
|
123
132
|
|
|
124
|
-
export
|
|
125
|
-
name: "ServerInternalException";
|
|
126
|
-
$fault: "server";
|
|
127
|
-
|
|
133
|
+
export declare class ServerInternalException extends __BaseException {
|
|
134
|
+
readonly name: "ServerInternalException";
|
|
135
|
+
readonly $fault: "server";
|
|
136
|
+
|
|
137
|
+
constructor(opts: __ExceptionOptionType<ServerInternalException, __BaseException>);
|
|
128
138
|
}
|
|
129
139
|
|
|
130
|
-
export
|
|
131
|
-
name: "ServiceUnavailableException";
|
|
132
|
-
$fault: "server";
|
|
133
|
-
|
|
140
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
141
|
+
readonly name: "ServiceUnavailableException";
|
|
142
|
+
readonly $fault: "server";
|
|
143
|
+
|
|
144
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
134
145
|
}
|
|
135
146
|
export interface AssociateResourceShareRequest {
|
|
136
147
|
|
|
@@ -157,34 +168,39 @@ export declare namespace AssociateResourceShareResponse {
|
|
|
157
168
|
const filterSensitiveLog: (obj: AssociateResourceShareResponse) => any;
|
|
158
169
|
}
|
|
159
170
|
|
|
160
|
-
export
|
|
161
|
-
name: "InvalidParameterException";
|
|
162
|
-
$fault: "client";
|
|
163
|
-
|
|
171
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
172
|
+
readonly name: "InvalidParameterException";
|
|
173
|
+
readonly $fault: "client";
|
|
174
|
+
|
|
175
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
164
176
|
}
|
|
165
177
|
|
|
166
|
-
export
|
|
167
|
-
name: "InvalidStateTransitionException";
|
|
168
|
-
$fault: "client";
|
|
169
|
-
|
|
178
|
+
export declare class InvalidStateTransitionException extends __BaseException {
|
|
179
|
+
readonly name: "InvalidStateTransitionException";
|
|
180
|
+
readonly $fault: "client";
|
|
181
|
+
|
|
182
|
+
constructor(opts: __ExceptionOptionType<InvalidStateTransitionException, __BaseException>);
|
|
170
183
|
}
|
|
171
184
|
|
|
172
|
-
export
|
|
173
|
-
name: "ResourceShareLimitExceededException";
|
|
174
|
-
$fault: "client";
|
|
175
|
-
|
|
185
|
+
export declare class ResourceShareLimitExceededException extends __BaseException {
|
|
186
|
+
readonly name: "ResourceShareLimitExceededException";
|
|
187
|
+
readonly $fault: "client";
|
|
188
|
+
|
|
189
|
+
constructor(opts: __ExceptionOptionType<ResourceShareLimitExceededException, __BaseException>);
|
|
176
190
|
}
|
|
177
191
|
|
|
178
|
-
export
|
|
179
|
-
name: "ThrottlingException";
|
|
180
|
-
$fault: "client";
|
|
181
|
-
|
|
192
|
+
export declare class ThrottlingException extends __BaseException {
|
|
193
|
+
readonly name: "ThrottlingException";
|
|
194
|
+
readonly $fault: "client";
|
|
195
|
+
|
|
196
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
182
197
|
}
|
|
183
198
|
|
|
184
|
-
export
|
|
185
|
-
name: "UnknownResourceException";
|
|
186
|
-
$fault: "client";
|
|
187
|
-
|
|
199
|
+
export declare class UnknownResourceException extends __BaseException {
|
|
200
|
+
readonly name: "UnknownResourceException";
|
|
201
|
+
readonly $fault: "client";
|
|
202
|
+
|
|
203
|
+
constructor(opts: __ExceptionOptionType<UnknownResourceException, __BaseException>);
|
|
188
204
|
}
|
|
189
205
|
export interface AssociateResourceSharePermissionRequest {
|
|
190
206
|
|
|
@@ -283,10 +299,11 @@ export declare namespace CreateResourceShareResponse {
|
|
|
283
299
|
const filterSensitiveLog: (obj: CreateResourceShareResponse) => any;
|
|
284
300
|
}
|
|
285
301
|
|
|
286
|
-
export
|
|
287
|
-
name: "TagPolicyViolationException";
|
|
288
|
-
$fault: "client";
|
|
289
|
-
|
|
302
|
+
export declare class TagPolicyViolationException extends __BaseException {
|
|
303
|
+
readonly name: "TagPolicyViolationException";
|
|
304
|
+
readonly $fault: "client";
|
|
305
|
+
|
|
306
|
+
constructor(opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>);
|
|
290
307
|
}
|
|
291
308
|
export interface DeleteResourceShareRequest {
|
|
292
309
|
|
|
@@ -436,16 +453,18 @@ export declare namespace GetResourcePoliciesResponse {
|
|
|
436
453
|
const filterSensitiveLog: (obj: GetResourcePoliciesResponse) => any;
|
|
437
454
|
}
|
|
438
455
|
|
|
439
|
-
export
|
|
440
|
-
name: "InvalidNextTokenException";
|
|
441
|
-
$fault: "client";
|
|
442
|
-
|
|
456
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
457
|
+
readonly name: "InvalidNextTokenException";
|
|
458
|
+
readonly $fault: "client";
|
|
459
|
+
|
|
460
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
443
461
|
}
|
|
444
462
|
|
|
445
|
-
export
|
|
446
|
-
name: "ResourceArnNotFoundException";
|
|
447
|
-
$fault: "client";
|
|
448
|
-
|
|
463
|
+
export declare class ResourceArnNotFoundException extends __BaseException {
|
|
464
|
+
readonly name: "ResourceArnNotFoundException";
|
|
465
|
+
readonly $fault: "client";
|
|
466
|
+
|
|
467
|
+
constructor(opts: __ExceptionOptionType<ResourceArnNotFoundException, __BaseException>);
|
|
449
468
|
}
|
|
450
469
|
export interface GetResourceShareAssociationsRequest {
|
|
451
470
|
|
|
@@ -502,10 +521,11 @@ export declare namespace GetResourceShareInvitationsResponse {
|
|
|
502
521
|
const filterSensitiveLog: (obj: GetResourceShareInvitationsResponse) => any;
|
|
503
522
|
}
|
|
504
523
|
|
|
505
|
-
export
|
|
506
|
-
name: "InvalidMaxResultsException";
|
|
507
|
-
$fault: "client";
|
|
508
|
-
|
|
524
|
+
export declare class InvalidMaxResultsException extends __BaseException {
|
|
525
|
+
readonly name: "InvalidMaxResultsException";
|
|
526
|
+
readonly $fault: "client";
|
|
527
|
+
|
|
528
|
+
constructor(opts: __ExceptionOptionType<InvalidMaxResultsException, __BaseException>);
|
|
509
529
|
}
|
|
510
530
|
export declare enum ResourceOwner {
|
|
511
531
|
OTHER_ACCOUNTS = "OTHER-ACCOUNTS",
|
|
@@ -614,10 +634,11 @@ export declare namespace ListPendingInvitationResourcesResponse {
|
|
|
614
634
|
const filterSensitiveLog: (obj: ListPendingInvitationResourcesResponse) => any;
|
|
615
635
|
}
|
|
616
636
|
|
|
617
|
-
export
|
|
618
|
-
name: "MissingRequiredParameterException";
|
|
619
|
-
$fault: "client";
|
|
620
|
-
|
|
637
|
+
export declare class MissingRequiredParameterException extends __BaseException {
|
|
638
|
+
readonly name: "MissingRequiredParameterException";
|
|
639
|
+
readonly $fault: "client";
|
|
640
|
+
|
|
641
|
+
constructor(opts: __ExceptionOptionType<MissingRequiredParameterException, __BaseException>);
|
|
621
642
|
}
|
|
622
643
|
export interface ListPermissionsRequest {
|
|
623
644
|
|
|
@@ -736,10 +757,11 @@ export declare namespace ListPrincipalsResponse {
|
|
|
736
757
|
const filterSensitiveLog: (obj: ListPrincipalsResponse) => any;
|
|
737
758
|
}
|
|
738
759
|
|
|
739
|
-
export
|
|
740
|
-
name: "InvalidResourceTypeException";
|
|
741
|
-
$fault: "client";
|
|
742
|
-
|
|
760
|
+
export declare class InvalidResourceTypeException extends __BaseException {
|
|
761
|
+
readonly name: "InvalidResourceTypeException";
|
|
762
|
+
readonly $fault: "client";
|
|
763
|
+
|
|
764
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceTypeException, __BaseException>);
|
|
743
765
|
}
|
|
744
766
|
export interface ListResourcesRequest {
|
|
745
767
|
|
|
@@ -867,10 +889,11 @@ export declare namespace RejectResourceShareInvitationResponse {
|
|
|
867
889
|
const filterSensitiveLog: (obj: RejectResourceShareInvitationResponse) => any;
|
|
868
890
|
}
|
|
869
891
|
|
|
870
|
-
export
|
|
871
|
-
name: "TagLimitExceededException";
|
|
872
|
-
$fault: "client";
|
|
873
|
-
|
|
892
|
+
export declare class TagLimitExceededException extends __BaseException {
|
|
893
|
+
readonly name: "TagLimitExceededException";
|
|
894
|
+
readonly $fault: "client";
|
|
895
|
+
|
|
896
|
+
constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
|
|
874
897
|
}
|
|
875
898
|
export interface TagResourceRequest {
|
|
876
899
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RAMClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RAMClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RAMClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ram",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ram Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
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",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|