@aws-sdk/client-lookoutequipment 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_0.js +39 -33
- package/dist-es/protocols/Aws_json1_0.js +46 -33
- 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-lookoutequipment
|
|
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-lookoutequipment
|
|
@@ -354,7 +354,7 @@ exports.deserializeAws_json1_0CreateDatasetCommand = deserializeAws_json1_0Creat
|
|
|
354
354
|
const deserializeAws_json1_0CreateDatasetCommandError = async (output, context) => {
|
|
355
355
|
const parsedOutput = {
|
|
356
356
|
...output,
|
|
357
|
-
body: await
|
|
357
|
+
body: await parseErrorBody(output.body, context),
|
|
358
358
|
};
|
|
359
359
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
360
360
|
switch (errorCode) {
|
|
@@ -403,7 +403,7 @@ exports.deserializeAws_json1_0CreateInferenceSchedulerCommand = deserializeAws_j
|
|
|
403
403
|
const deserializeAws_json1_0CreateInferenceSchedulerCommandError = async (output, context) => {
|
|
404
404
|
const parsedOutput = {
|
|
405
405
|
...output,
|
|
406
|
-
body: await
|
|
406
|
+
body: await parseErrorBody(output.body, context),
|
|
407
407
|
};
|
|
408
408
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
409
409
|
switch (errorCode) {
|
|
@@ -455,7 +455,7 @@ exports.deserializeAws_json1_0CreateLabelCommand = deserializeAws_json1_0CreateL
|
|
|
455
455
|
const deserializeAws_json1_0CreateLabelCommandError = async (output, context) => {
|
|
456
456
|
const parsedOutput = {
|
|
457
457
|
...output,
|
|
458
|
-
body: await
|
|
458
|
+
body: await parseErrorBody(output.body, context),
|
|
459
459
|
};
|
|
460
460
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
461
461
|
switch (errorCode) {
|
|
@@ -507,7 +507,7 @@ exports.deserializeAws_json1_0CreateLabelGroupCommand = deserializeAws_json1_0Cr
|
|
|
507
507
|
const deserializeAws_json1_0CreateLabelGroupCommandError = async (output, context) => {
|
|
508
508
|
const parsedOutput = {
|
|
509
509
|
...output,
|
|
510
|
-
body: await
|
|
510
|
+
body: await parseErrorBody(output.body, context),
|
|
511
511
|
};
|
|
512
512
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
513
513
|
switch (errorCode) {
|
|
@@ -556,7 +556,7 @@ exports.deserializeAws_json1_0CreateModelCommand = deserializeAws_json1_0CreateM
|
|
|
556
556
|
const deserializeAws_json1_0CreateModelCommandError = async (output, context) => {
|
|
557
557
|
const parsedOutput = {
|
|
558
558
|
...output,
|
|
559
|
-
body: await
|
|
559
|
+
body: await parseErrorBody(output.body, context),
|
|
560
560
|
};
|
|
561
561
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
562
562
|
switch (errorCode) {
|
|
@@ -605,7 +605,7 @@ exports.deserializeAws_json1_0DeleteDatasetCommand = deserializeAws_json1_0Delet
|
|
|
605
605
|
const deserializeAws_json1_0DeleteDatasetCommandError = async (output, context) => {
|
|
606
606
|
const parsedOutput = {
|
|
607
607
|
...output,
|
|
608
|
-
body: await
|
|
608
|
+
body: await parseErrorBody(output.body, context),
|
|
609
609
|
};
|
|
610
610
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
611
611
|
switch (errorCode) {
|
|
@@ -648,7 +648,7 @@ exports.deserializeAws_json1_0DeleteInferenceSchedulerCommand = deserializeAws_j
|
|
|
648
648
|
const deserializeAws_json1_0DeleteInferenceSchedulerCommandError = async (output, context) => {
|
|
649
649
|
const parsedOutput = {
|
|
650
650
|
...output,
|
|
651
|
-
body: await
|
|
651
|
+
body: await parseErrorBody(output.body, context),
|
|
652
652
|
};
|
|
653
653
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
654
654
|
switch (errorCode) {
|
|
@@ -694,7 +694,7 @@ exports.deserializeAws_json1_0DeleteLabelCommand = deserializeAws_json1_0DeleteL
|
|
|
694
694
|
const deserializeAws_json1_0DeleteLabelCommandError = async (output, context) => {
|
|
695
695
|
const parsedOutput = {
|
|
696
696
|
...output,
|
|
697
|
-
body: await
|
|
697
|
+
body: await parseErrorBody(output.body, context),
|
|
698
698
|
};
|
|
699
699
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
700
700
|
switch (errorCode) {
|
|
@@ -737,7 +737,7 @@ exports.deserializeAws_json1_0DeleteLabelGroupCommand = deserializeAws_json1_0De
|
|
|
737
737
|
const deserializeAws_json1_0DeleteLabelGroupCommandError = async (output, context) => {
|
|
738
738
|
const parsedOutput = {
|
|
739
739
|
...output,
|
|
740
|
-
body: await
|
|
740
|
+
body: await parseErrorBody(output.body, context),
|
|
741
741
|
};
|
|
742
742
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
743
743
|
switch (errorCode) {
|
|
@@ -780,7 +780,7 @@ exports.deserializeAws_json1_0DeleteModelCommand = deserializeAws_json1_0DeleteM
|
|
|
780
780
|
const deserializeAws_json1_0DeleteModelCommandError = async (output, context) => {
|
|
781
781
|
const parsedOutput = {
|
|
782
782
|
...output,
|
|
783
|
-
body: await
|
|
783
|
+
body: await parseErrorBody(output.body, context),
|
|
784
784
|
};
|
|
785
785
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
786
786
|
switch (errorCode) {
|
|
@@ -826,7 +826,7 @@ exports.deserializeAws_json1_0DescribeDataIngestionJobCommand = deserializeAws_j
|
|
|
826
826
|
const deserializeAws_json1_0DescribeDataIngestionJobCommandError = async (output, context) => {
|
|
827
827
|
const parsedOutput = {
|
|
828
828
|
...output,
|
|
829
|
-
body: await
|
|
829
|
+
body: await parseErrorBody(output.body, context),
|
|
830
830
|
};
|
|
831
831
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
832
832
|
switch (errorCode) {
|
|
@@ -872,7 +872,7 @@ exports.deserializeAws_json1_0DescribeDatasetCommand = deserializeAws_json1_0Des
|
|
|
872
872
|
const deserializeAws_json1_0DescribeDatasetCommandError = async (output, context) => {
|
|
873
873
|
const parsedOutput = {
|
|
874
874
|
...output,
|
|
875
|
-
body: await
|
|
875
|
+
body: await parseErrorBody(output.body, context),
|
|
876
876
|
};
|
|
877
877
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
878
878
|
switch (errorCode) {
|
|
@@ -918,7 +918,7 @@ exports.deserializeAws_json1_0DescribeInferenceSchedulerCommand = deserializeAws
|
|
|
918
918
|
const deserializeAws_json1_0DescribeInferenceSchedulerCommandError = async (output, context) => {
|
|
919
919
|
const parsedOutput = {
|
|
920
920
|
...output,
|
|
921
|
-
body: await
|
|
921
|
+
body: await parseErrorBody(output.body, context),
|
|
922
922
|
};
|
|
923
923
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
924
924
|
switch (errorCode) {
|
|
@@ -964,7 +964,7 @@ exports.deserializeAws_json1_0DescribeLabelCommand = deserializeAws_json1_0Descr
|
|
|
964
964
|
const deserializeAws_json1_0DescribeLabelCommandError = async (output, context) => {
|
|
965
965
|
const parsedOutput = {
|
|
966
966
|
...output,
|
|
967
|
-
body: await
|
|
967
|
+
body: await parseErrorBody(output.body, context),
|
|
968
968
|
};
|
|
969
969
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
970
970
|
switch (errorCode) {
|
|
@@ -1010,7 +1010,7 @@ exports.deserializeAws_json1_0DescribeLabelGroupCommand = deserializeAws_json1_0
|
|
|
1010
1010
|
const deserializeAws_json1_0DescribeLabelGroupCommandError = async (output, context) => {
|
|
1011
1011
|
const parsedOutput = {
|
|
1012
1012
|
...output,
|
|
1013
|
-
body: await
|
|
1013
|
+
body: await parseErrorBody(output.body, context),
|
|
1014
1014
|
};
|
|
1015
1015
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1016
1016
|
switch (errorCode) {
|
|
@@ -1056,7 +1056,7 @@ exports.deserializeAws_json1_0DescribeModelCommand = deserializeAws_json1_0Descr
|
|
|
1056
1056
|
const deserializeAws_json1_0DescribeModelCommandError = async (output, context) => {
|
|
1057
1057
|
const parsedOutput = {
|
|
1058
1058
|
...output,
|
|
1059
|
-
body: await
|
|
1059
|
+
body: await parseErrorBody(output.body, context),
|
|
1060
1060
|
};
|
|
1061
1061
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1062
1062
|
switch (errorCode) {
|
|
@@ -1102,7 +1102,7 @@ exports.deserializeAws_json1_0ListDataIngestionJobsCommand = deserializeAws_json
|
|
|
1102
1102
|
const deserializeAws_json1_0ListDataIngestionJobsCommandError = async (output, context) => {
|
|
1103
1103
|
const parsedOutput = {
|
|
1104
1104
|
...output,
|
|
1105
|
-
body: await
|
|
1105
|
+
body: await parseErrorBody(output.body, context),
|
|
1106
1106
|
};
|
|
1107
1107
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1108
1108
|
switch (errorCode) {
|
|
@@ -1145,7 +1145,7 @@ exports.deserializeAws_json1_0ListDatasetsCommand = deserializeAws_json1_0ListDa
|
|
|
1145
1145
|
const deserializeAws_json1_0ListDatasetsCommandError = async (output, context) => {
|
|
1146
1146
|
const parsedOutput = {
|
|
1147
1147
|
...output,
|
|
1148
|
-
body: await
|
|
1148
|
+
body: await parseErrorBody(output.body, context),
|
|
1149
1149
|
};
|
|
1150
1150
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1151
1151
|
switch (errorCode) {
|
|
@@ -1188,7 +1188,7 @@ exports.deserializeAws_json1_0ListInferenceEventsCommand = deserializeAws_json1_
|
|
|
1188
1188
|
const deserializeAws_json1_0ListInferenceEventsCommandError = async (output, context) => {
|
|
1189
1189
|
const parsedOutput = {
|
|
1190
1190
|
...output,
|
|
1191
|
-
body: await
|
|
1191
|
+
body: await parseErrorBody(output.body, context),
|
|
1192
1192
|
};
|
|
1193
1193
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1194
1194
|
switch (errorCode) {
|
|
@@ -1234,7 +1234,7 @@ exports.deserializeAws_json1_0ListInferenceExecutionsCommand = deserializeAws_js
|
|
|
1234
1234
|
const deserializeAws_json1_0ListInferenceExecutionsCommandError = async (output, context) => {
|
|
1235
1235
|
const parsedOutput = {
|
|
1236
1236
|
...output,
|
|
1237
|
-
body: await
|
|
1237
|
+
body: await parseErrorBody(output.body, context),
|
|
1238
1238
|
};
|
|
1239
1239
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1240
1240
|
switch (errorCode) {
|
|
@@ -1280,7 +1280,7 @@ exports.deserializeAws_json1_0ListInferenceSchedulersCommand = deserializeAws_js
|
|
|
1280
1280
|
const deserializeAws_json1_0ListInferenceSchedulersCommandError = async (output, context) => {
|
|
1281
1281
|
const parsedOutput = {
|
|
1282
1282
|
...output,
|
|
1283
|
-
body: await
|
|
1283
|
+
body: await parseErrorBody(output.body, context),
|
|
1284
1284
|
};
|
|
1285
1285
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1286
1286
|
switch (errorCode) {
|
|
@@ -1323,7 +1323,7 @@ exports.deserializeAws_json1_0ListLabelGroupsCommand = deserializeAws_json1_0Lis
|
|
|
1323
1323
|
const deserializeAws_json1_0ListLabelGroupsCommandError = async (output, context) => {
|
|
1324
1324
|
const parsedOutput = {
|
|
1325
1325
|
...output,
|
|
1326
|
-
body: await
|
|
1326
|
+
body: await parseErrorBody(output.body, context),
|
|
1327
1327
|
};
|
|
1328
1328
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1329
1329
|
switch (errorCode) {
|
|
@@ -1366,7 +1366,7 @@ exports.deserializeAws_json1_0ListLabelsCommand = deserializeAws_json1_0ListLabe
|
|
|
1366
1366
|
const deserializeAws_json1_0ListLabelsCommandError = async (output, context) => {
|
|
1367
1367
|
const parsedOutput = {
|
|
1368
1368
|
...output,
|
|
1369
|
-
body: await
|
|
1369
|
+
body: await parseErrorBody(output.body, context),
|
|
1370
1370
|
};
|
|
1371
1371
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1372
1372
|
switch (errorCode) {
|
|
@@ -1409,7 +1409,7 @@ exports.deserializeAws_json1_0ListModelsCommand = deserializeAws_json1_0ListMode
|
|
|
1409
1409
|
const deserializeAws_json1_0ListModelsCommandError = async (output, context) => {
|
|
1410
1410
|
const parsedOutput = {
|
|
1411
1411
|
...output,
|
|
1412
|
-
body: await
|
|
1412
|
+
body: await parseErrorBody(output.body, context),
|
|
1413
1413
|
};
|
|
1414
1414
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1415
1415
|
switch (errorCode) {
|
|
@@ -1452,7 +1452,7 @@ exports.deserializeAws_json1_0ListSensorStatisticsCommand = deserializeAws_json1
|
|
|
1452
1452
|
const deserializeAws_json1_0ListSensorStatisticsCommandError = async (output, context) => {
|
|
1453
1453
|
const parsedOutput = {
|
|
1454
1454
|
...output,
|
|
1455
|
-
body: await
|
|
1455
|
+
body: await parseErrorBody(output.body, context),
|
|
1456
1456
|
};
|
|
1457
1457
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1458
1458
|
switch (errorCode) {
|
|
@@ -1498,7 +1498,7 @@ exports.deserializeAws_json1_0ListTagsForResourceCommand = deserializeAws_json1_
|
|
|
1498
1498
|
const deserializeAws_json1_0ListTagsForResourceCommandError = async (output, context) => {
|
|
1499
1499
|
const parsedOutput = {
|
|
1500
1500
|
...output,
|
|
1501
|
-
body: await
|
|
1501
|
+
body: await parseErrorBody(output.body, context),
|
|
1502
1502
|
};
|
|
1503
1503
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1504
1504
|
switch (errorCode) {
|
|
@@ -1544,7 +1544,7 @@ exports.deserializeAws_json1_0StartDataIngestionJobCommand = deserializeAws_json
|
|
|
1544
1544
|
const deserializeAws_json1_0StartDataIngestionJobCommandError = async (output, context) => {
|
|
1545
1545
|
const parsedOutput = {
|
|
1546
1546
|
...output,
|
|
1547
|
-
body: await
|
|
1547
|
+
body: await parseErrorBody(output.body, context),
|
|
1548
1548
|
};
|
|
1549
1549
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1550
1550
|
switch (errorCode) {
|
|
@@ -1596,7 +1596,7 @@ exports.deserializeAws_json1_0StartInferenceSchedulerCommand = deserializeAws_js
|
|
|
1596
1596
|
const deserializeAws_json1_0StartInferenceSchedulerCommandError = async (output, context) => {
|
|
1597
1597
|
const parsedOutput = {
|
|
1598
1598
|
...output,
|
|
1599
|
-
body: await
|
|
1599
|
+
body: await parseErrorBody(output.body, context),
|
|
1600
1600
|
};
|
|
1601
1601
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1602
1602
|
switch (errorCode) {
|
|
@@ -1645,7 +1645,7 @@ exports.deserializeAws_json1_0StopInferenceSchedulerCommand = deserializeAws_jso
|
|
|
1645
1645
|
const deserializeAws_json1_0StopInferenceSchedulerCommandError = async (output, context) => {
|
|
1646
1646
|
const parsedOutput = {
|
|
1647
1647
|
...output,
|
|
1648
|
-
body: await
|
|
1648
|
+
body: await parseErrorBody(output.body, context),
|
|
1649
1649
|
};
|
|
1650
1650
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1651
1651
|
switch (errorCode) {
|
|
@@ -1694,7 +1694,7 @@ exports.deserializeAws_json1_0TagResourceCommand = deserializeAws_json1_0TagReso
|
|
|
1694
1694
|
const deserializeAws_json1_0TagResourceCommandError = async (output, context) => {
|
|
1695
1695
|
const parsedOutput = {
|
|
1696
1696
|
...output,
|
|
1697
|
-
body: await
|
|
1697
|
+
body: await parseErrorBody(output.body, context),
|
|
1698
1698
|
};
|
|
1699
1699
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1700
1700
|
switch (errorCode) {
|
|
@@ -1743,7 +1743,7 @@ exports.deserializeAws_json1_0UntagResourceCommand = deserializeAws_json1_0Untag
|
|
|
1743
1743
|
const deserializeAws_json1_0UntagResourceCommandError = async (output, context) => {
|
|
1744
1744
|
const parsedOutput = {
|
|
1745
1745
|
...output,
|
|
1746
|
-
body: await
|
|
1746
|
+
body: await parseErrorBody(output.body, context),
|
|
1747
1747
|
};
|
|
1748
1748
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1749
1749
|
switch (errorCode) {
|
|
@@ -1786,7 +1786,7 @@ exports.deserializeAws_json1_0UpdateInferenceSchedulerCommand = deserializeAws_j
|
|
|
1786
1786
|
const deserializeAws_json1_0UpdateInferenceSchedulerCommandError = async (output, context) => {
|
|
1787
1787
|
const parsedOutput = {
|
|
1788
1788
|
...output,
|
|
1789
|
-
body: await
|
|
1789
|
+
body: await parseErrorBody(output.body, context),
|
|
1790
1790
|
};
|
|
1791
1791
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1792
1792
|
switch (errorCode) {
|
|
@@ -1832,7 +1832,7 @@ exports.deserializeAws_json1_0UpdateLabelGroupCommand = deserializeAws_json1_0Up
|
|
|
1832
1832
|
const deserializeAws_json1_0UpdateLabelGroupCommandError = async (output, context) => {
|
|
1833
1833
|
const parsedOutput = {
|
|
1834
1834
|
...output,
|
|
1835
|
-
body: await
|
|
1835
|
+
body: await parseErrorBody(output.body, context),
|
|
1836
1836
|
};
|
|
1837
1837
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1838
1838
|
switch (errorCode) {
|
|
@@ -3117,6 +3117,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
3117
3117
|
}
|
|
3118
3118
|
return {};
|
|
3119
3119
|
});
|
|
3120
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
3121
|
+
var _a;
|
|
3122
|
+
const value = await parseBody(errorBody, context);
|
|
3123
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
3124
|
+
return value;
|
|
3125
|
+
};
|
|
3120
3126
|
const loadRestJsonErrorCode = (output, data) => {
|
|
3121
3127
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
3122
3128
|
const sanitizeErrorCode = (rawValue) => {
|
|
@@ -393,7 +393,7 @@ var deserializeAws_json1_0CreateDatasetCommandError = function (output, context)
|
|
|
393
393
|
case 0:
|
|
394
394
|
_a = [__assign({}, output)];
|
|
395
395
|
_c = {};
|
|
396
|
-
return [4,
|
|
396
|
+
return [4, parseErrorBody(output.body, context)];
|
|
397
397
|
case 1:
|
|
398
398
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
399
399
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -464,7 +464,7 @@ var deserializeAws_json1_0CreateInferenceSchedulerCommandError = function (outpu
|
|
|
464
464
|
case 0:
|
|
465
465
|
_a = [__assign({}, output)];
|
|
466
466
|
_c = {};
|
|
467
|
-
return [4,
|
|
467
|
+
return [4, parseErrorBody(output.body, context)];
|
|
468
468
|
case 1:
|
|
469
469
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
470
470
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -539,7 +539,7 @@ var deserializeAws_json1_0CreateLabelCommandError = function (output, context) {
|
|
|
539
539
|
case 0:
|
|
540
540
|
_a = [__assign({}, output)];
|
|
541
541
|
_c = {};
|
|
542
|
-
return [4,
|
|
542
|
+
return [4, parseErrorBody(output.body, context)];
|
|
543
543
|
case 1:
|
|
544
544
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
545
545
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -614,7 +614,7 @@ var deserializeAws_json1_0CreateLabelGroupCommandError = function (output, conte
|
|
|
614
614
|
case 0:
|
|
615
615
|
_a = [__assign({}, output)];
|
|
616
616
|
_c = {};
|
|
617
|
-
return [4,
|
|
617
|
+
return [4, parseErrorBody(output.body, context)];
|
|
618
618
|
case 1:
|
|
619
619
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
620
620
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -685,7 +685,7 @@ var deserializeAws_json1_0CreateModelCommandError = function (output, context) {
|
|
|
685
685
|
case 0:
|
|
686
686
|
_a = [__assign({}, output)];
|
|
687
687
|
_c = {};
|
|
688
|
-
return [4,
|
|
688
|
+
return [4, parseErrorBody(output.body, context)];
|
|
689
689
|
case 1:
|
|
690
690
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
691
691
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -760,7 +760,7 @@ var deserializeAws_json1_0DeleteDatasetCommandError = function (output, context)
|
|
|
760
760
|
case 0:
|
|
761
761
|
_a = [__assign({}, output)];
|
|
762
762
|
_c = {};
|
|
763
|
-
return [4,
|
|
763
|
+
return [4, parseErrorBody(output.body, context)];
|
|
764
764
|
case 1:
|
|
765
765
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
766
766
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -827,7 +827,7 @@ var deserializeAws_json1_0DeleteInferenceSchedulerCommandError = function (outpu
|
|
|
827
827
|
case 0:
|
|
828
828
|
_a = [__assign({}, output)];
|
|
829
829
|
_c = {};
|
|
830
|
-
return [4,
|
|
830
|
+
return [4, parseErrorBody(output.body, context)];
|
|
831
831
|
case 1:
|
|
832
832
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
833
833
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -898,7 +898,7 @@ var deserializeAws_json1_0DeleteLabelCommandError = function (output, context) {
|
|
|
898
898
|
case 0:
|
|
899
899
|
_a = [__assign({}, output)];
|
|
900
900
|
_c = {};
|
|
901
|
-
return [4,
|
|
901
|
+
return [4, parseErrorBody(output.body, context)];
|
|
902
902
|
case 1:
|
|
903
903
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
904
904
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -965,7 +965,7 @@ var deserializeAws_json1_0DeleteLabelGroupCommandError = function (output, conte
|
|
|
965
965
|
case 0:
|
|
966
966
|
_a = [__assign({}, output)];
|
|
967
967
|
_c = {};
|
|
968
|
-
return [4,
|
|
968
|
+
return [4, parseErrorBody(output.body, context)];
|
|
969
969
|
case 1:
|
|
970
970
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
971
971
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1032,7 +1032,7 @@ var deserializeAws_json1_0DeleteModelCommandError = function (output, context) {
|
|
|
1032
1032
|
case 0:
|
|
1033
1033
|
_a = [__assign({}, output)];
|
|
1034
1034
|
_c = {};
|
|
1035
|
-
return [4,
|
|
1035
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1036
1036
|
case 1:
|
|
1037
1037
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1038
1038
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1099,7 +1099,7 @@ var deserializeAws_json1_0DescribeDataIngestionJobCommandError = function (outpu
|
|
|
1099
1099
|
case 0:
|
|
1100
1100
|
_a = [__assign({}, output)];
|
|
1101
1101
|
_c = {};
|
|
1102
|
-
return [4,
|
|
1102
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1103
1103
|
case 1:
|
|
1104
1104
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1105
1105
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1166,7 +1166,7 @@ var deserializeAws_json1_0DescribeDatasetCommandError = function (output, contex
|
|
|
1166
1166
|
case 0:
|
|
1167
1167
|
_a = [__assign({}, output)];
|
|
1168
1168
|
_c = {};
|
|
1169
|
-
return [4,
|
|
1169
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1170
1170
|
case 1:
|
|
1171
1171
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1172
1172
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1233,7 +1233,7 @@ var deserializeAws_json1_0DescribeInferenceSchedulerCommandError = function (out
|
|
|
1233
1233
|
case 0:
|
|
1234
1234
|
_a = [__assign({}, output)];
|
|
1235
1235
|
_c = {};
|
|
1236
|
-
return [4,
|
|
1236
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1237
1237
|
case 1:
|
|
1238
1238
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1239
1239
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1300,7 +1300,7 @@ var deserializeAws_json1_0DescribeLabelCommandError = function (output, context)
|
|
|
1300
1300
|
case 0:
|
|
1301
1301
|
_a = [__assign({}, output)];
|
|
1302
1302
|
_c = {};
|
|
1303
|
-
return [4,
|
|
1303
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1304
1304
|
case 1:
|
|
1305
1305
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1306
1306
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1367,7 +1367,7 @@ var deserializeAws_json1_0DescribeLabelGroupCommandError = function (output, con
|
|
|
1367
1367
|
case 0:
|
|
1368
1368
|
_a = [__assign({}, output)];
|
|
1369
1369
|
_c = {};
|
|
1370
|
-
return [4,
|
|
1370
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1371
1371
|
case 1:
|
|
1372
1372
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1373
1373
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1434,7 +1434,7 @@ var deserializeAws_json1_0DescribeModelCommandError = function (output, context)
|
|
|
1434
1434
|
case 0:
|
|
1435
1435
|
_a = [__assign({}, output)];
|
|
1436
1436
|
_c = {};
|
|
1437
|
-
return [4,
|
|
1437
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1438
1438
|
case 1:
|
|
1439
1439
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1440
1440
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1501,7 +1501,7 @@ var deserializeAws_json1_0ListDataIngestionJobsCommandError = function (output,
|
|
|
1501
1501
|
case 0:
|
|
1502
1502
|
_a = [__assign({}, output)];
|
|
1503
1503
|
_c = {};
|
|
1504
|
-
return [4,
|
|
1504
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1505
1505
|
case 1:
|
|
1506
1506
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1507
1507
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1564,7 +1564,7 @@ var deserializeAws_json1_0ListDatasetsCommandError = function (output, context)
|
|
|
1564
1564
|
case 0:
|
|
1565
1565
|
_a = [__assign({}, output)];
|
|
1566
1566
|
_c = {};
|
|
1567
|
-
return [4,
|
|
1567
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1568
1568
|
case 1:
|
|
1569
1569
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1570
1570
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1627,7 +1627,7 @@ var deserializeAws_json1_0ListInferenceEventsCommandError = function (output, co
|
|
|
1627
1627
|
case 0:
|
|
1628
1628
|
_a = [__assign({}, output)];
|
|
1629
1629
|
_c = {};
|
|
1630
|
-
return [4,
|
|
1630
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1631
1631
|
case 1:
|
|
1632
1632
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1633
1633
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1694,7 +1694,7 @@ var deserializeAws_json1_0ListInferenceExecutionsCommandError = function (output
|
|
|
1694
1694
|
case 0:
|
|
1695
1695
|
_a = [__assign({}, output)];
|
|
1696
1696
|
_c = {};
|
|
1697
|
-
return [4,
|
|
1697
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1698
1698
|
case 1:
|
|
1699
1699
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1700
1700
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1761,7 +1761,7 @@ var deserializeAws_json1_0ListInferenceSchedulersCommandError = function (output
|
|
|
1761
1761
|
case 0:
|
|
1762
1762
|
_a = [__assign({}, output)];
|
|
1763
1763
|
_c = {};
|
|
1764
|
-
return [4,
|
|
1764
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1765
1765
|
case 1:
|
|
1766
1766
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1767
1767
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1824,7 +1824,7 @@ var deserializeAws_json1_0ListLabelGroupsCommandError = function (output, contex
|
|
|
1824
1824
|
case 0:
|
|
1825
1825
|
_a = [__assign({}, output)];
|
|
1826
1826
|
_c = {};
|
|
1827
|
-
return [4,
|
|
1827
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1828
1828
|
case 1:
|
|
1829
1829
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1830
1830
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1887,7 +1887,7 @@ var deserializeAws_json1_0ListLabelsCommandError = function (output, context) {
|
|
|
1887
1887
|
case 0:
|
|
1888
1888
|
_a = [__assign({}, output)];
|
|
1889
1889
|
_c = {};
|
|
1890
|
-
return [4,
|
|
1890
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1891
1891
|
case 1:
|
|
1892
1892
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1893
1893
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1950,7 +1950,7 @@ var deserializeAws_json1_0ListModelsCommandError = function (output, context) {
|
|
|
1950
1950
|
case 0:
|
|
1951
1951
|
_a = [__assign({}, output)];
|
|
1952
1952
|
_c = {};
|
|
1953
|
-
return [4,
|
|
1953
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1954
1954
|
case 1:
|
|
1955
1955
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1956
1956
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2013,7 +2013,7 @@ var deserializeAws_json1_0ListSensorStatisticsCommandError = function (output, c
|
|
|
2013
2013
|
case 0:
|
|
2014
2014
|
_a = [__assign({}, output)];
|
|
2015
2015
|
_c = {};
|
|
2016
|
-
return [4,
|
|
2016
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2017
2017
|
case 1:
|
|
2018
2018
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2019
2019
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2080,7 +2080,7 @@ var deserializeAws_json1_0ListTagsForResourceCommandError = function (output, co
|
|
|
2080
2080
|
case 0:
|
|
2081
2081
|
_a = [__assign({}, output)];
|
|
2082
2082
|
_c = {};
|
|
2083
|
-
return [4,
|
|
2083
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2084
2084
|
case 1:
|
|
2085
2085
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2086
2086
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2147,7 +2147,7 @@ var deserializeAws_json1_0StartDataIngestionJobCommandError = function (output,
|
|
|
2147
2147
|
case 0:
|
|
2148
2148
|
_a = [__assign({}, output)];
|
|
2149
2149
|
_c = {};
|
|
2150
|
-
return [4,
|
|
2150
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2151
2151
|
case 1:
|
|
2152
2152
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2153
2153
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2222,7 +2222,7 @@ var deserializeAws_json1_0StartInferenceSchedulerCommandError = function (output
|
|
|
2222
2222
|
case 0:
|
|
2223
2223
|
_a = [__assign({}, output)];
|
|
2224
2224
|
_c = {};
|
|
2225
|
-
return [4,
|
|
2225
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2226
2226
|
case 1:
|
|
2227
2227
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2228
2228
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2293,7 +2293,7 @@ var deserializeAws_json1_0StopInferenceSchedulerCommandError = function (output,
|
|
|
2293
2293
|
case 0:
|
|
2294
2294
|
_a = [__assign({}, output)];
|
|
2295
2295
|
_c = {};
|
|
2296
|
-
return [4,
|
|
2296
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2297
2297
|
case 1:
|
|
2298
2298
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2299
2299
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2364,7 +2364,7 @@ var deserializeAws_json1_0TagResourceCommandError = function (output, context) {
|
|
|
2364
2364
|
case 0:
|
|
2365
2365
|
_a = [__assign({}, output)];
|
|
2366
2366
|
_c = {};
|
|
2367
|
-
return [4,
|
|
2367
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2368
2368
|
case 1:
|
|
2369
2369
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2370
2370
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2435,7 +2435,7 @@ var deserializeAws_json1_0UntagResourceCommandError = function (output, context)
|
|
|
2435
2435
|
case 0:
|
|
2436
2436
|
_a = [__assign({}, output)];
|
|
2437
2437
|
_c = {};
|
|
2438
|
-
return [4,
|
|
2438
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2439
2439
|
case 1:
|
|
2440
2440
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2441
2441
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2502,7 +2502,7 @@ var deserializeAws_json1_0UpdateInferenceSchedulerCommandError = function (outpu
|
|
|
2502
2502
|
case 0:
|
|
2503
2503
|
_a = [__assign({}, output)];
|
|
2504
2504
|
_c = {};
|
|
2505
|
-
return [4,
|
|
2505
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2506
2506
|
case 1:
|
|
2507
2507
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2508
2508
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2573,7 +2573,7 @@ var deserializeAws_json1_0UpdateLabelGroupCommandError = function (output, conte
|
|
|
2573
2573
|
case 0:
|
|
2574
2574
|
_a = [__assign({}, output)];
|
|
2575
2575
|
_c = {};
|
|
2576
|
-
return [4,
|
|
2576
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2577
2577
|
case 1:
|
|
2578
2578
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2579
2579
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -3701,6 +3701,19 @@ var parseBody = function (streamBody, context) {
|
|
|
3701
3701
|
return {};
|
|
3702
3702
|
});
|
|
3703
3703
|
};
|
|
3704
|
+
var parseErrorBody = function (errorBody, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
3705
|
+
var value;
|
|
3706
|
+
var _a;
|
|
3707
|
+
return __generator(this, function (_b) {
|
|
3708
|
+
switch (_b.label) {
|
|
3709
|
+
case 0: return [4, parseBody(errorBody, context)];
|
|
3710
|
+
case 1:
|
|
3711
|
+
value = _b.sent();
|
|
3712
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
3713
|
+
return [2, value];
|
|
3714
|
+
}
|
|
3715
|
+
});
|
|
3716
|
+
}); };
|
|
3704
3717
|
var loadRestJsonErrorCode = function (output, data) {
|
|
3705
3718
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
3706
3719
|
var sanitizeErrorCode = function (rawValue) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lookoutequipment",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lookoutequipment 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",
|