@aws-sdk/client-emr-containers 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 +21 -15
- package/dist-es/protocols/Aws_restJson1.js +28 -15
- 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-emr-containers
|
|
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-emr-containers
|
|
@@ -386,7 +386,7 @@ exports.deserializeAws_restJson1CancelJobRunCommand = deserializeAws_restJson1Ca
|
|
|
386
386
|
const deserializeAws_restJson1CancelJobRunCommandError = async (output, context) => {
|
|
387
387
|
const parsedOutput = {
|
|
388
388
|
...output,
|
|
389
|
-
body: await
|
|
389
|
+
body: await parseErrorBody(output.body, context),
|
|
390
390
|
};
|
|
391
391
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
392
392
|
switch (errorCode) {
|
|
@@ -432,7 +432,7 @@ exports.deserializeAws_restJson1CreateManagedEndpointCommand = deserializeAws_re
|
|
|
432
432
|
const deserializeAws_restJson1CreateManagedEndpointCommandError = async (output, context) => {
|
|
433
433
|
const parsedOutput = {
|
|
434
434
|
...output,
|
|
435
|
-
body: await
|
|
435
|
+
body: await parseErrorBody(output.body, context),
|
|
436
436
|
};
|
|
437
437
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
438
438
|
switch (errorCode) {
|
|
@@ -478,7 +478,7 @@ exports.deserializeAws_restJson1CreateVirtualClusterCommand = deserializeAws_res
|
|
|
478
478
|
const deserializeAws_restJson1CreateVirtualClusterCommandError = async (output, context) => {
|
|
479
479
|
const parsedOutput = {
|
|
480
480
|
...output,
|
|
481
|
-
body: await
|
|
481
|
+
body: await parseErrorBody(output.body, context),
|
|
482
482
|
};
|
|
483
483
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
484
484
|
switch (errorCode) {
|
|
@@ -521,7 +521,7 @@ exports.deserializeAws_restJson1DeleteManagedEndpointCommand = deserializeAws_re
|
|
|
521
521
|
const deserializeAws_restJson1DeleteManagedEndpointCommandError = async (output, context) => {
|
|
522
522
|
const parsedOutput = {
|
|
523
523
|
...output,
|
|
524
|
-
body: await
|
|
524
|
+
body: await parseErrorBody(output.body, context),
|
|
525
525
|
};
|
|
526
526
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
527
527
|
switch (errorCode) {
|
|
@@ -558,7 +558,7 @@ exports.deserializeAws_restJson1DeleteVirtualClusterCommand = deserializeAws_res
|
|
|
558
558
|
const deserializeAws_restJson1DeleteVirtualClusterCommandError = async (output, context) => {
|
|
559
559
|
const parsedOutput = {
|
|
560
560
|
...output,
|
|
561
|
-
body: await
|
|
561
|
+
body: await parseErrorBody(output.body, context),
|
|
562
562
|
};
|
|
563
563
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
564
564
|
switch (errorCode) {
|
|
@@ -595,7 +595,7 @@ exports.deserializeAws_restJson1DescribeJobRunCommand = deserializeAws_restJson1
|
|
|
595
595
|
const deserializeAws_restJson1DescribeJobRunCommandError = async (output, context) => {
|
|
596
596
|
const parsedOutput = {
|
|
597
597
|
...output,
|
|
598
|
-
body: await
|
|
598
|
+
body: await parseErrorBody(output.body, context),
|
|
599
599
|
};
|
|
600
600
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
601
601
|
switch (errorCode) {
|
|
@@ -635,7 +635,7 @@ exports.deserializeAws_restJson1DescribeManagedEndpointCommand = deserializeAws_
|
|
|
635
635
|
const deserializeAws_restJson1DescribeManagedEndpointCommandError = async (output, context) => {
|
|
636
636
|
const parsedOutput = {
|
|
637
637
|
...output,
|
|
638
|
-
body: await
|
|
638
|
+
body: await parseErrorBody(output.body, context),
|
|
639
639
|
};
|
|
640
640
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
641
641
|
switch (errorCode) {
|
|
@@ -675,7 +675,7 @@ exports.deserializeAws_restJson1DescribeVirtualClusterCommand = deserializeAws_r
|
|
|
675
675
|
const deserializeAws_restJson1DescribeVirtualClusterCommandError = async (output, context) => {
|
|
676
676
|
const parsedOutput = {
|
|
677
677
|
...output,
|
|
678
|
-
body: await
|
|
678
|
+
body: await parseErrorBody(output.body, context),
|
|
679
679
|
};
|
|
680
680
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
681
681
|
switch (errorCode) {
|
|
@@ -718,7 +718,7 @@ exports.deserializeAws_restJson1ListJobRunsCommand = deserializeAws_restJson1Lis
|
|
|
718
718
|
const deserializeAws_restJson1ListJobRunsCommandError = async (output, context) => {
|
|
719
719
|
const parsedOutput = {
|
|
720
720
|
...output,
|
|
721
|
-
body: await
|
|
721
|
+
body: await parseErrorBody(output.body, context),
|
|
722
722
|
};
|
|
723
723
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
724
724
|
switch (errorCode) {
|
|
@@ -758,7 +758,7 @@ exports.deserializeAws_restJson1ListManagedEndpointsCommand = deserializeAws_res
|
|
|
758
758
|
const deserializeAws_restJson1ListManagedEndpointsCommandError = async (output, context) => {
|
|
759
759
|
const parsedOutput = {
|
|
760
760
|
...output,
|
|
761
|
-
body: await
|
|
761
|
+
body: await parseErrorBody(output.body, context),
|
|
762
762
|
};
|
|
763
763
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
764
764
|
switch (errorCode) {
|
|
@@ -795,7 +795,7 @@ exports.deserializeAws_restJson1ListTagsForResourceCommand = deserializeAws_rest
|
|
|
795
795
|
const deserializeAws_restJson1ListTagsForResourceCommandError = async (output, context) => {
|
|
796
796
|
const parsedOutput = {
|
|
797
797
|
...output,
|
|
798
|
-
body: await
|
|
798
|
+
body: await parseErrorBody(output.body, context),
|
|
799
799
|
};
|
|
800
800
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
801
801
|
switch (errorCode) {
|
|
@@ -838,7 +838,7 @@ exports.deserializeAws_restJson1ListVirtualClustersCommand = deserializeAws_rest
|
|
|
838
838
|
const deserializeAws_restJson1ListVirtualClustersCommandError = async (output, context) => {
|
|
839
839
|
const parsedOutput = {
|
|
840
840
|
...output,
|
|
841
|
-
body: await
|
|
841
|
+
body: await parseErrorBody(output.body, context),
|
|
842
842
|
};
|
|
843
843
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
844
844
|
switch (errorCode) {
|
|
@@ -884,7 +884,7 @@ exports.deserializeAws_restJson1StartJobRunCommand = deserializeAws_restJson1Sta
|
|
|
884
884
|
const deserializeAws_restJson1StartJobRunCommandError = async (output, context) => {
|
|
885
885
|
const parsedOutput = {
|
|
886
886
|
...output,
|
|
887
|
-
body: await
|
|
887
|
+
body: await parseErrorBody(output.body, context),
|
|
888
888
|
};
|
|
889
889
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
890
890
|
switch (errorCode) {
|
|
@@ -921,7 +921,7 @@ exports.deserializeAws_restJson1TagResourceCommand = deserializeAws_restJson1Tag
|
|
|
921
921
|
const deserializeAws_restJson1TagResourceCommandError = async (output, context) => {
|
|
922
922
|
const parsedOutput = {
|
|
923
923
|
...output,
|
|
924
|
-
body: await
|
|
924
|
+
body: await parseErrorBody(output.body, context),
|
|
925
925
|
};
|
|
926
926
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
927
927
|
switch (errorCode) {
|
|
@@ -958,7 +958,7 @@ exports.deserializeAws_restJson1UntagResourceCommand = deserializeAws_restJson1U
|
|
|
958
958
|
const deserializeAws_restJson1UntagResourceCommandError = async (output, context) => {
|
|
959
959
|
const parsedOutput = {
|
|
960
960
|
...output,
|
|
961
|
-
body: await
|
|
961
|
+
body: await parseErrorBody(output.body, context),
|
|
962
962
|
};
|
|
963
963
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
964
964
|
switch (errorCode) {
|
|
@@ -1410,6 +1410,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
1410
1410
|
}
|
|
1411
1411
|
return {};
|
|
1412
1412
|
});
|
|
1413
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
1414
|
+
var _a;
|
|
1415
|
+
const value = await parseBody(errorBody, context);
|
|
1416
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1417
|
+
return value;
|
|
1418
|
+
};
|
|
1413
1419
|
const loadRestJsonErrorCode = (output, data) => {
|
|
1414
1420
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
1415
1421
|
const sanitizeErrorCode = (rawValue) => {
|
|
@@ -449,7 +449,7 @@ var deserializeAws_restJson1CancelJobRunCommandError = function (output, context
|
|
|
449
449
|
case 0:
|
|
450
450
|
_a = [__assign({}, output)];
|
|
451
451
|
_c = {};
|
|
452
|
-
return [4,
|
|
452
|
+
return [4, parseErrorBody(output.body, context)];
|
|
453
453
|
case 1:
|
|
454
454
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
455
455
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -518,7 +518,7 @@ var deserializeAws_restJson1CreateManagedEndpointCommandError = function (output
|
|
|
518
518
|
case 0:
|
|
519
519
|
_a = [__assign({}, output)];
|
|
520
520
|
_c = {};
|
|
521
|
-
return [4,
|
|
521
|
+
return [4, parseErrorBody(output.body, context)];
|
|
522
522
|
case 1:
|
|
523
523
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
524
524
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -588,7 +588,7 @@ var deserializeAws_restJson1CreateVirtualClusterCommandError = function (output,
|
|
|
588
588
|
case 0:
|
|
589
589
|
_a = [__assign({}, output)];
|
|
590
590
|
_c = {};
|
|
591
|
-
return [4,
|
|
591
|
+
return [4, parseErrorBody(output.body, context)];
|
|
592
592
|
case 1:
|
|
593
593
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
594
594
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -655,7 +655,7 @@ var deserializeAws_restJson1DeleteManagedEndpointCommandError = function (output
|
|
|
655
655
|
case 0:
|
|
656
656
|
_a = [__assign({}, output)];
|
|
657
657
|
_c = {};
|
|
658
|
-
return [4,
|
|
658
|
+
return [4, parseErrorBody(output.body, context)];
|
|
659
659
|
case 1:
|
|
660
660
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
661
661
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -715,7 +715,7 @@ var deserializeAws_restJson1DeleteVirtualClusterCommandError = function (output,
|
|
|
715
715
|
case 0:
|
|
716
716
|
_a = [__assign({}, output)];
|
|
717
717
|
_c = {};
|
|
718
|
-
return [4,
|
|
718
|
+
return [4, parseErrorBody(output.body, context)];
|
|
719
719
|
case 1:
|
|
720
720
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
721
721
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -775,7 +775,7 @@ var deserializeAws_restJson1DescribeJobRunCommandError = function (output, conte
|
|
|
775
775
|
case 0:
|
|
776
776
|
_a = [__assign({}, output)];
|
|
777
777
|
_c = {};
|
|
778
|
-
return [4,
|
|
778
|
+
return [4, parseErrorBody(output.body, context)];
|
|
779
779
|
case 1:
|
|
780
780
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
781
781
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -839,7 +839,7 @@ var deserializeAws_restJson1DescribeManagedEndpointCommandError = function (outp
|
|
|
839
839
|
case 0:
|
|
840
840
|
_a = [__assign({}, output)];
|
|
841
841
|
_c = {};
|
|
842
|
-
return [4,
|
|
842
|
+
return [4, parseErrorBody(output.body, context)];
|
|
843
843
|
case 1:
|
|
844
844
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
845
845
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -903,7 +903,7 @@ var deserializeAws_restJson1DescribeVirtualClusterCommandError = function (outpu
|
|
|
903
903
|
case 0:
|
|
904
904
|
_a = [__assign({}, output)];
|
|
905
905
|
_c = {};
|
|
906
|
-
return [4,
|
|
906
|
+
return [4, parseErrorBody(output.body, context)];
|
|
907
907
|
case 1:
|
|
908
908
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
909
909
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -970,7 +970,7 @@ var deserializeAws_restJson1ListJobRunsCommandError = function (output, context)
|
|
|
970
970
|
case 0:
|
|
971
971
|
_a = [__assign({}, output)];
|
|
972
972
|
_c = {};
|
|
973
|
-
return [4,
|
|
973
|
+
return [4, parseErrorBody(output.body, context)];
|
|
974
974
|
case 1:
|
|
975
975
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
976
976
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1033,7 +1033,7 @@ var deserializeAws_restJson1ListManagedEndpointsCommandError = function (output,
|
|
|
1033
1033
|
case 0:
|
|
1034
1034
|
_a = [__assign({}, output)];
|
|
1035
1035
|
_c = {};
|
|
1036
|
-
return [4,
|
|
1036
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1037
1037
|
case 1:
|
|
1038
1038
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1039
1039
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1093,7 +1093,7 @@ var deserializeAws_restJson1ListTagsForResourceCommandError = function (output,
|
|
|
1093
1093
|
case 0:
|
|
1094
1094
|
_a = [__assign({}, output)];
|
|
1095
1095
|
_c = {};
|
|
1096
|
-
return [4,
|
|
1096
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1097
1097
|
case 1:
|
|
1098
1098
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1099
1099
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1160,7 +1160,7 @@ var deserializeAws_restJson1ListVirtualClustersCommandError = function (output,
|
|
|
1160
1160
|
case 0:
|
|
1161
1161
|
_a = [__assign({}, output)];
|
|
1162
1162
|
_c = {};
|
|
1163
|
-
return [4,
|
|
1163
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1164
1164
|
case 1:
|
|
1165
1165
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1166
1166
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1229,7 +1229,7 @@ var deserializeAws_restJson1StartJobRunCommandError = function (output, context)
|
|
|
1229
1229
|
case 0:
|
|
1230
1230
|
_a = [__assign({}, output)];
|
|
1231
1231
|
_c = {};
|
|
1232
|
-
return [4,
|
|
1232
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1233
1233
|
case 1:
|
|
1234
1234
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1235
1235
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1288,7 +1288,7 @@ var deserializeAws_restJson1TagResourceCommandError = function (output, context)
|
|
|
1288
1288
|
case 0:
|
|
1289
1289
|
_a = [__assign({}, output)];
|
|
1290
1290
|
_c = {};
|
|
1291
|
-
return [4,
|
|
1291
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1292
1292
|
case 1:
|
|
1293
1293
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1294
1294
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1347,7 +1347,7 @@ var deserializeAws_restJson1UntagResourceCommandError = function (output, contex
|
|
|
1347
1347
|
case 0:
|
|
1348
1348
|
_a = [__assign({}, output)];
|
|
1349
1349
|
_c = {};
|
|
1350
|
-
return [4,
|
|
1350
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1351
1351
|
case 1:
|
|
1352
1352
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1353
1353
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1780,6 +1780,19 @@ var parseBody = function (streamBody, context) {
|
|
|
1780
1780
|
return {};
|
|
1781
1781
|
});
|
|
1782
1782
|
};
|
|
1783
|
+
var parseErrorBody = function (errorBody, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
1784
|
+
var value;
|
|
1785
|
+
var _a;
|
|
1786
|
+
return __generator(this, function (_b) {
|
|
1787
|
+
switch (_b.label) {
|
|
1788
|
+
case 0: return [4, parseBody(errorBody, context)];
|
|
1789
|
+
case 1:
|
|
1790
|
+
value = _b.sent();
|
|
1791
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1792
|
+
return [2, value];
|
|
1793
|
+
}
|
|
1794
|
+
});
|
|
1795
|
+
}); };
|
|
1783
1796
|
var loadRestJsonErrorCode = function (output, data) {
|
|
1784
1797
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
1785
1798
|
var sanitizeErrorCode = function (rawValue) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-containers",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Containers 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",
|