@aws-sdk/client-appintegrations 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-appintegrations
|
|
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-appintegrations
|
|
@@ -366,7 +366,7 @@ exports.deserializeAws_restJson1CreateDataIntegrationCommand = deserializeAws_re
|
|
|
366
366
|
const deserializeAws_restJson1CreateDataIntegrationCommandError = async (output, context) => {
|
|
367
367
|
const parsedOutput = {
|
|
368
368
|
...output,
|
|
369
|
-
body: await
|
|
369
|
+
body: await parseErrorBody(output.body, context),
|
|
370
370
|
};
|
|
371
371
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
372
372
|
switch (errorCode) {
|
|
@@ -415,7 +415,7 @@ exports.deserializeAws_restJson1CreateEventIntegrationCommand = deserializeAws_r
|
|
|
415
415
|
const deserializeAws_restJson1CreateEventIntegrationCommandError = async (output, context) => {
|
|
416
416
|
const parsedOutput = {
|
|
417
417
|
...output,
|
|
418
|
-
body: await
|
|
418
|
+
body: await parseErrorBody(output.body, context),
|
|
419
419
|
};
|
|
420
420
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
421
421
|
switch (errorCode) {
|
|
@@ -461,7 +461,7 @@ exports.deserializeAws_restJson1DeleteDataIntegrationCommand = deserializeAws_re
|
|
|
461
461
|
const deserializeAws_restJson1DeleteDataIntegrationCommandError = async (output, context) => {
|
|
462
462
|
const parsedOutput = {
|
|
463
463
|
...output,
|
|
464
|
-
body: await
|
|
464
|
+
body: await parseErrorBody(output.body, context),
|
|
465
465
|
};
|
|
466
466
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
467
467
|
switch (errorCode) {
|
|
@@ -504,7 +504,7 @@ exports.deserializeAws_restJson1DeleteEventIntegrationCommand = deserializeAws_r
|
|
|
504
504
|
const deserializeAws_restJson1DeleteEventIntegrationCommandError = async (output, context) => {
|
|
505
505
|
const parsedOutput = {
|
|
506
506
|
...output,
|
|
507
|
-
body: await
|
|
507
|
+
body: await parseErrorBody(output.body, context),
|
|
508
508
|
};
|
|
509
509
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
510
510
|
switch (errorCode) {
|
|
@@ -571,7 +571,7 @@ exports.deserializeAws_restJson1GetDataIntegrationCommand = deserializeAws_restJ
|
|
|
571
571
|
const deserializeAws_restJson1GetDataIntegrationCommandError = async (output, context) => {
|
|
572
572
|
const parsedOutput = {
|
|
573
573
|
...output,
|
|
574
|
-
body: await
|
|
574
|
+
body: await parseErrorBody(output.body, context),
|
|
575
575
|
};
|
|
576
576
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
577
577
|
switch (errorCode) {
|
|
@@ -632,7 +632,7 @@ exports.deserializeAws_restJson1GetEventIntegrationCommand = deserializeAws_rest
|
|
|
632
632
|
const deserializeAws_restJson1GetEventIntegrationCommandError = async (output, context) => {
|
|
633
633
|
const parsedOutput = {
|
|
634
634
|
...output,
|
|
635
|
-
body: await
|
|
635
|
+
body: await parseErrorBody(output.body, context),
|
|
636
636
|
};
|
|
637
637
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
638
638
|
switch (errorCode) {
|
|
@@ -681,7 +681,7 @@ exports.deserializeAws_restJson1ListDataIntegrationAssociationsCommand = deseria
|
|
|
681
681
|
const deserializeAws_restJson1ListDataIntegrationAssociationsCommandError = async (output, context) => {
|
|
682
682
|
const parsedOutput = {
|
|
683
683
|
...output,
|
|
684
|
-
body: await
|
|
684
|
+
body: await parseErrorBody(output.body, context),
|
|
685
685
|
};
|
|
686
686
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
687
687
|
switch (errorCode) {
|
|
@@ -730,7 +730,7 @@ exports.deserializeAws_restJson1ListDataIntegrationsCommand = deserializeAws_res
|
|
|
730
730
|
const deserializeAws_restJson1ListDataIntegrationsCommandError = async (output, context) => {
|
|
731
731
|
const parsedOutput = {
|
|
732
732
|
...output,
|
|
733
|
-
body: await
|
|
733
|
+
body: await parseErrorBody(output.body, context),
|
|
734
734
|
};
|
|
735
735
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
736
736
|
switch (errorCode) {
|
|
@@ -776,7 +776,7 @@ exports.deserializeAws_restJson1ListEventIntegrationAssociationsCommand = deseri
|
|
|
776
776
|
const deserializeAws_restJson1ListEventIntegrationAssociationsCommandError = async (output, context) => {
|
|
777
777
|
const parsedOutput = {
|
|
778
778
|
...output,
|
|
779
|
-
body: await
|
|
779
|
+
body: await parseErrorBody(output.body, context),
|
|
780
780
|
};
|
|
781
781
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
782
782
|
switch (errorCode) {
|
|
@@ -825,7 +825,7 @@ exports.deserializeAws_restJson1ListEventIntegrationsCommand = deserializeAws_re
|
|
|
825
825
|
const deserializeAws_restJson1ListEventIntegrationsCommandError = async (output, context) => {
|
|
826
826
|
const parsedOutput = {
|
|
827
827
|
...output,
|
|
828
|
-
body: await
|
|
828
|
+
body: await parseErrorBody(output.body, context),
|
|
829
829
|
};
|
|
830
830
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
831
831
|
switch (errorCode) {
|
|
@@ -868,7 +868,7 @@ exports.deserializeAws_restJson1ListTagsForResourceCommand = deserializeAws_rest
|
|
|
868
868
|
const deserializeAws_restJson1ListTagsForResourceCommandError = async (output, context) => {
|
|
869
869
|
const parsedOutput = {
|
|
870
870
|
...output,
|
|
871
|
-
body: await
|
|
871
|
+
body: await parseErrorBody(output.body, context),
|
|
872
872
|
};
|
|
873
873
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
874
874
|
switch (errorCode) {
|
|
@@ -908,7 +908,7 @@ exports.deserializeAws_restJson1TagResourceCommand = deserializeAws_restJson1Tag
|
|
|
908
908
|
const deserializeAws_restJson1TagResourceCommandError = async (output, context) => {
|
|
909
909
|
const parsedOutput = {
|
|
910
910
|
...output,
|
|
911
|
-
body: await
|
|
911
|
+
body: await parseErrorBody(output.body, context),
|
|
912
912
|
};
|
|
913
913
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
914
914
|
switch (errorCode) {
|
|
@@ -948,7 +948,7 @@ exports.deserializeAws_restJson1UntagResourceCommand = deserializeAws_restJson1U
|
|
|
948
948
|
const deserializeAws_restJson1UntagResourceCommandError = async (output, context) => {
|
|
949
949
|
const parsedOutput = {
|
|
950
950
|
...output,
|
|
951
|
-
body: await
|
|
951
|
+
body: await parseErrorBody(output.body, context),
|
|
952
952
|
};
|
|
953
953
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
954
954
|
switch (errorCode) {
|
|
@@ -988,7 +988,7 @@ exports.deserializeAws_restJson1UpdateDataIntegrationCommand = deserializeAws_re
|
|
|
988
988
|
const deserializeAws_restJson1UpdateDataIntegrationCommandError = async (output, context) => {
|
|
989
989
|
const parsedOutput = {
|
|
990
990
|
...output,
|
|
991
|
-
body: await
|
|
991
|
+
body: await parseErrorBody(output.body, context),
|
|
992
992
|
};
|
|
993
993
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
994
994
|
switch (errorCode) {
|
|
@@ -1031,7 +1031,7 @@ exports.deserializeAws_restJson1UpdateEventIntegrationCommand = deserializeAws_r
|
|
|
1031
1031
|
const deserializeAws_restJson1UpdateEventIntegrationCommandError = async (output, context) => {
|
|
1032
1032
|
const parsedOutput = {
|
|
1033
1033
|
...output,
|
|
1034
|
-
body: await
|
|
1034
|
+
body: await parseErrorBody(output.body, context),
|
|
1035
1035
|
};
|
|
1036
1036
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1037
1037
|
switch (errorCode) {
|
|
@@ -1309,6 +1309,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
1309
1309
|
}
|
|
1310
1310
|
return {};
|
|
1311
1311
|
});
|
|
1312
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
1313
|
+
var _a;
|
|
1314
|
+
const value = await parseBody(errorBody, context);
|
|
1315
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1316
|
+
return value;
|
|
1317
|
+
};
|
|
1312
1318
|
const loadRestJsonErrorCode = (output, data) => {
|
|
1313
1319
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
1314
1320
|
const sanitizeErrorCode = (rawValue) => {
|
|
@@ -431,7 +431,7 @@ var deserializeAws_restJson1CreateDataIntegrationCommandError = function (output
|
|
|
431
431
|
case 0:
|
|
432
432
|
_a = [__assign({}, output)];
|
|
433
433
|
_c = {};
|
|
434
|
-
return [4,
|
|
434
|
+
return [4, parseErrorBody(output.body, context)];
|
|
435
435
|
case 1:
|
|
436
436
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
437
437
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -507,7 +507,7 @@ var deserializeAws_restJson1CreateEventIntegrationCommandError = function (outpu
|
|
|
507
507
|
case 0:
|
|
508
508
|
_a = [__assign({}, output)];
|
|
509
509
|
_c = {};
|
|
510
|
-
return [4,
|
|
510
|
+
return [4, parseErrorBody(output.body, context)];
|
|
511
511
|
case 1:
|
|
512
512
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
513
513
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -578,7 +578,7 @@ var deserializeAws_restJson1DeleteDataIntegrationCommandError = function (output
|
|
|
578
578
|
case 0:
|
|
579
579
|
_a = [__assign({}, output)];
|
|
580
580
|
_c = {};
|
|
581
|
-
return [4,
|
|
581
|
+
return [4, parseErrorBody(output.body, context)];
|
|
582
582
|
case 1:
|
|
583
583
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
584
584
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -645,7 +645,7 @@ var deserializeAws_restJson1DeleteEventIntegrationCommandError = function (outpu
|
|
|
645
645
|
case 0:
|
|
646
646
|
_a = [__assign({}, output)];
|
|
647
647
|
_c = {};
|
|
648
|
-
return [4,
|
|
648
|
+
return [4, parseErrorBody(output.body, context)];
|
|
649
649
|
case 1:
|
|
650
650
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
651
651
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -738,7 +738,7 @@ var deserializeAws_restJson1GetDataIntegrationCommandError = function (output, c
|
|
|
738
738
|
case 0:
|
|
739
739
|
_a = [__assign({}, output)];
|
|
740
740
|
_c = {};
|
|
741
|
-
return [4,
|
|
741
|
+
return [4, parseErrorBody(output.body, context)];
|
|
742
742
|
case 1:
|
|
743
743
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
744
744
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -825,7 +825,7 @@ var deserializeAws_restJson1GetEventIntegrationCommandError = function (output,
|
|
|
825
825
|
case 0:
|
|
826
826
|
_a = [__assign({}, output)];
|
|
827
827
|
_c = {};
|
|
828
|
-
return [4,
|
|
828
|
+
return [4, parseErrorBody(output.body, context)];
|
|
829
829
|
case 1:
|
|
830
830
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
831
831
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -900,7 +900,7 @@ var deserializeAws_restJson1ListDataIntegrationAssociationsCommandError = functi
|
|
|
900
900
|
case 0:
|
|
901
901
|
_a = [__assign({}, output)];
|
|
902
902
|
_c = {};
|
|
903
|
-
return [4,
|
|
903
|
+
return [4, parseErrorBody(output.body, context)];
|
|
904
904
|
case 1:
|
|
905
905
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
906
906
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -975,7 +975,7 @@ var deserializeAws_restJson1ListDataIntegrationsCommandError = function (output,
|
|
|
975
975
|
case 0:
|
|
976
976
|
_a = [__assign({}, output)];
|
|
977
977
|
_c = {};
|
|
978
|
-
return [4,
|
|
978
|
+
return [4, parseErrorBody(output.body, context)];
|
|
979
979
|
case 1:
|
|
980
980
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
981
981
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1046,7 +1046,7 @@ var deserializeAws_restJson1ListEventIntegrationAssociationsCommandError = funct
|
|
|
1046
1046
|
case 0:
|
|
1047
1047
|
_a = [__assign({}, output)];
|
|
1048
1048
|
_c = {};
|
|
1049
|
-
return [4,
|
|
1049
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1050
1050
|
case 1:
|
|
1051
1051
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1052
1052
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1121,7 +1121,7 @@ var deserializeAws_restJson1ListEventIntegrationsCommandError = function (output
|
|
|
1121
1121
|
case 0:
|
|
1122
1122
|
_a = [__assign({}, output)];
|
|
1123
1123
|
_c = {};
|
|
1124
|
-
return [4,
|
|
1124
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1125
1125
|
case 1:
|
|
1126
1126
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1127
1127
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1189,7 +1189,7 @@ var deserializeAws_restJson1ListTagsForResourceCommandError = function (output,
|
|
|
1189
1189
|
case 0:
|
|
1190
1190
|
_a = [__assign({}, output)];
|
|
1191
1191
|
_c = {};
|
|
1192
|
-
return [4,
|
|
1192
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1193
1193
|
case 1:
|
|
1194
1194
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1195
1195
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1252,7 +1252,7 @@ var deserializeAws_restJson1TagResourceCommandError = function (output, context)
|
|
|
1252
1252
|
case 0:
|
|
1253
1253
|
_a = [__assign({}, output)];
|
|
1254
1254
|
_c = {};
|
|
1255
|
-
return [4,
|
|
1255
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1256
1256
|
case 1:
|
|
1257
1257
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1258
1258
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1315,7 +1315,7 @@ var deserializeAws_restJson1UntagResourceCommandError = function (output, contex
|
|
|
1315
1315
|
case 0:
|
|
1316
1316
|
_a = [__assign({}, output)];
|
|
1317
1317
|
_c = {};
|
|
1318
|
-
return [4,
|
|
1318
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1319
1319
|
case 1:
|
|
1320
1320
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1321
1321
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1378,7 +1378,7 @@ var deserializeAws_restJson1UpdateDataIntegrationCommandError = function (output
|
|
|
1378
1378
|
case 0:
|
|
1379
1379
|
_a = [__assign({}, output)];
|
|
1380
1380
|
_c = {};
|
|
1381
|
-
return [4,
|
|
1381
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1382
1382
|
case 1:
|
|
1383
1383
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1384
1384
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1445,7 +1445,7 @@ var deserializeAws_restJson1UpdateEventIntegrationCommandError = function (outpu
|
|
|
1445
1445
|
case 0:
|
|
1446
1446
|
_a = [__assign({}, output)];
|
|
1447
1447
|
_c = {};
|
|
1448
|
-
return [4,
|
|
1448
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1449
1449
|
case 1:
|
|
1450
1450
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1451
1451
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1733,6 +1733,19 @@ var parseBody = function (streamBody, context) {
|
|
|
1733
1733
|
return {};
|
|
1734
1734
|
});
|
|
1735
1735
|
};
|
|
1736
|
+
var parseErrorBody = function (errorBody, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
1737
|
+
var value;
|
|
1738
|
+
var _a;
|
|
1739
|
+
return __generator(this, function (_b) {
|
|
1740
|
+
switch (_b.label) {
|
|
1741
|
+
case 0: return [4, parseBody(errorBody, context)];
|
|
1742
|
+
case 1:
|
|
1743
|
+
value = _b.sent();
|
|
1744
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
1745
|
+
return [2, value];
|
|
1746
|
+
}
|
|
1747
|
+
});
|
|
1748
|
+
}); };
|
|
1736
1749
|
var loadRestJsonErrorCode = function (output, data) {
|
|
1737
1750
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
1738
1751
|
var sanitizeErrorCode = function (rawValue) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations 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",
|