@aws-sdk/client-dax 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DAXServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +354 -2
- package/dist-cjs/protocols/Aws_json1_1.js +306 -1058
- package/dist-es/index.js +1 -0
- package/dist-es/models/DAXServiceException.js +12 -0
- package/dist-es/models/models_0.js +326 -1
- package/dist-es/protocols/Aws_json1_1.js +592 -1089
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DAXServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +191 -108
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/DAXServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +137 -108
- package/package.json +25 -25
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DAXServiceException as __BaseException } from "./DAXServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "ClusterAlreadyExistsFault";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
|
|
4
|
+
export declare class ClusterAlreadyExistsFault extends __BaseException {
|
|
5
|
+
readonly name: "ClusterAlreadyExistsFault";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<ClusterAlreadyExistsFault, __BaseException>);
|
|
7
9
|
}
|
|
8
10
|
|
|
9
|
-
export
|
|
10
|
-
name: "ClusterQuotaForCustomerExceededFault";
|
|
11
|
-
$fault: "client";
|
|
12
|
-
|
|
11
|
+
export declare class ClusterQuotaForCustomerExceededFault extends __BaseException {
|
|
12
|
+
readonly name: "ClusterQuotaForCustomerExceededFault";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ClusterQuotaForCustomerExceededFault, __BaseException>);
|
|
13
16
|
}
|
|
14
17
|
export declare enum ClusterEndpointEncryptionType {
|
|
15
18
|
NONE = "NONE",
|
|
@@ -198,81 +201,95 @@ export declare namespace CreateClusterResponse {
|
|
|
198
201
|
const filterSensitiveLog: (obj: CreateClusterResponse) => any;
|
|
199
202
|
}
|
|
200
203
|
|
|
201
|
-
export
|
|
202
|
-
name: "InsufficientClusterCapacityFault";
|
|
203
|
-
$fault: "client";
|
|
204
|
-
|
|
204
|
+
export declare class InsufficientClusterCapacityFault extends __BaseException {
|
|
205
|
+
readonly name: "InsufficientClusterCapacityFault";
|
|
206
|
+
readonly $fault: "client";
|
|
207
|
+
|
|
208
|
+
constructor(opts: __ExceptionOptionType<InsufficientClusterCapacityFault, __BaseException>);
|
|
205
209
|
}
|
|
206
210
|
|
|
207
|
-
export
|
|
208
|
-
name: "InvalidClusterStateFault";
|
|
209
|
-
$fault: "client";
|
|
210
|
-
|
|
211
|
+
export declare class InvalidClusterStateFault extends __BaseException {
|
|
212
|
+
readonly name: "InvalidClusterStateFault";
|
|
213
|
+
readonly $fault: "client";
|
|
214
|
+
|
|
215
|
+
constructor(opts: __ExceptionOptionType<InvalidClusterStateFault, __BaseException>);
|
|
211
216
|
}
|
|
212
217
|
|
|
213
|
-
export
|
|
214
|
-
name: "InvalidParameterCombinationException";
|
|
215
|
-
$fault: "client";
|
|
216
|
-
|
|
218
|
+
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
219
|
+
readonly name: "InvalidParameterCombinationException";
|
|
220
|
+
readonly $fault: "client";
|
|
221
|
+
|
|
222
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
|
|
217
223
|
}
|
|
218
224
|
|
|
219
|
-
export
|
|
220
|
-
name: "InvalidParameterGroupStateFault";
|
|
221
|
-
$fault: "client";
|
|
222
|
-
|
|
225
|
+
export declare class InvalidParameterGroupStateFault extends __BaseException {
|
|
226
|
+
readonly name: "InvalidParameterGroupStateFault";
|
|
227
|
+
readonly $fault: "client";
|
|
228
|
+
|
|
229
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterGroupStateFault, __BaseException>);
|
|
223
230
|
}
|
|
224
231
|
|
|
225
|
-
export
|
|
226
|
-
name: "InvalidParameterValueException";
|
|
227
|
-
$fault: "client";
|
|
228
|
-
|
|
232
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
233
|
+
readonly name: "InvalidParameterValueException";
|
|
234
|
+
readonly $fault: "client";
|
|
235
|
+
|
|
236
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
229
237
|
}
|
|
230
238
|
|
|
231
|
-
export
|
|
232
|
-
name: "InvalidVPCNetworkStateFault";
|
|
233
|
-
$fault: "client";
|
|
234
|
-
|
|
239
|
+
export declare class InvalidVPCNetworkStateFault extends __BaseException {
|
|
240
|
+
readonly name: "InvalidVPCNetworkStateFault";
|
|
241
|
+
readonly $fault: "client";
|
|
242
|
+
|
|
243
|
+
constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
|
|
235
244
|
}
|
|
236
245
|
|
|
237
|
-
export
|
|
238
|
-
name: "NodeQuotaForClusterExceededFault";
|
|
239
|
-
$fault: "client";
|
|
240
|
-
|
|
246
|
+
export declare class NodeQuotaForClusterExceededFault extends __BaseException {
|
|
247
|
+
readonly name: "NodeQuotaForClusterExceededFault";
|
|
248
|
+
readonly $fault: "client";
|
|
249
|
+
|
|
250
|
+
constructor(opts: __ExceptionOptionType<NodeQuotaForClusterExceededFault, __BaseException>);
|
|
241
251
|
}
|
|
242
252
|
|
|
243
|
-
export
|
|
244
|
-
name: "NodeQuotaForCustomerExceededFault";
|
|
245
|
-
$fault: "client";
|
|
246
|
-
|
|
253
|
+
export declare class NodeQuotaForCustomerExceededFault extends __BaseException {
|
|
254
|
+
readonly name: "NodeQuotaForCustomerExceededFault";
|
|
255
|
+
readonly $fault: "client";
|
|
256
|
+
|
|
257
|
+
constructor(opts: __ExceptionOptionType<NodeQuotaForCustomerExceededFault, __BaseException>);
|
|
247
258
|
}
|
|
248
259
|
|
|
249
|
-
export
|
|
250
|
-
name: "ParameterGroupNotFoundFault";
|
|
251
|
-
$fault: "client";
|
|
252
|
-
|
|
260
|
+
export declare class ParameterGroupNotFoundFault extends __BaseException {
|
|
261
|
+
readonly name: "ParameterGroupNotFoundFault";
|
|
262
|
+
readonly $fault: "client";
|
|
263
|
+
|
|
264
|
+
constructor(opts: __ExceptionOptionType<ParameterGroupNotFoundFault, __BaseException>);
|
|
253
265
|
}
|
|
254
266
|
|
|
255
|
-
export
|
|
256
|
-
name: "ServiceLinkedRoleNotFoundFault";
|
|
257
|
-
$fault: "client";
|
|
258
|
-
|
|
267
|
+
export declare class ServiceLinkedRoleNotFoundFault extends __BaseException {
|
|
268
|
+
readonly name: "ServiceLinkedRoleNotFoundFault";
|
|
269
|
+
readonly $fault: "client";
|
|
270
|
+
|
|
271
|
+
constructor(opts: __ExceptionOptionType<ServiceLinkedRoleNotFoundFault, __BaseException>);
|
|
259
272
|
}
|
|
260
273
|
|
|
261
|
-
export
|
|
262
|
-
name: "ServiceQuotaExceededException";
|
|
263
|
-
$fault: "client";
|
|
274
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
275
|
+
readonly name: "ServiceQuotaExceededException";
|
|
276
|
+
readonly $fault: "client";
|
|
277
|
+
|
|
278
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
264
279
|
}
|
|
265
280
|
|
|
266
|
-
export
|
|
267
|
-
name: "SubnetGroupNotFoundFault";
|
|
268
|
-
$fault: "client";
|
|
269
|
-
|
|
281
|
+
export declare class SubnetGroupNotFoundFault extends __BaseException {
|
|
282
|
+
readonly name: "SubnetGroupNotFoundFault";
|
|
283
|
+
readonly $fault: "client";
|
|
284
|
+
|
|
285
|
+
constructor(opts: __ExceptionOptionType<SubnetGroupNotFoundFault, __BaseException>);
|
|
270
286
|
}
|
|
271
287
|
|
|
272
|
-
export
|
|
273
|
-
name: "TagQuotaPerResourceExceeded";
|
|
274
|
-
$fault: "client";
|
|
275
|
-
|
|
288
|
+
export declare class TagQuotaPerResourceExceeded extends __BaseException {
|
|
289
|
+
readonly name: "TagQuotaPerResourceExceeded";
|
|
290
|
+
readonly $fault: "client";
|
|
291
|
+
|
|
292
|
+
constructor(opts: __ExceptionOptionType<TagQuotaPerResourceExceeded, __BaseException>);
|
|
276
293
|
}
|
|
277
294
|
export interface CreateParameterGroupRequest {
|
|
278
295
|
|
|
@@ -304,16 +321,18 @@ export declare namespace CreateParameterGroupResponse {
|
|
|
304
321
|
const filterSensitiveLog: (obj: CreateParameterGroupResponse) => any;
|
|
305
322
|
}
|
|
306
323
|
|
|
307
|
-
export
|
|
308
|
-
name: "ParameterGroupAlreadyExistsFault";
|
|
309
|
-
$fault: "client";
|
|
310
|
-
|
|
324
|
+
export declare class ParameterGroupAlreadyExistsFault extends __BaseException {
|
|
325
|
+
readonly name: "ParameterGroupAlreadyExistsFault";
|
|
326
|
+
readonly $fault: "client";
|
|
327
|
+
|
|
328
|
+
constructor(opts: __ExceptionOptionType<ParameterGroupAlreadyExistsFault, __BaseException>);
|
|
311
329
|
}
|
|
312
330
|
|
|
313
|
-
export
|
|
314
|
-
name: "ParameterGroupQuotaExceededFault";
|
|
315
|
-
$fault: "client";
|
|
316
|
-
|
|
331
|
+
export declare class ParameterGroupQuotaExceededFault extends __BaseException {
|
|
332
|
+
readonly name: "ParameterGroupQuotaExceededFault";
|
|
333
|
+
readonly $fault: "client";
|
|
334
|
+
|
|
335
|
+
constructor(opts: __ExceptionOptionType<ParameterGroupQuotaExceededFault, __BaseException>);
|
|
317
336
|
}
|
|
318
337
|
export interface CreateSubnetGroupRequest {
|
|
319
338
|
|
|
@@ -362,34 +381,39 @@ export declare namespace CreateSubnetGroupResponse {
|
|
|
362
381
|
const filterSensitiveLog: (obj: CreateSubnetGroupResponse) => any;
|
|
363
382
|
}
|
|
364
383
|
|
|
365
|
-
export
|
|
366
|
-
name: "InvalidSubnet";
|
|
367
|
-
$fault: "client";
|
|
368
|
-
|
|
384
|
+
export declare class InvalidSubnet extends __BaseException {
|
|
385
|
+
readonly name: "InvalidSubnet";
|
|
386
|
+
readonly $fault: "client";
|
|
387
|
+
|
|
388
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
|
|
369
389
|
}
|
|
370
390
|
|
|
371
|
-
export
|
|
372
|
-
name: "SubnetGroupAlreadyExistsFault";
|
|
373
|
-
$fault: "client";
|
|
374
|
-
|
|
391
|
+
export declare class SubnetGroupAlreadyExistsFault extends __BaseException {
|
|
392
|
+
readonly name: "SubnetGroupAlreadyExistsFault";
|
|
393
|
+
readonly $fault: "client";
|
|
394
|
+
|
|
395
|
+
constructor(opts: __ExceptionOptionType<SubnetGroupAlreadyExistsFault, __BaseException>);
|
|
375
396
|
}
|
|
376
397
|
|
|
377
|
-
export
|
|
378
|
-
name: "SubnetGroupQuotaExceededFault";
|
|
379
|
-
$fault: "client";
|
|
380
|
-
|
|
398
|
+
export declare class SubnetGroupQuotaExceededFault extends __BaseException {
|
|
399
|
+
readonly name: "SubnetGroupQuotaExceededFault";
|
|
400
|
+
readonly $fault: "client";
|
|
401
|
+
|
|
402
|
+
constructor(opts: __ExceptionOptionType<SubnetGroupQuotaExceededFault, __BaseException>);
|
|
381
403
|
}
|
|
382
404
|
|
|
383
|
-
export
|
|
384
|
-
name: "SubnetQuotaExceededFault";
|
|
385
|
-
$fault: "client";
|
|
386
|
-
|
|
405
|
+
export declare class SubnetQuotaExceededFault extends __BaseException {
|
|
406
|
+
readonly name: "SubnetQuotaExceededFault";
|
|
407
|
+
readonly $fault: "client";
|
|
408
|
+
|
|
409
|
+
constructor(opts: __ExceptionOptionType<SubnetQuotaExceededFault, __BaseException>);
|
|
387
410
|
}
|
|
388
411
|
|
|
389
|
-
export
|
|
390
|
-
name: "ClusterNotFoundFault";
|
|
391
|
-
$fault: "client";
|
|
392
|
-
|
|
412
|
+
export declare class ClusterNotFoundFault extends __BaseException {
|
|
413
|
+
readonly name: "ClusterNotFoundFault";
|
|
414
|
+
readonly $fault: "client";
|
|
415
|
+
|
|
416
|
+
constructor(opts: __ExceptionOptionType<ClusterNotFoundFault, __BaseException>);
|
|
393
417
|
}
|
|
394
418
|
export interface DecreaseReplicationFactorRequest {
|
|
395
419
|
|
|
@@ -414,10 +438,11 @@ export declare namespace DecreaseReplicationFactorResponse {
|
|
|
414
438
|
const filterSensitiveLog: (obj: DecreaseReplicationFactorResponse) => any;
|
|
415
439
|
}
|
|
416
440
|
|
|
417
|
-
export
|
|
418
|
-
name: "NodeNotFoundFault";
|
|
419
|
-
$fault: "client";
|
|
420
|
-
|
|
441
|
+
export declare class NodeNotFoundFault extends __BaseException {
|
|
442
|
+
readonly name: "NodeNotFoundFault";
|
|
443
|
+
readonly $fault: "client";
|
|
444
|
+
|
|
445
|
+
constructor(opts: __ExceptionOptionType<NodeNotFoundFault, __BaseException>);
|
|
421
446
|
}
|
|
422
447
|
export interface DeleteClusterRequest {
|
|
423
448
|
|
|
@@ -468,10 +493,11 @@ export declare namespace DeleteSubnetGroupResponse {
|
|
|
468
493
|
const filterSensitiveLog: (obj: DeleteSubnetGroupResponse) => any;
|
|
469
494
|
}
|
|
470
495
|
|
|
471
|
-
export
|
|
472
|
-
name: "SubnetGroupInUseFault";
|
|
473
|
-
$fault: "client";
|
|
474
|
-
|
|
496
|
+
export declare class SubnetGroupInUseFault extends __BaseException {
|
|
497
|
+
readonly name: "SubnetGroupInUseFault";
|
|
498
|
+
readonly $fault: "client";
|
|
499
|
+
|
|
500
|
+
constructor(opts: __ExceptionOptionType<SubnetGroupInUseFault, __BaseException>);
|
|
475
501
|
}
|
|
476
502
|
export interface DescribeClustersRequest {
|
|
477
503
|
|
|
@@ -691,10 +717,11 @@ export declare namespace IncreaseReplicationFactorResponse {
|
|
|
691
717
|
const filterSensitiveLog: (obj: IncreaseReplicationFactorResponse) => any;
|
|
692
718
|
}
|
|
693
719
|
|
|
694
|
-
export
|
|
695
|
-
name: "InvalidARNFault";
|
|
696
|
-
$fault: "client";
|
|
697
|
-
|
|
720
|
+
export declare class InvalidARNFault extends __BaseException {
|
|
721
|
+
readonly name: "InvalidARNFault";
|
|
722
|
+
readonly $fault: "client";
|
|
723
|
+
|
|
724
|
+
constructor(opts: __ExceptionOptionType<InvalidARNFault, __BaseException>);
|
|
698
725
|
}
|
|
699
726
|
export interface ListTagsRequest {
|
|
700
727
|
|
|
@@ -753,10 +780,11 @@ export declare namespace TagResourceResponse {
|
|
|
753
780
|
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
754
781
|
}
|
|
755
782
|
|
|
756
|
-
export
|
|
757
|
-
name: "TagNotFoundFault";
|
|
758
|
-
$fault: "client";
|
|
759
|
-
|
|
783
|
+
export declare class TagNotFoundFault extends __BaseException {
|
|
784
|
+
readonly name: "TagNotFoundFault";
|
|
785
|
+
readonly $fault: "client";
|
|
786
|
+
|
|
787
|
+
constructor(opts: __ExceptionOptionType<TagNotFoundFault, __BaseException>);
|
|
760
788
|
}
|
|
761
789
|
export interface UntagResourceRequest {
|
|
762
790
|
|
|
@@ -834,10 +862,11 @@ export declare namespace UpdateParameterGroupResponse {
|
|
|
834
862
|
const filterSensitiveLog: (obj: UpdateParameterGroupResponse) => any;
|
|
835
863
|
}
|
|
836
864
|
|
|
837
|
-
export
|
|
838
|
-
name: "SubnetInUse";
|
|
839
|
-
$fault: "client";
|
|
840
|
-
|
|
865
|
+
export declare class SubnetInUse extends __BaseException {
|
|
866
|
+
readonly name: "SubnetInUse";
|
|
867
|
+
readonly $fault: "client";
|
|
868
|
+
|
|
869
|
+
constructor(opts: __ExceptionOptionType<SubnetInUse, __BaseException>);
|
|
841
870
|
}
|
|
842
871
|
export interface UpdateSubnetGroupRequest {
|
|
843
872
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dax",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.53.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",
|
|
@@ -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.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
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.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
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"
|