@aws-sdk/client-iotdeviceadvisor 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_restJson1.js +20 -14
- package/dist-es/protocols/Aws_restJson1.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-iotdeviceadvisor
|
|
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-iotdeviceadvisor
|
|
@@ -326,7 +326,7 @@ exports.deserializeAws_restJson1CreateSuiteDefinitionCommand = deserializeAws_re
|
|
|
326
326
|
const deserializeAws_restJson1CreateSuiteDefinitionCommandError = async (output, context) => {
|
|
327
327
|
const parsedOutput = {
|
|
328
328
|
...output,
|
|
329
|
-
body: await
|
|
329
|
+
body: await parseErrorBody(output.body, context),
|
|
330
330
|
};
|
|
331
331
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
332
332
|
switch (errorCode) {
|
|
@@ -360,7 +360,7 @@ exports.deserializeAws_restJson1DeleteSuiteDefinitionCommand = deserializeAws_re
|
|
|
360
360
|
const deserializeAws_restJson1DeleteSuiteDefinitionCommandError = async (output, context) => {
|
|
361
361
|
const parsedOutput = {
|
|
362
362
|
...output,
|
|
363
|
-
body: await
|
|
363
|
+
body: await parseErrorBody(output.body, context),
|
|
364
364
|
};
|
|
365
365
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
366
366
|
switch (errorCode) {
|
|
@@ -397,7 +397,7 @@ exports.deserializeAws_restJson1GetEndpointCommand = deserializeAws_restJson1Get
|
|
|
397
397
|
const deserializeAws_restJson1GetEndpointCommandError = async (output, context) => {
|
|
398
398
|
const parsedOutput = {
|
|
399
399
|
...output,
|
|
400
|
-
body: await
|
|
400
|
+
body: await parseErrorBody(output.body, context),
|
|
401
401
|
};
|
|
402
402
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
403
403
|
switch (errorCode) {
|
|
@@ -458,7 +458,7 @@ exports.deserializeAws_restJson1GetSuiteDefinitionCommand = deserializeAws_restJ
|
|
|
458
458
|
const deserializeAws_restJson1GetSuiteDefinitionCommandError = async (output, context) => {
|
|
459
459
|
const parsedOutput = {
|
|
460
460
|
...output,
|
|
461
|
-
body: await
|
|
461
|
+
body: await parseErrorBody(output.body, context),
|
|
462
462
|
};
|
|
463
463
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
464
464
|
switch (errorCode) {
|
|
@@ -528,7 +528,7 @@ exports.deserializeAws_restJson1GetSuiteRunCommand = deserializeAws_restJson1Get
|
|
|
528
528
|
const deserializeAws_restJson1GetSuiteRunCommandError = async (output, context) => {
|
|
529
529
|
const parsedOutput = {
|
|
530
530
|
...output,
|
|
531
|
-
body: await
|
|
531
|
+
body: await parseErrorBody(output.body, context),
|
|
532
532
|
};
|
|
533
533
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
534
534
|
switch (errorCode) {
|
|
@@ -568,7 +568,7 @@ exports.deserializeAws_restJson1GetSuiteRunReportCommand = deserializeAws_restJs
|
|
|
568
568
|
const deserializeAws_restJson1GetSuiteRunReportCommandError = async (output, context) => {
|
|
569
569
|
const parsedOutput = {
|
|
570
570
|
...output,
|
|
571
|
-
body: await
|
|
571
|
+
body: await parseErrorBody(output.body, context),
|
|
572
572
|
};
|
|
573
573
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
574
574
|
switch (errorCode) {
|
|
@@ -611,7 +611,7 @@ exports.deserializeAws_restJson1ListSuiteDefinitionsCommand = deserializeAws_res
|
|
|
611
611
|
const deserializeAws_restJson1ListSuiteDefinitionsCommandError = async (output, context) => {
|
|
612
612
|
const parsedOutput = {
|
|
613
613
|
...output,
|
|
614
|
-
body: await
|
|
614
|
+
body: await parseErrorBody(output.body, context),
|
|
615
615
|
};
|
|
616
616
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
617
617
|
switch (errorCode) {
|
|
@@ -651,7 +651,7 @@ exports.deserializeAws_restJson1ListSuiteRunsCommand = deserializeAws_restJson1L
|
|
|
651
651
|
const deserializeAws_restJson1ListSuiteRunsCommandError = async (output, context) => {
|
|
652
652
|
const parsedOutput = {
|
|
653
653
|
...output,
|
|
654
|
-
body: await
|
|
654
|
+
body: await parseErrorBody(output.body, context),
|
|
655
655
|
};
|
|
656
656
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
657
657
|
switch (errorCode) {
|
|
@@ -688,7 +688,7 @@ exports.deserializeAws_restJson1ListTagsForResourceCommand = deserializeAws_rest
|
|
|
688
688
|
const deserializeAws_restJson1ListTagsForResourceCommandError = async (output, context) => {
|
|
689
689
|
const parsedOutput = {
|
|
690
690
|
...output,
|
|
691
|
-
body: await
|
|
691
|
+
body: await parseErrorBody(output.body, context),
|
|
692
692
|
};
|
|
693
693
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
694
694
|
switch (errorCode) {
|
|
@@ -734,7 +734,7 @@ exports.deserializeAws_restJson1StartSuiteRunCommand = deserializeAws_restJson1S
|
|
|
734
734
|
const deserializeAws_restJson1StartSuiteRunCommandError = async (output, context) => {
|
|
735
735
|
const parsedOutput = {
|
|
736
736
|
...output,
|
|
737
|
-
body: await
|
|
737
|
+
body: await parseErrorBody(output.body, context),
|
|
738
738
|
};
|
|
739
739
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
740
740
|
switch (errorCode) {
|
|
@@ -771,7 +771,7 @@ exports.deserializeAws_restJson1StopSuiteRunCommand = deserializeAws_restJson1St
|
|
|
771
771
|
const deserializeAws_restJson1StopSuiteRunCommandError = async (output, context) => {
|
|
772
772
|
const parsedOutput = {
|
|
773
773
|
...output,
|
|
774
|
-
body: await
|
|
774
|
+
body: await parseErrorBody(output.body, context),
|
|
775
775
|
};
|
|
776
776
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
777
777
|
switch (errorCode) {
|
|
@@ -808,7 +808,7 @@ exports.deserializeAws_restJson1TagResourceCommand = deserializeAws_restJson1Tag
|
|
|
808
808
|
const deserializeAws_restJson1TagResourceCommandError = async (output, context) => {
|
|
809
809
|
const parsedOutput = {
|
|
810
810
|
...output,
|
|
811
|
-
body: await
|
|
811
|
+
body: await parseErrorBody(output.body, context),
|
|
812
812
|
};
|
|
813
813
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
814
814
|
switch (errorCode) {
|
|
@@ -845,7 +845,7 @@ exports.deserializeAws_restJson1UntagResourceCommand = deserializeAws_restJson1U
|
|
|
845
845
|
const deserializeAws_restJson1UntagResourceCommandError = async (output, context) => {
|
|
846
846
|
const parsedOutput = {
|
|
847
847
|
...output,
|
|
848
|
-
body: await
|
|
848
|
+
body: await parseErrorBody(output.body, context),
|
|
849
849
|
};
|
|
850
850
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
851
851
|
switch (errorCode) {
|
|
@@ -900,7 +900,7 @@ exports.deserializeAws_restJson1UpdateSuiteDefinitionCommand = deserializeAws_re
|
|
|
900
900
|
const deserializeAws_restJson1UpdateSuiteDefinitionCommandError = async (output, context) => {
|
|
901
901
|
const parsedOutput = {
|
|
902
902
|
...output,
|
|
903
|
-
body: await
|
|
903
|
+
body: await parseErrorBody(output.body, context),
|
|
904
904
|
};
|
|
905
905
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
906
906
|
switch (errorCode) {
|
|
@@ -1227,6 +1227,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
1227
1227
|
}
|
|
1228
1228
|
return {};
|
|
1229
1229
|
});
|
|
1230
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
1231
|
+
var _a;
|
|
1232
|
+
const value = await parseBody(errorBody, context);
|
|
1233
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1234
|
+
return value;
|
|
1235
|
+
};
|
|
1230
1236
|
const loadRestJsonErrorCode = (output, data) => {
|
|
1231
1237
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
1232
1238
|
const sanitizeErrorCode = (rawValue) => {
|
|
@@ -397,7 +397,7 @@ var deserializeAws_restJson1CreateSuiteDefinitionCommandError = function (output
|
|
|
397
397
|
case 0:
|
|
398
398
|
_a = [__assign({}, output)];
|
|
399
399
|
_c = {};
|
|
400
|
-
return [4,
|
|
400
|
+
return [4, parseErrorBody(output.body, context)];
|
|
401
401
|
case 1:
|
|
402
402
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
403
403
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -452,7 +452,7 @@ var deserializeAws_restJson1DeleteSuiteDefinitionCommandError = function (output
|
|
|
452
452
|
case 0:
|
|
453
453
|
_a = [__assign({}, output)];
|
|
454
454
|
_c = {};
|
|
455
|
-
return [4,
|
|
455
|
+
return [4, parseErrorBody(output.body, context)];
|
|
456
456
|
case 1:
|
|
457
457
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
458
458
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -512,7 +512,7 @@ var deserializeAws_restJson1GetEndpointCommandError = function (output, context)
|
|
|
512
512
|
case 0:
|
|
513
513
|
_a = [__assign({}, output)];
|
|
514
514
|
_c = {};
|
|
515
|
-
return [4,
|
|
515
|
+
return [4, parseErrorBody(output.body, context)];
|
|
516
516
|
case 1:
|
|
517
517
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
518
518
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -597,7 +597,7 @@ var deserializeAws_restJson1GetSuiteDefinitionCommandError = function (output, c
|
|
|
597
597
|
case 0:
|
|
598
598
|
_a = [__assign({}, output)];
|
|
599
599
|
_c = {};
|
|
600
|
-
return [4,
|
|
600
|
+
return [4, parseErrorBody(output.body, context)];
|
|
601
601
|
case 1:
|
|
602
602
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
603
603
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -691,7 +691,7 @@ var deserializeAws_restJson1GetSuiteRunCommandError = function (output, context)
|
|
|
691
691
|
case 0:
|
|
692
692
|
_a = [__assign({}, output)];
|
|
693
693
|
_c = {};
|
|
694
|
-
return [4,
|
|
694
|
+
return [4, parseErrorBody(output.body, context)];
|
|
695
695
|
case 1:
|
|
696
696
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
697
697
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -755,7 +755,7 @@ var deserializeAws_restJson1GetSuiteRunReportCommandError = function (output, co
|
|
|
755
755
|
case 0:
|
|
756
756
|
_a = [__assign({}, output)];
|
|
757
757
|
_c = {};
|
|
758
|
-
return [4,
|
|
758
|
+
return [4, parseErrorBody(output.body, context)];
|
|
759
759
|
case 1:
|
|
760
760
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
761
761
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -822,7 +822,7 @@ var deserializeAws_restJson1ListSuiteDefinitionsCommandError = function (output,
|
|
|
822
822
|
case 0:
|
|
823
823
|
_a = [__assign({}, output)];
|
|
824
824
|
_c = {};
|
|
825
|
-
return [4,
|
|
825
|
+
return [4, parseErrorBody(output.body, context)];
|
|
826
826
|
case 1:
|
|
827
827
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
828
828
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -885,7 +885,7 @@ var deserializeAws_restJson1ListSuiteRunsCommandError = function (output, contex
|
|
|
885
885
|
case 0:
|
|
886
886
|
_a = [__assign({}, output)];
|
|
887
887
|
_c = {};
|
|
888
|
-
return [4,
|
|
888
|
+
return [4, parseErrorBody(output.body, context)];
|
|
889
889
|
case 1:
|
|
890
890
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
891
891
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -945,7 +945,7 @@ var deserializeAws_restJson1ListTagsForResourceCommandError = function (output,
|
|
|
945
945
|
case 0:
|
|
946
946
|
_a = [__assign({}, output)];
|
|
947
947
|
_c = {};
|
|
948
|
-
return [4,
|
|
948
|
+
return [4, parseErrorBody(output.body, context)];
|
|
949
949
|
case 1:
|
|
950
950
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
951
951
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1015,7 +1015,7 @@ var deserializeAws_restJson1StartSuiteRunCommandError = function (output, contex
|
|
|
1015
1015
|
case 0:
|
|
1016
1016
|
_a = [__assign({}, output)];
|
|
1017
1017
|
_c = {};
|
|
1018
|
-
return [4,
|
|
1018
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1019
1019
|
case 1:
|
|
1020
1020
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1021
1021
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1074,7 +1074,7 @@ var deserializeAws_restJson1StopSuiteRunCommandError = function (output, context
|
|
|
1074
1074
|
case 0:
|
|
1075
1075
|
_a = [__assign({}, output)];
|
|
1076
1076
|
_c = {};
|
|
1077
|
-
return [4,
|
|
1077
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1078
1078
|
case 1:
|
|
1079
1079
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1080
1080
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1133,7 +1133,7 @@ var deserializeAws_restJson1TagResourceCommandError = function (output, context)
|
|
|
1133
1133
|
case 0:
|
|
1134
1134
|
_a = [__assign({}, output)];
|
|
1135
1135
|
_c = {};
|
|
1136
|
-
return [4,
|
|
1136
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1137
1137
|
case 1:
|
|
1138
1138
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1139
1139
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1192,7 +1192,7 @@ var deserializeAws_restJson1UntagResourceCommandError = function (output, contex
|
|
|
1192
1192
|
case 0:
|
|
1193
1193
|
_a = [__assign({}, output)];
|
|
1194
1194
|
_c = {};
|
|
1195
|
-
return [4,
|
|
1195
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1196
1196
|
case 1:
|
|
1197
1197
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1198
1198
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1271,7 +1271,7 @@ var deserializeAws_restJson1UpdateSuiteDefinitionCommandError = function (output
|
|
|
1271
1271
|
case 0:
|
|
1272
1272
|
_a = [__assign({}, output)];
|
|
1273
1273
|
_c = {};
|
|
1274
|
-
return [4,
|
|
1274
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1275
1275
|
case 1:
|
|
1276
1276
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1277
1277
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1597,6 +1597,19 @@ var parseBody = function (streamBody, context) {
|
|
|
1597
1597
|
return {};
|
|
1598
1598
|
});
|
|
1599
1599
|
};
|
|
1600
|
+
var parseErrorBody = function (errorBody, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
1601
|
+
var value;
|
|
1602
|
+
var _a;
|
|
1603
|
+
return __generator(this, function (_b) {
|
|
1604
|
+
switch (_b.label) {
|
|
1605
|
+
case 0: return [4, parseBody(errorBody, context)];
|
|
1606
|
+
case 1:
|
|
1607
|
+
value = _b.sent();
|
|
1608
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1609
|
+
return [2, value];
|
|
1610
|
+
}
|
|
1611
|
+
});
|
|
1612
|
+
}); };
|
|
1600
1613
|
var loadRestJsonErrorCode = function (output, data) {
|
|
1601
1614
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
1602
1615
|
var sanitizeErrorCode = function (rawValue) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotdeviceadvisor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotdeviceadvisor 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",
|