@aws-sdk/client-sqs 3.180.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 +18 -0
- package/dist-cjs/protocols/Aws_query.js +54 -46
- package/dist-es/protocols/Aws_query.js +66 -51
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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
|
+
* **clients:** update message in Error key in case of XML protocol ([#4000](https://github.com/aws/aws-sdk-js-v3/issues/4000)) ([057f686](https://github.com/aws/aws-sdk-js-v3/commit/057f686f217caa4e277bbe6e2905decf97b0fad1))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **clients:** support awsQueryError trait ([#3998](https://github.com/aws/aws-sdk-js-v3/issues/3998)) ([384cbd7](https://github.com/aws/aws-sdk-js-v3/commit/384cbd7cbdbc0635d2dbff53b54d769ca80dabbb))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
# [3.180.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.179.0...v3.180.0) (2022-09-27)
|
|
7
25
|
|
|
8
26
|
**Note:** Version bump only for package @aws-sdk/client-sqs
|
|
@@ -281,7 +281,7 @@ exports.deserializeAws_queryAddPermissionCommand = deserializeAws_queryAddPermis
|
|
|
281
281
|
const deserializeAws_queryAddPermissionCommandError = async (output, context) => {
|
|
282
282
|
const parsedOutput = {
|
|
283
283
|
...output,
|
|
284
|
-
body: await
|
|
284
|
+
body: await parseErrorBody(output.body, context),
|
|
285
285
|
};
|
|
286
286
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
287
287
|
switch (errorCode) {
|
|
@@ -312,11 +312,11 @@ exports.deserializeAws_queryChangeMessageVisibilityCommand = deserializeAws_quer
|
|
|
312
312
|
const deserializeAws_queryChangeMessageVisibilityCommandError = async (output, context) => {
|
|
313
313
|
const parsedOutput = {
|
|
314
314
|
...output,
|
|
315
|
-
body: await
|
|
315
|
+
body: await parseErrorBody(output.body, context),
|
|
316
316
|
};
|
|
317
317
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
318
318
|
switch (errorCode) {
|
|
319
|
-
case "MessageNotInflight":
|
|
319
|
+
case "AWS.SimpleQueueService.MessageNotInflight":
|
|
320
320
|
case "com.amazonaws.sqs#MessageNotInflight":
|
|
321
321
|
throw await deserializeAws_queryMessageNotInflightResponse(parsedOutput, context);
|
|
322
322
|
case "ReceiptHandleIsInvalid":
|
|
@@ -349,20 +349,20 @@ exports.deserializeAws_queryChangeMessageVisibilityBatchCommand = deserializeAws
|
|
|
349
349
|
const deserializeAws_queryChangeMessageVisibilityBatchCommandError = async (output, context) => {
|
|
350
350
|
const parsedOutput = {
|
|
351
351
|
...output,
|
|
352
|
-
body: await
|
|
352
|
+
body: await parseErrorBody(output.body, context),
|
|
353
353
|
};
|
|
354
354
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
355
355
|
switch (errorCode) {
|
|
356
|
-
case "BatchEntryIdsNotDistinct":
|
|
356
|
+
case "AWS.SimpleQueueService.BatchEntryIdsNotDistinct":
|
|
357
357
|
case "com.amazonaws.sqs#BatchEntryIdsNotDistinct":
|
|
358
358
|
throw await deserializeAws_queryBatchEntryIdsNotDistinctResponse(parsedOutput, context);
|
|
359
|
-
case "EmptyBatchRequest":
|
|
359
|
+
case "AWS.SimpleQueueService.EmptyBatchRequest":
|
|
360
360
|
case "com.amazonaws.sqs#EmptyBatchRequest":
|
|
361
361
|
throw await deserializeAws_queryEmptyBatchRequestResponse(parsedOutput, context);
|
|
362
|
-
case "InvalidBatchEntryId":
|
|
362
|
+
case "AWS.SimpleQueueService.InvalidBatchEntryId":
|
|
363
363
|
case "com.amazonaws.sqs#InvalidBatchEntryId":
|
|
364
364
|
throw await deserializeAws_queryInvalidBatchEntryIdResponse(parsedOutput, context);
|
|
365
|
-
case "TooManyEntriesInBatchRequest":
|
|
365
|
+
case "AWS.SimpleQueueService.TooManyEntriesInBatchRequest":
|
|
366
366
|
case "com.amazonaws.sqs#TooManyEntriesInBatchRequest":
|
|
367
367
|
throw await deserializeAws_queryTooManyEntriesInBatchRequestResponse(parsedOutput, context);
|
|
368
368
|
default:
|
|
@@ -392,14 +392,14 @@ exports.deserializeAws_queryCreateQueueCommand = deserializeAws_queryCreateQueue
|
|
|
392
392
|
const deserializeAws_queryCreateQueueCommandError = async (output, context) => {
|
|
393
393
|
const parsedOutput = {
|
|
394
394
|
...output,
|
|
395
|
-
body: await
|
|
395
|
+
body: await parseErrorBody(output.body, context),
|
|
396
396
|
};
|
|
397
397
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
398
398
|
switch (errorCode) {
|
|
399
|
-
case "QueueDeletedRecently":
|
|
399
|
+
case "AWS.SimpleQueueService.QueueDeletedRecently":
|
|
400
400
|
case "com.amazonaws.sqs#QueueDeletedRecently":
|
|
401
401
|
throw await deserializeAws_queryQueueDeletedRecentlyResponse(parsedOutput, context);
|
|
402
|
-
case "
|
|
402
|
+
case "QueueAlreadyExists":
|
|
403
403
|
case "com.amazonaws.sqs#QueueNameExists":
|
|
404
404
|
throw await deserializeAws_queryQueueNameExistsResponse(parsedOutput, context);
|
|
405
405
|
default:
|
|
@@ -426,7 +426,7 @@ exports.deserializeAws_queryDeleteMessageCommand = deserializeAws_queryDeleteMes
|
|
|
426
426
|
const deserializeAws_queryDeleteMessageCommandError = async (output, context) => {
|
|
427
427
|
const parsedOutput = {
|
|
428
428
|
...output,
|
|
429
|
-
body: await
|
|
429
|
+
body: await parseErrorBody(output.body, context),
|
|
430
430
|
};
|
|
431
431
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
432
432
|
switch (errorCode) {
|
|
@@ -463,20 +463,20 @@ exports.deserializeAws_queryDeleteMessageBatchCommand = deserializeAws_queryDele
|
|
|
463
463
|
const deserializeAws_queryDeleteMessageBatchCommandError = async (output, context) => {
|
|
464
464
|
const parsedOutput = {
|
|
465
465
|
...output,
|
|
466
|
-
body: await
|
|
466
|
+
body: await parseErrorBody(output.body, context),
|
|
467
467
|
};
|
|
468
468
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
469
469
|
switch (errorCode) {
|
|
470
|
-
case "BatchEntryIdsNotDistinct":
|
|
470
|
+
case "AWS.SimpleQueueService.BatchEntryIdsNotDistinct":
|
|
471
471
|
case "com.amazonaws.sqs#BatchEntryIdsNotDistinct":
|
|
472
472
|
throw await deserializeAws_queryBatchEntryIdsNotDistinctResponse(parsedOutput, context);
|
|
473
|
-
case "EmptyBatchRequest":
|
|
473
|
+
case "AWS.SimpleQueueService.EmptyBatchRequest":
|
|
474
474
|
case "com.amazonaws.sqs#EmptyBatchRequest":
|
|
475
475
|
throw await deserializeAws_queryEmptyBatchRequestResponse(parsedOutput, context);
|
|
476
|
-
case "InvalidBatchEntryId":
|
|
476
|
+
case "AWS.SimpleQueueService.InvalidBatchEntryId":
|
|
477
477
|
case "com.amazonaws.sqs#InvalidBatchEntryId":
|
|
478
478
|
throw await deserializeAws_queryInvalidBatchEntryIdResponse(parsedOutput, context);
|
|
479
|
-
case "TooManyEntriesInBatchRequest":
|
|
479
|
+
case "AWS.SimpleQueueService.TooManyEntriesInBatchRequest":
|
|
480
480
|
case "com.amazonaws.sqs#TooManyEntriesInBatchRequest":
|
|
481
481
|
throw await deserializeAws_queryTooManyEntriesInBatchRequestResponse(parsedOutput, context);
|
|
482
482
|
default:
|
|
@@ -503,7 +503,7 @@ exports.deserializeAws_queryDeleteQueueCommand = deserializeAws_queryDeleteQueue
|
|
|
503
503
|
const deserializeAws_queryDeleteQueueCommandError = async (output, context) => {
|
|
504
504
|
const parsedOutput = {
|
|
505
505
|
...output,
|
|
506
|
-
body: await
|
|
506
|
+
body: await parseErrorBody(output.body, context),
|
|
507
507
|
};
|
|
508
508
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
509
509
|
const parsedBody = parsedOutput.body;
|
|
@@ -531,7 +531,7 @@ exports.deserializeAws_queryGetQueueAttributesCommand = deserializeAws_queryGetQ
|
|
|
531
531
|
const deserializeAws_queryGetQueueAttributesCommandError = async (output, context) => {
|
|
532
532
|
const parsedOutput = {
|
|
533
533
|
...output,
|
|
534
|
-
body: await
|
|
534
|
+
body: await parseErrorBody(output.body, context),
|
|
535
535
|
};
|
|
536
536
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
537
537
|
switch (errorCode) {
|
|
@@ -565,11 +565,11 @@ exports.deserializeAws_queryGetQueueUrlCommand = deserializeAws_queryGetQueueUrl
|
|
|
565
565
|
const deserializeAws_queryGetQueueUrlCommandError = async (output, context) => {
|
|
566
566
|
const parsedOutput = {
|
|
567
567
|
...output,
|
|
568
|
-
body: await
|
|
568
|
+
body: await parseErrorBody(output.body, context),
|
|
569
569
|
};
|
|
570
570
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
571
571
|
switch (errorCode) {
|
|
572
|
-
case "
|
|
572
|
+
case "AWS.SimpleQueueService.NonExistentQueue":
|
|
573
573
|
case "com.amazonaws.sqs#QueueDoesNotExist":
|
|
574
574
|
throw await deserializeAws_queryQueueDoesNotExistResponse(parsedOutput, context);
|
|
575
575
|
default:
|
|
@@ -599,11 +599,11 @@ exports.deserializeAws_queryListDeadLetterSourceQueuesCommand = deserializeAws_q
|
|
|
599
599
|
const deserializeAws_queryListDeadLetterSourceQueuesCommandError = async (output, context) => {
|
|
600
600
|
const parsedOutput = {
|
|
601
601
|
...output,
|
|
602
|
-
body: await
|
|
602
|
+
body: await parseErrorBody(output.body, context),
|
|
603
603
|
};
|
|
604
604
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
605
605
|
switch (errorCode) {
|
|
606
|
-
case "
|
|
606
|
+
case "AWS.SimpleQueueService.NonExistentQueue":
|
|
607
607
|
case "com.amazonaws.sqs#QueueDoesNotExist":
|
|
608
608
|
throw await deserializeAws_queryQueueDoesNotExistResponse(parsedOutput, context);
|
|
609
609
|
default:
|
|
@@ -633,7 +633,7 @@ exports.deserializeAws_queryListQueuesCommand = deserializeAws_queryListQueuesCo
|
|
|
633
633
|
const deserializeAws_queryListQueuesCommandError = async (output, context) => {
|
|
634
634
|
const parsedOutput = {
|
|
635
635
|
...output,
|
|
636
|
-
body: await
|
|
636
|
+
body: await parseErrorBody(output.body, context),
|
|
637
637
|
};
|
|
638
638
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
639
639
|
const parsedBody = parsedOutput.body;
|
|
@@ -661,7 +661,7 @@ exports.deserializeAws_queryListQueueTagsCommand = deserializeAws_queryListQueue
|
|
|
661
661
|
const deserializeAws_queryListQueueTagsCommandError = async (output, context) => {
|
|
662
662
|
const parsedOutput = {
|
|
663
663
|
...output,
|
|
664
|
-
body: await
|
|
664
|
+
body: await parseErrorBody(output.body, context),
|
|
665
665
|
};
|
|
666
666
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
667
667
|
const parsedBody = parsedOutput.body;
|
|
@@ -686,16 +686,16 @@ exports.deserializeAws_queryPurgeQueueCommand = deserializeAws_queryPurgeQueueCo
|
|
|
686
686
|
const deserializeAws_queryPurgeQueueCommandError = async (output, context) => {
|
|
687
687
|
const parsedOutput = {
|
|
688
688
|
...output,
|
|
689
|
-
body: await
|
|
689
|
+
body: await parseErrorBody(output.body, context),
|
|
690
690
|
};
|
|
691
691
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
692
692
|
switch (errorCode) {
|
|
693
|
-
case "
|
|
694
|
-
case "com.amazonaws.sqs#PurgeQueueInProgress":
|
|
695
|
-
throw await deserializeAws_queryPurgeQueueInProgressResponse(parsedOutput, context);
|
|
696
|
-
case "QueueDoesNotExist":
|
|
693
|
+
case "AWS.SimpleQueueService.NonExistentQueue":
|
|
697
694
|
case "com.amazonaws.sqs#QueueDoesNotExist":
|
|
698
695
|
throw await deserializeAws_queryQueueDoesNotExistResponse(parsedOutput, context);
|
|
696
|
+
case "AWS.SimpleQueueService.PurgeQueueInProgress":
|
|
697
|
+
case "com.amazonaws.sqs#PurgeQueueInProgress":
|
|
698
|
+
throw await deserializeAws_queryPurgeQueueInProgressResponse(parsedOutput, context);
|
|
699
699
|
default:
|
|
700
700
|
const parsedBody = parsedOutput.body;
|
|
701
701
|
(0, smithy_client_1.throwDefaultError)({
|
|
@@ -723,7 +723,7 @@ exports.deserializeAws_queryReceiveMessageCommand = deserializeAws_queryReceiveM
|
|
|
723
723
|
const deserializeAws_queryReceiveMessageCommandError = async (output, context) => {
|
|
724
724
|
const parsedOutput = {
|
|
725
725
|
...output,
|
|
726
|
-
body: await
|
|
726
|
+
body: await parseErrorBody(output.body, context),
|
|
727
727
|
};
|
|
728
728
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
729
729
|
switch (errorCode) {
|
|
@@ -754,7 +754,7 @@ exports.deserializeAws_queryRemovePermissionCommand = deserializeAws_queryRemove
|
|
|
754
754
|
const deserializeAws_queryRemovePermissionCommandError = async (output, context) => {
|
|
755
755
|
const parsedOutput = {
|
|
756
756
|
...output,
|
|
757
|
-
body: await
|
|
757
|
+
body: await parseErrorBody(output.body, context),
|
|
758
758
|
};
|
|
759
759
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
760
760
|
const parsedBody = parsedOutput.body;
|
|
@@ -782,16 +782,16 @@ exports.deserializeAws_querySendMessageCommand = deserializeAws_querySendMessage
|
|
|
782
782
|
const deserializeAws_querySendMessageCommandError = async (output, context) => {
|
|
783
783
|
const parsedOutput = {
|
|
784
784
|
...output,
|
|
785
|
-
body: await
|
|
785
|
+
body: await parseErrorBody(output.body, context),
|
|
786
786
|
};
|
|
787
787
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
788
788
|
switch (errorCode) {
|
|
789
|
+
case "AWS.SimpleQueueService.UnsupportedOperation":
|
|
790
|
+
case "com.amazonaws.sqs#UnsupportedOperation":
|
|
791
|
+
throw await deserializeAws_queryUnsupportedOperationResponse(parsedOutput, context);
|
|
789
792
|
case "InvalidMessageContents":
|
|
790
793
|
case "com.amazonaws.sqs#InvalidMessageContents":
|
|
791
794
|
throw await deserializeAws_queryInvalidMessageContentsResponse(parsedOutput, context);
|
|
792
|
-
case "UnsupportedOperation":
|
|
793
|
-
case "com.amazonaws.sqs#UnsupportedOperation":
|
|
794
|
-
throw await deserializeAws_queryUnsupportedOperationResponse(parsedOutput, context);
|
|
795
795
|
default:
|
|
796
796
|
const parsedBody = parsedOutput.body;
|
|
797
797
|
(0, smithy_client_1.throwDefaultError)({
|
|
@@ -819,26 +819,26 @@ exports.deserializeAws_querySendMessageBatchCommand = deserializeAws_querySendMe
|
|
|
819
819
|
const deserializeAws_querySendMessageBatchCommandError = async (output, context) => {
|
|
820
820
|
const parsedOutput = {
|
|
821
821
|
...output,
|
|
822
|
-
body: await
|
|
822
|
+
body: await parseErrorBody(output.body, context),
|
|
823
823
|
};
|
|
824
824
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
825
825
|
switch (errorCode) {
|
|
826
|
-
case "BatchEntryIdsNotDistinct":
|
|
826
|
+
case "AWS.SimpleQueueService.BatchEntryIdsNotDistinct":
|
|
827
827
|
case "com.amazonaws.sqs#BatchEntryIdsNotDistinct":
|
|
828
828
|
throw await deserializeAws_queryBatchEntryIdsNotDistinctResponse(parsedOutput, context);
|
|
829
|
-
case "BatchRequestTooLong":
|
|
829
|
+
case "AWS.SimpleQueueService.BatchRequestTooLong":
|
|
830
830
|
case "com.amazonaws.sqs#BatchRequestTooLong":
|
|
831
831
|
throw await deserializeAws_queryBatchRequestTooLongResponse(parsedOutput, context);
|
|
832
|
-
case "EmptyBatchRequest":
|
|
832
|
+
case "AWS.SimpleQueueService.EmptyBatchRequest":
|
|
833
833
|
case "com.amazonaws.sqs#EmptyBatchRequest":
|
|
834
834
|
throw await deserializeAws_queryEmptyBatchRequestResponse(parsedOutput, context);
|
|
835
|
-
case "InvalidBatchEntryId":
|
|
835
|
+
case "AWS.SimpleQueueService.InvalidBatchEntryId":
|
|
836
836
|
case "com.amazonaws.sqs#InvalidBatchEntryId":
|
|
837
837
|
throw await deserializeAws_queryInvalidBatchEntryIdResponse(parsedOutput, context);
|
|
838
|
-
case "TooManyEntriesInBatchRequest":
|
|
838
|
+
case "AWS.SimpleQueueService.TooManyEntriesInBatchRequest":
|
|
839
839
|
case "com.amazonaws.sqs#TooManyEntriesInBatchRequest":
|
|
840
840
|
throw await deserializeAws_queryTooManyEntriesInBatchRequestResponse(parsedOutput, context);
|
|
841
|
-
case "UnsupportedOperation":
|
|
841
|
+
case "AWS.SimpleQueueService.UnsupportedOperation":
|
|
842
842
|
case "com.amazonaws.sqs#UnsupportedOperation":
|
|
843
843
|
throw await deserializeAws_queryUnsupportedOperationResponse(parsedOutput, context);
|
|
844
844
|
default:
|
|
@@ -865,7 +865,7 @@ exports.deserializeAws_querySetQueueAttributesCommand = deserializeAws_querySetQ
|
|
|
865
865
|
const deserializeAws_querySetQueueAttributesCommandError = async (output, context) => {
|
|
866
866
|
const parsedOutput = {
|
|
867
867
|
...output,
|
|
868
|
-
body: await
|
|
868
|
+
body: await parseErrorBody(output.body, context),
|
|
869
869
|
};
|
|
870
870
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
871
871
|
switch (errorCode) {
|
|
@@ -896,7 +896,7 @@ exports.deserializeAws_queryTagQueueCommand = deserializeAws_queryTagQueueComman
|
|
|
896
896
|
const deserializeAws_queryTagQueueCommandError = async (output, context) => {
|
|
897
897
|
const parsedOutput = {
|
|
898
898
|
...output,
|
|
899
|
-
body: await
|
|
899
|
+
body: await parseErrorBody(output.body, context),
|
|
900
900
|
};
|
|
901
901
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
902
902
|
const parsedBody = parsedOutput.body;
|
|
@@ -921,7 +921,7 @@ exports.deserializeAws_queryUntagQueueCommand = deserializeAws_queryUntagQueueCo
|
|
|
921
921
|
const deserializeAws_queryUntagQueueCommandError = async (output, context) => {
|
|
922
922
|
const parsedOutput = {
|
|
923
923
|
...output,
|
|
924
|
-
body: await
|
|
924
|
+
body: await parseErrorBody(output.body, context),
|
|
925
925
|
};
|
|
926
926
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
927
927
|
const parsedBody = parsedOutput.body;
|
|
@@ -2192,6 +2192,14 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
2192
2192
|
}
|
|
2193
2193
|
return {};
|
|
2194
2194
|
});
|
|
2195
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
2196
|
+
var _a;
|
|
2197
|
+
const value = await parseBody(errorBody, context);
|
|
2198
|
+
if (value.Error) {
|
|
2199
|
+
value.Error.message = (_a = value.Error.message) !== null && _a !== void 0 ? _a : value.Error.Message;
|
|
2200
|
+
}
|
|
2201
|
+
return value;
|
|
2202
|
+
};
|
|
2195
2203
|
const buildFormUrlencodedString = (formEntries) => Object.entries(formEntries)
|
|
2196
2204
|
.map(([key, value]) => (0, smithy_client_1.extendedEncodeURIComponent)(key) + "=" + (0, smithy_client_1.extendedEncodeURIComponent)(value))
|
|
2197
2205
|
.join("&");
|
|
@@ -231,7 +231,7 @@ var deserializeAws_queryAddPermissionCommandError = function (output, context) {
|
|
|
231
231
|
case 0:
|
|
232
232
|
_a = [__assign({}, output)];
|
|
233
233
|
_c = {};
|
|
234
|
-
return [4,
|
|
234
|
+
return [4, parseErrorBody(output.body, context)];
|
|
235
235
|
case 1:
|
|
236
236
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
237
237
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -282,13 +282,13 @@ var deserializeAws_queryChangeMessageVisibilityCommandError = function (output,
|
|
|
282
282
|
case 0:
|
|
283
283
|
_a = [__assign({}, output)];
|
|
284
284
|
_c = {};
|
|
285
|
-
return [4,
|
|
285
|
+
return [4, parseErrorBody(output.body, context)];
|
|
286
286
|
case 1:
|
|
287
287
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
288
288
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
289
289
|
_b = errorCode;
|
|
290
290
|
switch (_b) {
|
|
291
|
-
case "MessageNotInflight": return [3, 2];
|
|
291
|
+
case "AWS.SimpleQueueService.MessageNotInflight": return [3, 2];
|
|
292
292
|
case "com.amazonaws.sqs#MessageNotInflight": return [3, 2];
|
|
293
293
|
case "ReceiptHandleIsInvalid": return [3, 4];
|
|
294
294
|
case "com.amazonaws.sqs#ReceiptHandleIsInvalid": return [3, 4];
|
|
@@ -337,19 +337,19 @@ var deserializeAws_queryChangeMessageVisibilityBatchCommandError = function (out
|
|
|
337
337
|
case 0:
|
|
338
338
|
_a = [__assign({}, output)];
|
|
339
339
|
_c = {};
|
|
340
|
-
return [4,
|
|
340
|
+
return [4, parseErrorBody(output.body, context)];
|
|
341
341
|
case 1:
|
|
342
342
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
343
343
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
344
344
|
_b = errorCode;
|
|
345
345
|
switch (_b) {
|
|
346
|
-
case "BatchEntryIdsNotDistinct": return [3, 2];
|
|
346
|
+
case "AWS.SimpleQueueService.BatchEntryIdsNotDistinct": return [3, 2];
|
|
347
347
|
case "com.amazonaws.sqs#BatchEntryIdsNotDistinct": return [3, 2];
|
|
348
|
-
case "EmptyBatchRequest": return [3, 4];
|
|
348
|
+
case "AWS.SimpleQueueService.EmptyBatchRequest": return [3, 4];
|
|
349
349
|
case "com.amazonaws.sqs#EmptyBatchRequest": return [3, 4];
|
|
350
|
-
case "InvalidBatchEntryId": return [3, 6];
|
|
350
|
+
case "AWS.SimpleQueueService.InvalidBatchEntryId": return [3, 6];
|
|
351
351
|
case "com.amazonaws.sqs#InvalidBatchEntryId": return [3, 6];
|
|
352
|
-
case "TooManyEntriesInBatchRequest": return [3, 8];
|
|
352
|
+
case "AWS.SimpleQueueService.TooManyEntriesInBatchRequest": return [3, 8];
|
|
353
353
|
case "com.amazonaws.sqs#TooManyEntriesInBatchRequest": return [3, 8];
|
|
354
354
|
}
|
|
355
355
|
return [3, 10];
|
|
@@ -400,15 +400,15 @@ var deserializeAws_queryCreateQueueCommandError = function (output, context) { r
|
|
|
400
400
|
case 0:
|
|
401
401
|
_a = [__assign({}, output)];
|
|
402
402
|
_c = {};
|
|
403
|
-
return [4,
|
|
403
|
+
return [4, parseErrorBody(output.body, context)];
|
|
404
404
|
case 1:
|
|
405
405
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
406
406
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
407
407
|
_b = errorCode;
|
|
408
408
|
switch (_b) {
|
|
409
|
-
case "QueueDeletedRecently": return [3, 2];
|
|
409
|
+
case "AWS.SimpleQueueService.QueueDeletedRecently": return [3, 2];
|
|
410
410
|
case "com.amazonaws.sqs#QueueDeletedRecently": return [3, 2];
|
|
411
|
-
case "
|
|
411
|
+
case "QueueAlreadyExists": return [3, 4];
|
|
412
412
|
case "com.amazonaws.sqs#QueueNameExists": return [3, 4];
|
|
413
413
|
}
|
|
414
414
|
return [3, 6];
|
|
@@ -455,7 +455,7 @@ var deserializeAws_queryDeleteMessageCommandError = function (output, context) {
|
|
|
455
455
|
case 0:
|
|
456
456
|
_a = [__assign({}, output)];
|
|
457
457
|
_c = {};
|
|
458
|
-
return [4,
|
|
458
|
+
return [4, parseErrorBody(output.body, context)];
|
|
459
459
|
case 1:
|
|
460
460
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
461
461
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -510,19 +510,19 @@ var deserializeAws_queryDeleteMessageBatchCommandError = function (output, conte
|
|
|
510
510
|
case 0:
|
|
511
511
|
_a = [__assign({}, output)];
|
|
512
512
|
_c = {};
|
|
513
|
-
return [4,
|
|
513
|
+
return [4, parseErrorBody(output.body, context)];
|
|
514
514
|
case 1:
|
|
515
515
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
516
516
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
517
517
|
_b = errorCode;
|
|
518
518
|
switch (_b) {
|
|
519
|
-
case "BatchEntryIdsNotDistinct": return [3, 2];
|
|
519
|
+
case "AWS.SimpleQueueService.BatchEntryIdsNotDistinct": return [3, 2];
|
|
520
520
|
case "com.amazonaws.sqs#BatchEntryIdsNotDistinct": return [3, 2];
|
|
521
|
-
case "EmptyBatchRequest": return [3, 4];
|
|
521
|
+
case "AWS.SimpleQueueService.EmptyBatchRequest": return [3, 4];
|
|
522
522
|
case "com.amazonaws.sqs#EmptyBatchRequest": return [3, 4];
|
|
523
|
-
case "InvalidBatchEntryId": return [3, 6];
|
|
523
|
+
case "AWS.SimpleQueueService.InvalidBatchEntryId": return [3, 6];
|
|
524
524
|
case "com.amazonaws.sqs#InvalidBatchEntryId": return [3, 6];
|
|
525
|
-
case "TooManyEntriesInBatchRequest": return [3, 8];
|
|
525
|
+
case "AWS.SimpleQueueService.TooManyEntriesInBatchRequest": return [3, 8];
|
|
526
526
|
case "com.amazonaws.sqs#TooManyEntriesInBatchRequest": return [3, 8];
|
|
527
527
|
}
|
|
528
528
|
return [3, 10];
|
|
@@ -573,7 +573,7 @@ var deserializeAws_queryDeleteQueueCommandError = function (output, context) { r
|
|
|
573
573
|
case 0:
|
|
574
574
|
_a = [__assign({}, output)];
|
|
575
575
|
_b = {};
|
|
576
|
-
return [4,
|
|
576
|
+
return [4, parseErrorBody(output.body, context)];
|
|
577
577
|
case 1:
|
|
578
578
|
parsedOutput = __assign.apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));
|
|
579
579
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -614,7 +614,7 @@ var deserializeAws_queryGetQueueAttributesCommandError = 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 = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -665,13 +665,13 @@ var deserializeAws_queryGetQueueUrlCommandError = function (output, context) { r
|
|
|
665
665
|
case 0:
|
|
666
666
|
_a = [__assign({}, output)];
|
|
667
667
|
_c = {};
|
|
668
|
-
return [4,
|
|
668
|
+
return [4, parseErrorBody(output.body, context)];
|
|
669
669
|
case 1:
|
|
670
670
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
671
671
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
672
672
|
_b = errorCode;
|
|
673
673
|
switch (_b) {
|
|
674
|
-
case "
|
|
674
|
+
case "AWS.SimpleQueueService.NonExistentQueue": return [3, 2];
|
|
675
675
|
case "com.amazonaws.sqs#QueueDoesNotExist": return [3, 2];
|
|
676
676
|
}
|
|
677
677
|
return [3, 4];
|
|
@@ -716,13 +716,13 @@ var deserializeAws_queryListDeadLetterSourceQueuesCommandError = function (outpu
|
|
|
716
716
|
case 0:
|
|
717
717
|
_a = [__assign({}, output)];
|
|
718
718
|
_c = {};
|
|
719
|
-
return [4,
|
|
719
|
+
return [4, parseErrorBody(output.body, context)];
|
|
720
720
|
case 1:
|
|
721
721
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
722
722
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
723
723
|
_b = errorCode;
|
|
724
724
|
switch (_b) {
|
|
725
|
-
case "
|
|
725
|
+
case "AWS.SimpleQueueService.NonExistentQueue": return [3, 2];
|
|
726
726
|
case "com.amazonaws.sqs#QueueDoesNotExist": return [3, 2];
|
|
727
727
|
}
|
|
728
728
|
return [3, 4];
|
|
@@ -767,7 +767,7 @@ var deserializeAws_queryListQueuesCommandError = function (output, context) { re
|
|
|
767
767
|
case 0:
|
|
768
768
|
_a = [__assign({}, output)];
|
|
769
769
|
_b = {};
|
|
770
|
-
return [4,
|
|
770
|
+
return [4, parseErrorBody(output.body, context)];
|
|
771
771
|
case 1:
|
|
772
772
|
parsedOutput = __assign.apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));
|
|
773
773
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -808,7 +808,7 @@ var deserializeAws_queryListQueueTagsCommandError = function (output, context) {
|
|
|
808
808
|
case 0:
|
|
809
809
|
_a = [__assign({}, output)];
|
|
810
810
|
_b = {};
|
|
811
|
-
return [4,
|
|
811
|
+
return [4, parseErrorBody(output.body, context)];
|
|
812
812
|
case 1:
|
|
813
813
|
parsedOutput = __assign.apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));
|
|
814
814
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -849,21 +849,21 @@ var deserializeAws_queryPurgeQueueCommandError = function (output, context) { re
|
|
|
849
849
|
case 0:
|
|
850
850
|
_a = [__assign({}, output)];
|
|
851
851
|
_c = {};
|
|
852
|
-
return [4,
|
|
852
|
+
return [4, parseErrorBody(output.body, context)];
|
|
853
853
|
case 1:
|
|
854
854
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
855
855
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
856
856
|
_b = errorCode;
|
|
857
857
|
switch (_b) {
|
|
858
|
-
case "
|
|
859
|
-
case "com.amazonaws.sqs#
|
|
860
|
-
case "
|
|
861
|
-
case "com.amazonaws.sqs#
|
|
858
|
+
case "AWS.SimpleQueueService.NonExistentQueue": return [3, 2];
|
|
859
|
+
case "com.amazonaws.sqs#QueueDoesNotExist": return [3, 2];
|
|
860
|
+
case "AWS.SimpleQueueService.PurgeQueueInProgress": return [3, 4];
|
|
861
|
+
case "com.amazonaws.sqs#PurgeQueueInProgress": return [3, 4];
|
|
862
862
|
}
|
|
863
863
|
return [3, 6];
|
|
864
|
-
case 2: return [4,
|
|
864
|
+
case 2: return [4, deserializeAws_queryQueueDoesNotExistResponse(parsedOutput, context)];
|
|
865
865
|
case 3: throw _d.sent();
|
|
866
|
-
case 4: return [4,
|
|
866
|
+
case 4: return [4, deserializeAws_queryPurgeQueueInProgressResponse(parsedOutput, context)];
|
|
867
867
|
case 5: throw _d.sent();
|
|
868
868
|
case 6:
|
|
869
869
|
parsedBody = parsedOutput.body;
|
|
@@ -904,7 +904,7 @@ var deserializeAws_queryReceiveMessageCommandError = function (output, context)
|
|
|
904
904
|
case 0:
|
|
905
905
|
_a = [__assign({}, output)];
|
|
906
906
|
_c = {};
|
|
907
|
-
return [4,
|
|
907
|
+
return [4, parseErrorBody(output.body, context)];
|
|
908
908
|
case 1:
|
|
909
909
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
910
910
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -955,7 +955,7 @@ var deserializeAws_queryRemovePermissionCommandError = function (output, context
|
|
|
955
955
|
case 0:
|
|
956
956
|
_a = [__assign({}, output)];
|
|
957
957
|
_b = {};
|
|
958
|
-
return [4,
|
|
958
|
+
return [4, parseErrorBody(output.body, context)];
|
|
959
959
|
case 1:
|
|
960
960
|
parsedOutput = __assign.apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));
|
|
961
961
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -996,21 +996,21 @@ var deserializeAws_querySendMessageCommandError = function (output, context) { r
|
|
|
996
996
|
case 0:
|
|
997
997
|
_a = [__assign({}, output)];
|
|
998
998
|
_c = {};
|
|
999
|
-
return [4,
|
|
999
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1000
1000
|
case 1:
|
|
1001
1001
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1002
1002
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
1003
1003
|
_b = errorCode;
|
|
1004
1004
|
switch (_b) {
|
|
1005
|
-
case "
|
|
1006
|
-
case "com.amazonaws.sqs#
|
|
1007
|
-
case "
|
|
1008
|
-
case "com.amazonaws.sqs#
|
|
1005
|
+
case "AWS.SimpleQueueService.UnsupportedOperation": return [3, 2];
|
|
1006
|
+
case "com.amazonaws.sqs#UnsupportedOperation": return [3, 2];
|
|
1007
|
+
case "InvalidMessageContents": return [3, 4];
|
|
1008
|
+
case "com.amazonaws.sqs#InvalidMessageContents": return [3, 4];
|
|
1009
1009
|
}
|
|
1010
1010
|
return [3, 6];
|
|
1011
|
-
case 2: return [4,
|
|
1011
|
+
case 2: return [4, deserializeAws_queryUnsupportedOperationResponse(parsedOutput, context)];
|
|
1012
1012
|
case 3: throw _d.sent();
|
|
1013
|
-
case 4: return [4,
|
|
1013
|
+
case 4: return [4, deserializeAws_queryInvalidMessageContentsResponse(parsedOutput, context)];
|
|
1014
1014
|
case 5: throw _d.sent();
|
|
1015
1015
|
case 6:
|
|
1016
1016
|
parsedBody = parsedOutput.body;
|
|
@@ -1051,23 +1051,23 @@ var deserializeAws_querySendMessageBatchCommandError = function (output, context
|
|
|
1051
1051
|
case 0:
|
|
1052
1052
|
_a = [__assign({}, output)];
|
|
1053
1053
|
_c = {};
|
|
1054
|
-
return [4,
|
|
1054
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1055
1055
|
case 1:
|
|
1056
1056
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1057
1057
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
1058
1058
|
_b = errorCode;
|
|
1059
1059
|
switch (_b) {
|
|
1060
|
-
case "BatchEntryIdsNotDistinct": return [3, 2];
|
|
1060
|
+
case "AWS.SimpleQueueService.BatchEntryIdsNotDistinct": return [3, 2];
|
|
1061
1061
|
case "com.amazonaws.sqs#BatchEntryIdsNotDistinct": return [3, 2];
|
|
1062
|
-
case "BatchRequestTooLong": return [3, 4];
|
|
1062
|
+
case "AWS.SimpleQueueService.BatchRequestTooLong": return [3, 4];
|
|
1063
1063
|
case "com.amazonaws.sqs#BatchRequestTooLong": return [3, 4];
|
|
1064
|
-
case "EmptyBatchRequest": return [3, 6];
|
|
1064
|
+
case "AWS.SimpleQueueService.EmptyBatchRequest": return [3, 6];
|
|
1065
1065
|
case "com.amazonaws.sqs#EmptyBatchRequest": return [3, 6];
|
|
1066
|
-
case "InvalidBatchEntryId": return [3, 8];
|
|
1066
|
+
case "AWS.SimpleQueueService.InvalidBatchEntryId": return [3, 8];
|
|
1067
1067
|
case "com.amazonaws.sqs#InvalidBatchEntryId": return [3, 8];
|
|
1068
|
-
case "TooManyEntriesInBatchRequest": return [3, 10];
|
|
1068
|
+
case "AWS.SimpleQueueService.TooManyEntriesInBatchRequest": return [3, 10];
|
|
1069
1069
|
case "com.amazonaws.sqs#TooManyEntriesInBatchRequest": return [3, 10];
|
|
1070
|
-
case "UnsupportedOperation": return [3, 12];
|
|
1070
|
+
case "AWS.SimpleQueueService.UnsupportedOperation": return [3, 12];
|
|
1071
1071
|
case "com.amazonaws.sqs#UnsupportedOperation": return [3, 12];
|
|
1072
1072
|
}
|
|
1073
1073
|
return [3, 14];
|
|
@@ -1122,7 +1122,7 @@ var deserializeAws_querySetQueueAttributesCommandError = function (output, conte
|
|
|
1122
1122
|
case 0:
|
|
1123
1123
|
_a = [__assign({}, output)];
|
|
1124
1124
|
_c = {};
|
|
1125
|
-
return [4,
|
|
1125
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1126
1126
|
case 1:
|
|
1127
1127
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
1128
1128
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -1173,7 +1173,7 @@ var deserializeAws_queryTagQueueCommandError = function (output, context) { retu
|
|
|
1173
1173
|
case 0:
|
|
1174
1174
|
_a = [__assign({}, output)];
|
|
1175
1175
|
_b = {};
|
|
1176
|
-
return [4,
|
|
1176
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1177
1177
|
case 1:
|
|
1178
1178
|
parsedOutput = __assign.apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));
|
|
1179
1179
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -1214,7 +1214,7 @@ var deserializeAws_queryUntagQueueCommandError = function (output, context) { re
|
|
|
1214
1214
|
case 0:
|
|
1215
1215
|
_a = [__assign({}, output)];
|
|
1216
1216
|
_b = {};
|
|
1217
|
-
return [4,
|
|
1217
|
+
return [4, parseErrorBody(output.body, context)];
|
|
1218
1218
|
case 1:
|
|
1219
1219
|
parsedOutput = __assign.apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));
|
|
1220
1220
|
errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
@@ -2629,6 +2629,21 @@ var parseBody = function (streamBody, context) {
|
|
|
2629
2629
|
return {};
|
|
2630
2630
|
});
|
|
2631
2631
|
};
|
|
2632
|
+
var parseErrorBody = function (errorBody, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
2633
|
+
var value;
|
|
2634
|
+
var _a;
|
|
2635
|
+
return __generator(this, function (_b) {
|
|
2636
|
+
switch (_b.label) {
|
|
2637
|
+
case 0: return [4, parseBody(errorBody, context)];
|
|
2638
|
+
case 1:
|
|
2639
|
+
value = _b.sent();
|
|
2640
|
+
if (value.Error) {
|
|
2641
|
+
value.Error.message = (_a = value.Error.message) !== null && _a !== void 0 ? _a : value.Error.Message;
|
|
2642
|
+
}
|
|
2643
|
+
return [2, value];
|
|
2644
|
+
}
|
|
2645
|
+
});
|
|
2646
|
+
}); };
|
|
2632
2647
|
var buildFormUrlencodedString = function (formEntries) {
|
|
2633
2648
|
return Object.entries(formEntries)
|
|
2634
2649
|
.map(function (_a) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sqs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sqs 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",
|