@aws-sdk/client-support 3.179.0 → 3.181.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 +20 -0
- package/dist-cjs/protocols/Aws_json1_1.js +20 -14
- package/dist-es/protocols/Aws_json1_1.js +27 -14
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **clients:** make parseErrorBody async ([#3999](https://github.com/aws/aws-sdk-js-v3/issues/3999)) ([2558c93](https://github.com/aws/aws-sdk-js-v3/commit/2558c93c050357ac6dc47aa0452b15b12ebfd676))
|
|
12
|
+
* **clients:** populate message field when parsing errors ([#3995](https://github.com/aws/aws-sdk-js-v3/issues/3995)) ([02e47f1](https://github.com/aws/aws-sdk-js-v3/commit/02e47f14397ae0a5d2e2883350d038b307fdcdb4))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# [3.180.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.179.0...v3.180.0) (2022-09-27)
|
|
19
|
+
|
|
20
|
+
**Note:** Version bump only for package @aws-sdk/client-support
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
# [3.179.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.178.0...v3.179.0) (2022-09-26)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @aws-sdk/client-support
|
|
@@ -162,7 +162,7 @@ exports.deserializeAws_json1_1AddAttachmentsToSetCommand = deserializeAws_json1_
|
|
|
162
162
|
const deserializeAws_json1_1AddAttachmentsToSetCommandError = async (output, context) => {
|
|
163
163
|
const parsedOutput = {
|
|
164
164
|
...output,
|
|
165
|
-
body: await
|
|
165
|
+
body: await parseErrorBody(output.body, context),
|
|
166
166
|
};
|
|
167
167
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
168
168
|
switch (errorCode) {
|
|
@@ -208,7 +208,7 @@ exports.deserializeAws_json1_1AddCommunicationToCaseCommand = deserializeAws_jso
|
|
|
208
208
|
const deserializeAws_json1_1AddCommunicationToCaseCommandError = async (output, context) => {
|
|
209
209
|
const parsedOutput = {
|
|
210
210
|
...output,
|
|
211
|
-
body: await
|
|
211
|
+
body: await parseErrorBody(output.body, context),
|
|
212
212
|
};
|
|
213
213
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
214
214
|
switch (errorCode) {
|
|
@@ -251,7 +251,7 @@ exports.deserializeAws_json1_1CreateCaseCommand = deserializeAws_json1_1CreateCa
|
|
|
251
251
|
const deserializeAws_json1_1CreateCaseCommandError = async (output, context) => {
|
|
252
252
|
const parsedOutput = {
|
|
253
253
|
...output,
|
|
254
|
-
body: await
|
|
254
|
+
body: await parseErrorBody(output.body, context),
|
|
255
255
|
};
|
|
256
256
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
257
257
|
switch (errorCode) {
|
|
@@ -294,7 +294,7 @@ exports.deserializeAws_json1_1DescribeAttachmentCommand = deserializeAws_json1_1
|
|
|
294
294
|
const deserializeAws_json1_1DescribeAttachmentCommandError = async (output, context) => {
|
|
295
295
|
const parsedOutput = {
|
|
296
296
|
...output,
|
|
297
|
-
body: await
|
|
297
|
+
body: await parseErrorBody(output.body, context),
|
|
298
298
|
};
|
|
299
299
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
300
300
|
switch (errorCode) {
|
|
@@ -334,7 +334,7 @@ exports.deserializeAws_json1_1DescribeCasesCommand = deserializeAws_json1_1Descr
|
|
|
334
334
|
const deserializeAws_json1_1DescribeCasesCommandError = async (output, context) => {
|
|
335
335
|
const parsedOutput = {
|
|
336
336
|
...output,
|
|
337
|
-
body: await
|
|
337
|
+
body: await parseErrorBody(output.body, context),
|
|
338
338
|
};
|
|
339
339
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
340
340
|
switch (errorCode) {
|
|
@@ -371,7 +371,7 @@ exports.deserializeAws_json1_1DescribeCommunicationsCommand = deserializeAws_jso
|
|
|
371
371
|
const deserializeAws_json1_1DescribeCommunicationsCommandError = async (output, context) => {
|
|
372
372
|
const parsedOutput = {
|
|
373
373
|
...output,
|
|
374
|
-
body: await
|
|
374
|
+
body: await parseErrorBody(output.body, context),
|
|
375
375
|
};
|
|
376
376
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
377
377
|
switch (errorCode) {
|
|
@@ -408,7 +408,7 @@ exports.deserializeAws_json1_1DescribeServicesCommand = deserializeAws_json1_1De
|
|
|
408
408
|
const deserializeAws_json1_1DescribeServicesCommandError = async (output, context) => {
|
|
409
409
|
const parsedOutput = {
|
|
410
410
|
...output,
|
|
411
|
-
body: await
|
|
411
|
+
body: await parseErrorBody(output.body, context),
|
|
412
412
|
};
|
|
413
413
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
414
414
|
switch (errorCode) {
|
|
@@ -442,7 +442,7 @@ exports.deserializeAws_json1_1DescribeSeverityLevelsCommand = deserializeAws_jso
|
|
|
442
442
|
const deserializeAws_json1_1DescribeSeverityLevelsCommandError = async (output, context) => {
|
|
443
443
|
const parsedOutput = {
|
|
444
444
|
...output,
|
|
445
|
-
body: await
|
|
445
|
+
body: await parseErrorBody(output.body, context),
|
|
446
446
|
};
|
|
447
447
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
448
448
|
switch (errorCode) {
|
|
@@ -476,7 +476,7 @@ exports.deserializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand
|
|
|
476
476
|
const deserializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommandError = async (output, context) => {
|
|
477
477
|
const parsedOutput = {
|
|
478
478
|
...output,
|
|
479
|
-
body: await
|
|
479
|
+
body: await parseErrorBody(output.body, context),
|
|
480
480
|
};
|
|
481
481
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
482
482
|
switch (errorCode) {
|
|
@@ -510,7 +510,7 @@ exports.deserializeAws_json1_1DescribeTrustedAdvisorCheckResultCommand = deseria
|
|
|
510
510
|
const deserializeAws_json1_1DescribeTrustedAdvisorCheckResultCommandError = async (output, context) => {
|
|
511
511
|
const parsedOutput = {
|
|
512
512
|
...output,
|
|
513
|
-
body: await
|
|
513
|
+
body: await parseErrorBody(output.body, context),
|
|
514
514
|
};
|
|
515
515
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
516
516
|
switch (errorCode) {
|
|
@@ -544,7 +544,7 @@ exports.deserializeAws_json1_1DescribeTrustedAdvisorChecksCommand = deserializeA
|
|
|
544
544
|
const deserializeAws_json1_1DescribeTrustedAdvisorChecksCommandError = async (output, context) => {
|
|
545
545
|
const parsedOutput = {
|
|
546
546
|
...output,
|
|
547
|
-
body: await
|
|
547
|
+
body: await parseErrorBody(output.body, context),
|
|
548
548
|
};
|
|
549
549
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
550
550
|
switch (errorCode) {
|
|
@@ -578,7 +578,7 @@ exports.deserializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommand = dese
|
|
|
578
578
|
const deserializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommandError = async (output, context) => {
|
|
579
579
|
const parsedOutput = {
|
|
580
580
|
...output,
|
|
581
|
-
body: await
|
|
581
|
+
body: await parseErrorBody(output.body, context),
|
|
582
582
|
};
|
|
583
583
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
584
584
|
switch (errorCode) {
|
|
@@ -612,7 +612,7 @@ exports.deserializeAws_json1_1RefreshTrustedAdvisorCheckCommand = deserializeAws
|
|
|
612
612
|
const deserializeAws_json1_1RefreshTrustedAdvisorCheckCommandError = async (output, context) => {
|
|
613
613
|
const parsedOutput = {
|
|
614
614
|
...output,
|
|
615
|
-
body: await
|
|
615
|
+
body: await parseErrorBody(output.body, context),
|
|
616
616
|
};
|
|
617
617
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
618
618
|
switch (errorCode) {
|
|
@@ -646,7 +646,7 @@ exports.deserializeAws_json1_1ResolveCaseCommand = deserializeAws_json1_1Resolve
|
|
|
646
646
|
const deserializeAws_json1_1ResolveCaseCommandError = async (output, context) => {
|
|
647
647
|
const parsedOutput = {
|
|
648
648
|
...output,
|
|
649
|
-
body: await
|
|
649
|
+
body: await parseErrorBody(output.body, context),
|
|
650
650
|
};
|
|
651
651
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
652
652
|
switch (errorCode) {
|
|
@@ -1335,6 +1335,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
1335
1335
|
}
|
|
1336
1336
|
return {};
|
|
1337
1337
|
});
|
|
1338
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
1339
|
+
var _a;
|
|
1340
|
+
const value = await parseBody(errorBody, context);
|
|
1341
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1342
|
+
return value;
|
|
1343
|
+
};
|
|
1338
1344
|
const loadRestJsonErrorCode = (output, data) => {
|
|
1339
1345
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
1340
1346
|
const sanitizeErrorCode = (rawValue) => {
|
|
@@ -183,7 +183,7 @@ var deserializeAws_json1_1AddAttachmentsToSetCommandError = function (output, co
|
|
|
183
183
|
case 0:
|
|
184
184
|
_a = [__assign({}, output)];
|
|
185
185
|
_c = {};
|
|
186
|
-
return [4,
|
|
186
|
+
return [4, parseErrorBody(output.body, context)];
|
|
187
187
|
case 1:
|
|
188
188
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
189
189
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -250,7 +250,7 @@ var deserializeAws_json1_1AddCommunicationToCaseCommandError = function (output,
|
|
|
250
250
|
case 0:
|
|
251
251
|
_a = [__assign({}, output)];
|
|
252
252
|
_c = {};
|
|
253
|
-
return [4,
|
|
253
|
+
return [4, parseErrorBody(output.body, context)];
|
|
254
254
|
case 1:
|
|
255
255
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
256
256
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -313,7 +313,7 @@ var deserializeAws_json1_1CreateCaseCommandError = function (output, context) {
|
|
|
313
313
|
case 0:
|
|
314
314
|
_a = [__assign({}, output)];
|
|
315
315
|
_c = {};
|
|
316
|
-
return [4,
|
|
316
|
+
return [4, parseErrorBody(output.body, context)];
|
|
317
317
|
case 1:
|
|
318
318
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
319
319
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -376,7 +376,7 @@ var deserializeAws_json1_1DescribeAttachmentCommandError = function (output, con
|
|
|
376
376
|
case 0:
|
|
377
377
|
_a = [__assign({}, output)];
|
|
378
378
|
_c = {};
|
|
379
|
-
return [4,
|
|
379
|
+
return [4, parseErrorBody(output.body, context)];
|
|
380
380
|
case 1:
|
|
381
381
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
382
382
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -435,7 +435,7 @@ var deserializeAws_json1_1DescribeCasesCommandError = function (output, context)
|
|
|
435
435
|
case 0:
|
|
436
436
|
_a = [__assign({}, output)];
|
|
437
437
|
_c = {};
|
|
438
|
-
return [4,
|
|
438
|
+
return [4, parseErrorBody(output.body, context)];
|
|
439
439
|
case 1:
|
|
440
440
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
441
441
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -490,7 +490,7 @@ var deserializeAws_json1_1DescribeCommunicationsCommandError = function (output,
|
|
|
490
490
|
case 0:
|
|
491
491
|
_a = [__assign({}, output)];
|
|
492
492
|
_c = {};
|
|
493
|
-
return [4,
|
|
493
|
+
return [4, parseErrorBody(output.body, context)];
|
|
494
494
|
case 1:
|
|
495
495
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
496
496
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -545,7 +545,7 @@ var deserializeAws_json1_1DescribeServicesCommandError = function (output, conte
|
|
|
545
545
|
case 0:
|
|
546
546
|
_a = [__assign({}, output)];
|
|
547
547
|
_c = {};
|
|
548
|
-
return [4,
|
|
548
|
+
return [4, parseErrorBody(output.body, context)];
|
|
549
549
|
case 1:
|
|
550
550
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
551
551
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -596,7 +596,7 @@ var deserializeAws_json1_1DescribeSeverityLevelsCommandError = function (output,
|
|
|
596
596
|
case 0:
|
|
597
597
|
_a = [__assign({}, output)];
|
|
598
598
|
_c = {};
|
|
599
|
-
return [4,
|
|
599
|
+
return [4, parseErrorBody(output.body, context)];
|
|
600
600
|
case 1:
|
|
601
601
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
602
602
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -647,7 +647,7 @@ var deserializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommandError
|
|
|
647
647
|
case 0:
|
|
648
648
|
_a = [__assign({}, output)];
|
|
649
649
|
_c = {};
|
|
650
|
-
return [4,
|
|
650
|
+
return [4, parseErrorBody(output.body, context)];
|
|
651
651
|
case 1:
|
|
652
652
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
653
653
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -698,7 +698,7 @@ var deserializeAws_json1_1DescribeTrustedAdvisorCheckResultCommandError = functi
|
|
|
698
698
|
case 0:
|
|
699
699
|
_a = [__assign({}, output)];
|
|
700
700
|
_c = {};
|
|
701
|
-
return [4,
|
|
701
|
+
return [4, parseErrorBody(output.body, context)];
|
|
702
702
|
case 1:
|
|
703
703
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
704
704
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -749,7 +749,7 @@ var deserializeAws_json1_1DescribeTrustedAdvisorChecksCommandError = function (o
|
|
|
749
749
|
case 0:
|
|
750
750
|
_a = [__assign({}, output)];
|
|
751
751
|
_c = {};
|
|
752
|
-
return [4,
|
|
752
|
+
return [4, parseErrorBody(output.body, context)];
|
|
753
753
|
case 1:
|
|
754
754
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
755
755
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -800,7 +800,7 @@ var deserializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommandError = fun
|
|
|
800
800
|
case 0:
|
|
801
801
|
_a = [__assign({}, output)];
|
|
802
802
|
_c = {};
|
|
803
|
-
return [4,
|
|
803
|
+
return [4, parseErrorBody(output.body, context)];
|
|
804
804
|
case 1:
|
|
805
805
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
806
806
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -851,7 +851,7 @@ var deserializeAws_json1_1RefreshTrustedAdvisorCheckCommandError = function (out
|
|
|
851
851
|
case 0:
|
|
852
852
|
_a = [__assign({}, output)];
|
|
853
853
|
_c = {};
|
|
854
|
-
return [4,
|
|
854
|
+
return [4, parseErrorBody(output.body, context)];
|
|
855
855
|
case 1:
|
|
856
856
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
857
857
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -902,7 +902,7 @@ var deserializeAws_json1_1ResolveCaseCommandError = function (output, context) {
|
|
|
902
902
|
case 0:
|
|
903
903
|
_a = [__assign({}, output)];
|
|
904
904
|
_c = {};
|
|
905
|
-
return [4,
|
|
905
|
+
return [4, parseErrorBody(output.body, context)];
|
|
906
906
|
case 1:
|
|
907
907
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
908
908
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1555,6 +1555,19 @@ var parseBody = function (streamBody, context) {
|
|
|
1555
1555
|
return {};
|
|
1556
1556
|
});
|
|
1557
1557
|
};
|
|
1558
|
+
var parseErrorBody = function (errorBody, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
1559
|
+
var value;
|
|
1560
|
+
var _a;
|
|
1561
|
+
return __generator(this, function (_b) {
|
|
1562
|
+
switch (_b.label) {
|
|
1563
|
+
case 0: return [4, parseBody(errorBody, context)];
|
|
1564
|
+
case 1:
|
|
1565
|
+
value = _b.sent();
|
|
1566
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1567
|
+
return [2, value];
|
|
1568
|
+
}
|
|
1569
|
+
});
|
|
1570
|
+
}); };
|
|
1558
1571
|
var loadRestJsonErrorCode = function (output, data) {
|
|
1559
1572
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
1560
1573
|
var sanitizeErrorCode = function (rawValue) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-support",
|
|
3
3
|
"description": "AWS SDK for JavaScript Support Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.181.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",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.181.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.178.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.181.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.178.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.178.0",
|
|
@@ -37,15 +37,15 @@
|
|
|
37
37
|
"@aws-sdk/node-config-provider": "3.178.0",
|
|
38
38
|
"@aws-sdk/node-http-handler": "3.178.0",
|
|
39
39
|
"@aws-sdk/protocol-http": "3.178.0",
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
+
"@aws-sdk/smithy-client": "3.180.0",
|
|
41
41
|
"@aws-sdk/types": "3.178.0",
|
|
42
42
|
"@aws-sdk/url-parser": "3.178.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.180.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.180.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-browser": "3.178.0",
|
|
50
50
|
"@aws-sdk/util-user-agent-node": "3.178.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|