@aws-sdk/client-wisdom 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 +38 -32
- package/dist-es/protocols/Aws_restJson1.js +45 -32
- 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-wisdom
|
|
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-wisdom
|
|
@@ -749,7 +749,7 @@ exports.deserializeAws_restJson1CreateAssistantCommand = deserializeAws_restJson
|
|
|
749
749
|
const deserializeAws_restJson1CreateAssistantCommandError = async (output, context) => {
|
|
750
750
|
const parsedOutput = {
|
|
751
751
|
...output,
|
|
752
|
-
body: await
|
|
752
|
+
body: await parseErrorBody(output.body, context),
|
|
753
753
|
};
|
|
754
754
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
755
755
|
switch (errorCode) {
|
|
@@ -792,7 +792,7 @@ exports.deserializeAws_restJson1CreateAssistantAssociationCommand = deserializeA
|
|
|
792
792
|
const deserializeAws_restJson1CreateAssistantAssociationCommandError = async (output, context) => {
|
|
793
793
|
const parsedOutput = {
|
|
794
794
|
...output,
|
|
795
|
-
body: await
|
|
795
|
+
body: await parseErrorBody(output.body, context),
|
|
796
796
|
};
|
|
797
797
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
798
798
|
switch (errorCode) {
|
|
@@ -838,7 +838,7 @@ exports.deserializeAws_restJson1CreateContentCommand = deserializeAws_restJson1C
|
|
|
838
838
|
const deserializeAws_restJson1CreateContentCommandError = 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_restJson1CreateKnowledgeBaseCommand = deserializeAws_rest
|
|
|
884
884
|
const deserializeAws_restJson1CreateKnowledgeBaseCommandError = 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) {
|
|
@@ -927,7 +927,7 @@ exports.deserializeAws_restJson1CreateSessionCommand = deserializeAws_restJson1C
|
|
|
927
927
|
const deserializeAws_restJson1CreateSessionCommandError = async (output, context) => {
|
|
928
928
|
const parsedOutput = {
|
|
929
929
|
...output,
|
|
930
|
-
body: await
|
|
930
|
+
body: await parseErrorBody(output.body, context),
|
|
931
931
|
};
|
|
932
932
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
933
933
|
switch (errorCode) {
|
|
@@ -964,7 +964,7 @@ exports.deserializeAws_restJson1DeleteAssistantCommand = deserializeAws_restJson
|
|
|
964
964
|
const deserializeAws_restJson1DeleteAssistantCommandError = 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) {
|
|
@@ -1001,7 +1001,7 @@ exports.deserializeAws_restJson1DeleteAssistantAssociationCommand = deserializeA
|
|
|
1001
1001
|
const deserializeAws_restJson1DeleteAssistantAssociationCommandError = async (output, context) => {
|
|
1002
1002
|
const parsedOutput = {
|
|
1003
1003
|
...output,
|
|
1004
|
-
body: await
|
|
1004
|
+
body: await parseErrorBody(output.body, context),
|
|
1005
1005
|
};
|
|
1006
1006
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1007
1007
|
switch (errorCode) {
|
|
@@ -1038,7 +1038,7 @@ exports.deserializeAws_restJson1DeleteContentCommand = deserializeAws_restJson1D
|
|
|
1038
1038
|
const deserializeAws_restJson1DeleteContentCommandError = async (output, context) => {
|
|
1039
1039
|
const parsedOutput = {
|
|
1040
1040
|
...output,
|
|
1041
|
-
body: await
|
|
1041
|
+
body: await parseErrorBody(output.body, context),
|
|
1042
1042
|
};
|
|
1043
1043
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1044
1044
|
switch (errorCode) {
|
|
@@ -1075,7 +1075,7 @@ exports.deserializeAws_restJson1DeleteKnowledgeBaseCommand = deserializeAws_rest
|
|
|
1075
1075
|
const deserializeAws_restJson1DeleteKnowledgeBaseCommandError = async (output, context) => {
|
|
1076
1076
|
const parsedOutput = {
|
|
1077
1077
|
...output,
|
|
1078
|
-
body: await
|
|
1078
|
+
body: await parseErrorBody(output.body, context),
|
|
1079
1079
|
};
|
|
1080
1080
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1081
1081
|
switch (errorCode) {
|
|
@@ -1118,7 +1118,7 @@ exports.deserializeAws_restJson1GetAssistantCommand = deserializeAws_restJson1Ge
|
|
|
1118
1118
|
const deserializeAws_restJson1GetAssistantCommandError = async (output, context) => {
|
|
1119
1119
|
const parsedOutput = {
|
|
1120
1120
|
...output,
|
|
1121
|
-
body: await
|
|
1121
|
+
body: await parseErrorBody(output.body, context),
|
|
1122
1122
|
};
|
|
1123
1123
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1124
1124
|
switch (errorCode) {
|
|
@@ -1158,7 +1158,7 @@ exports.deserializeAws_restJson1GetAssistantAssociationCommand = deserializeAws_
|
|
|
1158
1158
|
const deserializeAws_restJson1GetAssistantAssociationCommandError = async (output, context) => {
|
|
1159
1159
|
const parsedOutput = {
|
|
1160
1160
|
...output,
|
|
1161
|
-
body: await
|
|
1161
|
+
body: await parseErrorBody(output.body, context),
|
|
1162
1162
|
};
|
|
1163
1163
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1164
1164
|
switch (errorCode) {
|
|
@@ -1198,7 +1198,7 @@ exports.deserializeAws_restJson1GetContentCommand = deserializeAws_restJson1GetC
|
|
|
1198
1198
|
const deserializeAws_restJson1GetContentCommandError = async (output, context) => {
|
|
1199
1199
|
const parsedOutput = {
|
|
1200
1200
|
...output,
|
|
1201
|
-
body: await
|
|
1201
|
+
body: await parseErrorBody(output.body, context),
|
|
1202
1202
|
};
|
|
1203
1203
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1204
1204
|
switch (errorCode) {
|
|
@@ -1238,7 +1238,7 @@ exports.deserializeAws_restJson1GetContentSummaryCommand = deserializeAws_restJs
|
|
|
1238
1238
|
const deserializeAws_restJson1GetContentSummaryCommandError = async (output, context) => {
|
|
1239
1239
|
const parsedOutput = {
|
|
1240
1240
|
...output,
|
|
1241
|
-
body: await
|
|
1241
|
+
body: await parseErrorBody(output.body, context),
|
|
1242
1242
|
};
|
|
1243
1243
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1244
1244
|
switch (errorCode) {
|
|
@@ -1278,7 +1278,7 @@ exports.deserializeAws_restJson1GetKnowledgeBaseCommand = deserializeAws_restJso
|
|
|
1278
1278
|
const deserializeAws_restJson1GetKnowledgeBaseCommandError = async (output, context) => {
|
|
1279
1279
|
const parsedOutput = {
|
|
1280
1280
|
...output,
|
|
1281
|
-
body: await
|
|
1281
|
+
body: await parseErrorBody(output.body, context),
|
|
1282
1282
|
};
|
|
1283
1283
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1284
1284
|
switch (errorCode) {
|
|
@@ -1321,7 +1321,7 @@ exports.deserializeAws_restJson1GetRecommendationsCommand = deserializeAws_restJ
|
|
|
1321
1321
|
const deserializeAws_restJson1GetRecommendationsCommandError = async (output, context) => {
|
|
1322
1322
|
const parsedOutput = {
|
|
1323
1323
|
...output,
|
|
1324
|
-
body: await
|
|
1324
|
+
body: await parseErrorBody(output.body, context),
|
|
1325
1325
|
};
|
|
1326
1326
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1327
1327
|
switch (errorCode) {
|
|
@@ -1361,7 +1361,7 @@ exports.deserializeAws_restJson1GetSessionCommand = deserializeAws_restJson1GetS
|
|
|
1361
1361
|
const deserializeAws_restJson1GetSessionCommandError = async (output, context) => {
|
|
1362
1362
|
const parsedOutput = {
|
|
1363
1363
|
...output,
|
|
1364
|
-
body: await
|
|
1364
|
+
body: await parseErrorBody(output.body, context),
|
|
1365
1365
|
};
|
|
1366
1366
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1367
1367
|
switch (errorCode) {
|
|
@@ -1404,7 +1404,7 @@ exports.deserializeAws_restJson1ListAssistantAssociationsCommand = deserializeAw
|
|
|
1404
1404
|
const deserializeAws_restJson1ListAssistantAssociationsCommandError = async (output, context) => {
|
|
1405
1405
|
const parsedOutput = {
|
|
1406
1406
|
...output,
|
|
1407
|
-
body: await
|
|
1407
|
+
body: await parseErrorBody(output.body, context),
|
|
1408
1408
|
};
|
|
1409
1409
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1410
1410
|
switch (errorCode) {
|
|
@@ -1447,7 +1447,7 @@ exports.deserializeAws_restJson1ListAssistantsCommand = deserializeAws_restJson1
|
|
|
1447
1447
|
const deserializeAws_restJson1ListAssistantsCommandError = async (output, context) => {
|
|
1448
1448
|
const parsedOutput = {
|
|
1449
1449
|
...output,
|
|
1450
|
-
body: await
|
|
1450
|
+
body: await parseErrorBody(output.body, context),
|
|
1451
1451
|
};
|
|
1452
1452
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1453
1453
|
switch (errorCode) {
|
|
@@ -1487,7 +1487,7 @@ exports.deserializeAws_restJson1ListContentsCommand = deserializeAws_restJson1Li
|
|
|
1487
1487
|
const deserializeAws_restJson1ListContentsCommandError = async (output, context) => {
|
|
1488
1488
|
const parsedOutput = {
|
|
1489
1489
|
...output,
|
|
1490
|
-
body: await
|
|
1490
|
+
body: await parseErrorBody(output.body, context),
|
|
1491
1491
|
};
|
|
1492
1492
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1493
1493
|
switch (errorCode) {
|
|
@@ -1530,7 +1530,7 @@ exports.deserializeAws_restJson1ListKnowledgeBasesCommand = deserializeAws_restJ
|
|
|
1530
1530
|
const deserializeAws_restJson1ListKnowledgeBasesCommandError = async (output, context) => {
|
|
1531
1531
|
const parsedOutput = {
|
|
1532
1532
|
...output,
|
|
1533
|
-
body: await
|
|
1533
|
+
body: await parseErrorBody(output.body, context),
|
|
1534
1534
|
};
|
|
1535
1535
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1536
1536
|
switch (errorCode) {
|
|
@@ -1567,7 +1567,7 @@ exports.deserializeAws_restJson1ListTagsForResourceCommand = deserializeAws_rest
|
|
|
1567
1567
|
const deserializeAws_restJson1ListTagsForResourceCommandError = async (output, context) => {
|
|
1568
1568
|
const parsedOutput = {
|
|
1569
1569
|
...output,
|
|
1570
|
-
body: await
|
|
1570
|
+
body: await parseErrorBody(output.body, context),
|
|
1571
1571
|
};
|
|
1572
1572
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1573
1573
|
switch (errorCode) {
|
|
@@ -1604,7 +1604,7 @@ exports.deserializeAws_restJson1NotifyRecommendationsReceivedCommand = deseriali
|
|
|
1604
1604
|
const deserializeAws_restJson1NotifyRecommendationsReceivedCommandError = async (output, context) => {
|
|
1605
1605
|
const parsedOutput = {
|
|
1606
1606
|
...output,
|
|
1607
|
-
body: await
|
|
1607
|
+
body: await parseErrorBody(output.body, context),
|
|
1608
1608
|
};
|
|
1609
1609
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1610
1610
|
switch (errorCode) {
|
|
@@ -1656,7 +1656,7 @@ exports.deserializeAws_restJson1PutFeedbackCommand = deserializeAws_restJson1Put
|
|
|
1656
1656
|
const deserializeAws_restJson1PutFeedbackCommandError = async (output, context) => {
|
|
1657
1657
|
const parsedOutput = {
|
|
1658
1658
|
...output,
|
|
1659
|
-
body: await
|
|
1659
|
+
body: await parseErrorBody(output.body, context),
|
|
1660
1660
|
};
|
|
1661
1661
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1662
1662
|
switch (errorCode) {
|
|
@@ -1699,7 +1699,7 @@ exports.deserializeAws_restJson1QueryAssistantCommand = deserializeAws_restJson1
|
|
|
1699
1699
|
const deserializeAws_restJson1QueryAssistantCommandError = async (output, context) => {
|
|
1700
1700
|
const parsedOutput = {
|
|
1701
1701
|
...output,
|
|
1702
|
-
body: await
|
|
1702
|
+
body: await parseErrorBody(output.body, context),
|
|
1703
1703
|
};
|
|
1704
1704
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1705
1705
|
switch (errorCode) {
|
|
@@ -1736,7 +1736,7 @@ exports.deserializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand = deserial
|
|
|
1736
1736
|
const deserializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommandError = async (output, context) => {
|
|
1737
1737
|
const parsedOutput = {
|
|
1738
1738
|
...output,
|
|
1739
|
-
body: await
|
|
1739
|
+
body: await parseErrorBody(output.body, context),
|
|
1740
1740
|
};
|
|
1741
1741
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1742
1742
|
switch (errorCode) {
|
|
@@ -1779,7 +1779,7 @@ exports.deserializeAws_restJson1SearchContentCommand = deserializeAws_restJson1S
|
|
|
1779
1779
|
const deserializeAws_restJson1SearchContentCommandError = async (output, context) => {
|
|
1780
1780
|
const parsedOutput = {
|
|
1781
1781
|
...output,
|
|
1782
|
-
body: await
|
|
1782
|
+
body: await parseErrorBody(output.body, context),
|
|
1783
1783
|
};
|
|
1784
1784
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1785
1785
|
switch (errorCode) {
|
|
@@ -1822,7 +1822,7 @@ exports.deserializeAws_restJson1SearchSessionsCommand = deserializeAws_restJson1
|
|
|
1822
1822
|
const deserializeAws_restJson1SearchSessionsCommandError = async (output, context) => {
|
|
1823
1823
|
const parsedOutput = {
|
|
1824
1824
|
...output,
|
|
1825
|
-
body: await
|
|
1825
|
+
body: await parseErrorBody(output.body, context),
|
|
1826
1826
|
};
|
|
1827
1827
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1828
1828
|
switch (errorCode) {
|
|
@@ -1871,7 +1871,7 @@ exports.deserializeAws_restJson1StartContentUploadCommand = deserializeAws_restJ
|
|
|
1871
1871
|
const deserializeAws_restJson1StartContentUploadCommandError = async (output, context) => {
|
|
1872
1872
|
const parsedOutput = {
|
|
1873
1873
|
...output,
|
|
1874
|
-
body: await
|
|
1874
|
+
body: await parseErrorBody(output.body, context),
|
|
1875
1875
|
};
|
|
1876
1876
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1877
1877
|
switch (errorCode) {
|
|
@@ -1908,7 +1908,7 @@ exports.deserializeAws_restJson1TagResourceCommand = deserializeAws_restJson1Tag
|
|
|
1908
1908
|
const deserializeAws_restJson1TagResourceCommandError = async (output, context) => {
|
|
1909
1909
|
const parsedOutput = {
|
|
1910
1910
|
...output,
|
|
1911
|
-
body: await
|
|
1911
|
+
body: await parseErrorBody(output.body, context),
|
|
1912
1912
|
};
|
|
1913
1913
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1914
1914
|
switch (errorCode) {
|
|
@@ -1942,7 +1942,7 @@ exports.deserializeAws_restJson1UntagResourceCommand = deserializeAws_restJson1U
|
|
|
1942
1942
|
const deserializeAws_restJson1UntagResourceCommandError = async (output, context) => {
|
|
1943
1943
|
const parsedOutput = {
|
|
1944
1944
|
...output,
|
|
1945
|
-
body: await
|
|
1945
|
+
body: await parseErrorBody(output.body, context),
|
|
1946
1946
|
};
|
|
1947
1947
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1948
1948
|
switch (errorCode) {
|
|
@@ -1976,7 +1976,7 @@ exports.deserializeAws_restJson1UpdateContentCommand = deserializeAws_restJson1U
|
|
|
1976
1976
|
const deserializeAws_restJson1UpdateContentCommandError = async (output, context) => {
|
|
1977
1977
|
const parsedOutput = {
|
|
1978
1978
|
...output,
|
|
1979
|
-
body: await
|
|
1979
|
+
body: await parseErrorBody(output.body, context),
|
|
1980
1980
|
};
|
|
1981
1981
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1982
1982
|
switch (errorCode) {
|
|
@@ -2019,7 +2019,7 @@ exports.deserializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommand = deserial
|
|
|
2019
2019
|
const deserializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommandError = async (output, context) => {
|
|
2020
2020
|
const parsedOutput = {
|
|
2021
2021
|
...output,
|
|
2022
|
-
body: await
|
|
2022
|
+
body: await parseErrorBody(output.body, context),
|
|
2023
2023
|
};
|
|
2024
2024
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2025
2025
|
switch (errorCode) {
|
|
@@ -2684,6 +2684,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
2684
2684
|
}
|
|
2685
2685
|
return {};
|
|
2686
2686
|
});
|
|
2687
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
2688
|
+
var _a;
|
|
2689
|
+
const value = await parseBody(errorBody, context);
|
|
2690
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
2691
|
+
return value;
|
|
2692
|
+
};
|
|
2687
2693
|
const loadRestJsonErrorCode = (output, data) => {
|
|
2688
2694
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
2689
2695
|
const sanitizeErrorCode = (rawValue) => {
|
|
@@ -859,7 +859,7 @@ var deserializeAws_restJson1CreateAssistantCommandError = function (output, cont
|
|
|
859
859
|
case 0:
|
|
860
860
|
_a = [__assign({}, output)];
|
|
861
861
|
_c = {};
|
|
862
|
-
return [4,
|
|
862
|
+
return [4, parseErrorBody(output.body, context)];
|
|
863
863
|
case 1:
|
|
864
864
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
865
865
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -927,7 +927,7 @@ var deserializeAws_restJson1CreateAssistantAssociationCommandError = function (o
|
|
|
927
927
|
case 0:
|
|
928
928
|
_a = [__assign({}, output)];
|
|
929
929
|
_c = {};
|
|
930
|
-
return [4,
|
|
930
|
+
return [4, parseErrorBody(output.body, context)];
|
|
931
931
|
case 1:
|
|
932
932
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
933
933
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -999,7 +999,7 @@ var deserializeAws_restJson1CreateContentCommandError = function (output, contex
|
|
|
999
999
|
case 0:
|
|
1000
1000
|
_a = [__assign({}, output)];
|
|
1001
1001
|
_c = {};
|
|
1002
|
-
return [4,
|
|
1002
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1003
1003
|
case 1:
|
|
1004
1004
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1005
1005
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1071,7 +1071,7 @@ var deserializeAws_restJson1CreateKnowledgeBaseCommandError = function (output,
|
|
|
1071
1071
|
case 0:
|
|
1072
1072
|
_a = [__assign({}, output)];
|
|
1073
1073
|
_c = {};
|
|
1074
|
-
return [4,
|
|
1074
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1075
1075
|
case 1:
|
|
1076
1076
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1077
1077
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1139,7 +1139,7 @@ var deserializeAws_restJson1CreateSessionCommandError = function (output, contex
|
|
|
1139
1139
|
case 0:
|
|
1140
1140
|
_a = [__assign({}, output)];
|
|
1141
1141
|
_c = {};
|
|
1142
|
-
return [4,
|
|
1142
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1143
1143
|
case 1:
|
|
1144
1144
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1145
1145
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1198,7 +1198,7 @@ var deserializeAws_restJson1DeleteAssistantCommandError = function (output, cont
|
|
|
1198
1198
|
case 0:
|
|
1199
1199
|
_a = [__assign({}, output)];
|
|
1200
1200
|
_c = {};
|
|
1201
|
-
return [4,
|
|
1201
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1202
1202
|
case 1:
|
|
1203
1203
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1204
1204
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1257,7 +1257,7 @@ var deserializeAws_restJson1DeleteAssistantAssociationCommandError = function (o
|
|
|
1257
1257
|
case 0:
|
|
1258
1258
|
_a = [__assign({}, output)];
|
|
1259
1259
|
_c = {};
|
|
1260
|
-
return [4,
|
|
1260
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1261
1261
|
case 1:
|
|
1262
1262
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1263
1263
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1316,7 +1316,7 @@ var deserializeAws_restJson1DeleteContentCommandError = function (output, contex
|
|
|
1316
1316
|
case 0:
|
|
1317
1317
|
_a = [__assign({}, output)];
|
|
1318
1318
|
_c = {};
|
|
1319
|
-
return [4,
|
|
1319
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1320
1320
|
case 1:
|
|
1321
1321
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1322
1322
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1375,7 +1375,7 @@ var deserializeAws_restJson1DeleteKnowledgeBaseCommandError = function (output,
|
|
|
1375
1375
|
case 0:
|
|
1376
1376
|
_a = [__assign({}, output)];
|
|
1377
1377
|
_c = {};
|
|
1378
|
-
return [4,
|
|
1378
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1379
1379
|
case 1:
|
|
1380
1380
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1381
1381
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1443,7 +1443,7 @@ var deserializeAws_restJson1GetAssistantCommandError = function (output, context
|
|
|
1443
1443
|
case 0:
|
|
1444
1444
|
_a = [__assign({}, output)];
|
|
1445
1445
|
_c = {};
|
|
1446
|
-
return [4,
|
|
1446
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1447
1447
|
case 1:
|
|
1448
1448
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1449
1449
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1507,7 +1507,7 @@ var deserializeAws_restJson1GetAssistantAssociationCommandError = function (outp
|
|
|
1507
1507
|
case 0:
|
|
1508
1508
|
_a = [__assign({}, output)];
|
|
1509
1509
|
_c = {};
|
|
1510
|
-
return [4,
|
|
1510
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1511
1511
|
case 1:
|
|
1512
1512
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1513
1513
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1571,7 +1571,7 @@ var deserializeAws_restJson1GetContentCommandError = function (output, context)
|
|
|
1571
1571
|
case 0:
|
|
1572
1572
|
_a = [__assign({}, output)];
|
|
1573
1573
|
_c = {};
|
|
1574
|
-
return [4,
|
|
1574
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1575
1575
|
case 1:
|
|
1576
1576
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1577
1577
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1635,7 +1635,7 @@ var deserializeAws_restJson1GetContentSummaryCommandError = function (output, co
|
|
|
1635
1635
|
case 0:
|
|
1636
1636
|
_a = [__assign({}, output)];
|
|
1637
1637
|
_c = {};
|
|
1638
|
-
return [4,
|
|
1638
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1639
1639
|
case 1:
|
|
1640
1640
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1641
1641
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1699,7 +1699,7 @@ var deserializeAws_restJson1GetKnowledgeBaseCommandError = function (output, con
|
|
|
1699
1699
|
case 0:
|
|
1700
1700
|
_a = [__assign({}, output)];
|
|
1701
1701
|
_c = {};
|
|
1702
|
-
return [4,
|
|
1702
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1703
1703
|
case 1:
|
|
1704
1704
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1705
1705
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1766,7 +1766,7 @@ var deserializeAws_restJson1GetRecommendationsCommandError = function (output, c
|
|
|
1766
1766
|
case 0:
|
|
1767
1767
|
_a = [__assign({}, output)];
|
|
1768
1768
|
_c = {};
|
|
1769
|
-
return [4,
|
|
1769
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1770
1770
|
case 1:
|
|
1771
1771
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1772
1772
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1830,7 +1830,7 @@ var deserializeAws_restJson1GetSessionCommandError = function (output, context)
|
|
|
1830
1830
|
case 0:
|
|
1831
1831
|
_a = [__assign({}, output)];
|
|
1832
1832
|
_c = {};
|
|
1833
|
-
return [4,
|
|
1833
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1834
1834
|
case 1:
|
|
1835
1835
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1836
1836
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1897,7 +1897,7 @@ var deserializeAws_restJson1ListAssistantAssociationsCommandError = function (ou
|
|
|
1897
1897
|
case 0:
|
|
1898
1898
|
_a = [__assign({}, output)];
|
|
1899
1899
|
_c = {};
|
|
1900
|
-
return [4,
|
|
1900
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1901
1901
|
case 1:
|
|
1902
1902
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1903
1903
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -1964,7 +1964,7 @@ var deserializeAws_restJson1ListAssistantsCommandError = function (output, conte
|
|
|
1964
1964
|
case 0:
|
|
1965
1965
|
_a = [__assign({}, output)];
|
|
1966
1966
|
_c = {};
|
|
1967
|
-
return [4,
|
|
1967
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1968
1968
|
case 1:
|
|
1969
1969
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1970
1970
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2027,7 +2027,7 @@ var deserializeAws_restJson1ListContentsCommandError = function (output, context
|
|
|
2027
2027
|
case 0:
|
|
2028
2028
|
_a = [__assign({}, output)];
|
|
2029
2029
|
_c = {};
|
|
2030
|
-
return [4,
|
|
2030
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2031
2031
|
case 1:
|
|
2032
2032
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2033
2033
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2094,7 +2094,7 @@ var deserializeAws_restJson1ListKnowledgeBasesCommandError = function (output, c
|
|
|
2094
2094
|
case 0:
|
|
2095
2095
|
_a = [__assign({}, output)];
|
|
2096
2096
|
_c = {};
|
|
2097
|
-
return [4,
|
|
2097
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2098
2098
|
case 1:
|
|
2099
2099
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2100
2100
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2154,7 +2154,7 @@ var deserializeAws_restJson1ListTagsForResourceCommandError = function (output,
|
|
|
2154
2154
|
case 0:
|
|
2155
2155
|
_a = [__assign({}, output)];
|
|
2156
2156
|
_c = {};
|
|
2157
|
-
return [4,
|
|
2157
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2158
2158
|
case 1:
|
|
2159
2159
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2160
2160
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2213,7 +2213,7 @@ var deserializeAws_restJson1NotifyRecommendationsReceivedCommandError = function
|
|
|
2213
2213
|
case 0:
|
|
2214
2214
|
_a = [__assign({}, output)];
|
|
2215
2215
|
_c = {};
|
|
2216
|
-
return [4,
|
|
2216
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2217
2217
|
case 1:
|
|
2218
2218
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2219
2219
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2289,7 +2289,7 @@ var deserializeAws_restJson1PutFeedbackCommandError = function (output, context)
|
|
|
2289
2289
|
case 0:
|
|
2290
2290
|
_a = [__assign({}, output)];
|
|
2291
2291
|
_c = {};
|
|
2292
|
-
return [4,
|
|
2292
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2293
2293
|
case 1:
|
|
2294
2294
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2295
2295
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2356,7 +2356,7 @@ var deserializeAws_restJson1QueryAssistantCommandError = function (output, conte
|
|
|
2356
2356
|
case 0:
|
|
2357
2357
|
_a = [__assign({}, output)];
|
|
2358
2358
|
_c = {};
|
|
2359
|
-
return [4,
|
|
2359
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2360
2360
|
case 1:
|
|
2361
2361
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2362
2362
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2415,7 +2415,7 @@ var deserializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommandError = functio
|
|
|
2415
2415
|
case 0:
|
|
2416
2416
|
_a = [__assign({}, output)];
|
|
2417
2417
|
_c = {};
|
|
2418
|
-
return [4,
|
|
2418
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2419
2419
|
case 1:
|
|
2420
2420
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2421
2421
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2482,7 +2482,7 @@ var deserializeAws_restJson1SearchContentCommandError = function (output, contex
|
|
|
2482
2482
|
case 0:
|
|
2483
2483
|
_a = [__assign({}, output)];
|
|
2484
2484
|
_c = {};
|
|
2485
|
-
return [4,
|
|
2485
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2486
2486
|
case 1:
|
|
2487
2487
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2488
2488
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2549,7 +2549,7 @@ var deserializeAws_restJson1SearchSessionsCommandError = function (output, conte
|
|
|
2549
2549
|
case 0:
|
|
2550
2550
|
_a = [__assign({}, output)];
|
|
2551
2551
|
_c = {};
|
|
2552
|
-
return [4,
|
|
2552
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2553
2553
|
case 1:
|
|
2554
2554
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2555
2555
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2622,7 +2622,7 @@ var deserializeAws_restJson1StartContentUploadCommandError = function (output, c
|
|
|
2622
2622
|
case 0:
|
|
2623
2623
|
_a = [__assign({}, output)];
|
|
2624
2624
|
_c = {};
|
|
2625
|
-
return [4,
|
|
2625
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2626
2626
|
case 1:
|
|
2627
2627
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2628
2628
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2681,7 +2681,7 @@ var deserializeAws_restJson1TagResourceCommandError = function (output, context)
|
|
|
2681
2681
|
case 0:
|
|
2682
2682
|
_a = [__assign({}, output)];
|
|
2683
2683
|
_c = {};
|
|
2684
|
-
return [4,
|
|
2684
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2685
2685
|
case 1:
|
|
2686
2686
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2687
2687
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2736,7 +2736,7 @@ var deserializeAws_restJson1UntagResourceCommandError = function (output, contex
|
|
|
2736
2736
|
case 0:
|
|
2737
2737
|
_a = [__assign({}, output)];
|
|
2738
2738
|
_c = {};
|
|
2739
|
-
return [4,
|
|
2739
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2740
2740
|
case 1:
|
|
2741
2741
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2742
2742
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2792,7 +2792,7 @@ var deserializeAws_restJson1UpdateContentCommandError = function (output, contex
|
|
|
2792
2792
|
case 0:
|
|
2793
2793
|
_a = [__assign({}, output)];
|
|
2794
2794
|
_c = {};
|
|
2795
|
-
return [4,
|
|
2795
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2796
2796
|
case 1:
|
|
2797
2797
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2798
2798
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -2860,7 +2860,7 @@ var deserializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommandError = functio
|
|
|
2860
2860
|
case 0:
|
|
2861
2861
|
_a = [__assign({}, output)];
|
|
2862
2862
|
_c = {};
|
|
2863
|
-
return [4,
|
|
2863
|
+
return [4, parseErrorBody(output.body, context)];
|
|
2864
2864
|
case 1:
|
|
2865
2865
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
2866
2866
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
@@ -3522,6 +3522,19 @@ var parseBody = function (streamBody, context) {
|
|
|
3522
3522
|
return {};
|
|
3523
3523
|
});
|
|
3524
3524
|
};
|
|
3525
|
+
var parseErrorBody = function (errorBody, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
3526
|
+
var value;
|
|
3527
|
+
var _a;
|
|
3528
|
+
return __generator(this, function (_b) {
|
|
3529
|
+
switch (_b.label) {
|
|
3530
|
+
case 0: return [4, parseBody(errorBody, context)];
|
|
3531
|
+
case 1:
|
|
3532
|
+
value = _b.sent();
|
|
3533
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
3534
|
+
return [2, value];
|
|
3535
|
+
}
|
|
3536
|
+
});
|
|
3537
|
+
}); };
|
|
3525
3538
|
var loadRestJsonErrorCode = function (output, data) {
|
|
3526
3539
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
3527
3540
|
var sanitizeErrorCode = function (rawValue) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wisdom",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wisdom 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",
|