@cdklabs/cdk-ssm-documents 0.0.55 → 0.0.56
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/.jsii +12 -12
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +34 -34
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +36 -36
- package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +156 -78
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMonitoredTagKeysCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerMonitoredTagKeysCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/GetCapacityManagerMonitoredTagKeysPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +96 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +23 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +9 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +9 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleScreenshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +126 -79
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +81 -122
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +168 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetCapacityManagerMonitoredTagKeysPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +55 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleScreenshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +23 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +19 -34
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +43 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/GetCapacityManagerMonitoredTagKeysPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +36 -36
- package/node_modules/@aws-sdk/client-iam/package.json +35 -35
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +52 -1
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +29 -8
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +48 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +22 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +66 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +38 -38
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/package.json +50 -50
- package/node_modules/@aws-sdk/client-sns/package.json +33 -33
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +2 -0
- package/node_modules/@aws-sdk/client-sqs/package.json +36 -36
- package/node_modules/@aws-sdk/client-ssm/package.json +34 -34
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +17 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +17 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/longPollMiddleware.js +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/longPollMiddleware.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/longPollMiddleware.d.ts +15 -0
- package/node_modules/@aws-sdk/core/package.json +11 -11
- package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
- package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +10 -10
- package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +11 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +8 -8
- package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
- package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +6 -6
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
- package/node_modules/@aws-sdk/util-format-url/package.json +4 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +1 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
- package/node_modules/@smithy/config-resolver/package.json +2 -2
- package/node_modules/@smithy/middleware-retry/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +154 -61
- package/node_modules/@smithy/util-endpoints/dist-es/bdd/BinaryDecisionDiagram.js +15 -0
- package/node_modules/@smithy/util-endpoints/dist-es/decideEndpoint.js +41 -0
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/coalesce.js +8 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +3 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/ite.js +3 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/split.js +13 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +1 -1
- package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +4 -1
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +20 -5
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +3 -6
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +1 -5
- package/node_modules/@smithy/util-endpoints/dist-types/bdd/BinaryDecisionDiagram.d.ts +22 -0
- package/node_modules/@smithy/util-endpoints/dist-types/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/coalesce.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/ite.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/split.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +3 -1
- package/node_modules/@smithy/util-endpoints/package.json +1 -1
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +6 -0
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +3 -0
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +3 -0
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/package.json +1 -1
- package/node_modules/path-expression-matcher/README.md +214 -62
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +111 -0
- package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
- package/node_modules/path-expression-matcher/package.json +1 -1
- package/node_modules/path-expression-matcher/src/Expression.js +2 -2
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +209 -0
- package/node_modules/path-expression-matcher/src/Matcher.js +235 -177
- package/node_modules/path-expression-matcher/src/index.d.ts +199 -194
- package/node_modules/path-expression-matcher/src/index.js +3 -2
- package/package.json +10 -10
- package/node_modules/strnum/.github/SECURITY.md +0 -5
- package/node_modules/strnum/.vscode/launch.json +0 -25
- package/node_modules/strnum/algo.stflow +0 -84
- package/node_modules/strnum/tests/infinity_test.js +0 -18
- package/node_modules/strnum/tests/strnum_test.js +0 -175
- package/node_modules/strnum/tests/temp.js +0 -8
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1029.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -30,62 +30,62 @@
|
|
|
30
30
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
31
31
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
32
32
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
33
|
-
"@aws-sdk/core": "^3.973.
|
|
34
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
35
|
-
"@aws-sdk/middleware-bucket-endpoint": "^3.972.
|
|
36
|
-
"@aws-sdk/middleware-expect-continue": "^3.972.
|
|
37
|
-
"@aws-sdk/middleware-flexible-checksums": "^3.974.
|
|
38
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
39
|
-
"@aws-sdk/middleware-location-constraint": "^3.972.
|
|
40
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
41
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
42
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
43
|
-
"@aws-sdk/middleware-ssec": "^3.972.
|
|
44
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
45
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
46
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
47
|
-
"@aws-sdk/types": "^3.973.
|
|
48
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
51
|
-
"@smithy/config-resolver": "^4.4.
|
|
52
|
-
"@smithy/core": "^3.23.
|
|
53
|
-
"@smithy/eventstream-serde-browser": "^4.2.
|
|
54
|
-
"@smithy/eventstream-serde-config-resolver": "^4.3.
|
|
55
|
-
"@smithy/eventstream-serde-node": "^4.2.
|
|
56
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
57
|
-
"@smithy/hash-blob-browser": "^4.2.
|
|
58
|
-
"@smithy/hash-node": "^4.2.
|
|
59
|
-
"@smithy/hash-stream-node": "^4.2.
|
|
60
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
61
|
-
"@smithy/md5-js": "^4.2.
|
|
62
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
63
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
64
|
-
"@smithy/middleware-retry": "^4.
|
|
65
|
-
"@smithy/middleware-serde": "^4.2.
|
|
66
|
-
"@smithy/middleware-stack": "^4.2.
|
|
67
|
-
"@smithy/node-config-provider": "^4.3.
|
|
68
|
-
"@smithy/node-http-handler": "^4.5.
|
|
69
|
-
"@smithy/protocol-http": "^5.3.
|
|
70
|
-
"@smithy/smithy-client": "^4.12.
|
|
71
|
-
"@smithy/types": "^4.
|
|
72
|
-
"@smithy/url-parser": "^4.2.
|
|
33
|
+
"@aws-sdk/core": "^3.973.27",
|
|
34
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
35
|
+
"@aws-sdk/middleware-bucket-endpoint": "^3.972.9",
|
|
36
|
+
"@aws-sdk/middleware-expect-continue": "^3.972.9",
|
|
37
|
+
"@aws-sdk/middleware-flexible-checksums": "^3.974.7",
|
|
38
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
39
|
+
"@aws-sdk/middleware-location-constraint": "^3.972.9",
|
|
40
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
41
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
42
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.28",
|
|
43
|
+
"@aws-sdk/middleware-ssec": "^3.972.9",
|
|
44
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
45
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
46
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.16",
|
|
47
|
+
"@aws-sdk/types": "^3.973.7",
|
|
48
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
51
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
52
|
+
"@smithy/core": "^3.23.14",
|
|
53
|
+
"@smithy/eventstream-serde-browser": "^4.2.13",
|
|
54
|
+
"@smithy/eventstream-serde-config-resolver": "^4.3.13",
|
|
55
|
+
"@smithy/eventstream-serde-node": "^4.2.13",
|
|
56
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
57
|
+
"@smithy/hash-blob-browser": "^4.2.14",
|
|
58
|
+
"@smithy/hash-node": "^4.2.13",
|
|
59
|
+
"@smithy/hash-stream-node": "^4.2.13",
|
|
60
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
61
|
+
"@smithy/md5-js": "^4.2.13",
|
|
62
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
63
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
64
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
65
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
66
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
67
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
68
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
69
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
70
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
71
|
+
"@smithy/types": "^4.14.0",
|
|
72
|
+
"@smithy/url-parser": "^4.2.13",
|
|
73
73
|
"@smithy/util-base64": "^4.3.2",
|
|
74
74
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
75
75
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
76
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
77
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
78
|
-
"@smithy/util-endpoints": "^3.3.
|
|
79
|
-
"@smithy/util-middleware": "^4.2.
|
|
80
|
-
"@smithy/util-retry": "^4.
|
|
81
|
-
"@smithy/util-stream": "^4.5.
|
|
76
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
77
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
78
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
79
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
80
|
+
"@smithy/util-retry": "^4.3.0",
|
|
81
|
+
"@smithy/util-stream": "^4.5.22",
|
|
82
82
|
"@smithy/util-utf8": "^4.2.2",
|
|
83
|
-
"@smithy/util-waiter": "^4.2.
|
|
83
|
+
"@smithy/util-waiter": "^4.2.15",
|
|
84
84
|
"tslib": "^2.6.2"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
88
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
87
|
+
"@aws-sdk/signature-v4-crt": "3.1029.0",
|
|
88
|
+
"@smithy/snapshot-testing": "^2.0.5",
|
|
89
89
|
"@tsconfig/node20": "20.1.8",
|
|
90
90
|
"@types/node": "^20.14.8",
|
|
91
91
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sns",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sns Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1029.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sns",
|
|
@@ -23,41 +23,41 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
34
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
37
|
-
"@smithy/config-resolver": "^4.4.
|
|
38
|
-
"@smithy/core": "^3.23.
|
|
39
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
40
|
-
"@smithy/hash-node": "^4.2.
|
|
41
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
42
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
46
|
-
"@smithy/middleware-stack": "^4.2.
|
|
47
|
-
"@smithy/node-config-provider": "^4.3.
|
|
48
|
-
"@smithy/node-http-handler": "^4.5.
|
|
49
|
-
"@smithy/protocol-http": "^5.3.
|
|
50
|
-
"@smithy/smithy-client": "^4.12.
|
|
51
|
-
"@smithy/types": "^4.
|
|
52
|
-
"@smithy/url-parser": "^4.2.
|
|
26
|
+
"@aws-sdk/core": "^3.973.27",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
29
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
33
|
+
"@aws-sdk/types": "^3.973.7",
|
|
34
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
37
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
38
|
+
"@smithy/core": "^3.23.14",
|
|
39
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
40
|
+
"@smithy/hash-node": "^4.2.13",
|
|
41
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
42
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
44
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
46
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
47
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
48
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
49
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
50
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
51
|
+
"@smithy/types": "^4.14.0",
|
|
52
|
+
"@smithy/url-parser": "^4.2.13",
|
|
53
53
|
"@smithy/util-base64": "^4.3.2",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
58
|
-
"@smithy/util-endpoints": "^3.3.
|
|
59
|
-
"@smithy/util-middleware": "^4.2.
|
|
60
|
-
"@smithy/util-retry": "^4.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
58
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
59
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
60
|
+
"@smithy/util-retry": "^4.3.0",
|
|
61
61
|
"@smithy/util-utf8": "^4.2.2",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
@@ -17,6 +17,7 @@ var runtimeConfig = require('./runtimeConfig');
|
|
|
17
17
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
18
18
|
var protocolHttp = require('@smithy/protocol-http');
|
|
19
19
|
var schemas_0 = require('./schemas/schemas_0');
|
|
20
|
+
var client = require('@aws-sdk/core/client');
|
|
20
21
|
var errors = require('./models/errors');
|
|
21
22
|
var SQSServiceException = require('./models/SQSServiceException');
|
|
22
23
|
|
|
@@ -302,6 +303,7 @@ class ReceiveMessageCommand extends smithyClient.Command
|
|
|
302
303
|
.m(function (Command, cs, config, o) {
|
|
303
304
|
return [
|
|
304
305
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
306
|
+
client.getLongPollPlugin(config),
|
|
305
307
|
middlewareSdkSqs.getReceiveMessagePlugin(config),
|
|
306
308
|
];
|
|
307
309
|
})
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { getLongPollPlugin } from "@aws-sdk/core/client";
|
|
1
2
|
import { getReceiveMessagePlugin } from "@aws-sdk/middleware-sdk-sqs";
|
|
2
3
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
@@ -10,6 +11,7 @@ export class ReceiveMessageCommand extends $Command
|
|
|
10
11
|
.m(function (Command, cs, config, o) {
|
|
11
12
|
return [
|
|
12
13
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
getLongPollPlugin(config),
|
|
13
15
|
getReceiveMessagePlugin(config),
|
|
14
16
|
];
|
|
15
17
|
})
|
|
@@ -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.1029.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sqs",
|
|
@@ -29,48 +29,48 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
31
31
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
32
|
-
"@aws-sdk/core": "^3.973.
|
|
33
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
34
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
35
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
36
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
37
|
-
"@aws-sdk/middleware-sdk-sqs": "^3.972.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
39
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
40
|
-
"@aws-sdk/types": "^3.973.
|
|
41
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
42
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
43
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
44
|
-
"@smithy/config-resolver": "^4.4.
|
|
45
|
-
"@smithy/core": "^3.23.
|
|
46
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
47
|
-
"@smithy/hash-node": "^4.2.
|
|
48
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
49
|
-
"@smithy/md5-js": "^4.2.
|
|
50
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
51
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
52
|
-
"@smithy/middleware-retry": "^4.
|
|
53
|
-
"@smithy/middleware-serde": "^4.2.
|
|
54
|
-
"@smithy/middleware-stack": "^4.2.
|
|
55
|
-
"@smithy/node-config-provider": "^4.3.
|
|
56
|
-
"@smithy/node-http-handler": "^4.5.
|
|
57
|
-
"@smithy/protocol-http": "^5.3.
|
|
58
|
-
"@smithy/smithy-client": "^4.12.
|
|
59
|
-
"@smithy/types": "^4.
|
|
60
|
-
"@smithy/url-parser": "^4.2.
|
|
32
|
+
"@aws-sdk/core": "^3.973.27",
|
|
33
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
34
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
35
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
36
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
37
|
+
"@aws-sdk/middleware-sdk-sqs": "^3.972.19",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
39
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
40
|
+
"@aws-sdk/types": "^3.973.7",
|
|
41
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
42
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
43
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
44
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
45
|
+
"@smithy/core": "^3.23.14",
|
|
46
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
47
|
+
"@smithy/hash-node": "^4.2.13",
|
|
48
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
49
|
+
"@smithy/md5-js": "^4.2.13",
|
|
50
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
51
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
52
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
53
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
54
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
55
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
56
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
57
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
58
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
59
|
+
"@smithy/types": "^4.14.0",
|
|
60
|
+
"@smithy/url-parser": "^4.2.13",
|
|
61
61
|
"@smithy/util-base64": "^4.3.2",
|
|
62
62
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
63
63
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
64
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
65
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
66
|
-
"@smithy/util-endpoints": "^3.3.
|
|
67
|
-
"@smithy/util-middleware": "^4.2.
|
|
68
|
-
"@smithy/util-retry": "^4.
|
|
64
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
65
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
66
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
67
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
68
|
+
"@smithy/util-retry": "^4.3.0",
|
|
69
69
|
"@smithy/util-utf8": "^4.2.2",
|
|
70
70
|
"tslib": "^2.6.2"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
73
|
+
"@smithy/snapshot-testing": "^2.0.5",
|
|
74
74
|
"@tsconfig/node20": "20.1.8",
|
|
75
75
|
"@types/node": "^20.14.8",
|
|
76
76
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1029.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm",
|
|
@@ -23,43 +23,43 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
34
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
37
|
-
"@smithy/config-resolver": "^4.4.
|
|
38
|
-
"@smithy/core": "^3.23.
|
|
39
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
40
|
-
"@smithy/hash-node": "^4.2.
|
|
41
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
42
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
46
|
-
"@smithy/middleware-stack": "^4.2.
|
|
47
|
-
"@smithy/node-config-provider": "^4.3.
|
|
48
|
-
"@smithy/node-http-handler": "^4.5.
|
|
49
|
-
"@smithy/protocol-http": "^5.3.
|
|
50
|
-
"@smithy/smithy-client": "^4.12.
|
|
51
|
-
"@smithy/types": "^4.
|
|
52
|
-
"@smithy/url-parser": "^4.2.
|
|
26
|
+
"@aws-sdk/core": "^3.973.27",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
29
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
33
|
+
"@aws-sdk/types": "^3.973.7",
|
|
34
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
37
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
38
|
+
"@smithy/core": "^3.23.14",
|
|
39
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
40
|
+
"@smithy/hash-node": "^4.2.13",
|
|
41
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
42
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
44
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
46
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
47
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
48
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
49
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
50
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
51
|
+
"@smithy/types": "^4.14.0",
|
|
52
|
+
"@smithy/url-parser": "^4.2.13",
|
|
53
53
|
"@smithy/util-base64": "^4.3.2",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
58
|
-
"@smithy/util-endpoints": "^3.3.
|
|
59
|
-
"@smithy/util-middleware": "^4.2.
|
|
60
|
-
"@smithy/util-retry": "^4.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
58
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
59
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
60
|
+
"@smithy/util-retry": "^4.3.0",
|
|
61
61
|
"@smithy/util-utf8": "^4.2.2",
|
|
62
|
-
"@smithy/util-waiter": "^4.2.
|
|
62
|
+
"@smithy/util-waiter": "^4.2.15",
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
@@ -30,6 +30,22 @@ More information can be found at: https://a.co/c895JFp`);
|
|
|
30
30
|
}
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
+
const longPollMiddleware = () => (next, context) => async (args) => {
|
|
34
|
+
context.__retryLongPoll = true;
|
|
35
|
+
return next(args);
|
|
36
|
+
};
|
|
37
|
+
const longPollMiddlewareOptions = {
|
|
38
|
+
name: "longPollMiddleware",
|
|
39
|
+
tags: ["RETRY"],
|
|
40
|
+
step: "initialize",
|
|
41
|
+
override: true,
|
|
42
|
+
};
|
|
43
|
+
const getLongPollPlugin = (options) => ({
|
|
44
|
+
applyToStack: (clientStack) => {
|
|
45
|
+
clientStack.add(longPollMiddleware(), longPollMiddlewareOptions);
|
|
46
|
+
},
|
|
47
|
+
});
|
|
48
|
+
|
|
33
49
|
function setCredentialFeature(credentials, feature, value) {
|
|
34
50
|
if (!credentials.$source) {
|
|
35
51
|
credentials.$source = {};
|
|
@@ -2229,6 +2245,7 @@ exports._toStr = _toStr;
|
|
|
2229
2245
|
exports.awsExpectUnion = awsExpectUnion;
|
|
2230
2246
|
exports.emitWarningIfUnsupportedVersion = emitWarningIfUnsupportedVersion;
|
|
2231
2247
|
exports.getBearerTokenEnvKey = getBearerTokenEnvKey;
|
|
2248
|
+
exports.getLongPollPlugin = getLongPollPlugin;
|
|
2232
2249
|
exports.loadRestJsonErrorCode = loadRestJsonErrorCode;
|
|
2233
2250
|
exports.loadRestXmlErrorCode = loadRestXmlErrorCode;
|
|
2234
2251
|
exports.parseJsonBody = parseJsonBody;
|
|
@@ -16,6 +16,22 @@ More information can be found at: https://a.co/c895JFp`);
|
|
|
16
16
|
}
|
|
17
17
|
};
|
|
18
18
|
|
|
19
|
+
const longPollMiddleware = () => (next, context) => async (args) => {
|
|
20
|
+
context.__retryLongPoll = true;
|
|
21
|
+
return next(args);
|
|
22
|
+
};
|
|
23
|
+
const longPollMiddlewareOptions = {
|
|
24
|
+
name: "longPollMiddleware",
|
|
25
|
+
tags: ["RETRY"],
|
|
26
|
+
step: "initialize",
|
|
27
|
+
override: true,
|
|
28
|
+
};
|
|
29
|
+
const getLongPollPlugin = (options) => ({
|
|
30
|
+
applyToStack: (clientStack) => {
|
|
31
|
+
clientStack.add(longPollMiddleware(), longPollMiddlewareOptions);
|
|
32
|
+
},
|
|
33
|
+
});
|
|
34
|
+
|
|
19
35
|
function setCredentialFeature(credentials, feature, value) {
|
|
20
36
|
if (!credentials.$source) {
|
|
21
37
|
credentials.$source = {};
|
|
@@ -45,6 +61,7 @@ function setTokenFeature(token, feature, value) {
|
|
|
45
61
|
}
|
|
46
62
|
|
|
47
63
|
exports.emitWarningIfUnsupportedVersion = emitWarningIfUnsupportedVersion;
|
|
64
|
+
exports.getLongPollPlugin = getLongPollPlugin;
|
|
48
65
|
exports.setCredentialFeature = setCredentialFeature;
|
|
49
66
|
exports.setFeature = setFeature;
|
|
50
67
|
exports.setTokenFeature = setTokenFeature;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export const longPollMiddleware = () => (next, context) => async (args) => {
|
|
2
|
+
context.__retryLongPoll = true;
|
|
3
|
+
return next(args);
|
|
4
|
+
};
|
|
5
|
+
export const longPollMiddlewareOptions = {
|
|
6
|
+
name: "longPollMiddleware",
|
|
7
|
+
tags: ["RETRY"],
|
|
8
|
+
step: "initialize",
|
|
9
|
+
override: true,
|
|
10
|
+
};
|
|
11
|
+
export const getLongPollPlugin = (options) => ({
|
|
12
|
+
applyToStack: (clientStack) => {
|
|
13
|
+
clientStack.add(longPollMiddleware(), longPollMiddlewareOptions);
|
|
14
|
+
},
|
|
15
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { HandlerExecutionContext, InitializeHandler, InitializeHandlerOptions, MetadataBearer, Pluggable } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* This middleware is attached to operations designated as long-polling.
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const longPollMiddleware: () => <Output extends MetadataBearer = MetadataBearer>(next: InitializeHandler<any, Output>, context: HandlerExecutionContext) => InitializeHandler<any, Output>;
|
|
7
|
+
/**
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
export declare const longPollMiddlewareOptions: InitializeHandlerOptions;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const getLongPollPlugin: (options: {}) => Pluggable<any, any>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HandlerExecutionContext,
|
|
3
|
+
InitializeHandler,
|
|
4
|
+
InitializeHandlerOptions,
|
|
5
|
+
MetadataBearer,
|
|
6
|
+
Pluggable,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare const longPollMiddleware: () => <
|
|
9
|
+
Output extends MetadataBearer = MetadataBearer
|
|
10
|
+
>(
|
|
11
|
+
next: InitializeHandler<any, Output>,
|
|
12
|
+
context: HandlerExecutionContext
|
|
13
|
+
) => InitializeHandler<any, Output>;
|
|
14
|
+
export declare const longPollMiddlewareOptions: InitializeHandlerOptions;
|
|
15
|
+
export declare const getLongPollPlugin: (options: {}) => Pluggable<any, any>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/core",
|
|
3
|
-
"version": "3.973.
|
|
3
|
+
"version": "3.973.27",
|
|
4
4
|
"description": "Core functions & classes shared by multiple AWS SDK clients.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
@@ -81,17 +81,17 @@
|
|
|
81
81
|
},
|
|
82
82
|
"license": "Apache-2.0",
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@aws-sdk/types": "^3.973.
|
|
85
|
-
"@aws-sdk/xml-builder": "^3.972.
|
|
86
|
-
"@smithy/core": "^3.23.
|
|
87
|
-
"@smithy/node-config-provider": "^4.3.
|
|
88
|
-
"@smithy/property-provider": "^4.2.
|
|
89
|
-
"@smithy/protocol-http": "^5.3.
|
|
90
|
-
"@smithy/signature-v4": "^5.3.
|
|
91
|
-
"@smithy/smithy-client": "^4.12.
|
|
92
|
-
"@smithy/types": "^4.
|
|
84
|
+
"@aws-sdk/types": "^3.973.7",
|
|
85
|
+
"@aws-sdk/xml-builder": "^3.972.17",
|
|
86
|
+
"@smithy/core": "^3.23.14",
|
|
87
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
88
|
+
"@smithy/property-provider": "^4.2.13",
|
|
89
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
90
|
+
"@smithy/signature-v4": "^5.3.13",
|
|
91
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
92
|
+
"@smithy/types": "^4.14.0",
|
|
93
93
|
"@smithy/util-base64": "^4.3.2",
|
|
94
|
-
"@smithy/util-middleware": "^4.2.
|
|
94
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
95
95
|
"@smithy/util-utf8": "^4.2.2",
|
|
96
96
|
"tslib": "^2.6.2"
|
|
97
97
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/crc64-nvme",
|
|
3
|
-
"version": "3.972.
|
|
3
|
+
"version": "3.972.6",
|
|
4
4
|
"description": "A pure JS implementation of CRC64-NVME checksum",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@smithy/types": "^4.
|
|
27
|
+
"@smithy/types": "^4.14.0",
|
|
28
28
|
"tslib": "^2.6.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-env",
|
|
3
|
-
"version": "3.972.
|
|
3
|
+
"version": "3.972.25",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from known environment variables",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
},
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@aws-sdk/core": "^3.973.
|
|
30
|
-
"@aws-sdk/types": "^3.973.
|
|
31
|
-
"@smithy/property-provider": "^4.2.
|
|
32
|
-
"@smithy/types": "^4.
|
|
29
|
+
"@aws-sdk/core": "^3.973.27",
|
|
30
|
+
"@aws-sdk/types": "^3.973.7",
|
|
31
|
+
"@smithy/property-provider": "^4.2.13",
|
|
32
|
+
"@smithy/types": "^4.14.0",
|
|
33
33
|
"tslib": "^2.6.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|