@btc-embedded/cdk-extensions 0.20.7 → 0.20.8
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 +5824 -538
- package/API.md +1200 -24
- package/CHANGELOG.md +7 -0
- package/assets/constructs/api-keys/lambdas/api-client-authorization.lambda/index.js +6625 -0
- package/assets/constructs/api-keys/lambdas/api-key-creation.lambda/index.js +2177 -0
- package/assets/constructs/api-keys/lambdas/api-key-update.lambda/index.js +2196 -0
- package/assets/constructs/api-keys/lambdas/pre-token.lambda/index.js +6276 -0
- package/assets/test/constructs/api-keys/integration/api-key-client-authorization-runner.lambda/index.js +7556 -0
- package/assets/test/constructs/api-keys/integration/api-key-management-runner-unauthorized.lambda/index.js +7520 -0
- package/assets/test/constructs/api-keys/integration/api-key-management-runner.lambda/index.js +7840 -0
- package/assets/test/constructs/api-keys/integration/api-key-pre-token-handler-runner.lambda/index.js +7578 -0
- package/integ.config.json +5 -0
- package/lib/constructs/EventPipe.js +1 -1
- package/lib/constructs/ExportedService.js +1 -1
- package/lib/constructs/S3Bucket.js +1 -1
- package/lib/constructs/SecureRestApi.js +1 -1
- package/lib/constructs/SecureRestApiV2.js +1 -1
- package/lib/constructs/api-keys/ApiKeyClientAuthorization.d.ts +57 -0
- package/lib/constructs/api-keys/ApiKeyClientAuthorization.js +56 -0
- package/lib/constructs/api-keys/ApiKeyManagement.d.ts +55 -0
- package/lib/constructs/api-keys/ApiKeyManagement.js +214 -0
- package/lib/constructs/api-keys/ApiKeyPreTokenHandler.d.ts +28 -0
- package/lib/constructs/api-keys/ApiKeyPreTokenHandler.js +65 -0
- package/lib/constructs/api-keys/ApiKeyStore.d.ts +61 -0
- package/lib/constructs/api-keys/ApiKeyStore.js +46 -0
- package/lib/constructs/api-keys/index.d.ts +4 -0
- package/lib/constructs/api-keys/index.js +21 -0
- package/lib/constructs/api-keys/lambdas/api-client-authorization-function.d.ts +18 -0
- package/lib/constructs/api-keys/lambdas/api-client-authorization-function.js +24 -0
- package/lib/constructs/api-keys/lambdas/api-client-authorization.lambda.d.ts +2 -0
- package/lib/constructs/api-keys/lambdas/api-client-authorization.lambda.js +86 -0
- package/lib/constructs/api-keys/lambdas/api-key-creation-function.d.ts +18 -0
- package/lib/constructs/api-keys/lambdas/api-key-creation-function.js +24 -0
- package/lib/constructs/api-keys/lambdas/api-key-creation.lambda.d.ts +2 -0
- package/lib/constructs/api-keys/lambdas/api-key-creation.lambda.js +53 -0
- package/lib/constructs/api-keys/lambdas/api-key-update-function.d.ts +18 -0
- package/lib/constructs/api-keys/lambdas/api-key-update-function.js +24 -0
- package/lib/constructs/api-keys/lambdas/api-key-update.lambda.d.ts +2 -0
- package/lib/constructs/api-keys/lambdas/api-key-update.lambda.js +80 -0
- package/lib/constructs/api-keys/lambdas/pre-token-function.d.ts +18 -0
- package/lib/constructs/api-keys/lambdas/pre-token-function.js +24 -0
- package/lib/constructs/api-keys/lambdas/pre-token.lambda.d.ts +8 -0
- package/lib/constructs/api-keys/lambdas/pre-token.lambda.js +111 -0
- package/lib/constructs/index.d.ts +1 -0
- package/lib/constructs/index.js +2 -1
- package/lib/extensions/ApiGatewayExtension.js +1 -1
- package/lib/extensions/ApplicationLoadBalancerExtension.js +1 -1
- package/lib/extensions/ApplicationLoadBalancerExtensionV2.js +1 -1
- package/lib/extensions/CloudMapExtension.js +1 -1
- package/lib/extensions/DeactivatableServiceExtension.js +1 -1
- package/lib/extensions/DeploymentConfigExtension.js +1 -1
- package/lib/extensions/DocumentDbAccessExtension.js +1 -1
- package/lib/extensions/DomainEventMessagingExtension.js +1 -1
- package/lib/extensions/EfsMountExtension.js +1 -1
- package/lib/extensions/ExtraContainerExtension.js +1 -1
- package/lib/extensions/HTTPApiExtension.js +1 -1
- package/lib/extensions/LogExtension.js +1 -1
- package/lib/extensions/ModifyContainerDefinitionExtension.js +1 -1
- package/lib/extensions/ModifyTaskDefinitionExtension.js +1 -1
- package/lib/extensions/OpenIdExtension.js +1 -1
- package/lib/extensions/OpenTelemetryExtension.js +1 -1
- package/lib/extensions/PostgresDbAccessExtension.js +1 -1
- package/lib/extensions/SharedVolumeExtension.js +1 -1
- package/lib/extensions/TcpKeepAliveExtension.js +1 -1
- package/lib/platform/ApiGateway.js +1 -1
- package/lib/platform/ApiGatewayVpcLink.js +2 -2
- package/lib/platform/ApplicationLoadBalancer.js +1 -1
- package/lib/platform/ApplicationLoadBalancerV2.js +2 -2
- package/lib/platform/BTCLogGroup.js +1 -1
- package/lib/platform/CognitoUserPool.js +2 -2
- package/lib/platform/DefaultUserPoolClients.js +1 -1
- package/lib/platform/DocumentDB.js +2 -2
- package/lib/platform/EcsCluster.js +1 -1
- package/lib/platform/EfsFileSystem.js +1 -1
- package/lib/platform/PrivateDnsNamespace.js +1 -1
- package/lib/platform/ResourceServer.js +1 -1
- package/lib/platform/Vpc.js +1 -1
- package/lib/platform/VpcV2.js +1 -1
- package/lib/platform/index.d.ts +1 -1
- package/lib/platform/index.js +2 -2
- package/lib/utils/StackParameter.js +1 -1
- package/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/node_modules/@aws/lambda-invoke-store/README.md +198 -0
- package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +50 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +118 -0
- package/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
- package/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +43 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +8 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +30 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +8 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +11 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +56 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +40 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +8 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +27 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +3 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +7 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +53 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +60 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +61 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +4 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +66 -0
- package/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
- package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
- package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +30 -0
- package/node_modules/@aws-crypto/sha256-browser/src/index.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
- package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +10 -0
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +7 -0
- package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +106 -0
- package/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-js/README.md +29 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +17 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +124 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +20 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +98 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +12 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +85 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +322 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +17 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +121 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +20 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +95 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js +2 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +12 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +82 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +319 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/package.json +32 -0
- package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
- package/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
- package/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
- package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
- package/node_modules/@aws-crypto/sha256-js/tsconfig.json +10 -0
- package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +7 -0
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +66 -0
- package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
- package/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +5 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +4 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +69 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +2 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +4 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +62 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +28 -0
- package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +10 -0
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +7 -0
- package/node_modules/@aws-crypto/util/CHANGELOG.md +71 -0
- package/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/README.md +16 -0
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +24 -0
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/main/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/build/main/index.js +14 -0
- package/node_modules/@aws-crypto/util/build/main/index.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +13 -0
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js +15 -0
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +20 -0
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +20 -0
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/build/module/index.js +7 -0
- package/node_modules/@aws-crypto/util/build/module/index.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +9 -0
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js +11 -0
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +16 -0
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +60 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +61 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +4 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +66 -0
- package/node_modules/@aws-crypto/util/package.json +32 -0
- package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/node_modules/@aws-crypto/util/tsconfig.json +9 -0
- package/node_modules/@aws-crypto/util/tsconfig.module.json +7 -0
- package/node_modules/@aws-lambda-powertools/commons/README.md +142 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.js +224 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts +76 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.js +104 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.js +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.js +11 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.js +130 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts +186 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.js +287 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.js +35 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.js +39 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.js +74 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.js +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts +197 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.js +337 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/GenericLogger.d.ts +17 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/GenericLogger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/GenericLogger.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts +29 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/envUtils.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/envUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/envUtils.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.js +64 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.js +5 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.js +221 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts +76 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.js +100 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.js +104 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.js +5 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.js +127 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts +186 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.js +276 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.js +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.js +15 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.js +71 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.js +31 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts +197 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.js +324 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/GenericLogger.d.ts +17 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/GenericLogger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/GenericLogger.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts +29 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/envUtils.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/envUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/envUtils.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.js +60 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/README.md +198 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/node_modules/@aws-lambda-powertools/commons/package.json +106 -0
- package/node_modules/@aws-lambda-powertools/logger/README.md +266 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.js +134 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts +551 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.js +1219 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/constants.d.ts +48 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/constants.js +60 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/correlationId.d.ts +51 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/correlationId.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/correlationId.js +60 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts +116 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.js +144 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.d.ts +56 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.js +77 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.js +78 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/index.js +12 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.d.ts +61 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.js +126 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.js +118 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts +238 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts +18 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts +248 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.js +131 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts +551 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.js +1216 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/constants.d.ts +48 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/constants.js +53 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/correlationId.d.ts +51 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/correlationId.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/correlationId.js +56 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts +116 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.js +141 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.d.ts +56 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.js +74 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.js +75 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/index.js +4 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.d.ts +61 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.js +120 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.js +115 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts +238 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts +18 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts +248 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/README.md +198 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/node_modules/@aws-lambda-powertools/logger/package.json +89 -0
- package/node_modules/@aws-lambda-powertools/parameters/README.md +256 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.d.ts +239 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.js +298 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.d.ts +141 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.js +157 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.js +162 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.js +20 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.js +32 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.d.ts +13 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.js +19 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.js +27 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.js +11 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.d.ts +28 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.js +66 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.js +31 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.d.ts +302 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.js +357 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.js +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.js +38 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.js +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.d.ts +179 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.js +199 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.d.ts +96 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.js +104 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.d.ts +468 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.js +738 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.d.ts +123 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.js +131 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.d.ts +122 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.js +130 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.d.ts +141 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.js +149 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.js +13 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.js +78 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.d.ts +101 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.d.ts +92 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.d.ts +139 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.d.ts +201 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.d.ts +239 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.js +295 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.d.ts +141 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.js +154 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.js +159 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.js +16 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.js +29 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.d.ts +13 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.js +16 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.js +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.js +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.d.ts +28 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.js +63 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.js +23 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.d.ts +302 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.js +354 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.js +33 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.js +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.d.ts +179 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.js +196 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.d.ts +96 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.js +101 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.d.ts +468 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.js +735 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.d.ts +123 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.js +128 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.d.ts +122 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.js +127 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.d.ts +141 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.js +146 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.js +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.js +75 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.d.ts +101 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.d.ts +92 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.d.ts +139 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.d.ts +201 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/package.json +168 -0
- package/node_modules/@aws-lambda-powertools/parser/README.md +361 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gateway.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gateway.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gateway.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gatewayv2.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gatewayv2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gatewayv2.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/cloudwatch.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/cloudwatch.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/cloudwatch.js +89 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/dynamodb.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/dynamodb.js +95 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/envelope.d.ts +7 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/envelope.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/envelope.js +9 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/eventbridge.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/eventbridge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/eventbridge.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/index.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/index.js +31 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kafka.d.ts +21 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kafka.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kafka.js +96 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis-firehose.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis-firehose.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis-firehose.js +91 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis.js +95 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/lambda.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/lambda.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/lambda.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns-sqs.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns-sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns-sqs.js +134 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns.d.ts +22 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns.js +77 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sqs.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sqs.js +102 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-lattice.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-lattice.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-lattice.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-latticev2.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-latticev2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-latticev2.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/errors.d.ts +9 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/errors.js +17 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/dynamodb.d.ts +64 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/dynamodb.js +84 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/index.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/index.js +118 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/index.js +9 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/middleware/index.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/middleware/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/middleware/index.js +40 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parser.d.ts +37 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parser.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parser.js +40 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parserDecorator.d.ts +68 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parserDecorator.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parserDecorator.js +79 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/alb.d.ts +101 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/alb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/alb.js +95 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway-websocket.d.ts +100 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway-websocket.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway-websocket.js +98 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway.d.ts +383 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway.js +252 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gatewayv2.d.ts +379 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gatewayv2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gatewayv2.js +243 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/apigw-proxy.d.ts +36 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/apigw-proxy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/apigw-proxy.js +41 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-events.d.ts +261 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-events.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-events.js +165 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-shared.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-shared.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-shared.js +31 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync.d.ts +281 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync.js +232 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudformation-custom-resource.d.ts +104 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudformation-custom-resource.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudformation-custom-resource.js +99 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudwatch.d.ts +82 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudwatch.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudwatch.js +85 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cognito.d.ts +733 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cognito.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cognito.js +622 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/dynamodb.d.ts +373 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/dynamodb.js +256 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/eventbridge.d.ts +42 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/eventbridge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/eventbridge.js +44 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/index.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/index.js +96 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kafka.d.ts +133 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kafka.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kafka.js +131 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis-firehose.d.ts +186 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis-firehose.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis-firehose.js +122 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis.d.ts +149 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis.js +90 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/lambda.d.ts +132 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/lambda.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/lambda.js +65 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/s3.d.ts +350 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/s3.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/s3.js +294 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/ses.d.ts +291 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/ses.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/ses.js +174 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sns.d.ts +161 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sns.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sns.js +119 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sqs.d.ts +136 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sqs.js +107 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/transfer-family.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/transfer-family.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/transfer-family.js +29 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-lattice.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-lattice.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-lattice.js +38 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-latticev2.d.ts +78 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-latticev2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-latticev2.js +74 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/envelope.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/envelope.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/envelope.js +2 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/parser.d.ts +51 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/parser.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/parser.js +2 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/schema.d.ts +52 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/schema.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/schema.js +2 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gateway.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gateway.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gateway.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gatewayv2.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gatewayv2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gatewayv2.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/cloudwatch.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/cloudwatch.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/cloudwatch.js +86 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/dynamodb.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/dynamodb.js +92 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/envelope.d.ts +7 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/envelope.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/envelope.js +6 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/eventbridge.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/eventbridge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/eventbridge.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/index.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/index.js +14 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kafka.d.ts +21 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kafka.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kafka.js +93 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis-firehose.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis-firehose.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis-firehose.js +88 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis.js +92 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/lambda.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/lambda.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/lambda.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns-sqs.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns-sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns-sqs.js +131 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns.d.ts +22 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns.js +74 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sqs.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sqs.js +99 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-lattice.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-lattice.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-lattice.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-latticev2.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-latticev2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-latticev2.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/errors.d.ts +9 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/errors.js +14 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/dynamodb.d.ts +64 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/dynamodb.js +81 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/index.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/index.js +114 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/index.js +3 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/middleware/index.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/middleware/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/middleware/index.js +37 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parser.d.ts +37 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parser.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parser.js +38 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parserDecorator.d.ts +68 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parserDecorator.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parserDecorator.js +75 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/alb.d.ts +101 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/alb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/alb.js +91 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway-websocket.d.ts +100 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway-websocket.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway-websocket.js +95 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway.d.ts +383 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway.js +246 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gatewayv2.d.ts +379 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gatewayv2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gatewayv2.js +237 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/apigw-proxy.d.ts +36 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/apigw-proxy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/apigw-proxy.js +35 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-events.d.ts +261 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-events.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-events.js +154 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-shared.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-shared.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-shared.js +26 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync.d.ts +281 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync.js +224 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudformation-custom-resource.d.ts +104 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudformation-custom-resource.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudformation-custom-resource.js +94 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudwatch.d.ts +82 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudwatch.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudwatch.js +80 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cognito.d.ts +733 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cognito.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cognito.js +603 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/dynamodb.d.ts +373 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/dynamodb.js +247 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/eventbridge.d.ts +42 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/eventbridge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/eventbridge.js +41 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/index.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/index.js +22 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kafka.d.ts +133 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kafka.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kafka.js +126 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis-firehose.d.ts +186 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis-firehose.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis-firehose.js +116 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis.d.ts +149 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis.js +84 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/lambda.d.ts +132 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/lambda.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/lambda.js +62 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/s3.d.ts +350 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/s3.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/s3.js +288 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/ses.d.ts +291 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/ses.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/ses.js +170 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sns.d.ts +161 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sns.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sns.js +113 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sqs.d.ts +136 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sqs.js +100 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/transfer-family.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/transfer-family.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/transfer-family.js +26 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-lattice.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-lattice.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-lattice.js +35 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-latticev2.d.ts +78 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-latticev2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-latticev2.js +71 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/envelope.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/envelope.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/envelope.js +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/parser.d.ts +51 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/parser.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/parser.js +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/schema.d.ts +52 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/schema.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/schema.js +1 -0
- package/node_modules/@aws-lambda-powertools/parser/package.json +198 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/README.md +1064 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/auth/httpAuthSchemeProvider.js +243 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/index.js +6554 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/runtimeConfig.shared.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/CognitoIdentityProvider.js +245 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/CognitoIdentityProviderClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/auth/httpAuthSchemeProvider.js +237 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AddCustomAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminAddUserToGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminConfirmSignUpCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminCreateUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminDeleteUserAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminDeleteUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminDisableProviderForUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminDisableUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminEnableUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminForgetDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminGetDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminGetUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminInitiateAuthCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminLinkProviderForUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminListDevicesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminListGroupsForUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminListUserAuthEventsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminRemoveUserFromGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminResetUserPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminRespondToAuthChallengeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminSetUserMFAPreferenceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminSetUserPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminSetUserSettingsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminUpdateAuthEventFeedbackCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminUpdateDeviceStatusCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminUpdateUserAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminUserGlobalSignOutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AssociateSoftwareTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ChangePasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CompleteWebAuthnRegistrationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ConfirmDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ConfirmForgotPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ConfirmSignUpCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateIdentityProviderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateManagedLoginBrandingCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateResourceServerCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateUserImportJobCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateUserPoolClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateUserPoolCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateUserPoolDomainCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteIdentityProviderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteManagedLoginBrandingCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteResourceServerCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserPoolClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserPoolCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserPoolDomainCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteWebAuthnCredentialCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeIdentityProviderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeManagedLoginBrandingByClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeManagedLoginBrandingCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeResourceServerCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeRiskConfigurationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeUserImportJobCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeUserPoolClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeUserPoolCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeUserPoolDomainCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ForgetDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ForgotPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetCSVHeaderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetIdentityProviderByIdentifierCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetLogDeliveryConfigurationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetSigningCertificateCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetTokensFromRefreshTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUICustomizationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUserAttributeVerificationCodeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUserAuthFactorsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUserPoolMfaConfigCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GlobalSignOutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/InitiateAuthCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListDevicesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListGroupsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListIdentityProvidersCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListResourceServersCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUserImportJobsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUserPoolClientsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUserPoolsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUsersCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUsersInGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListWebAuthnCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ResendConfirmationCodeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/RespondToAuthChallengeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/RevokeTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetLogDeliveryConfigurationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetRiskConfigurationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetUICustomizationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetUserMFAPreferenceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetUserPoolMfaConfigCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetUserSettingsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SignUpCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/StartUserImportJobCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/StartWebAuthnRegistrationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/StopUserImportJobCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/TagResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UntagResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateAuthEventFeedbackCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateDeviceStatusCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateIdentityProviderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateManagedLoginBrandingCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateResourceServerCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateUserAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateUserPoolClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateUserPoolCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateUserPoolDomainCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/VerifySoftwareTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/VerifyUserAttributeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/index.js +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/CognitoIdentityProviderServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/enums.js +281 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/errors.js +663 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/AdminListGroupsForUserPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/AdminListUserAuthEventsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListGroupsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListIdentityProvidersPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListResourceServersPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListUserPoolClientsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListUserPoolsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListUsersInGroupPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListUsersPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeConfig.shared.js +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/schemas/schemas_0.js +3226 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/CognitoIdentityProvider.d.ts +875 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/CognitoIdentityProviderClient.d.ts +336 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AddCustomAttributesCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminAddUserToGroupCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminConfirmSignUpCommand.d.ts +142 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminCreateUserCommand.d.ts +283 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminDeleteUserAttributesCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminDeleteUserCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminDisableProviderForUserCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminDisableUserCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminEnableUserCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminForgetDeviceCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminGetDeviceCommand.d.ts +129 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminGetUserCommand.d.ts +139 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminInitiateAuthCommand.d.ts +220 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminLinkProviderForUserCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminListDevicesCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminListGroupsForUserCommand.d.ts +131 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminListUserAuthEventsCommand.d.ts +153 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminRemoveUserFromGroupCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminResetUserPasswordCommand.d.ts +170 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminRespondToAuthChallengeCommand.d.ts +240 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminSetUserMFAPreferenceCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminSetUserPasswordCommand.d.ts +148 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminSetUserSettingsCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminUpdateAuthEventFeedbackCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminUpdateDeviceStatusCommand.d.ts +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminUpdateUserAttributesCommand.d.ts +179 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminUserGlobalSignOutCommand.d.ts +140 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AssociateSoftwareTokenCommand.d.ts +113 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ChangePasswordCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CompleteWebAuthnRegistrationCommand.d.ts +121 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ConfirmDeviceCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ConfirmForgotPasswordCommand.d.ts +154 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ConfirmSignUpCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateGroupCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateIdentityProviderCommand.d.ts +148 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateManagedLoginBrandingCommand.d.ts +165 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateResourceServerCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateTermsCommand.d.ts +153 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateUserImportJobCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateUserPoolClientCommand.d.ts +367 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateUserPoolCommand.d.ts +889 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateUserPoolDomainCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteGroupCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteIdentityProviderCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteManagedLoginBrandingCommand.d.ts +118 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteResourceServerCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteTermsCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserAttributesCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserPoolClientCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserPoolCommand.d.ts +102 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserPoolDomainCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteWebAuthnCredentialCommand.d.ts +107 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeIdentityProviderCommand.d.ts +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeManagedLoginBrandingByClientCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeManagedLoginBrandingCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeResourceServerCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeRiskConfigurationCommand.d.ts +155 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeTermsCommand.d.ts +125 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeUserImportJobCommand.d.ts +107 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeUserPoolClientCommand.d.ts +171 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeUserPoolCommand.d.ts +261 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeUserPoolDomainCommand.d.ts +121 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ForgetDeviceCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ForgotPasswordCommand.d.ts +180 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetCSVHeaderCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetDeviceCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetGroupCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetIdentityProviderByIdentifierCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetLogDeliveryConfigurationCommand.d.ts +130 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetSigningCertificateCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetTokensFromRefreshTokenCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUICustomizationCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUserAttributeVerificationCodeCommand.d.ts +171 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUserAuthFactorsCommand.d.ts +129 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUserCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUserPoolMfaConfigCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GlobalSignOutCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/InitiateAuthCommand.d.ts +233 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListDevicesCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListGroupsCommand.d.ts +125 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListIdentityProvidersCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListResourceServersCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListTagsForResourceCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListTermsCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUserImportJobsCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUserPoolClientsCommand.d.ts +122 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUserPoolsCommand.d.ts +143 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUsersCommand.d.ts +215 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUsersInGroupCommand.d.ts +137 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListWebAuthnCredentialsCommand.d.ts +118 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ResendConfirmationCodeCommand.d.ts +175 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/RespondToAuthChallengeCommand.d.ts +221 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/RevokeTokenCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetLogDeliveryConfigurationCommand.d.ts +131 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetRiskConfigurationCommand.d.ts +235 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetUICustomizationCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetUserMFAPreferenceCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetUserPoolMfaConfigCommand.d.ts +167 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetUserSettingsCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SignUpCommand.d.ts +197 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/StartUserImportJobCommand.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/StartWebAuthnRegistrationCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/StopUserImportJobCommand.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/TagResourceCommand.d.ts +106 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UntagResourceCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateAuthEventFeedbackCommand.d.ts +118 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateDeviceStatusCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateGroupCommand.d.ts +125 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateIdentityProviderCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateManagedLoginBrandingCommand.d.ts +152 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateResourceServerCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateTermsCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateUserAttributesCommand.d.ts +190 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateUserPoolClientCommand.d.ts +243 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateUserPoolCommand.d.ts +272 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateUserPoolDomainCommand.d.ts +142 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/VerifySoftwareTokenCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/VerifyUserAttributeCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/index.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/index.d.ts +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/CognitoIdentityProviderServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/enums.d.ts +681 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/errors.d.ts +710 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/models_0.d.ts +11626 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/models_1.d.ts +147 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/AdminListGroupsForUserPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/AdminListUserAuthEventsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListGroupsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListIdentityProvidersPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListResourceServersPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListUserPoolClientsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListUserPoolsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListUsersInGroupPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListUsersPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeConfig.browser.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeConfig.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeConfig.native.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/schemas/schemas_0.d.ts +483 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/CognitoIdentityProvider.d.ts +2038 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/CognitoIdentityProviderClient.d.ts +836 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AddCustomAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminAddUserToGroupCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminConfirmSignUpCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminCreateUserCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminDeleteUserAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminDeleteUserCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminDisableProviderForUserCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminDisableUserCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminEnableUserCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminForgetDeviceCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminGetDeviceCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminGetUserCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminInitiateAuthCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminLinkProviderForUserCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminListDevicesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminListGroupsForUserCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminListUserAuthEventsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminRemoveUserFromGroupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminResetUserPasswordCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminRespondToAuthChallengeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminSetUserMFAPreferenceCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminSetUserPasswordCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminSetUserSettingsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminUpdateAuthEventFeedbackCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminUpdateDeviceStatusCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminUpdateUserAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminUserGlobalSignOutCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AssociateSoftwareTokenCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ChangePasswordCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CompleteWebAuthnRegistrationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ConfirmDeviceCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ConfirmForgotPasswordCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ConfirmSignUpCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateIdentityProviderCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateManagedLoginBrandingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateResourceServerCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateTermsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateUserImportJobCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateUserPoolClientCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateUserPoolCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateUserPoolDomainCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteIdentityProviderCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteManagedLoginBrandingCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteResourceServerCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteTermsCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserPoolClientCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserPoolCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserPoolDomainCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteWebAuthnCredentialCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeIdentityProviderCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeManagedLoginBrandingByClientCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeManagedLoginBrandingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeResourceServerCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeRiskConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeTermsCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeUserImportJobCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeUserPoolClientCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeUserPoolCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeUserPoolDomainCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ForgetDeviceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ForgotPasswordCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetCSVHeaderCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetGroupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetIdentityProviderByIdentifierCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetLogDeliveryConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetSigningCertificateCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetTokensFromRefreshTokenCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUICustomizationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUserAttributeVerificationCodeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUserAuthFactorsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUserCommand.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUserPoolMfaConfigCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GlobalSignOutCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/InitiateAuthCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListResourceServersCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListTermsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUserImportJobsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUserPoolClientsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUserPoolsCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUsersCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUsersInGroupCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListWebAuthnCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ResendConfirmationCodeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/RespondToAuthChallengeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/RevokeTokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetLogDeliveryConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetRiskConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetUICustomizationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetUserMFAPreferenceCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetUserPoolMfaConfigCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetUserSettingsCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SignUpCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/StartUserImportJobCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/StartWebAuthnRegistrationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/StopUserImportJobCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateAuthEventFeedbackCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateDeviceStatusCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateIdentityProviderCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateManagedLoginBrandingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateResourceServerCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateTermsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateUserAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateUserPoolClientCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateUserPoolCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateUserPoolDomainCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/VerifySoftwareTokenCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/VerifyUserAttributeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/index.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/CognitoIdentityProviderServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/enums.d.ts +372 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/errors.d.ts +440 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/models_0.d.ts +1571 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/models_1.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/AdminListGroupsForUserPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/AdminListUserAuthEventsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListIdentityProvidersPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListResourceServersPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListUserPoolClientsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListUserPoolsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListUsersInGroupPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeConfig.browser.d.ts +127 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeConfig.d.ts +122 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeConfig.native.d.ts +131 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeConfig.shared.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/schemas/schemas_0.d.ts +487 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/README.md +244 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +420 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/models/errors.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +152 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +200 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/models/errors.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +189 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +138 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/package.json +99 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/README.md +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/account-id-endpoint.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/client.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/client.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/index.js +2201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +307 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1848 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +139 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +76 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +138 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +160 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +182 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/structIterator.js +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +155 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +296 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/setCredentialFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +117 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/structIterator.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setCredentialFeature.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/structIterator.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/package.json +121 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/protocols.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/package.json +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +224 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +80 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/package.json +74 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +150 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/package.json +72 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +79 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +192 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-CVy8iqsZ.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +83 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +90 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/package.json +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/package.json +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/package.json +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/package.json +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/README.md +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +344 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +499 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +480 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +107 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +186 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +189 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +220 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +176 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +192 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +85 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultRoleAssumers.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +588 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +125 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +118 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +129 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDC.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +121 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STS.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +129 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +111 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/package.json +127 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/sso-oidc.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/sts.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/sts.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/package.json +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/README.md +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +157 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +81 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/package.json +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-cjs/index.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/function.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/function.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/index.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/package.json +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/README.md +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/package.json +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/package.json +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-cjs/index.js +186 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/README.md +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/cbor.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/cbor.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/index.js +349 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1076 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +251 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +839 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +626 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +697 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +195 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +96 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +426 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +221 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +86 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +246 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +266 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +122 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +94 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +91 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/deref.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schema-middleware-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +258 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js +190 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +230 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +101 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schema-middleware-types.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/event-streams.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/event-streams.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/package.json +137 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/protocols.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/schema.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/schema.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/serde.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/serde.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +372 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +134 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +216 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +141 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/dist-cjs/index.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/dist-es/index.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/package.json +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/package.json +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +248 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointRequiredConfig.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/package.json +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-cjs/index.js +358 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +94 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/configurations.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/package.json +79 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-cjs/index.js +103 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/package.json +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-cjs/index.js +285 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/package.json +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-cjs/index.js +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-cjs/index.js +732 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +224 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-cjs/index.js +117 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/ProviderError.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/package.json +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/dist-cjs/index.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-cjs/index.js +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-es/constants.js +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/package.json +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/package.json +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-cjs/index.js +556 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +126 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +79 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/index.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/signature-v4a-container.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/package.json +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-cjs/index.js +595 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/client.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/command.js +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/exceptions.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/index.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/client.d.ts +87 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/command.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/index.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +87 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/package.json +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/schema.d.ts +236 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +97 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +116 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/dist-cjs/index.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/package.json +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +74 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/package.json +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-cjs/index.js +472 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/package.json +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/README.md +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-cjs/index.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/package.json +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/README.md +78 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-cjs/index.js +278 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/package.json +71 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/index.js +84 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/package.json +100 -0
- package/node_modules/@aws-sdk/client-dynamodb/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-dynamodb/README.md +678 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/endpointResolver.js +27 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/index.js +4508 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.browser.js +42 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.js +59 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDB.js +121 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDBClient.js +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchExecuteStatementCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchGetItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchWriteItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateBackupCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateGlobalTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteBackupCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteResourcePolicyCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeBackupCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContinuousBackupsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContributorInsightsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeEndpointsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeExportCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableSettingsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeImportCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeLimitsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTimeToLiveCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteStatementCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteTransactionCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExportTableToPointInTimeCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetResourcePolicyCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ImportTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListBackupsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListContributorInsightsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListExportsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListGlobalTablesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListImportsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTablesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTagsOfResourceCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutResourcePolicyCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/QueryCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableFromBackupCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableToPointInTimeCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ScanCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TagResourceCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactGetItemsCommand.js +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactWriteItemsCommand.js +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UntagResourceCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContinuousBackupsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContributorInsightsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableSettingsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTimeToLiveCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/index.js +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/EndpointParameters.js +15 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/endpointResolver.js +23 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/DynamoDBServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/enums.js +240 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/errors.js +440 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListContributorInsightsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListExportsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListImportsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListTablesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/QueryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ScanPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/index.js +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.browser.js +37 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.js +54 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.shared.js +39 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/schemas/schemas_0.js +2585 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/index.js +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableExists.js +34 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableNotExists.js +25 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDB.d.ts +433 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDBClient.d.ts +281 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +234 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchGetItemCommand.d.ts +366 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchWriteItemCommand.d.ts +414 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateBackupCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateGlobalTableCommand.d.ts +210 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateTableCommand.d.ts +390 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteBackupCommand.d.ts +197 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteItemCommand.d.ts +296 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteResourcePolicyCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteTableCommand.d.ts +336 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeBackupCommand.d.ts +175 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +104 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContributorInsightsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeEndpointsCommand.d.ts +78 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeExportCommand.d.ts +124 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +178 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeImportCommand.d.ts +165 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeLimitsCommand.d.ts +165 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableCommand.d.ts +267 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +164 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTimeToLiveCommand.d.ts +86 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +130 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +251 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +535 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +152 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetItemCommand.d.ts +264 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetResourcePolicyCommand.d.ts +124 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ImportTableCommand.d.ts +275 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListBackupsCommand.d.ts +109 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListContributorInsightsCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListExportsCommand.d.ts +104 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListGlobalTablesCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListImportsCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTagsOfResourceCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutItemCommand.d.ts +310 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/QueryCommand.d.ts +338 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableFromBackupCommand.d.ts +371 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +405 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ScanCommand.d.ts +337 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TagResourceCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +497 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +660 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UntagResourceCommand.d.ts +140 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContributorInsightsCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableCommand.d.ts +178 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +286 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateItemCommand.d.ts +323 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +127 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableCommand.d.ts +455 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +246 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTimeToLiveCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/index.d.ts +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/EndpointParameters.d.ts +64 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/index.d.ts +33 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/DynamoDBServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/enums.d.ts +576 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/errors.d.ts +804 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +9936 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListContributorInsightsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListImportsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/QueryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ScanPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +56 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +55 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/schemas/schemas_0.d.ts +397 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +1000 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +476 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +65 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/enums.d.ts +306 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/errors.d.ts +286 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +1543 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +110 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +107 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +114 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/schemas/schemas_0.d.ts +403 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableExists.d.ts +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableNotExists.d.ts +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/package.json +105 -0
- package/node_modules/@aws-sdk/client-secrets-manager/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/README.md +387 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/index.js +1412 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.shared.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/SecretsManager.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/SecretsManagerClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/BatchGetSecretValueCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CancelRotateSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CreateSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DescribeSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetRandomPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetSecretValueCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretVersionIdsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutSecretValueCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RemoveRegionsFromReplicationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ReplicateSecretToRegionsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RestoreSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RotateSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/StopReplicationToReplicaCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/TagResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UntagResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretVersionStageCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ValidateResourcePolicyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/index.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/index.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/SecretsManagerServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/enums.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/errors.js +169 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/BatchGetSecretValuePaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/ListSecretVersionIdsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/ListSecretsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.shared.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/schemas/schemas_0.js +655 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManager.d.ts +199 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManagerClient.d.ts +235 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/BatchGetSecretValueCommand.d.ts +210 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CancelRotateSecretCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CreateSecretCommand.d.ts +218 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteResourcePolicyCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteSecretCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DescribeSecretCommand.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetRandomPasswordCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetResourcePolicyCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetSecretValueCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretVersionIdsCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretsCommand.d.ts +208 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutSecretValueCommand.d.ts +183 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +122 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RestoreSecretCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RotateSecretCommand.d.ts +180 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/StopReplicationToReplicaCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/TagResourceCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UntagResourceCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretCommand.d.ts +221 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +187 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ValidateResourcePolicyCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/index.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/index.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/SecretsManagerServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/enums.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/errors.d.ts +175 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/models_0.d.ts +1957 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/BatchGetSecretValuePaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/ListSecretVersionIdsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/ListSecretsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.native.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/schemas/schemas_0.d.ts +92 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManager.d.ts +401 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManagerClient.d.ts +258 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/BatchGetSecretValueCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/index.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/enums.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/errors.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/models_0.d.ts +333 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/BatchGetSecretValuePaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/schemas/schemas_0.d.ts +96 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/README.md +244 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +420 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/errors.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +152 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +200 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/errors.d.ts +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +189 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +138 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/package.json +99 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/README.md +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/account-id-endpoint.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/client.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/client.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/index.js +2236 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +307 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1883 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +139 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +76 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +156 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +177 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +182 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/structIterator.js +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +155 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +296 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/setCredentialFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +117 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/structIterator.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setCredentialFeature.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/structIterator.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/package.json +121 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/protocols.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +224 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +80 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/package.json +74 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +150 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/package.json +72 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +79 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +192 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-CVy8iqsZ.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +83 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +90 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/package.json +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/package.json +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/README.md +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +349 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +500 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +483 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +119 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +134 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +107 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +189 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +189 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +220 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +176 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +192 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +85 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultRoleAssumers.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +588 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +123 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +125 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +118 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +129 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDC.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +121 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STS.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +128 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +129 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +111 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +133 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/package.json +127 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/sso-oidc.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/sts.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/sts.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/README.md +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +157 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +81 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-cjs/index.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/function.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/function.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/index.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/package.json +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/README.md +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-cjs/index.js +186 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/README.md +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/cbor.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/cbor.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/index.js +349 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1093 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +251 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +845 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +626 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +697 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +212 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +96 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +426 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +221 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +86 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +246 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +269 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +125 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +94 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +91 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/deref.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schema-middleware-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +258 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js +190 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/index.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +230 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +101 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schema-middleware-types.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +133 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/event-streams.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/event-streams.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/package.json +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/protocols.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/schema.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/schema.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/serde.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/serde.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +372 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +134 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +216 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +141 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/dist-cjs/index.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/dist-es/index.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/package.json +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/package.json +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +248 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointRequiredConfig.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/package.json +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-cjs/index.js +358 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +94 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/configurations.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/package.json +79 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-cjs/index.js +103 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/package.json +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-cjs/index.js +285 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/package.json +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-cjs/index.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-cjs/index.js +732 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +224 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-cjs/index.js +117 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/ProviderError.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/dist-cjs/index.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-cjs/index.js +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-es/constants.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/package.json +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/package.json +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-cjs/index.js +556 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +126 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +135 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +79 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/index.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/signature-v4a-container.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-cjs/index.js +595 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/client.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/command.js +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/exceptions.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/index.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/client.d.ts +87 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/command.d.ts +119 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/index.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +87 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +119 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/package.json +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/schema.d.ts +236 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +99 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/dist-cjs/index.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +74 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/package.json +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-cjs/index.js +472 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/package.json +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/README.md +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-cjs/index.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/package.json +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/README.md +78 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-cjs/index.js +278 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/package.json +71 -0
- package/node_modules/@aws-sdk/client-secrets-manager/package.json +100 -0
- package/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sso/README.md +252 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +68 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +402 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +42 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +50 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/errors.js +49 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +153 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +209 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/errors.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +189 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +58 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +58 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +57 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +33 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +142 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +45 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +116 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +111 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +120 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sso/package.json +99 -0
- package/node_modules/@aws-sdk/core/README.md +39 -0
- package/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/core/account-id-endpoint.js +6 -0
- package/node_modules/@aws-sdk/core/client.d.ts +7 -0
- package/node_modules/@aws-sdk/core/client.js +5 -0
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +2100 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +55 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +51 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +299 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1755 -0
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +4 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js +7 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js +22 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +5 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +131 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +18 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +76 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +82 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +127 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +153 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +127 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +54 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +17 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +136 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +157 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/structIterator.js +40 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +82 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +143 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +280 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +46 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setCredentialFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +43 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +117 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +61 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +28 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/structIterator.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +29 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setCredentialFeature.d.ts +11 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +65 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +22 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +57 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/structIterator.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
- package/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
- package/node_modules/@aws-sdk/core/package.json +121 -0
- package/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/core/protocols.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +70 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +53 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +65 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/index.js +84 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@aws-sdk/credential-provider-http/package.json +70 -0
- package/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +226 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +16 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +79 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +32 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +23 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +18 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +56 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +48 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +26 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +28 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +74 -0
- package/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
- package/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
- package/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +150 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +73 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +54 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +59 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +26 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
- package/node_modules/@aws-sdk/credential-provider-node/package.json +72 -0
- package/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +79 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +36 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +190 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-CVy8iqsZ.js +14 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +81 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +90 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +68 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +17 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +34 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +62 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +19 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +25 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +39 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +73 -0
- package/node_modules/@aws-sdk/dynamodb-codec/LICENSE +201 -0
- package/node_modules/@aws-sdk/dynamodb-codec/README.md +4 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-cjs/index.js +91 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-es/codec/DynamoDBJsonCodec.js +86 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-types/codec/DynamoDBJsonCodec.d.ts +18 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-types/ts3.4/codec/DynamoDBJsonCodec.d.ts +10 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/dynamodb-codec/package.json +61 -0
- package/node_modules/@aws-sdk/endpoint-cache/LICENSE +201 -0
- package/node_modules/@aws-sdk/endpoint-cache/README.md +17 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/index.js +140 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/Endpoint.js +1 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/EndpointCache.js +54 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/Endpoint.d.ts +13 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/EndpointCache.d.ts +56 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/Endpoint.d.ts +4 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/EndpointCache.d.ts +14 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/endpoint-cache/package.json +55 -0
- package/node_modules/@aws-sdk/lib-dynamodb/LICENSE +201 -0
- package/node_modules/@aws-sdk/lib-dynamodb/README.md +464 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-cjs/index.js +845 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/DynamoDBDocument.js +214 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/DynamoDBDocumentClient.js +20 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/baseCommand/DynamoDBDocumentClientCommand.js +32 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/BatchExecuteStatementCommand.js +39 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/BatchGetCommand.js +45 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/BatchWriteCommand.js +57 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/DeleteCommand.js +38 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/ExecuteStatementCommand.js +31 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/ExecuteTransactionCommand.js +36 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/GetCommand.js +28 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/PutCommand.js +38 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/QueryCommand.js +42 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/ScanCommand.js +37 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/TransactGetCommand.js +38 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/TransactWriteCommand.js +53 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/UpdateCommand.js +43 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/index.js +13 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/utils.js +80 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/index.js +5 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/pagination/QueryPaginator.js +4 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/pagination/ScanPaginator.js +4 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/DynamoDBDocument.d.ts +195 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/DynamoDBDocumentClient.d.ts +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/baseCommand/DynamoDBDocumentClientCommand.d.ts +17 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +66 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/BatchGetCommand.d.ts +70 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/BatchWriteCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/DeleteCommand.d.ts +66 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +52 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +60 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/GetCommand.d.ts +48 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/PutCommand.d.ts +66 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/QueryCommand.d.ts +70 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/ScanCommand.d.ts +62 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/TransactGetCommand.d.ts +64 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/TransactWriteCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/UpdateCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/index.d.ts +13 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/utils.d.ts +33 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/pagination/Interfaces.d.ts +13 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/pagination/QueryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/pagination/ScanPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocument.d.ts +221 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocumentClient.d.ts +105 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/baseCommand/DynamoDBDocumentClientCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchGetCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +142 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/DeleteCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +78 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/GetCommand.d.ts +57 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/PutCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactGetCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/UpdateCommand.d.ts +113 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/utils.d.ts +17 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +12 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +9 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/lib-dynamodb/package.json +68 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/index.js +188 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/configurations.js +27 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/endpointDiscoveryMiddleware.js +45 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getCacheKey.js +13 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getEndpointDiscoveryPlugin.js +22 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/resolveEndpointDiscoveryConfig.js +12 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/updateDiscoveredEndpointInCache.js +57 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/configurations.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/endpointDiscoveryMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getCacheKey.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getEndpointDiscoveryPlugin.d.ts +29 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/resolveEndpointDiscoveryConfig.d.ts +60 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/endpointDiscoveryMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getCacheKey.d.ts +10 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getEndpointDiscoveryPlugin.d.ts +41 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/resolveEndpointDiscoveryConfig.d.ts +28 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/updateDiscoveredEndpointInCache.d.ts +15 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/updateDiscoveredEndpointInCache.d.ts +8 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +61 -0
- package/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +35 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/node_modules/@aws-sdk/middleware-host-header/package.json +59 -0
- package/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +48 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +25 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +33 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +29 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +63 -0
- package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +49 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +20 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +62 -0
- package/node_modules/@aws-sdk/nested-clients/README.md +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +333 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +477 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +54 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +19 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +460 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +67 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +114 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +126 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +55 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +106 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +186 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +198 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +59 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +59 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +55 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +229 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +176 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +109 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +27 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +201 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +85 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultRoleAssumers.d.ts +23 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +588 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +60 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +59 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +26 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +127 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +121 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +114 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDC.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +116 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +111 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +120 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STS.d.ts +39 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +132 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +59 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +107 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +129 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +127 -0
- package/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
- package/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/sso-oidc.js +5 -0
- package/node_modules/@aws-sdk/nested-clients/sts.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/sts.js +5 -0
- package/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +49 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +15 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/package.json +62 -0
- package/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/token-providers/README.md +62 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +164 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +16 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +88 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +18 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +12 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +6 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +11 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +14 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +9 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/package.json +70 -0
- package/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +22 -0
- package/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/function.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@aws-sdk/types/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +52 -0
- package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +67 -0
- package/node_modules/@aws-sdk/types/dist-types/function.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +61 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +11 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +34 -0
- package/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +60 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +34 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/types/package.json +57 -0
- package/node_modules/@aws-sdk/util-dynamodb/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-dynamodb/README.md +50 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-cjs/index.js +309 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/NumberValue.js +37 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/convertToAttr.js +175 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/convertToNative.js +61 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/marshall.js +21 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/models.js +1 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/unmarshall.js +7 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/NumberValue.d.ts +55 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/convertToAttr.d.ts +10 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/convertToNative.d.ts +10 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/marshall.d.ts +81 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/models.d.ts +38 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/NumberValue.d.ts +30 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToNative.d.ts +7 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/marshall.d.ts +112 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/models.d.ts +46 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/unmarshall.d.ts +13 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/unmarshall.d.ts +31 -0
- package/node_modules/@aws-sdk/util-dynamodb/package.json +58 -0
- package/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +42 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/util-locate-window/package.json +54 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +29 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +22 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +53 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +18 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +27 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +18 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +22 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +17 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +29 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +8 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +28 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
- package/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +124 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +18 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +15 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +63 -0
- package/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/abort-controller/package.json +63 -0
- package/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/node_modules/@smithy/config-resolver/README.md +10 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +186 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +24 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/package.json +66 -0
- package/node_modules/@smithy/core/LICENSE +201 -0
- package/node_modules/@smithy/core/README.md +45 -0
- package/node_modules/@smithy/core/cbor.d.ts +7 -0
- package/node_modules/@smithy/core/cbor.js +6 -0
- package/node_modules/@smithy/core/dist-cjs/index.js +349 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1057 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +251 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +839 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +620 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +697 -0
- package/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@smithy/core/dist-es/index.js +8 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +17 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js +20 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +15 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +41 -0
- package/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +1 -0
- package/node_modules/@smithy/core/dist-es/setFeature.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +175 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +96 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +37 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +426 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +221 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js +25 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +86 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +246 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +266 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +122 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +94 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +69 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +66 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +42 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +33 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +91 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +65 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/deref.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js +23 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schema-middleware-types.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +65 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +252 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +20 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +20 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js +190 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +230 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +101 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js +37 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +25 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +55 -0
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/setFeature.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +62 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schema-middleware-types.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +127 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +130 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@smithy/core/event-streams.d.ts +7 -0
- package/node_modules/@smithy/core/event-streams.js +6 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/index.js +84 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +12 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +16 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +12 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +14 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +16 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@smithy/core/package.json +135 -0
- package/node_modules/@smithy/core/protocols.d.ts +7 -0
- package/node_modules/@smithy/core/protocols.js +6 -0
- package/node_modules/@smithy/core/schema.d.ts +7 -0
- package/node_modules/@smithy/core/schema.js +6 -0
- package/node_modules/@smithy/core/serde.d.ts +7 -0
- package/node_modules/@smithy/core/serde.js +6 -0
- package/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +372 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +77 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +134 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +28 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +28 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +216 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +141 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/node_modules/@smithy/hash-node/README.md +10 -0
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +42 -0
- package/node_modules/@smithy/hash-node/dist-es/index.js +37 -0
- package/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@smithy/hash-node/package.json +65 -0
- package/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +10 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/node_modules/@smithy/invalid-dependency/package.json +61 -0
- package/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +6 -0
- package/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/is-array-buffer/package.json +61 -0
- package/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +46 -0
- package/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@smithy/middleware-content-length/package.json +64 -0
- package/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +240 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +42 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +55 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +36 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +6 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +24 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointRequiredConfig.js +9 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +13 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +18 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +13 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +41 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +41 -0
- package/node_modules/@smithy/middleware-endpoint/package.json +75 -0
- package/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +358 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +21 -0
- package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +94 -0
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +51 -0
- package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
- package/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +66 -0
- package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +18 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +66 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +18 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +65 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +65 -0
- package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/package.json +79 -0
- package/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +103 -0
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +58 -0
- package/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +14 -0
- package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +24 -0
- package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-serde/package.json +65 -0
- package/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +285 -0
- package/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +5 -0
- package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/node_modules/@smithy/middleware-stack/package.json +64 -0
- package/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/node_modules/@smithy/node-config-provider/README.md +10 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +62 -0
- package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +9 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
- package/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +31 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +20 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
- package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +31 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +20 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +9 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/node-config-provider/package.json +66 -0
- package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +732 -0
- package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +224 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/node_modules/@smithy/property-provider/README.md +10 -0
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +117 -0
- package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +8 -0
- package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +23 -0
- package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +8 -0
- package/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +39 -0
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +31 -0
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +39 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +31 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/node_modules/@smithy/property-provider/package.json +61 -0
- package/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@smithy/protocol-http/package.json +62 -0
- package/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +27 -0
- package/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-parser/package.json +61 -0
- package/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +77 -0
- package/node_modules/@smithy/service-error-classification/dist-es/constants.js +28 -0
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +39 -0
- package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +30 -0
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +24 -0
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +30 -0
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@smithy/service-error-classification/package.json +60 -0
- package/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +194 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +11 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +10 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +39 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +10 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/package.json +73 -0
- package/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/node_modules/@smithy/signature-v4/README.md +11 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +556 -0
- package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +126 -0
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +135 -0
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +79 -0
- package/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +29 -0
- package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/node_modules/@smithy/signature-v4/dist-es/index.js +11 -0
- package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +17 -0
- package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/node_modules/@smithy/signature-v4/dist-es/signature-v4a-container.js +3 -0
- package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +24 -0
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +21 -0
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +69 -0
- package/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +30 -0
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +11 -0
- package/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +24 -0
- package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +24 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +21 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +24 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@smithy/signature-v4/package.json +70 -0
- package/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/node_modules/@smithy/smithy-client/README.md +10 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +589 -0
- package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/node_modules/@smithy/smithy-client/dist-es/client.js +45 -0
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/command.js +124 -0
- package/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
- package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +50 -0
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +30 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +15 -0
- package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@smithy/smithy-client/dist-es/index.js +20 -0
- package/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
- package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
- package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +61 -0
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +119 -0
- package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +42 -0
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +24 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +21 -0
- package/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +61 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +119 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +42 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +24 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +21 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/index.js +84 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +12 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +16 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +12 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +14 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +16 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@smithy/smithy-client/package.json +68 -0
- package/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +136 -0
- package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +230 -0
- package/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +142 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +245 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +101 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/node_modules/@smithy/url-parser/README.md +10 -0
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +23 -0
- package/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/url-parser/package.json +62 -0
- package/node_modules/@smithy/util-base64/LICENSE +201 -0
- package/node_modules/@smithy/util-base64/README.md +4 -0
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +12 -0
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +19 -0
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +38 -0
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +19 -0
- package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +9 -0
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
- package/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +35 -0
- package/node_modules/@smithy/util-base64/dist-es/toBase64.js +15 -0
- package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +5 -0
- package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +9 -0
- package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +5 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +9 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +8 -0
- package/node_modules/@smithy/util-base64/package.json +74 -0
- package/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
- package/node_modules/@smithy/util-body-length-browser/README.md +12 -0
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +30 -0
- package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
- package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/package.json +61 -0
- package/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
- package/node_modules/@smithy/util-body-length-node/README.md +12 -0
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +27 -0
- package/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/package.json +62 -0
- package/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +20 -0
- package/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@smithy/util-buffer-from/package.json +62 -0
- package/node_modules/@smithy/util-config-provider/LICENSE +201 -0
- package/node_modules/@smithy/util-config-provider/README.md +4 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +30 -0
- package/node_modules/@smithy/util-config-provider/dist-es/booleanSelector.js +9 -0
- package/node_modules/@smithy/util-config-provider/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-config-provider/dist-es/numberSelector.js +9 -0
- package/node_modules/@smithy/util-config-provider/dist-es/types.js +5 -0
- package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +10 -0
- package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +9 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +9 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +4 -0
- package/node_modules/@smithy/util-config-provider/dist-types/types.d.ts +4 -0
- package/node_modules/@smithy/util-config-provider/package.json +63 -0
- package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +12 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +34 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +30 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +74 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-node/package.json +67 -0
- package/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +472 -0
- package/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +50 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +27 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +29 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +42 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +28 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/package.json +69 -0
- package/node_modules/@smithy/util-hex-encoding/LICENSE +201 -0
- package/node_modules/@smithy/util-hex-encoding/README.md +4 -0
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +38 -0
- package/node_modules/@smithy/util-hex-encoding/dist-es/index.js +33 -0
- package/node_modules/@smithy/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/util-hex-encoding/package.json +61 -0
- package/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/node_modules/@smithy/util-middleware/README.md +12 -0
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +15 -0
- package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/util-middleware/package.json +67 -0
- package/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/node_modules/@smithy/util-retry/README.md +78 -0
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +278 -0
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +27 -0
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +19 -0
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +109 -0
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +67 -0
- package/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/node_modules/@smithy/util-retry/package.json +71 -0
- package/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +41 -0
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +86 -0
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +38 -0
- package/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +15 -0
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +11 -0
- package/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +17 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +15 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +17 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +17 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/package.json +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +216 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +141 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-cjs/index.js +732 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +224 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/package.json +62 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/schema.d.ts +236 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +99 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
- package/node_modules/@smithy/util-uri-escape/README.md +10 -0
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +9 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/util-uri-escape/package.json +60 -0
- package/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/node_modules/@smithy/util-utf8/README.md +4 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/node_modules/@smithy/util-utf8/package.json +67 -0
- package/node_modules/@smithy/util-waiter/LICENSE +201 -0
- package/node_modules/@smithy/util-waiter/README.md +10 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +179 -0
- package/node_modules/@smithy/util-waiter/dist-es/circularReplacer.js +12 -0
- package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +48 -0
- package/node_modules/@smithy/util-waiter/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +60 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/index.js +2 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/sleep.js +3 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/validate.js +17 -0
- package/node_modules/@smithy/util-waiter/dist-es/waiter.js +35 -0
- package/node_modules/@smithy/util-waiter/dist-types/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/util-waiter/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +10 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/poller.d.ts +10 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/index.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/waiter.d.ts +49 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +49 -0
- package/node_modules/@smithy/util-waiter/package.json +63 -0
- package/node_modules/@smithy/uuid/LICENSE +201 -0
- package/node_modules/@smithy/uuid/README.md +10 -0
- package/node_modules/@smithy/uuid/dist-cjs/index.js +36 -0
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +6 -0
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +4 -0
- package/node_modules/@smithy/uuid/dist-es/index.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.js +2 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/v4.js +31 -0
- package/node_modules/@smithy/uuid/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +2 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +2 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +19 -0
- package/node_modules/@smithy/uuid/dist-types/v4.d.ts +19 -0
- package/node_modules/@smithy/uuid/package.json +66 -0
- package/node_modules/@standard-schema/spec/LICENSE +21 -0
- package/node_modules/@standard-schema/spec/README.md +198 -0
- package/node_modules/@standard-schema/spec/dist/index.cjs +18 -0
- package/node_modules/@standard-schema/spec/dist/index.d.cts +119 -0
- package/node_modules/@standard-schema/spec/dist/index.d.ts +119 -0
- package/node_modules/@standard-schema/spec/dist/index.js +0 -0
- package/node_modules/@standard-schema/spec/package.json +52 -0
- package/node_modules/@types/aws-lambda/LICENSE +21 -0
- package/node_modules/@types/aws-lambda/README.md +15 -0
- package/node_modules/@types/aws-lambda/common/api-gateway.d.ts +85 -0
- package/node_modules/@types/aws-lambda/common/cloudfront.d.ts +245 -0
- package/node_modules/@types/aws-lambda/handler.d.ts +268 -0
- package/node_modules/@types/aws-lambda/index.d.ts +54 -0
- package/node_modules/@types/aws-lambda/package.json +226 -0
- package/node_modules/@types/aws-lambda/trigger/alb.d.ts +48 -0
- package/node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts +38 -0
- package/node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts +246 -0
- package/node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts +336 -0
- package/node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts +121 -0
- package/node_modules/@types/aws-lambda/trigger/autoscaling.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts +158 -0
- package/node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts +236 -0
- package/node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts +23 -0
- package/node_modules/@types/aws-lambda/trigger/cloudwatch-alarm.d.ts +69 -0
- package/node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts +8 -0
- package/node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts +37 -0
- package/node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts +104 -0
- package/node_modules/@types/aws-lambda/trigger/codecommit.d.ts +35 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts +31 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts +32 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts +23 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts +11 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline.d.ts +55 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts +81 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts +52 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts +51 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts +21 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts +130 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts +15 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts +26 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts +16 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts +31 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts +73 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v3.d.ts +50 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts +53 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts +40 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts +64 -0
- package/node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts +63 -0
- package/node_modules/@types/aws-lambda/trigger/eventbridge.d.ts +19 -0
- package/node_modules/@types/aws-lambda/trigger/guard-duty-event-notification.d.ts +36 -0
- package/node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts +48 -0
- package/node_modules/@types/aws-lambda/trigger/iot.d.ts +28 -0
- package/node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts +51 -0
- package/node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts +56 -0
- package/node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts +45 -0
- package/node_modules/@types/aws-lambda/trigger/lex-v2.d.ts +164 -0
- package/node_modules/@types/aws-lambda/trigger/lex.d.ts +120 -0
- package/node_modules/@types/aws-lambda/trigger/msk.d.ts +28 -0
- package/node_modules/@types/aws-lambda/trigger/s3-batch.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts +290 -0
- package/node_modules/@types/aws-lambda/trigger/s3.d.ts +60 -0
- package/node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts +15 -0
- package/node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts +27 -0
- package/node_modules/@types/aws-lambda/trigger/ses.d.ts +109 -0
- package/node_modules/@types/aws-lambda/trigger/sns.d.ts +39 -0
- package/node_modules/@types/aws-lambda/trigger/sqs.d.ts +58 -0
- package/node_modules/@types/aws-lambda/trigger/transfer-family-authorizer.d.ts +110 -0
- package/node_modules/bowser/CHANGELOG.md +218 -0
- package/node_modules/bowser/LICENSE +39 -0
- package/node_modules/bowser/README.md +177 -0
- package/node_modules/bowser/bundled.js +1 -0
- package/node_modules/bowser/es5.js +1 -0
- package/node_modules/bowser/index.d.ts +315 -0
- package/node_modules/bowser/package.json +88 -0
- package/node_modules/bowser/src/bowser.js +77 -0
- package/node_modules/bowser/src/constants.js +169 -0
- package/node_modules/bowser/src/parser-browsers.js +1094 -0
- package/node_modules/bowser/src/parser-engines.js +120 -0
- package/node_modules/bowser/src/parser-os.js +211 -0
- package/node_modules/bowser/src/parser-platforms.js +524 -0
- package/node_modules/bowser/src/parser.js +511 -0
- package/node_modules/bowser/src/utils.js +327 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +671 -0
- package/node_modules/fast-xml-parser/LICENSE +21 -0
- package/node_modules/fast-xml-parser/README.md +223 -0
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.d.cts +458 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -0
- package/node_modules/fast-xml-parser/package.json +90 -0
- package/node_modules/fast-xml-parser/src/cli/cli.js +97 -0
- package/node_modules/fast-xml-parser/src/cli/man.js +17 -0
- package/node_modules/fast-xml-parser/src/cli/read.js +43 -0
- package/node_modules/fast-xml-parser/src/fxp.d.ts +445 -0
- package/node_modules/fast-xml-parser/src/fxp.js +14 -0
- package/node_modules/fast-xml-parser/src/ignoreAttributes.js +18 -0
- package/node_modules/fast-xml-parser/src/util.js +68 -0
- package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
- package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +104 -0
- package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +61 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +69 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +103 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +100 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +154 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +94 -0
- package/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
- package/node_modules/fast-xml-parser/src/v6/TagPath.js +81 -0
- package/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +13 -0
- package/node_modules/fast-xml-parser/src/v6/XMLParser.js +83 -0
- package/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +235 -0
- package/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +210 -0
- package/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +111 -0
- package/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +116 -0
- package/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +121 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +105 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +22 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +19 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +38 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +13 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +14 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +6 -0
- package/node_modules/fast-xml-parser/src/validator.js +425 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +285 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +134 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +369 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +46 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +606 -0
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +71 -0
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +119 -0
- package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +40 -0
- package/node_modules/mnemonist/LICENSE.txt +21 -0
- package/node_modules/mnemonist/README.md +112 -0
- package/node_modules/mnemonist/bi-map.d.ts +46 -0
- package/node_modules/mnemonist/bi-map.js +195 -0
- package/node_modules/mnemonist/bit-set.d.ts +29 -0
- package/node_modules/mnemonist/bit-set.js +379 -0
- package/node_modules/mnemonist/bit-vector.d.ts +42 -0
- package/node_modules/mnemonist/bit-vector.js +550 -0
- package/node_modules/mnemonist/bk-tree.d.ts +24 -0
- package/node_modules/mnemonist/bk-tree.js +180 -0
- package/node_modules/mnemonist/bloom-filter.d.ts +29 -0
- package/node_modules/mnemonist/bloom-filter.js +186 -0
- package/node_modules/mnemonist/circular-buffer.d.ts +34 -0
- package/node_modules/mnemonist/circular-buffer.js +131 -0
- package/node_modules/mnemonist/critbit-tree-map.js +515 -0
- package/node_modules/mnemonist/default-map.d.ts +29 -0
- package/node_modules/mnemonist/default-map.js +162 -0
- package/node_modules/mnemonist/default-weak-map.d.ts +18 -0
- package/node_modules/mnemonist/default-weak-map.js +108 -0
- package/node_modules/mnemonist/fibonacci-heap.d.ts +65 -0
- package/node_modules/mnemonist/fibonacci-heap.js +320 -0
- package/node_modules/mnemonist/fixed-critbit-tree-map.js +427 -0
- package/node_modules/mnemonist/fixed-deque.d.ts +34 -0
- package/node_modules/mnemonist/fixed-deque.js +351 -0
- package/node_modules/mnemonist/fixed-reverse-heap.d.ts +25 -0
- package/node_modules/mnemonist/fixed-reverse-heap.js +209 -0
- package/node_modules/mnemonist/fixed-stack.d.ts +36 -0
- package/node_modules/mnemonist/fixed-stack.js +242 -0
- package/node_modules/mnemonist/fuzzy-map.d.ts +33 -0
- package/node_modules/mnemonist/fuzzy-map.js +185 -0
- package/node_modules/mnemonist/fuzzy-multi-map.d.ts +36 -0
- package/node_modules/mnemonist/fuzzy-multi-map.js +196 -0
- package/node_modules/mnemonist/hashed-array-tree.d.ts +32 -0
- package/node_modules/mnemonist/hashed-array-tree.js +209 -0
- package/node_modules/mnemonist/heap.d.ts +84 -0
- package/node_modules/mnemonist/heap.js +576 -0
- package/node_modules/mnemonist/index.d.ts +46 -0
- package/node_modules/mnemonist/index.js +56 -0
- package/node_modules/mnemonist/inverted-index.d.ts +33 -0
- package/node_modules/mnemonist/inverted-index.js +249 -0
- package/node_modules/mnemonist/kd-tree.d.ts +25 -0
- package/node_modules/mnemonist/kd-tree.js +447 -0
- package/node_modules/mnemonist/linked-list.d.ts +29 -0
- package/node_modules/mnemonist/linked-list.js +261 -0
- package/node_modules/mnemonist/lru-cache.d.ts +43 -0
- package/node_modules/mnemonist/lru-cache.js +433 -0
- package/node_modules/mnemonist/lru-map.d.ts +43 -0
- package/node_modules/mnemonist/lru-map.js +258 -0
- package/node_modules/mnemonist/multi-array.js +447 -0
- package/node_modules/mnemonist/multi-map.d.ts +47 -0
- package/node_modules/mnemonist/multi-map.js +408 -0
- package/node_modules/mnemonist/multi-set.d.ts +37 -0
- package/node_modules/mnemonist/multi-set.js +440 -0
- package/node_modules/mnemonist/package.json +119 -0
- package/node_modules/mnemonist/passjoin-index.d.ts +54 -0
- package/node_modules/mnemonist/passjoin-index.js +518 -0
- package/node_modules/mnemonist/queue.d.ts +27 -0
- package/node_modules/mnemonist/queue.js +215 -0
- package/node_modules/mnemonist/semi-dynamic-trie.js +251 -0
- package/node_modules/mnemonist/set.d.ts +18 -0
- package/node_modules/mnemonist/set.js +356 -0
- package/node_modules/mnemonist/sort/insertion.d.ts +4 -0
- package/node_modules/mnemonist/sort/insertion.js +50 -0
- package/node_modules/mnemonist/sort/quick.d.ts +4 -0
- package/node_modules/mnemonist/sort/quick.js +116 -0
- package/node_modules/mnemonist/sparse-map.d.ts +26 -0
- package/node_modules/mnemonist/sparse-map.js +243 -0
- package/node_modules/mnemonist/sparse-queue-set.d.ts +24 -0
- package/node_modules/mnemonist/sparse-queue-set.js +218 -0
- package/node_modules/mnemonist/sparse-set.d.ts +23 -0
- package/node_modules/mnemonist/sparse-set.js +168 -0
- package/node_modules/mnemonist/stack.d.ts +27 -0
- package/node_modules/mnemonist/stack.js +210 -0
- package/node_modules/mnemonist/static-disjoint-set.d.ts +23 -0
- package/node_modules/mnemonist/static-disjoint-set.js +195 -0
- package/node_modules/mnemonist/static-interval-tree.d.ts +24 -0
- package/node_modules/mnemonist/static-interval-tree.js +387 -0
- package/node_modules/mnemonist/suffix-array.d.ts +37 -0
- package/node_modules/mnemonist/suffix-array.js +352 -0
- package/node_modules/mnemonist/symspell.d.ts +33 -0
- package/node_modules/mnemonist/symspell.js +547 -0
- package/node_modules/mnemonist/trie-map.d.ts +30 -0
- package/node_modules/mnemonist/trie-map.js +477 -0
- package/node_modules/mnemonist/trie.d.ts +26 -0
- package/node_modules/mnemonist/trie.js +167 -0
- package/node_modules/mnemonist/utils/binary-search.js +216 -0
- package/node_modules/mnemonist/utils/bitwise.js +109 -0
- package/node_modules/mnemonist/utils/comparators.js +79 -0
- package/node_modules/mnemonist/utils/hash-tables.js +107 -0
- package/node_modules/mnemonist/utils/iterables.js +93 -0
- package/node_modules/mnemonist/utils/merge.js +563 -0
- package/node_modules/mnemonist/utils/murmurhash3.js +87 -0
- package/node_modules/mnemonist/utils/typed-arrays.js +187 -0
- package/node_modules/mnemonist/utils/types.d.ts +16 -0
- package/node_modules/mnemonist/vector.d.ts +81 -0
- package/node_modules/mnemonist/vector.js +373 -0
- package/node_modules/mnemonist/vp-tree.d.ts +27 -0
- package/node_modules/mnemonist/vp-tree.js +367 -0
- package/node_modules/obliterator/LICENSE.txt +21 -0
- package/node_modules/obliterator/README.md +321 -0
- package/node_modules/obliterator/chain.d.ts +3 -0
- package/node_modules/obliterator/chain.js +39 -0
- package/node_modules/obliterator/combinations.d.ts +3 -0
- package/node_modules/obliterator/combinations.js +76 -0
- package/node_modules/obliterator/consume.d.ts +1 -0
- package/node_modules/obliterator/consume.js +32 -0
- package/node_modules/obliterator/filter.d.ts +5 -0
- package/node_modules/obliterator/filter.js +28 -0
- package/node_modules/obliterator/foreach.d.ts +1 -0
- package/node_modules/obliterator/foreach.js +156 -0
- package/node_modules/obliterator/index.d.ts +14 -0
- package/node_modules/obliterator/index.js +22 -0
- package/node_modules/obliterator/iterator.d.ts +19 -0
- package/node_modules/obliterator/iterator.js +104 -0
- package/node_modules/obliterator/map.d.ts +5 -0
- package/node_modules/obliterator/map.js +27 -0
- package/node_modules/obliterator/match.d.ts +3 -0
- package/node_modules/obliterator/match.js +42 -0
- package/node_modules/obliterator/package.json +45 -0
- package/node_modules/obliterator/permutations.d.ts +3 -0
- package/node_modules/obliterator/permutations.js +96 -0
- package/node_modules/obliterator/power-set.d.ts +3 -0
- package/node_modules/obliterator/power-set.js +28 -0
- package/node_modules/obliterator/range.d.ts +5 -0
- package/node_modules/obliterator/range.js +45 -0
- package/node_modules/obliterator/split.d.ts +3 -0
- package/node_modules/obliterator/split.js +68 -0
- package/node_modules/obliterator/take-into.d.ts +5 -0
- package/node_modules/obliterator/take-into.js +40 -0
- package/node_modules/obliterator/take.d.ts +3 -0
- package/node_modules/obliterator/take.js +40 -0
- package/node_modules/strnum/.github/SECURITY.md +5 -0
- package/node_modules/strnum/.vscode/launch.json +25 -0
- package/node_modules/strnum/CHANGELOG.md +33 -0
- package/node_modules/strnum/LICENSE +21 -0
- package/node_modules/strnum/README.md +103 -0
- package/node_modules/strnum/algo.stflow +84 -0
- package/node_modules/strnum/package.json +31 -0
- package/node_modules/strnum/strnum.js +129 -0
- package/node_modules/strnum/strnum.test.js +173 -0
- package/node_modules/strnum/test.js +9 -0
- package/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/tslib/README.md +164 -0
- package/node_modules/tslib/SECURITY.md +41 -0
- package/node_modules/tslib/modules/index.d.ts +38 -0
- package/node_modules/tslib/modules/index.js +70 -0
- package/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/tslib/package.json +47 -0
- package/node_modules/tslib/tslib.d.ts +460 -0
- package/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/tslib/tslib.es6.js +402 -0
- package/node_modules/tslib/tslib.es6.mjs +401 -0
- package/node_modules/tslib/tslib.html +1 -0
- package/node_modules/tslib/tslib.js +484 -0
- package/node_modules/zod/LICENSE +21 -0
- package/node_modules/zod/README.md +208 -0
- package/node_modules/zod/index.cjs +33 -0
- package/node_modules/zod/index.d.cts +4 -0
- package/node_modules/zod/index.d.ts +4 -0
- package/node_modules/zod/index.js +4 -0
- package/node_modules/zod/package.json +118 -0
- package/node_modules/zod/src/index.ts +4 -0
- package/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/node_modules/zod/src/v3/errors.ts +13 -0
- package/node_modules/zod/src/v3/external.ts +6 -0
- package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/node_modules/zod/src/v3/index.ts +4 -0
- package/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/node_modules/zod/src/v3/types.ts +5136 -0
- package/node_modules/zod/src/v4/classic/checks.ts +30 -0
- package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/node_modules/zod/src/v4/classic/compat.ts +66 -0
- package/node_modules/zod/src/v4/classic/errors.ts +75 -0
- package/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/node_modules/zod/src/v4/classic/parse.ts +33 -0
- package/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
- package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
- package/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
- package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
- package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
- package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
- package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
- package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
- package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
- package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
- package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
- package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
- package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
- package/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
- package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/node_modules/zod/src/v4/core/api.ts +1594 -0
- package/node_modules/zod/src/v4/core/checks.ts +1283 -0
- package/node_modules/zod/src/v4/core/config.ts +15 -0
- package/node_modules/zod/src/v4/core/core.ts +134 -0
- package/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/node_modules/zod/src/v4/core/errors.ts +424 -0
- package/node_modules/zod/src/v4/core/function.ts +176 -0
- package/node_modules/zod/src/v4/core/index.ts +15 -0
- package/node_modules/zod/src/v4/core/json-schema.ts +143 -0
- package/node_modules/zod/src/v4/core/parse.ts +94 -0
- package/node_modules/zod/src/v4/core/regexes.ts +135 -0
- package/node_modules/zod/src/v4/core/registries.ts +96 -0
- package/node_modules/zod/src/v4/core/schemas.ts +3842 -0
- package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
- package/node_modules/zod/src/v4/core/util.ts +775 -0
- package/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/node_modules/zod/src/v4/index.ts +4 -0
- package/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/node_modules/zod/src/v4/locales/es.ts +125 -0
- package/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/node_modules/zod/src/v4/locales/index.ts +39 -0
- package/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/node_modules/zod/src/v4/locales/kh.ts +126 -0
- package/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/node_modules/zod/src/v4/locales/ua.ts +126 -0
- package/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/node_modules/zod/src/v4/mini/parse.ts +1 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
- package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
- package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
- package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
- package/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/node_modules/zod/v3/ZodError.cjs +138 -0
- package/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/node_modules/zod/v3/ZodError.js +133 -0
- package/node_modules/zod/v3/errors.cjs +17 -0
- package/node_modules/zod/v3/errors.d.cts +5 -0
- package/node_modules/zod/v3/errors.d.ts +5 -0
- package/node_modules/zod/v3/errors.js +9 -0
- package/node_modules/zod/v3/external.cjs +22 -0
- package/node_modules/zod/v3/external.d.cts +6 -0
- package/node_modules/zod/v3/external.d.ts +6 -0
- package/node_modules/zod/v3/external.js +6 -0
- package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/node_modules/zod/v3/helpers/util.js +133 -0
- package/node_modules/zod/v3/index.cjs +33 -0
- package/node_modules/zod/v3/index.d.cts +4 -0
- package/node_modules/zod/v3/index.d.ts +4 -0
- package/node_modules/zod/v3/index.js +4 -0
- package/node_modules/zod/v3/locales/en.cjs +111 -0
- package/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/node_modules/zod/v3/locales/en.js +109 -0
- package/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/node_modules/zod/v3/standard-schema.js +1 -0
- package/node_modules/zod/v3/types.cjs +3775 -0
- package/node_modules/zod/v3/types.d.cts +1031 -0
- package/node_modules/zod/v3/types.d.ts +1031 -0
- package/node_modules/zod/v3/types.js +3693 -0
- package/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/node_modules/zod/v4/classic/checks.js +1 -0
- package/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/node_modules/zod/v4/classic/coerce.js +17 -0
- package/node_modules/zod/v4/classic/compat.cjs +57 -0
- package/node_modules/zod/v4/classic/compat.d.cts +46 -0
- package/node_modules/zod/v4/classic/compat.d.ts +46 -0
- package/node_modules/zod/v4/classic/compat.js +27 -0
- package/node_modules/zod/v4/classic/errors.cjs +67 -0
- package/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/node_modules/zod/v4/classic/errors.js +41 -0
- package/node_modules/zod/v4/classic/external.cjs +70 -0
- package/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/node_modules/zod/v4/classic/external.js +18 -0
- package/node_modules/zod/v4/classic/index.cjs +33 -0
- package/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/node_modules/zod/v4/classic/index.js +4 -0
- package/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/node_modules/zod/v4/classic/iso.js +30 -0
- package/node_modules/zod/v4/classic/parse.cjs +32 -0
- package/node_modules/zod/v4/classic/parse.d.cts +23 -0
- package/node_modules/zod/v4/classic/parse.d.ts +23 -0
- package/node_modules/zod/v4/classic/parse.js +6 -0
- package/node_modules/zod/v4/classic/schemas.cjs +1109 -0
- package/node_modules/zod/v4/classic/schemas.d.cts +630 -0
- package/node_modules/zod/v4/classic/schemas.d.ts +630 -0
- package/node_modules/zod/v4/classic/schemas.js +1006 -0
- package/node_modules/zod/v4/core/api.cjs +1039 -0
- package/node_modules/zod/v4/core/api.d.cts +284 -0
- package/node_modules/zod/v4/core/api.d.ts +284 -0
- package/node_modules/zod/v4/core/api.js +906 -0
- package/node_modules/zod/v4/core/checks.cjs +591 -0
- package/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/node_modules/zod/v4/core/checks.js +565 -0
- package/node_modules/zod/v4/core/core.cjs +67 -0
- package/node_modules/zod/v4/core/core.d.cts +49 -0
- package/node_modules/zod/v4/core/core.d.ts +49 -0
- package/node_modules/zod/v4/core/core.js +61 -0
- package/node_modules/zod/v4/core/doc.cjs +39 -0
- package/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/node_modules/zod/v4/core/doc.js +35 -0
- package/node_modules/zod/v4/core/errors.cjs +226 -0
- package/node_modules/zod/v4/core/errors.d.cts +208 -0
- package/node_modules/zod/v4/core/errors.d.ts +208 -0
- package/node_modules/zod/v4/core/errors.js +195 -0
- package/node_modules/zod/v4/core/function.cjs +102 -0
- package/node_modules/zod/v4/core/function.d.cts +52 -0
- package/node_modules/zod/v4/core/function.d.ts +52 -0
- package/node_modules/zod/v4/core/function.js +75 -0
- package/node_modules/zod/v4/core/index.cjs +44 -0
- package/node_modules/zod/v4/core/index.d.cts +15 -0
- package/node_modules/zod/v4/core/index.d.ts +15 -0
- package/node_modules/zod/v4/core/index.js +15 -0
- package/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/node_modules/zod/v4/core/json-schema.d.cts +87 -0
- package/node_modules/zod/v4/core/json-schema.d.ts +87 -0
- package/node_modules/zod/v4/core/json-schema.js +1 -0
- package/node_modules/zod/v4/core/parse.cjs +87 -0
- package/node_modules/zod/v4/core/parse.d.cts +25 -0
- package/node_modules/zod/v4/core/parse.d.ts +25 -0
- package/node_modules/zod/v4/core/parse.js +57 -0
- package/node_modules/zod/v4/core/regexes.cjs +103 -0
- package/node_modules/zod/v4/core/regexes.d.cts +62 -0
- package/node_modules/zod/v4/core/regexes.d.ts +62 -0
- package/node_modules/zod/v4/core/regexes.js +95 -0
- package/node_modules/zod/v4/core/registries.cjs +56 -0
- package/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/node_modules/zod/v4/core/registries.js +51 -0
- package/node_modules/zod/v4/core/schemas.cjs +1748 -0
- package/node_modules/zod/v4/core/schemas.d.cts +1041 -0
- package/node_modules/zod/v4/core/schemas.d.ts +1041 -0
- package/node_modules/zod/v4/core/schemas.js +1717 -0
- package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
- package/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.js +849 -0
- package/node_modules/zod/v4/core/util.cjs +539 -0
- package/node_modules/zod/v4/core/util.d.cts +183 -0
- package/node_modules/zod/v4/core/util.d.ts +183 -0
- package/node_modules/zod/v4/core/util.js +493 -0
- package/node_modules/zod/v4/core/versions.cjs +8 -0
- package/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/node_modules/zod/v4/core/versions.js +5 -0
- package/node_modules/zod/v4/index.cjs +22 -0
- package/node_modules/zod/v4/index.d.cts +3 -0
- package/node_modules/zod/v4/index.d.ts +3 -0
- package/node_modules/zod/v4/index.js +3 -0
- package/node_modules/zod/v4/locales/ar.cjs +142 -0
- package/node_modules/zod/v4/locales/ar.d.cts +4 -0
- package/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/node_modules/zod/v4/locales/ar.js +116 -0
- package/node_modules/zod/v4/locales/az.cjs +141 -0
- package/node_modules/zod/v4/locales/az.d.cts +4 -0
- package/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/node_modules/zod/v4/locales/az.js +115 -0
- package/node_modules/zod/v4/locales/be.cjs +190 -0
- package/node_modules/zod/v4/locales/be.d.cts +4 -0
- package/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/node_modules/zod/v4/locales/be.js +164 -0
- package/node_modules/zod/v4/locales/ca.cjs +144 -0
- package/node_modules/zod/v4/locales/ca.d.cts +4 -0
- package/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/node_modules/zod/v4/locales/ca.js +118 -0
- package/node_modules/zod/v4/locales/cs.cjs +161 -0
- package/node_modules/zod/v4/locales/cs.d.cts +4 -0
- package/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/node_modules/zod/v4/locales/cs.js +135 -0
- package/node_modules/zod/v4/locales/de.cjs +142 -0
- package/node_modules/zod/v4/locales/de.d.cts +4 -0
- package/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/node_modules/zod/v4/locales/de.js +116 -0
- package/node_modules/zod/v4/locales/en.cjs +145 -0
- package/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/node_modules/zod/v4/locales/en.js +117 -0
- package/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/node_modules/zod/v4/locales/eo.js +116 -0
- package/node_modules/zod/v4/locales/es.cjs +143 -0
- package/node_modules/zod/v4/locales/es.d.cts +4 -0
- package/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/node_modules/zod/v4/locales/es.js +117 -0
- package/node_modules/zod/v4/locales/fa.cjs +148 -0
- package/node_modules/zod/v4/locales/fa.d.cts +4 -0
- package/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/node_modules/zod/v4/locales/fa.js +122 -0
- package/node_modules/zod/v4/locales/fi.cjs +148 -0
- package/node_modules/zod/v4/locales/fi.d.cts +4 -0
- package/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/node_modules/zod/v4/locales/fi.js +122 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
- package/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/node_modules/zod/v4/locales/fr.cjs +142 -0
- package/node_modules/zod/v4/locales/fr.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr.js +116 -0
- package/node_modules/zod/v4/locales/he.cjs +143 -0
- package/node_modules/zod/v4/locales/he.d.cts +4 -0
- package/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/node_modules/zod/v4/locales/he.js +117 -0
- package/node_modules/zod/v4/locales/hu.cjs +143 -0
- package/node_modules/zod/v4/locales/hu.d.cts +4 -0
- package/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/node_modules/zod/v4/locales/hu.js +117 -0
- package/node_modules/zod/v4/locales/id.cjs +142 -0
- package/node_modules/zod/v4/locales/id.d.cts +4 -0
- package/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/node_modules/zod/v4/locales/id.js +116 -0
- package/node_modules/zod/v4/locales/index.cjs +84 -0
- package/node_modules/zod/v4/locales/index.d.cts +39 -0
- package/node_modules/zod/v4/locales/index.d.ts +39 -0
- package/node_modules/zod/v4/locales/index.js +39 -0
- package/node_modules/zod/v4/locales/it.cjs +143 -0
- package/node_modules/zod/v4/locales/it.d.cts +4 -0
- package/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/node_modules/zod/v4/locales/it.js +117 -0
- package/node_modules/zod/v4/locales/ja.cjs +141 -0
- package/node_modules/zod/v4/locales/ja.d.cts +4 -0
- package/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/node_modules/zod/v4/locales/ja.js +115 -0
- package/node_modules/zod/v4/locales/kh.cjs +143 -0
- package/node_modules/zod/v4/locales/kh.d.cts +4 -0
- package/node_modules/zod/v4/locales/kh.d.ts +4 -0
- package/node_modules/zod/v4/locales/kh.js +117 -0
- package/node_modules/zod/v4/locales/ko.cjs +147 -0
- package/node_modules/zod/v4/locales/ko.d.cts +4 -0
- package/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/node_modules/zod/v4/locales/ko.js +121 -0
- package/node_modules/zod/v4/locales/mk.cjs +144 -0
- package/node_modules/zod/v4/locales/mk.d.cts +4 -0
- package/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/node_modules/zod/v4/locales/mk.js +118 -0
- package/node_modules/zod/v4/locales/ms.cjs +142 -0
- package/node_modules/zod/v4/locales/ms.d.cts +4 -0
- package/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/node_modules/zod/v4/locales/ms.js +116 -0
- package/node_modules/zod/v4/locales/nl.cjs +143 -0
- package/node_modules/zod/v4/locales/nl.d.cts +4 -0
- package/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/node_modules/zod/v4/locales/nl.js +117 -0
- package/node_modules/zod/v4/locales/no.cjs +142 -0
- package/node_modules/zod/v4/locales/no.d.cts +4 -0
- package/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/node_modules/zod/v4/locales/no.js +116 -0
- package/node_modules/zod/v4/locales/ota.cjs +143 -0
- package/node_modules/zod/v4/locales/ota.d.cts +4 -0
- package/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/node_modules/zod/v4/locales/ota.js +117 -0
- package/node_modules/zod/v4/locales/pl.cjs +143 -0
- package/node_modules/zod/v4/locales/pl.d.cts +4 -0
- package/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/node_modules/zod/v4/locales/pl.js +117 -0
- package/node_modules/zod/v4/locales/ps.cjs +148 -0
- package/node_modules/zod/v4/locales/ps.d.cts +4 -0
- package/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/node_modules/zod/v4/locales/ps.js +122 -0
- package/node_modules/zod/v4/locales/pt.cjs +142 -0
- package/node_modules/zod/v4/locales/pt.d.cts +4 -0
- package/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/node_modules/zod/v4/locales/pt.js +116 -0
- package/node_modules/zod/v4/locales/ru.cjs +190 -0
- package/node_modules/zod/v4/locales/ru.d.cts +4 -0
- package/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/node_modules/zod/v4/locales/ru.js +164 -0
- package/node_modules/zod/v4/locales/sl.cjs +143 -0
- package/node_modules/zod/v4/locales/sl.d.cts +4 -0
- package/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/node_modules/zod/v4/locales/sl.js +117 -0
- package/node_modules/zod/v4/locales/sv.cjs +144 -0
- package/node_modules/zod/v4/locales/sv.d.cts +4 -0
- package/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/node_modules/zod/v4/locales/sv.js +118 -0
- package/node_modules/zod/v4/locales/ta.cjs +143 -0
- package/node_modules/zod/v4/locales/ta.d.cts +4 -0
- package/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/node_modules/zod/v4/locales/ta.js +117 -0
- package/node_modules/zod/v4/locales/th.cjs +143 -0
- package/node_modules/zod/v4/locales/th.d.cts +4 -0
- package/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/node_modules/zod/v4/locales/th.js +117 -0
- package/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/node_modules/zod/v4/locales/tr.js +115 -0
- package/node_modules/zod/v4/locales/ua.cjs +143 -0
- package/node_modules/zod/v4/locales/ua.d.cts +4 -0
- package/node_modules/zod/v4/locales/ua.d.ts +4 -0
- package/node_modules/zod/v4/locales/ua.js +117 -0
- package/node_modules/zod/v4/locales/ur.cjs +143 -0
- package/node_modules/zod/v4/locales/ur.d.cts +4 -0
- package/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/node_modules/zod/v4/locales/ur.js +117 -0
- package/node_modules/zod/v4/locales/vi.cjs +142 -0
- package/node_modules/zod/v4/locales/vi.d.cts +4 -0
- package/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/node_modules/zod/v4/locales/vi.js +116 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
- package/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
- package/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/node_modules/zod/v4/mini/checks.js +1 -0
- package/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/node_modules/zod/v4/mini/coerce.js +17 -0
- package/node_modules/zod/v4/mini/external.cjs +62 -0
- package/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/node_modules/zod/v4/mini/external.js +13 -0
- package/node_modules/zod/v4/mini/index.cjs +32 -0
- package/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/node_modules/zod/v4/mini/index.js +3 -0
- package/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/node_modules/zod/v4/mini/iso.js +30 -0
- package/node_modules/zod/v4/mini/parse.cjs +8 -0
- package/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/node_modules/zod/v4/mini/parse.js +1 -0
- package/node_modules/zod/v4/mini/schemas.cjs +839 -0
- package/node_modules/zod/v4/mini/schemas.d.cts +356 -0
- package/node_modules/zod/v4/mini/schemas.d.ts +356 -0
- package/node_modules/zod/v4/mini/schemas.js +732 -0
- package/node_modules/zod/v4-mini/index.cjs +17 -0
- package/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/node_modules/zod/v4-mini/index.js +1 -0
- package/package.json +51 -7
- package/renovate.json5 +3 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
2
|
+
import { Construct } from 'constructs';
|
|
3
|
+
/**
|
|
4
|
+
* Props for PreTokenFunction
|
|
5
|
+
*/
|
|
6
|
+
export interface PreTokenFunctionProps extends lambda.FunctionOptions {
|
|
7
|
+
/**
|
|
8
|
+
* The Lambda runtime to use.
|
|
9
|
+
* @default - Latest Node.js runtime available in the deployment region
|
|
10
|
+
*/
|
|
11
|
+
readonly runtime?: lambda.Runtime;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* An AWS Lambda function which executes src/constructs/api-keys/lambdas/pre-token.
|
|
15
|
+
*/
|
|
16
|
+
export declare class PreTokenFunction extends lambda.Function {
|
|
17
|
+
constructor(scope: Construct, id: string, props?: PreTokenFunctionProps);
|
|
18
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PreTokenFunction = void 0;
|
|
4
|
+
// ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
|
|
5
|
+
const path = require("path");
|
|
6
|
+
const lambda = require("aws-cdk-lib/aws-lambda");
|
|
7
|
+
const aws_lambda_1 = require("aws-cdk-lib/aws-lambda");
|
|
8
|
+
/**
|
|
9
|
+
* An AWS Lambda function which executes src/constructs/api-keys/lambdas/pre-token.
|
|
10
|
+
*/
|
|
11
|
+
class PreTokenFunction extends lambda.Function {
|
|
12
|
+
constructor(scope, id, props) {
|
|
13
|
+
super(scope, id, {
|
|
14
|
+
description: 'src/constructs/api-keys/lambdas/pre-token.lambda.ts',
|
|
15
|
+
...props,
|
|
16
|
+
runtime: props?.runtime ?? (0, aws_lambda_1.determineLatestNodeRuntime)(scope),
|
|
17
|
+
handler: 'index.handler',
|
|
18
|
+
code: lambda.Code.fromAsset(path.join(__dirname, '../../../../assets/constructs/api-keys/lambdas/pre-token.lambda')),
|
|
19
|
+
});
|
|
20
|
+
this.addEnvironment('AWS_NODEJS_CONNECTION_REUSE_ENABLED', '1', { removeInEdge: true });
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.PreTokenFunction = PreTokenFunction;
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJlLXRva2VuLWZ1bmN0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2NvbnN0cnVjdHMvYXBpLWtleXMvbGFtYmRhcy9wcmUtdG9rZW4tZnVuY3Rpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsNkVBQTZFO0FBQzdFLDZCQUE2QjtBQUM3QixpREFBaUQ7QUFDakQsdURBQW9FO0FBY3BFOztHQUVHO0FBQ0gsTUFBYSxnQkFBaUIsU0FBUSxNQUFNLENBQUMsUUFBUTtJQUNuRCxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQTZCO1FBQ3JFLEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxFQUFFO1lBQ2YsV0FBVyxFQUFFLHFEQUFxRDtZQUNsRSxHQUFHLEtBQUs7WUFDUixPQUFPLEVBQUUsS0FBSyxFQUFFLE9BQU8sSUFBSSxJQUFBLHVDQUEwQixFQUFDLEtBQUssQ0FBQztZQUM1RCxPQUFPLEVBQUUsZUFBZTtZQUN4QixJQUFJLEVBQUUsTUFBTSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsaUVBQWlFLENBQUMsQ0FBQztTQUNySCxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsY0FBYyxDQUFDLHFDQUFxQyxFQUFFLEdBQUcsRUFBRSxFQUFFLFlBQVksRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQzFGLENBQUM7Q0FDRjtBQVhELDRDQVdDIiwic291cmNlc0NvbnRlbnQiOlsiLy8gfn4gR2VuZXJhdGVkIGJ5IHByb2plbi4gVG8gbW9kaWZ5LCBlZGl0IC5wcm9qZW5yYy50cyBhbmQgcnVuIFwibnB4IHByb2plblwiLlxuaW1wb3J0ICogYXMgcGF0aCBmcm9tICdwYXRoJztcbmltcG9ydCAqIGFzIGxhbWJkYSBmcm9tICdhd3MtY2RrLWxpYi9hd3MtbGFtYmRhJztcbmltcG9ydCB7IGRldGVybWluZUxhdGVzdE5vZGVSdW50aW1lIH0gZnJvbSAnYXdzLWNkay1saWIvYXdzLWxhbWJkYSc7XG5pbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcblxuLyoqXG4gKiBQcm9wcyBmb3IgUHJlVG9rZW5GdW5jdGlvblxuICovXG5leHBvcnQgaW50ZXJmYWNlIFByZVRva2VuRnVuY3Rpb25Qcm9wcyBleHRlbmRzIGxhbWJkYS5GdW5jdGlvbk9wdGlvbnMge1xuICAvKipcbiAgICogVGhlIExhbWJkYSBydW50aW1lIHRvIHVzZS5cbiAgICogQGRlZmF1bHQgLSBMYXRlc3QgTm9kZS5qcyBydW50aW1lIGF2YWlsYWJsZSBpbiB0aGUgZGVwbG95bWVudCByZWdpb25cbiAgICovXG4gIHJlYWRvbmx5IHJ1bnRpbWU/OiBsYW1iZGEuUnVudGltZTtcbn1cblxuLyoqXG4gKiBBbiBBV1MgTGFtYmRhIGZ1bmN0aW9uIHdoaWNoIGV4ZWN1dGVzIHNyYy9jb25zdHJ1Y3RzL2FwaS1rZXlzL2xhbWJkYXMvcHJlLXRva2VuLlxuICovXG5leHBvcnQgY2xhc3MgUHJlVG9rZW5GdW5jdGlvbiBleHRlbmRzIGxhbWJkYS5GdW5jdGlvbiB7XG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzPzogUHJlVG9rZW5GdW5jdGlvblByb3BzKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkLCB7XG4gICAgICBkZXNjcmlwdGlvbjogJ3NyYy9jb25zdHJ1Y3RzL2FwaS1rZXlzL2xhbWJkYXMvcHJlLXRva2VuLmxhbWJkYS50cycsXG4gICAgICAuLi5wcm9wcyxcbiAgICAgIHJ1bnRpbWU6IHByb3BzPy5ydW50aW1lID8/IGRldGVybWluZUxhdGVzdE5vZGVSdW50aW1lKHNjb3BlKSxcbiAgICAgIGhhbmRsZXI6ICdpbmRleC5oYW5kbGVyJyxcbiAgICAgIGNvZGU6IGxhbWJkYS5Db2RlLmZyb21Bc3NldChwYXRoLmpvaW4oX19kaXJuYW1lLCAnLi4vLi4vLi4vLi4vYXNzZXRzL2NvbnN0cnVjdHMvYXBpLWtleXMvbGFtYmRhcy9wcmUtdG9rZW4ubGFtYmRhJykpLFxuICAgIH0pO1xuICAgIHRoaXMuYWRkRW52aXJvbm1lbnQoJ0FXU19OT0RFSlNfQ09OTkVDVElPTl9SRVVTRV9FTkFCTEVEJywgJzEnLCB7IHJlbW92ZUluRWRnZTogdHJ1ZSB9KTtcbiAgfVxufSJdfQ==
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PreTokenGenerationV3TriggerHandler } from "aws-lambda";
|
|
2
|
+
/**
|
|
3
|
+
* Lambda that overwrites attributes in the id token and access token. Do not use
|
|
4
|
+
* directly, add it to your stack via the {@link ApiKeyAccessTokenEnhancement} component.
|
|
5
|
+
* @param event The pre-token event.
|
|
6
|
+
* @returns The adjusted event.
|
|
7
|
+
*/
|
|
8
|
+
export declare const handler: PreTokenGenerationV3TriggerHandler;
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.handler = void 0;
|
|
4
|
+
const logger_1 = require("@aws-lambda-powertools/logger");
|
|
5
|
+
const client_dynamodb_1 = require("@aws-sdk/client-dynamodb");
|
|
6
|
+
const lib_dynamodb_1 = require("@aws-sdk/lib-dynamodb");
|
|
7
|
+
const zod_1 = require("zod");
|
|
8
|
+
const logger = new logger_1.Logger({
|
|
9
|
+
serviceName: "api-client-authorization.lambda",
|
|
10
|
+
logLevel: logger_1.LogLevel.INFO,
|
|
11
|
+
});
|
|
12
|
+
const API_CLIENT_PREFIX = "api:";
|
|
13
|
+
const client = new client_dynamodb_1.DynamoDBClient({});
|
|
14
|
+
const docClient = lib_dynamodb_1.DynamoDBDocumentClient.from(client);
|
|
15
|
+
const attributeSchema = zod_1.default.array(zod_1.default.object({
|
|
16
|
+
name: zod_1.default.string(),
|
|
17
|
+
apiName: zod_1.default.string(),
|
|
18
|
+
cognitoName: zod_1.default.string(),
|
|
19
|
+
defaultValue: zod_1.default.string().default(""),
|
|
20
|
+
}));
|
|
21
|
+
const attributesSchema = zod_1.default.object({
|
|
22
|
+
attributes: attributeSchema,
|
|
23
|
+
});
|
|
24
|
+
/**
|
|
25
|
+
* Lambda that overwrites attributes in the id token and access token. Do not use
|
|
26
|
+
* directly, add it to your stack via the {@link ApiKeyAccessTokenEnhancement} component.
|
|
27
|
+
* @param event The pre-token event.
|
|
28
|
+
* @returns The adjusted event.
|
|
29
|
+
*/
|
|
30
|
+
const handler = async (event) => {
|
|
31
|
+
try {
|
|
32
|
+
// ignore any non m2m calls.
|
|
33
|
+
if (event.userName !== "ClientCredentials") {
|
|
34
|
+
return event;
|
|
35
|
+
}
|
|
36
|
+
logger.info("Triggering pre-token lambda for m2m.");
|
|
37
|
+
if (!process.env.DYNAMODB_TABLE_NAME) {
|
|
38
|
+
throw new Error("DYNAMODB_TABLE_NAME environment variable is not set");
|
|
39
|
+
}
|
|
40
|
+
if (!process.env.ATTRIBUTES) {
|
|
41
|
+
throw new Error("ATTRIBUTES environment variable is not set");
|
|
42
|
+
}
|
|
43
|
+
const result = attributesSchema.safeParse(JSON.parse(process.env.ATTRIBUTES));
|
|
44
|
+
if (!result.success) {
|
|
45
|
+
throw new Error("ATTRIBUTES environment variable contains invalid JSON");
|
|
46
|
+
}
|
|
47
|
+
const { attributes } = result.data;
|
|
48
|
+
// Extract the client ID
|
|
49
|
+
const clientId = retrieveClientId(event);
|
|
50
|
+
const claims = clientId
|
|
51
|
+
? await generateApiClientClaims(clientId, attributes)
|
|
52
|
+
: generateUserClaims(event, attributes);
|
|
53
|
+
logger.debug("Claims to overwrite:", {
|
|
54
|
+
...claims,
|
|
55
|
+
});
|
|
56
|
+
event.response.claimsAndScopeOverrideDetails = {
|
|
57
|
+
idTokenGeneration: {
|
|
58
|
+
claimsToAddOrOverride: {
|
|
59
|
+
...claims,
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
accessTokenGeneration: {
|
|
63
|
+
claimsToAddOrOverride: {
|
|
64
|
+
...claims,
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
};
|
|
68
|
+
return event;
|
|
69
|
+
}
|
|
70
|
+
catch (error) {
|
|
71
|
+
logger.error("Error in pre-token generation:", error instanceof Error ? error.message : JSON.stringify(error));
|
|
72
|
+
throw error;
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
exports.handler = handler;
|
|
76
|
+
async function generateApiClientClaims(clientId, attributes) {
|
|
77
|
+
const user = API_CLIENT_PREFIX + clientId;
|
|
78
|
+
const tableName = process.env.DYNAMODB_TABLE_NAME;
|
|
79
|
+
logger.debug("Client ID:", clientId);
|
|
80
|
+
// Query DynamoDB for client information
|
|
81
|
+
const getCommand = new lib_dynamodb_1.GetCommand({
|
|
82
|
+
TableName: tableName,
|
|
83
|
+
Key: {
|
|
84
|
+
id: clientId,
|
|
85
|
+
},
|
|
86
|
+
});
|
|
87
|
+
const response = await docClient.send(getCommand);
|
|
88
|
+
if (!response.Item) {
|
|
89
|
+
throw new Error(`Client ID ${clientId} is invalid`);
|
|
90
|
+
}
|
|
91
|
+
return attributes.reduce((prev, cur) => ({
|
|
92
|
+
...prev,
|
|
93
|
+
[cur.name]: response.Item[cur.apiName] ?? cur.defaultValue,
|
|
94
|
+
}), { user });
|
|
95
|
+
}
|
|
96
|
+
function generateUserClaims(event, attributes) {
|
|
97
|
+
const user = event.request.userAttributes["cognito:username"];
|
|
98
|
+
logger.debug("User:", user);
|
|
99
|
+
return attributes.reduce((prev, cur) => ({
|
|
100
|
+
...prev,
|
|
101
|
+
[cur.name]: event.request.userAttributes[cur.cognitoName] ?? cur.defaultValue,
|
|
102
|
+
}), { user });
|
|
103
|
+
}
|
|
104
|
+
function retrieveClientId(event) {
|
|
105
|
+
const clientId = event.request.clientMetadata?.["api-key"];
|
|
106
|
+
// Remove API_CLIENT_PREFIX, if present
|
|
107
|
+
return clientId?.startsWith(API_CLIENT_PREFIX)
|
|
108
|
+
? clientId.substring(API_CLIENT_PREFIX.length)
|
|
109
|
+
: clientId;
|
|
110
|
+
}
|
|
111
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJlLXRva2VuLmxhbWJkYS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jb25zdHJ1Y3RzL2FwaS1rZXlzL2xhbWJkYXMvcHJlLXRva2VuLmxhbWJkYS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSwwREFBaUU7QUFDakUsOERBQTBEO0FBQzFELHdEQUEyRTtBQUszRSw2QkFBb0I7QUFFcEIsTUFBTSxNQUFNLEdBQUcsSUFBSSxlQUFNLENBQUM7SUFDeEIsV0FBVyxFQUFFLGlDQUFpQztJQUM5QyxRQUFRLEVBQUUsaUJBQVEsQ0FBQyxJQUFJO0NBQ3hCLENBQUMsQ0FBQztBQUNILE1BQU0saUJBQWlCLEdBQUcsTUFBTSxDQUFDO0FBRWpDLE1BQU0sTUFBTSxHQUFHLElBQUksZ0NBQWMsQ0FBQyxFQUFFLENBQUMsQ0FBQztBQUN0QyxNQUFNLFNBQVMsR0FBRyxxQ0FBc0IsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7QUFFdEQsTUFBTSxlQUFlLEdBQUcsYUFBQyxDQUFDLEtBQUssQ0FDN0IsYUFBQyxDQUFDLE1BQU0sQ0FBQztJQUNQLElBQUksRUFBRSxhQUFDLENBQUMsTUFBTSxFQUFFO0lBQ2hCLE9BQU8sRUFBRSxhQUFDLENBQUMsTUFBTSxFQUFFO0lBQ25CLFdBQVcsRUFBRSxhQUFDLENBQUMsTUFBTSxFQUFFO0lBQ3ZCLFlBQVksRUFBRSxhQUFDLENBQUMsTUFBTSxFQUFFLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQztDQUNyQyxDQUFDLENBQ0gsQ0FBQztBQUVGLE1BQU0sZ0JBQWdCLEdBQUcsYUFBQyxDQUFDLE1BQU0sQ0FBQztJQUNoQyxVQUFVLEVBQUUsZUFBZTtDQUM1QixDQUFDLENBQUM7QUFFSDs7Ozs7R0FLRztBQUNJLE1BQU0sT0FBTyxHQUF1QyxLQUFLLEVBQzlELEtBQXVDLEVBQ3ZDLEVBQUU7SUFDRixJQUFJLENBQUM7UUFDSCw0QkFBNEI7UUFDNUIsSUFBSSxLQUFLLENBQUMsUUFBUSxLQUFLLG1CQUFtQixFQUFFLENBQUM7WUFDM0MsT0FBTyxLQUFLLENBQUM7UUFDZixDQUFDO1FBRUQsTUFBTSxDQUFDLElBQUksQ0FBQyxzQ0FBc0MsQ0FBQyxDQUFDO1FBRXBELElBQUksQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLG1CQUFtQixFQUFFLENBQUM7WUFDckMsTUFBTSxJQUFJLEtBQUssQ0FBQyxxREFBcUQsQ0FBQyxDQUFDO1FBQ3pFLENBQUM7UUFDRCxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxVQUFVLEVBQUUsQ0FBQztZQUM1QixNQUFNLElBQUksS0FBSyxDQUFDLDRDQUE0QyxDQUFDLENBQUM7UUFDaEUsQ0FBQztRQUVELE1BQU0sTUFBTSxHQUFHLGdCQUFnQixDQUFDLFNBQVMsQ0FDdkMsSUFBSSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBQyxDQUNuQyxDQUFDO1FBRUYsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUNwQixNQUFNLElBQUksS0FBSyxDQUFDLHVEQUF1RCxDQUFDLENBQUM7UUFDM0UsQ0FBQztRQUVELE1BQU0sRUFBRSxVQUFVLEVBQUUsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDO1FBRW5DLHdCQUF3QjtRQUN4QixNQUFNLFFBQVEsR0FBRyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUN6QyxNQUFNLE1BQU0sR0FBRyxRQUFRO1lBQ3JCLENBQUMsQ0FBQyxNQUFNLHVCQUF1QixDQUFDLFFBQVEsRUFBRSxVQUFVLENBQUM7WUFDckQsQ0FBQyxDQUFDLGtCQUFrQixDQUFDLEtBQUssRUFBRSxVQUFVLENBQUMsQ0FBQztRQUUxQyxNQUFNLENBQUMsS0FBSyxDQUFDLHNCQUFzQixFQUFFO1lBQ25DLEdBQUcsTUFBTTtTQUNWLENBQUMsQ0FBQztRQUVILEtBQUssQ0FBQyxRQUFRLENBQUMsNkJBQTZCLEdBQUc7WUFDN0MsaUJBQWlCLEVBQUU7Z0JBQ2pCLHFCQUFxQixFQUFFO29CQUNyQixHQUFHLE1BQU07aUJBQ1Y7YUFDRjtZQUNELHFCQUFxQixFQUFFO2dCQUNyQixxQkFBcUIsRUFBRTtvQkFDckIsR0FBRyxNQUFNO2lCQUNWO2FBQ0Y7U0FDRixDQUFDO1FBRUYsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBQUMsT0FBTyxLQUFjLEVBQUUsQ0FBQztRQUN4QixNQUFNLENBQUMsS0FBSyxDQUNWLGdDQUFnQyxFQUNoQyxLQUFLLFlBQVksS0FBSyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxDQUMvRCxDQUFDO1FBQ0YsTUFBTSxLQUFLLENBQUM7SUFDZCxDQUFDO0FBQ0gsQ0FBQyxDQUFDO0FBM0RXLFFBQUEsT0FBTyxXQTJEbEI7QUFFRixLQUFLLFVBQVUsdUJBQXVCLENBQ3BDLFFBQWdCLEVBQ2hCLFVBQTJDO0lBRTNDLE1BQU0sSUFBSSxHQUFHLGlCQUFpQixHQUFHLFFBQVEsQ0FBQztJQUUxQyxNQUFNLFNBQVMsR0FBRyxPQUFPLENBQUMsR0FBRyxDQUFDLG1CQUFtQixDQUFDO0lBRWxELE1BQU0sQ0FBQyxLQUFLLENBQUMsWUFBWSxFQUFFLFFBQVEsQ0FBQyxDQUFDO0lBRXJDLHdDQUF3QztJQUN4QyxNQUFNLFVBQVUsR0FBRyxJQUFJLHlCQUFVLENBQUM7UUFDaEMsU0FBUyxFQUFFLFNBQVM7UUFDcEIsR0FBRyxFQUFFO1lBQ0gsRUFBRSxFQUFFLFFBQVE7U0FDYjtLQUNGLENBQUMsQ0FBQztJQUVILE1BQU0sUUFBUSxHQUFHLE1BQU0sU0FBUyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztJQUVsRCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ25CLE1BQU0sSUFBSSxLQUFLLENBQUMsYUFBYSxRQUFRLGFBQWEsQ0FBQyxDQUFDO0lBQ3RELENBQUM7SUFFRCxPQUFPLFVBQVUsQ0FBQyxNQUFNLENBQ3RCLENBQUMsSUFBSSxFQUFFLEdBQUcsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUNkLEdBQUcsSUFBSTtRQUNQLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxFQUFFLFFBQVEsQ0FBQyxJQUFLLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEdBQUcsQ0FBQyxZQUFZO0tBQzVELENBQUMsRUFDRixFQUFFLElBQUksRUFBRSxDQUNULENBQUM7QUFDSixDQUFDO0FBRUQsU0FBUyxrQkFBa0IsQ0FDekIsS0FBdUMsRUFDdkMsVUFBMkM7SUFFM0MsTUFBTSxJQUFJLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxjQUFjLENBQUMsa0JBQWtCLENBQUMsQ0FBQztJQUM5RCxNQUFNLENBQUMsS0FBSyxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsQ0FBQztJQUU1QixPQUFPLFVBQVUsQ0FBQyxNQUFNLENBQ3RCLENBQUMsSUFBSSxFQUFFLEdBQUcsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUNkLEdBQUcsSUFBSTtRQUNQLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxFQUNSLEtBQUssQ0FBQyxPQUFPLENBQUMsY0FBYyxDQUFDLEdBQUcsQ0FBQyxXQUFXLENBQUMsSUFBSSxHQUFHLENBQUMsWUFBWTtLQUNwRSxDQUFDLEVBQ0YsRUFBRSxJQUFJLEVBQUUsQ0FDVCxDQUFDO0FBQ0osQ0FBQztBQUVELFNBQVMsZ0JBQWdCLENBQ3ZCLEtBQXVDO0lBRXZDLE1BQU0sUUFBUSxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsY0FBYyxFQUFFLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDM0QsdUNBQXVDO0lBQ3ZDLE9BQU8sUUFBUSxFQUFFLFVBQVUsQ0FBQyxpQkFBaUIsQ0FBQztRQUM1QyxDQUFDLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxpQkFBaUIsQ0FBQyxNQUFNLENBQUM7UUFDOUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQztBQUNmLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBMb2dnZXIsIExvZ0xldmVsIH0gZnJvbSBcIkBhd3MtbGFtYmRhLXBvd2VydG9vbHMvbG9nZ2VyXCI7XG5pbXBvcnQgeyBEeW5hbW9EQkNsaWVudCB9IGZyb20gXCJAYXdzLXNkay9jbGllbnQtZHluYW1vZGJcIjtcbmltcG9ydCB7IER5bmFtb0RCRG9jdW1lbnRDbGllbnQsIEdldENvbW1hbmQgfSBmcm9tIFwiQGF3cy1zZGsvbGliLWR5bmFtb2RiXCI7XG5pbXBvcnQge1xuICBQcmVUb2tlbkdlbmVyYXRpb25WM1RyaWdnZXJFdmVudCxcbiAgUHJlVG9rZW5HZW5lcmF0aW9uVjNUcmlnZ2VySGFuZGxlcixcbn0gZnJvbSBcImF3cy1sYW1iZGFcIjtcbmltcG9ydCB6IGZyb20gXCJ6b2RcIjtcblxuY29uc3QgbG9nZ2VyID0gbmV3IExvZ2dlcih7XG4gIHNlcnZpY2VOYW1lOiBcImFwaS1jbGllbnQtYXV0aG9yaXphdGlvbi5sYW1iZGFcIixcbiAgbG9nTGV2ZWw6IExvZ0xldmVsLklORk8sXG59KTtcbmNvbnN0IEFQSV9DTElFTlRfUFJFRklYID0gXCJhcGk6XCI7XG5cbmNvbnN0IGNsaWVudCA9IG5ldyBEeW5hbW9EQkNsaWVudCh7fSk7XG5jb25zdCBkb2NDbGllbnQgPSBEeW5hbW9EQkRvY3VtZW50Q2xpZW50LmZyb20oY2xpZW50KTtcblxuY29uc3QgYXR0cmlidXRlU2NoZW1hID0gei5hcnJheShcbiAgei5vYmplY3Qoe1xuICAgIG5hbWU6IHouc3RyaW5nKCksXG4gICAgYXBpTmFtZTogei5zdHJpbmcoKSxcbiAgICBjb2duaXRvTmFtZTogei5zdHJpbmcoKSxcbiAgICBkZWZhdWx0VmFsdWU6IHouc3RyaW5nKCkuZGVmYXVsdChcIlwiKSxcbiAgfSksXG4pO1xuXG5jb25zdCBhdHRyaWJ1dGVzU2NoZW1hID0gei5vYmplY3Qoe1xuICBhdHRyaWJ1dGVzOiBhdHRyaWJ1dGVTY2hlbWEsXG59KTtcblxuLyoqXG4gKiBMYW1iZGEgdGhhdCBvdmVyd3JpdGVzIGF0dHJpYnV0ZXMgaW4gdGhlIGlkIHRva2VuIGFuZCBhY2Nlc3MgdG9rZW4uIERvIG5vdCB1c2VcbiAqIGRpcmVjdGx5LCBhZGQgaXQgdG8geW91ciBzdGFjayB2aWEgdGhlIHtAbGluayBBcGlLZXlBY2Nlc3NUb2tlbkVuaGFuY2VtZW50fSBjb21wb25lbnQuXG4gKiBAcGFyYW0gZXZlbnQgVGhlIHByZS10b2tlbiBldmVudC5cbiAqIEByZXR1cm5zIFRoZSBhZGp1c3RlZCBldmVudC5cbiAqL1xuZXhwb3J0IGNvbnN0IGhhbmRsZXI6IFByZVRva2VuR2VuZXJhdGlvblYzVHJpZ2dlckhhbmRsZXIgPSBhc3luYyAoXG4gIGV2ZW50OiBQcmVUb2tlbkdlbmVyYXRpb25WM1RyaWdnZXJFdmVudCxcbikgPT4ge1xuICB0cnkge1xuICAgIC8vIGlnbm9yZSBhbnkgbm9uIG0ybSBjYWxscy5cbiAgICBpZiAoZXZlbnQudXNlck5hbWUgIT09IFwiQ2xpZW50Q3JlZGVudGlhbHNcIikge1xuICAgICAgcmV0dXJuIGV2ZW50O1xuICAgIH1cblxuICAgIGxvZ2dlci5pbmZvKFwiVHJpZ2dlcmluZyBwcmUtdG9rZW4gbGFtYmRhIGZvciBtMm0uXCIpO1xuXG4gICAgaWYgKCFwcm9jZXNzLmVudi5EWU5BTU9EQl9UQUJMRV9OQU1FKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJEWU5BTU9EQl9UQUJMRV9OQU1FIGVudmlyb25tZW50IHZhcmlhYmxlIGlzIG5vdCBzZXRcIik7XG4gICAgfVxuICAgIGlmICghcHJvY2Vzcy5lbnYuQVRUUklCVVRFUykge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFwiQVRUUklCVVRFUyBlbnZpcm9ubWVudCB2YXJpYWJsZSBpcyBub3Qgc2V0XCIpO1xuICAgIH1cblxuICAgIGNvbnN0IHJlc3VsdCA9IGF0dHJpYnV0ZXNTY2hlbWEuc2FmZVBhcnNlKFxuICAgICAgSlNPTi5wYXJzZShwcm9jZXNzLmVudi5BVFRSSUJVVEVTKSxcbiAgICApO1xuXG4gICAgaWYgKCFyZXN1bHQuc3VjY2Vzcykge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFwiQVRUUklCVVRFUyBlbnZpcm9ubWVudCB2YXJpYWJsZSBjb250YWlucyBpbnZhbGlkIEpTT05cIik7XG4gICAgfVxuXG4gICAgY29uc3QgeyBhdHRyaWJ1dGVzIH0gPSByZXN1bHQuZGF0YTtcblxuICAgIC8vIEV4dHJhY3QgdGhlIGNsaWVudCBJRFxuICAgIGNvbnN0IGNsaWVudElkID0gcmV0cmlldmVDbGllbnRJZChldmVudCk7XG4gICAgY29uc3QgY2xhaW1zID0gY2xpZW50SWRcbiAgICAgID8gYXdhaXQgZ2VuZXJhdGVBcGlDbGllbnRDbGFpbXMoY2xpZW50SWQsIGF0dHJpYnV0ZXMpXG4gICAgICA6IGdlbmVyYXRlVXNlckNsYWltcyhldmVudCwgYXR0cmlidXRlcyk7XG5cbiAgICBsb2dnZXIuZGVidWcoXCJDbGFpbXMgdG8gb3ZlcndyaXRlOlwiLCB7XG4gICAgICAuLi5jbGFpbXMsXG4gICAgfSk7XG5cbiAgICBldmVudC5yZXNwb25zZS5jbGFpbXNBbmRTY29wZU92ZXJyaWRlRGV0YWlscyA9IHtcbiAgICAgIGlkVG9rZW5HZW5lcmF0aW9uOiB7XG4gICAgICAgIGNsYWltc1RvQWRkT3JPdmVycmlkZToge1xuICAgICAgICAgIC4uLmNsYWltcyxcbiAgICAgICAgfSxcbiAgICAgIH0sXG4gICAgICBhY2Nlc3NUb2tlbkdlbmVyYXRpb246IHtcbiAgICAgICAgY2xhaW1zVG9BZGRPck92ZXJyaWRlOiB7XG4gICAgICAgICAgLi4uY2xhaW1zLFxuICAgICAgICB9LFxuICAgICAgfSxcbiAgICB9O1xuXG4gICAgcmV0dXJuIGV2ZW50O1xuICB9IGNhdGNoIChlcnJvcjogdW5rbm93bikge1xuICAgIGxvZ2dlci5lcnJvcihcbiAgICAgIFwiRXJyb3IgaW4gcHJlLXRva2VuIGdlbmVyYXRpb246XCIsXG4gICAgICBlcnJvciBpbnN0YW5jZW9mIEVycm9yID8gZXJyb3IubWVzc2FnZSA6IEpTT04uc3RyaW5naWZ5KGVycm9yKSxcbiAgICApO1xuICAgIHRocm93IGVycm9yO1xuICB9XG59O1xuXG5hc3luYyBmdW5jdGlvbiBnZW5lcmF0ZUFwaUNsaWVudENsYWltcyhcbiAgY2xpZW50SWQ6IHN0cmluZyxcbiAgYXR0cmlidXRlczogei5pbmZlcjx0eXBlb2YgYXR0cmlidXRlU2NoZW1hPixcbik6IFByb21pc2U8UmVjb3JkPHN0cmluZywgc3RyaW5nPj4ge1xuICBjb25zdCB1c2VyID0gQVBJX0NMSUVOVF9QUkVGSVggKyBjbGllbnRJZDtcblxuICBjb25zdCB0YWJsZU5hbWUgPSBwcm9jZXNzLmVudi5EWU5BTU9EQl9UQUJMRV9OQU1FO1xuXG4gIGxvZ2dlci5kZWJ1ZyhcIkNsaWVudCBJRDpcIiwgY2xpZW50SWQpO1xuXG4gIC8vIFF1ZXJ5IER5bmFtb0RCIGZvciBjbGllbnQgaW5mb3JtYXRpb25cbiAgY29uc3QgZ2V0Q29tbWFuZCA9IG5ldyBHZXRDb21tYW5kKHtcbiAgICBUYWJsZU5hbWU6IHRhYmxlTmFtZSxcbiAgICBLZXk6IHtcbiAgICAgIGlkOiBjbGllbnRJZCxcbiAgICB9LFxuICB9KTtcblxuICBjb25zdCByZXNwb25zZSA9IGF3YWl0IGRvY0NsaWVudC5zZW5kKGdldENvbW1hbmQpO1xuXG4gIGlmICghcmVzcG9uc2UuSXRlbSkge1xuICAgIHRocm93IG5ldyBFcnJvcihgQ2xpZW50IElEICR7Y2xpZW50SWR9IGlzIGludmFsaWRgKTtcbiAgfVxuXG4gIHJldHVybiBhdHRyaWJ1dGVzLnJlZHVjZShcbiAgICAocHJldiwgY3VyKSA9PiAoe1xuICAgICAgLi4ucHJldixcbiAgICAgIFtjdXIubmFtZV06IHJlc3BvbnNlLkl0ZW0hW2N1ci5hcGlOYW1lXSA/PyBjdXIuZGVmYXVsdFZhbHVlLFxuICAgIH0pLFxuICAgIHsgdXNlciB9LFxuICApO1xufVxuXG5mdW5jdGlvbiBnZW5lcmF0ZVVzZXJDbGFpbXMoXG4gIGV2ZW50OiBQcmVUb2tlbkdlbmVyYXRpb25WM1RyaWdnZXJFdmVudCxcbiAgYXR0cmlidXRlczogei5pbmZlcjx0eXBlb2YgYXR0cmlidXRlU2NoZW1hPixcbik6IFJlY29yZDxzdHJpbmcsIHN0cmluZz4ge1xuICBjb25zdCB1c2VyID0gZXZlbnQucmVxdWVzdC51c2VyQXR0cmlidXRlc1tcImNvZ25pdG86dXNlcm5hbWVcIl07XG4gIGxvZ2dlci5kZWJ1ZyhcIlVzZXI6XCIsIHVzZXIpO1xuXG4gIHJldHVybiBhdHRyaWJ1dGVzLnJlZHVjZShcbiAgICAocHJldiwgY3VyKSA9PiAoe1xuICAgICAgLi4ucHJldixcbiAgICAgIFtjdXIubmFtZV06XG4gICAgICAgIGV2ZW50LnJlcXVlc3QudXNlckF0dHJpYnV0ZXNbY3VyLmNvZ25pdG9OYW1lXSA/PyBjdXIuZGVmYXVsdFZhbHVlLFxuICAgIH0pLFxuICAgIHsgdXNlciB9LFxuICApO1xufVxuXG5mdW5jdGlvbiByZXRyaWV2ZUNsaWVudElkKFxuICBldmVudDogUHJlVG9rZW5HZW5lcmF0aW9uVjNUcmlnZ2VyRXZlbnQsXG4pOiBzdHJpbmcgfCB1bmRlZmluZWQge1xuICBjb25zdCBjbGllbnRJZCA9IGV2ZW50LnJlcXVlc3QuY2xpZW50TWV0YWRhdGE/LltcImFwaS1rZXlcIl07XG4gIC8vIFJlbW92ZSBBUElfQ0xJRU5UX1BSRUZJWCwgaWYgcHJlc2VudFxuICByZXR1cm4gY2xpZW50SWQ/LnN0YXJ0c1dpdGgoQVBJX0NMSUVOVF9QUkVGSVgpXG4gICAgPyBjbGllbnRJZC5zdWJzdHJpbmcoQVBJX0NMSUVOVF9QUkVGSVgubGVuZ3RoKVxuICAgIDogY2xpZW50SWQ7XG59XG4iXX0=
|
package/lib/constructs/index.js
CHANGED
|
@@ -14,9 +14,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./api-keys"), exports);
|
|
17
18
|
__exportStar(require("./EventPipe"), exports);
|
|
18
19
|
__exportStar(require("./ExportedService"), exports);
|
|
19
20
|
__exportStar(require("./S3Bucket"), exports);
|
|
20
21
|
__exportStar(require("./SecureRestApi"), exports);
|
|
21
22
|
__exportStar(require("./SecureRestApiV2"), exports);
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY29uc3RydWN0cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsNkNBQTJCO0FBQzNCLDhDQUE0QjtBQUM1QixvREFBa0M7QUFDbEMsNkNBQTJCO0FBQzNCLGtEQUFnQztBQUNoQyxvREFBa0MiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLi9hcGkta2V5c1wiO1xuZXhwb3J0ICogZnJvbSBcIi4vRXZlbnRQaXBlXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9FeHBvcnRlZFNlcnZpY2VcIjtcbmV4cG9ydCAqIGZyb20gXCIuL1MzQnVja2V0XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9TZWN1cmVSZXN0QXBpXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9TZWN1cmVSZXN0QXBpVjJcIjtcbiJdfQ==
|
|
@@ -65,5 +65,5 @@ class ApiGatewayExtension extends ecs_service_extensions_1.ServiceExtension {
|
|
|
65
65
|
}
|
|
66
66
|
exports.ApiGatewayExtension = ApiGatewayExtension;
|
|
67
67
|
_a = JSII_RTTI_SYMBOL_1;
|
|
68
|
-
ApiGatewayExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ApiGatewayExtension", version: "0.20.
|
|
68
|
+
ApiGatewayExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ApiGatewayExtension", version: "0.20.8" };
|
|
69
69
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQXBpR2F0ZXdheUV4dGVuc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leHRlbnNpb25zL0FwaUdhdGV3YXlFeHRlbnNpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSx1RkFHb0Q7QUFDcEQsbUVBUXNDO0FBQ3RDLDJGQUFrRjtBQUNsRiw2RkFBNEY7QUFDNUYseURBQW1FO0FBQ25FLGlEQUEwRDtBQUUxRCxzREFBc0Q7QUFtQnREOzs7R0FHRztBQUNILE1BQWEsbUJBQW9CLFNBQVEseUNBQWdCO0lBR3ZEOzs7T0FHRztJQUNILFlBQVksS0FBK0I7UUFDekMsS0FBSyxDQUFDLHVCQUF1QixDQUFDLENBQUM7UUFDL0IsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7SUFDckIsQ0FBQztJQUVELFVBQVUsQ0FBQyxPQUFvQztRQUM3QyxNQUFNLFdBQVcsR0FBRyxJQUFBLDRCQUFjLEVBQ2hDLElBQUksQ0FBQyxLQUFLLENBQUMsaUJBQWlCLEVBQzVCLGFBQWEsQ0FDZCxDQUFDO1FBRUYsTUFBTSxhQUFhLEdBQUcsSUFBQSw0QkFBYyxFQUNsQyxJQUFJLENBQUMsS0FBSyxDQUFDLGlCQUFpQixFQUM1QixTQUFTLENBQ1YsQ0FBQztRQUVGLElBQUksQ0FBQyxPQUFPLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDN0IsTUFBTSxJQUFJLEtBQUssQ0FDYiw0REFBNEQsQ0FDN0QsQ0FBQztRQUNKLENBQUM7UUFFRCxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGtCQUFrQixDQUFDLEdBQUcsQ0FDekQsbUJBQW1CLENBQ1AsQ0FBQztRQUNmLElBQUksQ0FBQyxTQUFTLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVyxFQUFFLENBQUM7WUFDekMsTUFBTSxJQUFJLEtBQUssQ0FDYixpRUFBaUUsQ0FDbEUsQ0FBQztRQUNKLENBQUM7UUFFRCxNQUFNLE9BQU8sR0FBRywwQkFBTyxDQUFDLHFCQUFxQixDQUMzQyxJQUFJLENBQUMsS0FBSyxFQUNWLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLFNBQVMsRUFDakM7WUFDRSxHQUFHLEVBQUUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxHQUFHO1lBQzNCLFNBQVMsRUFBRSxXQUFXLENBQUMsYUFBYSxDQUFDO1NBQ3RDLENBQ0YsQ0FBQztRQUVGLE1BQU0sT0FBTyxHQUFHLDBCQUFPLENBQUMscUJBQXFCLENBQzNDLElBQUksQ0FBQyxLQUFLLEVBQ1YsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLEVBQUUsU0FBUyxFQUNqQztZQUNFLFNBQVMsRUFBRSxXQUFXLENBQUMsSUFBSSxDQUFDO1NBQzdCLENBQ0YsQ0FBQztRQUVGLE1BQU0sV0FBVyxHQUFHLElBQUksK0RBQStCLENBQ3JELEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLDZCQUE2QixFQUNyRCxPQUFPLENBQUMsZUFBZSxFQUN2QjtZQUNFLE1BQU0sRUFBRSw2QkFBVSxDQUFDLEdBQUc7WUFDdEIsT0FBTztZQUNQLGdCQUFnQixFQUFFLElBQUksbUNBQWdCLEVBQUUsQ0FBQyxhQUFhLENBQ3BELCtCQUFZLENBQUMsTUFBTSxDQUFDLHNCQUFzQixDQUFDLENBQzVDO1NBQ0YsQ0FDRixDQUFDO1FBRUYsTUFBTSxjQUFjLEdBQUcsNEJBQWMsQ0FBQyxvQkFBb0IsQ0FDeEQsSUFBSSxDQUFDLEtBQUssRUFDVixHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsRUFBRSxtQkFBbUIsRUFDM0MsYUFBYSxDQUFDLHVCQUF1QixDQUFDLENBQ3ZDLENBQUM7UUFFRixNQUFNLGlCQUFpQixHQUFHLDRCQUFjLENBQUMsb0JBQW9CLENBQzNELElBQUksQ0FBQyxLQUFLLEVBQ1YsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLEVBQUUsbUJBQW1CLEVBQzNDLGFBQWEsQ0FBQyxxQkFBcUIsQ0FBQyxDQUNyQyxDQUFDO1FBRUYsTUFBTSxRQUFRLEdBQUcsc0JBQVEsQ0FBQyxjQUFjLENBQ3RDLElBQUksQ0FBQyxLQUFLLEVBQ1YsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLEVBQUUsZUFBZSxFQUN2QyxhQUFhLENBQUMsY0FBYyxDQUFDLENBQzlCLENBQUM7UUFFRixNQUFNLFVBQVUsR0FBRyxJQUFJLHFEQUFzQixDQUMzQyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsRUFBRSxZQUFZLEVBQ3BDLFFBQVEsRUFDUjtZQUNFLGVBQWUsRUFBRSxDQUFDLGNBQWMsRUFBRSxpQkFBaUIsQ0FBQztTQUNyRCxDQUNGLENBQUM7UUFFRixJQUFJLDRCQUFTLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsRUFBRSxXQUFXLEVBQUU7WUFDN0QsT0FBTztZQUNQLFdBQVc7WUFDWCxRQUFRLEVBQUUsK0JBQVksQ0FBQyxJQUFJLENBQ3pCLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLFdBQVcsRUFDL0IsNkJBQVUsQ0FBQyxHQUFHLENBQ2Y7WUFDRCxVQUFVO1NBQ1gsQ0FBQyxDQUFDO1FBRUgsTUFBTSxrQkFBa0IsR0FBRyx1QkFBYSxDQUFDLGNBQWMsQ0FDckQsSUFBSSxDQUFDLEtBQUssRUFDVixHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsRUFBRSx5QkFBeUIsRUFDakQsSUFBSSxDQUFDLEtBQUssQ0FBQyxlQUFlLENBQzNCLENBQUM7UUFFRixrQkFBa0IsQ0FBQyxXQUFXLENBQUMsT0FBTyxDQUNwQyxPQUFPLEVBQ1AsY0FBSSxDQUFDLEdBQUcsQ0FBQyxTQUFTLENBQUMsV0FBVyxDQUFDLEVBQy9CLGdDQUFnQyxJQUFJLENBQUMsYUFBYSxDQUFDLEVBQUUsRUFBRSxDQUN4RCxDQUFDO1FBRUYsTUFBTSxJQUFJLEdBQUcsSUFBQSw0QkFBYyxFQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUVsRSxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FDdkIsUUFBUSxFQUNSLGVBQWUsSUFBSSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLENBQzFDLENBQUM7SUFDSixDQUFDOztBQXpISCxrREEwSEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb250YWluZXIsXG4gIFNlcnZpY2VFeHRlbnNpb24sXG59IGZyb20gXCJAYXdzLWNkay1jb250YWluZXJzL2Vjcy1zZXJ2aWNlLWV4dGVuc2lvbnNcIjtcbmltcG9ydCB7XG4gIEh0dHBBcGksXG4gIEh0dHBNZXRob2QsXG4gIEh0dHBSb3V0ZSxcbiAgSHR0cFJvdXRlS2V5LFxuICBNYXBwaW5nVmFsdWUsXG4gIFBhcmFtZXRlck1hcHBpbmcsXG4gIFZwY0xpbmssXG59IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtYXBpZ2F0ZXdheXYyXCI7XG5pbXBvcnQgeyBIdHRwVXNlclBvb2xBdXRob3JpemVyIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1hcGlnYXRld2F5djItYXV0aG9yaXplcnNcIjtcbmltcG9ydCB7IEh0dHBTZXJ2aWNlRGlzY292ZXJ5SW50ZWdyYXRpb24gfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWFwaWdhdGV3YXl2Mi1pbnRlZ3JhdGlvbnNcIjtcbmltcG9ydCB7IFVzZXJQb29sLCBVc2VyUG9vbENsaWVudCB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtY29nbml0b1wiO1xuaW1wb3J0IHsgUG9ydCwgU2VjdXJpdHlHcm91cCB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtZWMyXCI7XG5pbXBvcnQgeyBFYzJTZXJ2aWNlLCBGYXJnYXRlU2VydmljZSB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtZWNzXCI7XG5pbXBvcnQgeyBjcmVhdGVJbXBvcnRlciB9IGZyb20gXCIuLi91dGlscy9JbXBvcnRWYWx1ZVwiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEFwaUdhdGV3YXlFeHRlbnNpb25Qcm9wcyB7XG4gIC8qKlxuICAgKiBUaGUgcHJlZml4IGZvciB0aGUgQVBJIEdhdGV3YXkgZW5kcG9pbnQuXG4gICAqL1xuICByZWFkb25seSBwcmVmaXg6IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIG5hbWUgb2YgdGhlIGJhc2UgcGxhdGZvcm0gc3RhY2suXG4gICAqL1xuICByZWFkb25seSBwbGF0Zm9ybVN0YWNrTmFtZTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBUaGUgc2VjdXJpdHkgZ3JvdXAgSUQgb2YgdGhlIEFQSSBHYXRld2F5IHdoaWNoIHNob3VsZCBiZSBhbGxvd2VkIHRvIGNvbm5lY3QgdG8gdGhlIHNlcnZpY2UuXG4gICAqL1xuICByZWFkb25seSBzZWN1cml0eUdyb3VwSWQ6IHN0cmluZztcbn1cblxuLyoqXG4gKiBDb25maWd1cmVzIHRoZSBzZXJ2aWNlIHRvIGJlIHJlYWNoYWJsZSB2aWEgYW4gQVBJIEdhdGV3YXkuXG4gKiBAZGVwcmVjYXRlZCBVc2Uge0BsaW5rIEhUVFBBcGlFeHRlbnNpb259IGluc3RlYWRcbiAqL1xuZXhwb3J0IGNsYXNzIEFwaUdhdGV3YXlFeHRlbnNpb24gZXh0ZW5kcyBTZXJ2aWNlRXh0ZW5zaW9uIHtcbiAgcmVhZG9ubHkgcHJvcHM6IEFwaUdhdGV3YXlFeHRlbnNpb25Qcm9wcztcblxuICAvKipcbiAgICpcbiAgICogQHBhcmFtIHByb3BzXG4gICAqL1xuICBjb25zdHJ1Y3Rvcihwcm9wczogQXBpR2F0ZXdheUV4dGVuc2lvblByb3BzKSB7XG4gICAgc3VwZXIoXCJhcGktZ2F0ZXdheS1leHRlbnNpb25cIik7XG4gICAgdGhpcy5wcm9wcyA9IHByb3BzO1xuICB9XG5cbiAgdXNlU2VydmljZShzZXJ2aWNlOiBFYzJTZXJ2aWNlIHwgRmFyZ2F0ZVNlcnZpY2UpOiB2b2lkIHtcbiAgICBjb25zdCBpbXBvcnRWYWx1ZSA9IGNyZWF0ZUltcG9ydGVyKFxuICAgICAgdGhpcy5wcm9wcy5wbGF0Zm9ybVN0YWNrTmFtZSxcbiAgICAgIFwiYXBpLWdhdGV3YXlcIixcbiAgICApO1xuXG4gICAgY29uc3QgaW1wb3J0Q29nbml0byA9IGNyZWF0ZUltcG9ydGVyKFxuICAgICAgdGhpcy5wcm9wcy5wbGF0Zm9ybVN0YWNrTmFtZSxcbiAgICAgIFwiY29nbml0b1wiLFxuICAgICk7XG5cbiAgICBpZiAoIXNlcnZpY2UuY2xvdWRNYXBTZXJ2aWNlKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIFwiVGhpcyBleHRlbnNpb24gcmVxdWlyZXMgdGhlIENsb3VkTWFwIGV4dGVuc2lvbiB0byBiZSBhZGRlZFwiLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBjb25zdCBjb250YWluZXIgPSB0aGlzLnBhcmVudFNlcnZpY2Uuc2VydmljZURlc2NyaXB0aW9uLmdldChcbiAgICAgIFwic2VydmljZS1jb250YWluZXJcIixcbiAgICApIGFzIENvbnRhaW5lcjtcbiAgICBpZiAoIWNvbnRhaW5lciB8fCAhY29udGFpbmVyLnRyYWZmaWNQb3J0KSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIFwiQ2Fubm90IGFwcGx5IEFQSSBHYXRld2F5IEV4dGVuc2lvbiwgbm8gbWFpbiBhcHAgY29udGFpbmVyIGZvdW5kXCIsXG4gICAgICApO1xuICAgIH1cblxuICAgIGNvbnN0IHZwY0xpbmsgPSBWcGNMaW5rLmZyb21WcGNMaW5rQXR0cmlidXRlcyhcbiAgICAgIHRoaXMuc2NvcGUsXG4gICAgICBgJHt0aGlzLnBhcmVudFNlcnZpY2UuaWR9VnBjTGlua2AsXG4gICAgICB7XG4gICAgICAgIHZwYzogdGhpcy5wYXJlbnRTZXJ2aWNlLnZwYyxcbiAgICAgICAgdnBjTGlua0lkOiBpbXBvcnRWYWx1ZShcInZwYy1saW5rLWlkXCIpLFxuICAgICAgfSxcbiAgICApO1xuXG4gICAgY29uc3QgaHR0cEFwaSA9IEh0dHBBcGkuZnJvbUh0dHBBcGlBdHRyaWJ1dGVzKFxuICAgICAgdGhpcy5zY29wZSxcbiAgICAgIGAke3RoaXMucGFyZW50U2VydmljZS5pZH1IdHRwQXBpYCxcbiAgICAgIHtcbiAgICAgICAgaHR0cEFwaUlkOiBpbXBvcnRWYWx1ZShcImlkXCIpLFxuICAgICAgfSxcbiAgICApO1xuXG4gICAgY29uc3QgaW50ZWdyYXRpb24gPSBuZXcgSHR0cFNlcnZpY2VEaXNjb3ZlcnlJbnRlZ3JhdGlvbihcbiAgICAgIGAke3RoaXMucGFyZW50U2VydmljZS5pZH1TZXJ2aWNlRGlzY292ZXJ5SW50ZWdyYXRpb25gLFxuICAgICAgc2VydmljZS5jbG91ZE1hcFNlcnZpY2UsXG4gICAgICB7XG4gICAgICAgIG1ldGhvZDogSHR0cE1ldGhvZC5BTlksXG4gICAgICAgIHZwY0xpbmssXG4gICAgICAgIHBhcmFtZXRlck1hcHBpbmc6IG5ldyBQYXJhbWV0ZXJNYXBwaW5nKCkub3ZlcndyaXRlUGF0aChcbiAgICAgICAgICBNYXBwaW5nVmFsdWUuY3VzdG9tKFwiLyRyZXF1ZXN0LnBhdGgucHJveHlcIiksXG4gICAgICAgICksXG4gICAgICB9LFxuICAgICk7XG5cbiAgICBjb25zdCB1c2VyUG9vbENsaWVudCA9IFVzZXJQb29sQ2xpZW50LmZyb21Vc2VyUG9vbENsaWVudElkKFxuICAgICAgdGhpcy5zY29wZSxcbiAgICAgIGAke3RoaXMucGFyZW50U2VydmljZS5pZH1BcGlVc2VyUG9vbENsaWVudGAsXG4gICAgICBpbXBvcnRDb2duaXRvKFwiZnVsbC1hY2Nlc3MtY2xpZW50LWlkXCIpLFxuICAgICk7XG5cbiAgICBjb25zdCBhcHBVc2VyUG9vbENsaWVudCA9IFVzZXJQb29sQ2xpZW50LmZyb21Vc2VyUG9vbENsaWVudElkKFxuICAgICAgdGhpcy5zY29wZSxcbiAgICAgIGAke3RoaXMucGFyZW50U2VydmljZS5pZH1BcHBVc2VyUG9vbENsaWVudGAsXG4gICAgICBpbXBvcnRDb2duaXRvKFwidXNlci1wb29sLWNsaWVudC1pZFwiKSxcbiAgICApO1xuXG4gICAgY29uc3QgdXNlclBvb2wgPSBVc2VyUG9vbC5mcm9tVXNlclBvb2xJZChcbiAgICAgIHRoaXMuc2NvcGUsXG4gICAgICBgJHt0aGlzLnBhcmVudFNlcnZpY2UuaWR9QXBpR1dVc2VyUG9vbGAsXG4gICAgICBpbXBvcnRDb2duaXRvKFwidXNlci1wb29sLWlkXCIpLFxuICAgICk7XG5cbiAgICBjb25zdCBhdXRob3JpemVyID0gbmV3IEh0dHBVc2VyUG9vbEF1dGhvcml6ZXIoXG4gICAgICBgJHt0aGlzLnBhcmVudFNlcnZpY2UuaWR9QXV0aG9yaXplcmAsXG4gICAgICB1c2VyUG9vbCxcbiAgICAgIHtcbiAgICAgICAgdXNlclBvb2xDbGllbnRzOiBbdXNlclBvb2xDbGllbnQsIGFwcFVzZXJQb29sQ2xpZW50XSxcbiAgICAgIH0sXG4gICAgKTtcblxuICAgIG5ldyBIdHRwUm91dGUodGhpcy5zY29wZSwgYCR7dGhpcy5wYXJlbnRTZXJ2aWNlLmlkfUh0dHBSb3V0ZWAsIHtcbiAgICAgIGh0dHBBcGksXG4gICAgICBpbnRlZ3JhdGlvbixcbiAgICAgIHJvdXRlS2V5OiBIdHRwUm91dGVLZXkud2l0aChcbiAgICAgICAgYCR7dGhpcy5wcm9wcy5wcmVmaXh9L3twcm94eSt9YCxcbiAgICAgICAgSHR0cE1ldGhvZC5BTlksXG4gICAgICApLFxuICAgICAgYXV0aG9yaXplcixcbiAgICB9KTtcblxuICAgIGNvbnN0IGFwaUd3U2VjdXJpdHlHcm91cCA9IFNlY3VyaXR5R3JvdXAuZnJvbUxvb2t1cEJ5SWQoXG4gICAgICB0aGlzLnNjb3BlLFxuICAgICAgYCR7dGhpcy5wYXJlbnRTZXJ2aWNlLmlkfUFwaUdhdGV3YXlTZWN1cml0eUdyb3VwYCxcbiAgICAgIHRoaXMucHJvcHMuc2VjdXJpdHlHcm91cElkLFxuICAgICk7XG5cbiAgICBhcGlHd1NlY3VyaXR5R3JvdXAuY29ubmVjdGlvbnMuYWxsb3dUbyhcbiAgICAgIHNlcnZpY2UsXG4gICAgICBQb3J0LnRjcChjb250YWluZXIudHJhZmZpY1BvcnQpLFxuICAgICAgYEFsbG93IHRyYWZmaWMgZnJvbSBBUEkgR1cgdG8gJHt0aGlzLnBhcmVudFNlcnZpY2UuaWR9YCxcbiAgICApO1xuXG4gICAgY29uc3QgZnFkbiA9IGNyZWF0ZUltcG9ydGVyKHRoaXMucHJvcHMucGxhdGZvcm1TdGFja05hbWUpKFwiZnFkblwiKTtcblxuICAgIHRoaXMucGFyZW50U2VydmljZS5hZGRVUkwoXG4gICAgICBcInB1YmxpY1wiLFxuICAgICAgYGh0dHBzOi8vYXBpLiR7ZnFkbn0ke3RoaXMucHJvcHMucHJlZml4fWAsXG4gICAgKTtcbiAgfVxufVxuIl19
|
|
@@ -106,5 +106,5 @@ class ApplicationLoadBalancerExtension extends ecs_service_extensions_1.ServiceE
|
|
|
106
106
|
}
|
|
107
107
|
exports.ApplicationLoadBalancerExtension = ApplicationLoadBalancerExtension;
|
|
108
108
|
_a = JSII_RTTI_SYMBOL_1;
|
|
109
|
-
ApplicationLoadBalancerExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ApplicationLoadBalancerExtension", version: "0.20.
|
|
109
|
+
ApplicationLoadBalancerExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ApplicationLoadBalancerExtension", version: "0.20.8" };
|
|
110
110
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQXBwbGljYXRpb25Mb2FkQmFsYW5jZXJFeHRlbnNpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXh0ZW5zaW9ucy9BcHBsaWNhdGlvbkxvYWRCYWxhbmNlckV4dGVuc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHVGQU1vRDtBQUNwRCw2Q0FBNEM7QUFDNUMseURBT2lDO0FBQ2pDLGlEQUFvRDtBQU1wRCx1RkFRZ0Q7QUFDaEQsdUdBQTJGO0FBRTNGLHNEQUFtRTtBQW9CbkUsTUFBTSxlQUFnQixTQUFRLDhDQUFxQjtJQUVqRCxZQUFZLEtBQXdCO1FBQ2xDLEtBQUssRUFBRSxDQUFDO1FBQ1IsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7SUFDckIsQ0FBQztJQUVELHlCQUF5QixDQUN2QixLQUFpQztRQUVqQyxPQUFPO1lBQ0wsR0FBRyxLQUFLO1lBQ1IsV0FBVyxFQUFFO2dCQUNYLEdBQUcsS0FBSyxDQUFDLFdBQVc7Z0JBQ3BCLGVBQWUsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVM7Z0JBQ3JDLGNBQWMsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVE7Z0JBQ25DLGtCQUFrQixFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWTtnQkFDM0MsNkJBQTZCLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxXQUFXO2dCQUNyRCxVQUFVLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxXQUFXO2FBQ25DO1NBQ0YsQ0FBQztJQUNKLENBQUM7Q0FDRjtBQUNEOztHQUVHO0FBQ0gsTUFBYSxnQ0FBaUMsU0FBUSx5Q0FBZ0I7SUFVcEUsWUFBWSxLQUE0QztRQUN0RCxLQUFLLENBQUMsMkJBQTJCLENBQUMsQ0FBQztRQUNuQyxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztRQUNuQixJQUFJLENBQUMsSUFBSSxHQUFHLElBQUEseUJBQVcsRUFBQyxJQUFJLENBQUMsS0FBSyxDQUFDLGlCQUFpQixFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQ2hFLENBQUM7SUFFRCxRQUFRO1FBQ04sTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQ3pELG1CQUFtQixDQUNQLENBQUM7UUFFZixJQUFJLENBQUMsU0FBUyxJQUFJLENBQUMsU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUFDO1lBQ3pDLE1BQU0sSUFBSSxLQUFLLENBQ2IseURBQXlELENBQzFELENBQUM7UUFDSixDQUFDO1FBRUQsU0FBUyxDQUFDLHdCQUF3QixDQUNoQyxJQUFJLGVBQWUsQ0FBQztZQUNsQixRQUFRLEVBQUUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxnQkFBZ0I7WUFDOUMsWUFBWSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsb0JBQW9CO1lBQzdDLFdBQVcsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFdBQVc7WUFDbkMsU0FBUyxFQUFFLHVCQUF1QixpQkFBRyxDQUFDLE1BQU0sa0JBQWtCLElBQUksQ0FBQyxRQUFRLENBQUMsVUFBVSxFQUFFO1lBQ3hGLFdBQVcsRUFBRSxXQUFXLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLElBQUksRUFBRSxFQUFFO1NBQzVELENBQUMsQ0FDSCxDQUFDO0lBQ0osQ0FBQztJQUVELE9BQU8sQ0FBQyxPQUFnQixFQUFFLE1BQWlCO1FBQ3pDLElBQUksQ0FBQyxhQUFhLEdBQUcsT0FBTyxDQUFDO1FBRTdCLE1BQU0sa0JBQWtCLEdBQUcsSUFBQSw0QkFBYyxFQUN2QyxJQUFJLENBQUMsS0FBSyxDQUFDLGlCQUFpQixFQUM1QixTQUFTLENBQ1YsQ0FBQztRQUVGLE1BQU0sY0FBYyxHQUFHLElBQUEseUJBQVcsRUFDaEMsSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsRUFDNUIsS0FBSyxFQUNMLGNBQWMsQ0FDZixDQUFDO1FBRUYsSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsRUFBRSxDQUFDO1lBQ3hCLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUM7UUFDdEMsQ0FBQzthQUFNLENBQUM7WUFDTixJQUFJLENBQUMsUUFBUSxHQUFHLGdEQUFtQixDQUFDLGlDQUFpQyxDQUNuRSxPQUFPLEVBQ1AsYUFBYSxFQUNiO2dCQUNFLFdBQVcsRUFBRSxjQUFjO2dCQUMzQixhQUFhLEVBQUUsdUJBQWEsQ0FBQyxjQUFjLENBQ3pDLE9BQU8sRUFDUCxrQkFBa0IsRUFDbEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxlQUFlLENBQzNCO2FBQ0YsQ0FDRixDQUFDO1FBQ0osQ0FBQztRQUVELElBQUksQ0FBQyxRQUFRLEdBQUcsc0JBQVEsQ0FBQyxjQUFjLENBQ3JDLE9BQU8sRUFDUCxhQUFhLEVBQ2Isa0JBQWtCLENBQUMsY0FBYyxDQUFDLENBQ25DLENBQUM7UUFFRixJQUFJLENBQUMsY0FBYyxHQUFHLDRCQUFjLENBQUMsb0JBQW9CLENBQ3ZELE9BQU8sRUFDUCxnQkFBZ0IsRUFDaEIsa0JBQWtCLENBQUMscUJBQXFCLENBQUMsQ0FDMUMsQ0FBQztRQUVGLElBQUksQ0FBQyxjQUFjLEdBQUcsNEJBQWMsQ0FBQyxjQUFjLENBQ2pELE9BQU8sRUFDUCxnQkFBZ0IsRUFDaEIsa0JBQWtCLENBQUMsZUFBZSxDQUFDLENBQ3BDLENBQUM7SUFDSixDQUFDO0lBRUQsa0JBQWtCLENBQUMsS0FBbUI7UUFDcEMsT0FBTztZQUNMLEdBQUcsS0FBSztZQUNSLHNCQUFzQixFQUFFLHNCQUFRLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQztTQUNyQixDQUFDO0lBQzNCLENBQUM7SUFFTSxVQUFVLENBQUMsT0FBb0M7UUFDcEQsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQ3pELG1CQUFtQixDQUNQLENBQUM7UUFDZixJQUFJLENBQUMsU0FBUyxJQUFJLENBQUMsU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUFDO1lBQ3pDLE1BQU0sSUFBSSxLQUFLLENBQ2IseURBQXlELENBQzFELENBQUM7UUFDSixDQUFDO1FBRUQsTUFBTSxXQUFXLEdBQUcsSUFBSSxtREFBc0IsQ0FDNUMsSUFBSSxDQUFDLGFBQWEsRUFDbEIsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLEVBQUUsYUFBYSxFQUNyQztZQUNFLEdBQUcsRUFBRSxJQUFJLENBQUMsYUFBYSxDQUFDLEdBQUc7WUFDM0IsSUFBSSxFQUFFLFNBQVMsQ0FBQyxXQUFXO1lBQzNCLFFBQVEsRUFBRSxnREFBbUIsQ0FBQyxJQUFJO1lBQ2xDLG1CQUFtQixFQUFFLHNCQUFRLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQztZQUN6QyxPQUFPLEVBQUUsQ0FBQyxPQUFPLENBQUM7WUFDbEIsV0FBVyxFQUFFO2dCQUNYLElBQUksRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWM7YUFDaEM7U0FDRixDQUNGLENBQUM7UUFFRixJQUFJLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsRUFBRSxRQUFRLEVBQUU7WUFDeEQsUUFBUSxFQUFFLEVBQUU7WUFDWixVQUFVLEVBQUUsQ0FBQyw4Q0FBaUIsQ0FBQyxXQUFXLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztZQUN4RCxNQUFNLEVBQUUsSUFBSSw4REFBeUIsQ0FBQztnQkFDcEMsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRO2dCQUN2QixjQUFjLEVBQUUsSUFBSSxDQUFDLGNBQWM7Z0JBQ25DLGNBQWMsRUFBRSxJQUFJLENBQUMsY0FBYztnQkFDbkMsSUFBSSxFQUFFLDJDQUFjLENBQUMsT0FBTyxDQUFDLENBQUMsV0FBVyxDQUFDLENBQUM7Z0JBQzNDLHdCQUF3QixFQUFFLGtEQUFxQixDQUFDLFlBQVk7YUFDN0QsQ0FBQztTQUNILENBQUMsQ0FBQztRQUVILElBQUksQ0FBQyxhQUFhLENBQUMsV0FBVyxHQUFHLFdBQVcsQ0FBQztRQUM3QyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxRQUFRLEVBQUUsV0FBVyxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUM5RCxDQUFDOztBQXRJSCw0RUF1SUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb250YWluZXIsXG4gIENvbnRhaW5lck11dGF0aW5nSG9vayxcbiAgU2VydmljZSxcbiAgU2VydmljZUJ1aWxkLFxuICBTZXJ2aWNlRXh0ZW5zaW9uLFxufSBmcm9tIFwiQGF3cy1jZGstY29udGFpbmVycy9lY3Mtc2VydmljZS1leHRlbnNpb25zXCI7XG5pbXBvcnQgeyBBd3MsIER1cmF0aW9uIH0gZnJvbSBcImF3cy1jZGstbGliXCI7XG5pbXBvcnQge1xuICBJVXNlclBvb2wsXG4gIElVc2VyUG9vbENsaWVudCxcbiAgSVVzZXJQb29sRG9tYWluLFxuICBVc2VyUG9vbCxcbiAgVXNlclBvb2xDbGllbnQsXG4gIFVzZXJQb29sRG9tYWluLFxufSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWNvZ25pdG9cIjtcbmltcG9ydCB7IFNlY3VyaXR5R3JvdXAgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjMlwiO1xuaW1wb3J0IHtcbiAgQ29udGFpbmVyRGVmaW5pdGlvbk9wdGlvbnMsXG4gIEVjMlNlcnZpY2UsXG4gIEZhcmdhdGVTZXJ2aWNlLFxufSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjc1wiO1xuaW1wb3J0IHtcbiAgQXBwbGljYXRpb25MaXN0ZW5lcixcbiAgQXBwbGljYXRpb25Qcm90b2NvbCxcbiAgQXBwbGljYXRpb25UYXJnZXRHcm91cCxcbiAgSUFwcGxpY2F0aW9uTGlzdGVuZXIsXG4gIExpc3RlbmVyQWN0aW9uLFxuICBMaXN0ZW5lckNvbmRpdGlvbixcbiAgVW5hdXRoZW50aWNhdGVkQWN0aW9uLFxufSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVsYXN0aWNsb2FkYmFsYW5jaW5ndjJcIjtcbmltcG9ydCB7IEF1dGhlbnRpY2F0ZUNvZ25pdG9BY3Rpb24gfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVsYXN0aWNsb2FkYmFsYW5jaW5ndjItYWN0aW9uc1wiO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSBcImNvbnN0cnVjdHNcIjtcbmltcG9ydCB7IGNyZWF0ZUltcG9ydGVyLCBpbXBvcnRWYWx1ZSB9IGZyb20gXCIuLi91dGlscy9JbXBvcnRWYWx1ZVwiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEFwcGxpY2F0aW9uTG9hZEJhbGFuY2VyRXh0ZW5zaW9uUHJvcHMge1xuICByZWFkb25seSBwbGF0Zm9ybVN0YWNrTmFtZTogc3RyaW5nO1xuICByZWFkb25seSB1c2VyUG9vbENsaWVudFNlY3JldDogc3RyaW5nO1xuICByZWFkb25seSBzZWN1cml0eUdyb3VwSWQ6IHN0cmluZztcbiAgcmVhZG9ubHkgY2xpZW50U2NvcGU6IHN0cmluZztcbiAgcmVhZG9ubHkgaGVhbHRDaGVja1BhdGg/OiBzdHJpbmc7XG4gIHJlYWRvbmx5IHBhdGg/OiBzdHJpbmc7IC8vIHBhdGggdG8gcmVkaXJlY3QgdGhlIGNsaWVudCBhZnRlciBzdWNjZXNzZnVsIGF1dGhlbnRpY2F0aW9uXG4gIHJlYWRvbmx5IGxpc3RlbmVyPzogSUFwcGxpY2F0aW9uTGlzdGVuZXI7XG59XG5cbmludGVyZmFjZSBPaWRjVmFyc0hvb2tQcm9wcyB7XG4gIHJlYWRvbmx5IGlzc3VlclVybDogc3RyaW5nO1xuICByZWFkb25seSBjbGllbnRJZDogc3RyaW5nO1xuICByZWFkb25seSBjbGllbnRTZWNyZXQ6IHN0cmluZztcbiAgcmVhZG9ubHkgY2xpZW50U2NvcGU6IHN0cmluZztcbiAgcmVhZG9ubHkgcmVkaXJlY3RVcmk6IHN0cmluZztcbn1cblxuY2xhc3MgQWRkT2lkY1ZhcnNIb29rIGV4dGVuZHMgQ29udGFpbmVyTXV0YXRpbmdIb29rIHtcbiAgcmVhZG9ubHkgcHJvcHM6IE9pZGNWYXJzSG9va1Byb3BzO1xuICBjb25zdHJ1Y3Rvcihwcm9wczogT2lkY1ZhcnNIb29rUHJvcHMpIHtcbiAgICBzdXBlcigpO1xuICAgIHRoaXMucHJvcHMgPSBwcm9wcztcbiAgfVxuXG4gIG11dGF0ZUNvbnRhaW5lckRlZmluaXRpb24oXG4gICAgcHJvcHM6IENvbnRhaW5lckRlZmluaXRpb25PcHRpb25zLFxuICApOiBDb250YWluZXJEZWZpbml0aW9uT3B0aW9ucyB7XG4gICAgcmV0dXJuIHtcbiAgICAgIC4uLnByb3BzLFxuICAgICAgZW52aXJvbm1lbnQ6IHtcbiAgICAgICAgLi4ucHJvcHMuZW52aXJvbm1lbnQsXG4gICAgICAgIE9JRENfSVNTVUVSX1VSTDogdGhpcy5wcm9wcy5pc3N1ZXJVcmwsXG4gICAgICAgIE9JRENfQ0xJRU5UX0lEOiB0aGlzLnByb3BzLmNsaWVudElkLFxuICAgICAgICBPSURDX0NMSUVOVF9TRUNSRVQ6IHRoaXMucHJvcHMuY2xpZW50U2VjcmV0LFxuICAgICAgICBPSURDX1BPU1RfTE9HT1VUX1JFRElSRUNUX1VSSTogdGhpcy5wcm9wcy5yZWRpcmVjdFVyaSxcbiAgICAgICAgT0lEQ19TQ09QRTogdGhpcy5wcm9wcy5jbGllbnRTY29wZSxcbiAgICAgIH0sXG4gICAgfTtcbiAgfVxufVxuLyoqXG4gKiBAZGVwcmVjYXRlZCBVc2Uge0BsaW5rIEFwcGxpY2F0aW9uTG9hZEJhbGFuY2VyRXh0ZW5zaW9uVjJ9IGluc3RlYWRcbiAqL1xuZXhwb3J0IGNsYXNzIEFwcGxpY2F0aW9uTG9hZEJhbGFuY2VyRXh0ZW5zaW9uIGV4dGVuZHMgU2VydmljZUV4dGVuc2lvbiB7XG4gIHByaXZhdGUgbGlzdGVuZXIhOiBJQXBwbGljYXRpb25MaXN0ZW5lcjtcbiAgcHJpdmF0ZSByZWFkb25seSBwcm9wczogQXBwbGljYXRpb25Mb2FkQmFsYW5jZXJFeHRlbnNpb25Qcm9wcztcblxuICB1c2VyUG9vbCE6IElVc2VyUG9vbDtcbiAgdXNlclBvb2xDbGllbnQhOiBJVXNlclBvb2xDbGllbnQ7XG4gIHVzZXJQb29sRG9tYWluITogSVVzZXJQb29sRG9tYWluO1xuXG4gIHJlYWRvbmx5IGZxZG46IHN0cmluZztcblxuICBjb25zdHJ1Y3Rvcihwcm9wczogQXBwbGljYXRpb25Mb2FkQmFsYW5jZXJFeHRlbnNpb25Qcm9wcykge1xuICAgIHN1cGVyKFwiYXBwbGljYXRpb24tbG9hZC1iYWxhbmNlclwiKTtcbiAgICB0aGlzLnByb3BzID0gcHJvcHM7XG4gICAgdGhpcy5mcWRuID0gaW1wb3J0VmFsdWUodGhpcy5wcm9wcy5wbGF0Zm9ybVN0YWNrTmFtZSwgXCJmcWRuXCIpO1xuICB9XG5cbiAgYWRkSG9va3MoKTogdm9pZCB7XG4gICAgY29uc3QgY29udGFpbmVyID0gdGhpcy5wYXJlbnRTZXJ2aWNlLnNlcnZpY2VEZXNjcmlwdGlvbi5nZXQoXG4gICAgICBcInNlcnZpY2UtY29udGFpbmVyXCIsXG4gICAgKSBhcyBDb250YWluZXI7XG5cbiAgICBpZiAoIWNvbnRhaW5lciB8fCAhY29udGFpbmVyLnRyYWZmaWNQb3J0KSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIFwiQ2Fubm90IGFwcGx5IEFMQiBFeHRlbnNpb24sIG5vIG1haW4gYXBwIGNvbnRhaW5lciBmb3VuZFwiLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBjb250YWluZXIuYWRkQ29udGFpbmVyTXV0YXRpbmdIb29rKFxuICAgICAgbmV3IEFkZE9pZGNWYXJzSG9vayh7XG4gICAgICAgIGNsaWVudElkOiB0aGlzLnVzZXJQb29sQ2xpZW50LnVzZXJQb29sQ2xpZW50SWQsXG4gICAgICAgIGNsaWVudFNlY3JldDogdGhpcy5wcm9wcy51c2VyUG9vbENsaWVudFNlY3JldCxcbiAgICAgICAgY2xpZW50U2NvcGU6IHRoaXMucHJvcHMuY2xpZW50U2NvcGUsXG4gICAgICAgIGlzc3VlclVybDogYGh0dHBzOi8vY29nbml0by1pZHAuJHtBd3MuUkVHSU9OfS5hbWF6b25hd3MuY29tLyR7dGhpcy51c2VyUG9vbC51c2VyUG9vbElkfWAsXG4gICAgICAgIHJlZGlyZWN0VXJpOiBgaHR0cHM6Ly8ke3RoaXMuZnFkbn0ke3RoaXMucHJvcHMucGF0aCA/PyBcIlwifWAsXG4gICAgICB9KSxcbiAgICApO1xuICB9XG5cbiAgcHJlaG9vayhzZXJ2aWNlOiBTZXJ2aWNlLCBfc2NvcGU6IENvbnN0cnVjdCk6IHZvaWQge1xuICAgIHRoaXMucGFyZW50U2VydmljZSA9IHNlcnZpY2U7XG5cbiAgICBjb25zdCBpbXBvcnRDb2duaXRvVmFsdWUgPSBjcmVhdGVJbXBvcnRlcihcbiAgICAgIHRoaXMucHJvcHMucGxhdGZvcm1TdGFja05hbWUsXG4gICAgICBcImNvZ25pdG9cIixcbiAgICApO1xuXG4gICAgY29uc3QgYWxiTGlzdGVuZXJBcm4gPSBpbXBvcnRWYWx1ZShcbiAgICAgIHRoaXMucHJvcHMucGxhdGZvcm1TdGFja05hbWUsXG4gICAgICBcImFsYlwiLFxuICAgICAgXCJsaXN0ZW5lci1hcm5cIixcbiAgICApO1xuXG4gICAgaWYgKHRoaXMucHJvcHMubGlzdGVuZXIpIHtcbiAgICAgIHRoaXMubGlzdGVuZXIgPSB0aGlzLnByb3BzLmxpc3RlbmVyO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmxpc3RlbmVyID0gQXBwbGljYXRpb25MaXN0ZW5lci5mcm9tQXBwbGljYXRpb25MaXN0ZW5lckF0dHJpYnV0ZXMoXG4gICAgICAgIHNlcnZpY2UsXG4gICAgICAgIFwiQUxCTGlzdGVuZXJcIixcbiAgICAgICAge1xuICAgICAgICAgIGxpc3RlbmVyQXJuOiBhbGJMaXN0ZW5lckFybixcbiAgICAgICAgICBzZWN1cml0eUdyb3VwOiBTZWN1cml0eUdyb3VwLmZyb21Mb29rdXBCeUlkKFxuICAgICAgICAgICAgc2VydmljZSxcbiAgICAgICAgICAgIFwiQUxCU2VjdXJpdHlHcm91cFwiLFxuICAgICAgICAgICAgdGhpcy5wcm9wcy5zZWN1cml0eUdyb3VwSWQsXG4gICAgICAgICAgKSxcbiAgICAgICAgfSxcbiAgICAgICk7XG4gICAgfVxuXG4gICAgdGhpcy51c2VyUG9vbCA9IFVzZXJQb29sLmZyb21Vc2VyUG9vbElkKFxuICAgICAgc2VydmljZSxcbiAgICAgIFwiQUxCVXNlclBvb2xcIixcbiAgICAgIGltcG9ydENvZ25pdG9WYWx1ZShcInVzZXItcG9vbC1pZFwiKSxcbiAgICApO1xuXG4gICAgdGhpcy51c2VyUG9vbENsaWVudCA9IFVzZXJQb29sQ2xpZW50LmZyb21Vc2VyUG9vbENsaWVudElkKFxuICAgICAgc2VydmljZSxcbiAgICAgIFwiVXNlclBvb2xDbGllbnRcIixcbiAgICAgIGltcG9ydENvZ25pdG9WYWx1ZShcInVzZXItcG9vbC1jbGllbnQtaWRcIiksXG4gICAgKTtcblxuICAgIHRoaXMudXNlclBvb2xEb21haW4gPSBVc2VyUG9vbERvbWFpbi5mcm9tRG9tYWluTmFtZShcbiAgICAgIHNlcnZpY2UsXG4gICAgICBcIlVzZXJQb29sRG9tYWluXCIsXG4gICAgICBpbXBvcnRDb2duaXRvVmFsdWUoXCJkb21haW4tcHJlZml4XCIpLFxuICAgICk7XG4gIH1cblxuICBtb2RpZnlTZXJ2aWNlUHJvcHMocHJvcHM6IFNlcnZpY2VCdWlsZCk6IFNlcnZpY2VCdWlsZCB7XG4gICAgcmV0dXJuIHtcbiAgICAgIC4uLnByb3BzLFxuICAgICAgaGVhbHRoQ2hlY2tHcmFjZVBlcmlvZDogRHVyYXRpb24ubWludXRlcygxKSxcbiAgICB9IHNhdGlzZmllcyBTZXJ2aWNlQnVpbGQ7XG4gIH1cblxuICBwdWJsaWMgdXNlU2VydmljZShzZXJ2aWNlOiBFYzJTZXJ2aWNlIHwgRmFyZ2F0ZVNlcnZpY2UpOiB2b2lkIHtcbiAgICBjb25zdCBjb250YWluZXIgPSB0aGlzLnBhcmVudFNlcnZpY2Uuc2VydmljZURlc2NyaXB0aW9uLmdldChcbiAgICAgIFwic2VydmljZS1jb250YWluZXJcIixcbiAgICApIGFzIENvbnRhaW5lcjtcbiAgICBpZiAoIWNvbnRhaW5lciB8fCAhY29udGFpbmVyLnRyYWZmaWNQb3J0KSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIFwiQ2Fubm90IGFwcGx5IEFMQiBFeHRlbnNpb24sIG5vIG1haW4gYXBwIGNvbnRhaW5lciBmb3VuZFwiLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBjb25zdCB0YXJnZXRHcm91cCA9IG5ldyBBcHBsaWNhdGlvblRhcmdldEdyb3VwKFxuICAgICAgdGhpcy5wYXJlbnRTZXJ2aWNlLFxuICAgICAgYCR7dGhpcy5wYXJlbnRTZXJ2aWNlLmlkfVRhcmdldEdyb3VwYCxcbiAgICAgIHtcbiAgICAgICAgdnBjOiB0aGlzLnBhcmVudFNlcnZpY2UudnBjLFxuICAgICAgICBwb3J0OiBjb250YWluZXIudHJhZmZpY1BvcnQsXG4gICAgICAgIHByb3RvY29sOiBBcHBsaWNhdGlvblByb3RvY29sLkhUVFAsXG4gICAgICAgIGRlcmVnaXN0cmF0aW9uRGVsYXk6IER1cmF0aW9uLnNlY29uZHMoMTApLFxuICAgICAgICB0YXJnZXRzOiBbc2VydmljZV0sXG4gICAgICAgIGhlYWx0aENoZWNrOiB7XG4gICAgICAgICAgcGF0aDogdGhpcy5wcm9wcy5oZWFsdENoZWNrUGF0aCxcbiAgICAgICAgfSxcbiAgICAgIH0sXG4gICAgKTtcblxuICAgIHRoaXMubGlzdGVuZXIuYWRkQWN0aW9uKGAke3RoaXMucGFyZW50U2VydmljZS5pZH1BY3Rpb25gLCB7XG4gICAgICBwcmlvcml0eTogNTUsXG4gICAgICBjb25kaXRpb25zOiBbTGlzdGVuZXJDb25kaXRpb24uaG9zdEhlYWRlcnMoW3RoaXMuZnFkbl0pXSxcbiAgICAgIGFjdGlvbjogbmV3IEF1dGhlbnRpY2F0ZUNvZ25pdG9BY3Rpb24oe1xuICAgICAgICB1c2VyUG9vbDogdGhpcy51c2VyUG9vbCxcbiAgICAgICAgdXNlclBvb2xDbGllbnQ6IHRoaXMudXNlclBvb2xDbGllbnQsXG4gICAgICAgIHVzZXJQb29sRG9tYWluOiB0aGlzLnVzZXJQb29sRG9tYWluLFxuICAgICAgICBuZXh0OiBMaXN0ZW5lckFjdGlvbi5mb3J3YXJkKFt0YXJnZXRHcm91cF0pLFxuICAgICAgICBvblVuYXV0aGVudGljYXRlZFJlcXVlc3Q6IFVuYXV0aGVudGljYXRlZEFjdGlvbi5BVVRIRU5USUNBVEUsXG4gICAgICB9KSxcbiAgICB9KTtcblxuICAgIHRoaXMucGFyZW50U2VydmljZS50YXJnZXRHcm91cCA9IHRhcmdldEdyb3VwO1xuICAgIHRoaXMucGFyZW50U2VydmljZS5hZGRVUkwoXCJwdWJsaWNcIiwgYGh0dHBzOi8vJHt0aGlzLmZxZG59YCk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -38,5 +38,5 @@ class ApplicationLoadBalancerExtensionV2 extends ecs_service_extensions_1.Servic
|
|
|
38
38
|
}
|
|
39
39
|
exports.ApplicationLoadBalancerExtensionV2 = ApplicationLoadBalancerExtensionV2;
|
|
40
40
|
_a = JSII_RTTI_SYMBOL_1;
|
|
41
|
-
ApplicationLoadBalancerExtensionV2[_a] = { fqn: "@btc-embedded/cdk-extensions.ApplicationLoadBalancerExtensionV2", version: "0.20.
|
|
41
|
+
ApplicationLoadBalancerExtensionV2[_a] = { fqn: "@btc-embedded/cdk-extensions.ApplicationLoadBalancerExtensionV2", version: "0.20.8" };
|
|
42
42
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQXBwbGljYXRpb25Mb2FkQmFsYW5jZXJFeHRlbnNpb25WMi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leHRlbnNpb25zL0FwcGxpY2F0aW9uTG9hZEJhbGFuY2VyRXh0ZW5zaW9uVjIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSx1RkFLb0Q7QUFDcEQsNkNBQXVDO0FBR3ZDLDBDQUF3RDtBQU94RCxNQUFhLGtDQUFtQyxTQUFRLHlDQUFnQjtJQUd0RSxZQUFZLEtBQThDO1FBQ3hELEtBQUssQ0FBQywyQkFBMkIsQ0FBQyxDQUFDO1FBRW5DLElBQUksQ0FBQyxLQUFLLENBQUMsaUJBQWlCLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxFQUFFLENBQUM7WUFDcEQsTUFBTSxJQUFJLEtBQUssQ0FDYiwyREFBMkQsQ0FDNUQsQ0FBQztRQUNKLENBQUM7UUFFRCxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBRUQsT0FBTyxDQUFDLE9BQWdCLEVBQUUsTUFBaUI7UUFDekMsSUFBSSxDQUFDLGFBQWEsR0FBRyxPQUFPLENBQUM7SUFDL0IsQ0FBQztJQUVELGtCQUFrQixDQUFDLEtBQW1CO1FBQ3BDLE9BQU87WUFDTCxHQUFHLEtBQUs7WUFDUixzQkFBc0IsRUFBRSxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7U0FDckIsQ0FBQztJQUMzQixDQUFDO0lBRU0sVUFBVSxDQUFDLE9BQW9DO1FBQ3BELE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUN6RCxtQkFBbUIsQ0FDUCxDQUFDO1FBQ2YsSUFBSSxDQUFDLFNBQVMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxXQUFXLEVBQUUsQ0FBQztZQUN6QyxNQUFNLElBQUksS0FBSyxDQUNiLHlEQUF5RCxDQUMxRCxDQUFDO1FBQ0osQ0FBQztRQUVELE1BQU0sR0FBRyxHQUNQLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWTtZQUN2QixvQ0FBeUIsQ0FBQyxnQkFBZ0IsQ0FDeEMsT0FBTyxFQUNQLDJCQUEyQixFQUMzQjtnQkFDRSxZQUFZLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBa0I7YUFDNUMsQ0FDRixDQUFDO1FBRUosR0FBRyxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUV2QixJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxRQUFRLEVBQUUsV0FBVyxHQUFHLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQztJQUNuRSxDQUFDOztBQWpESCxnRkFrREMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb250YWluZXIsXG4gIFNlcnZpY2UsXG4gIFNlcnZpY2VCdWlsZCxcbiAgU2VydmljZUV4dGVuc2lvbixcbn0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0IHsgRHVyYXRpb24gfSBmcm9tIFwiYXdzLWNkay1saWJcIjtcbmltcG9ydCB7IEVjMlNlcnZpY2UsIEZhcmdhdGVTZXJ2aWNlIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1lY3NcIjtcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gXCJjb25zdHJ1Y3RzXCI7XG5pbXBvcnQgeyBBcHBsaWNhdGlvbkxvYWRCYWxhbmNlclYyIH0gZnJvbSBcIi4uL3BsYXRmb3JtXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQXBwbGljYXRpb25Mb2FkQmFsYW5jZXJFeHRlbnNpb25Qcm9wc1YyIHtcbiAgcmVhZG9ubHkgcGxhdGZvcm1TdGFja05hbWU/OiBzdHJpbmc7XG4gIHJlYWRvbmx5IGxvYWRCYWxhbmNlcj86IEFwcGxpY2F0aW9uTG9hZEJhbGFuY2VyVjI7XG59XG5cbmV4cG9ydCBjbGFzcyBBcHBsaWNhdGlvbkxvYWRCYWxhbmNlckV4dGVuc2lvblYyIGV4dGVuZHMgU2VydmljZUV4dGVuc2lvbiB7XG4gIHByaXZhdGUgcmVhZG9ubHkgcHJvcHM6IEFwcGxpY2F0aW9uTG9hZEJhbGFuY2VyRXh0ZW5zaW9uUHJvcHNWMjtcblxuICBjb25zdHJ1Y3Rvcihwcm9wczogQXBwbGljYXRpb25Mb2FkQmFsYW5jZXJFeHRlbnNpb25Qcm9wc1YyKSB7XG4gICAgc3VwZXIoXCJhcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyXCIpO1xuXG4gICAgaWYgKCFwcm9wcy5wbGF0Zm9ybVN0YWNrTmFtZSAmJiAhcHJvcHMubG9hZEJhbGFuY2VyKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIFwiRWl0aGVyIHBsYXRmb3JtU3RhY2tOYW1lIG9yIGxvYWRCYWxhbmNlciBtdXN0IGJlIHByb3ZpZGVkXCIsXG4gICAgICApO1xuICAgIH1cblxuICAgIHRoaXMucHJvcHMgPSBwcm9wcztcbiAgfVxuXG4gIHByZWhvb2soc2VydmljZTogU2VydmljZSwgX3Njb3BlOiBDb25zdHJ1Y3QpOiB2b2lkIHtcbiAgICB0aGlzLnBhcmVudFNlcnZpY2UgPSBzZXJ2aWNlO1xuICB9XG5cbiAgbW9kaWZ5U2VydmljZVByb3BzKHByb3BzOiBTZXJ2aWNlQnVpbGQpOiBTZXJ2aWNlQnVpbGQge1xuICAgIHJldHVybiB7XG4gICAgICAuLi5wcm9wcyxcbiAgICAgIGhlYWx0aENoZWNrR3JhY2VQZXJpb2Q6IER1cmF0aW9uLm1pbnV0ZXMoMSksXG4gICAgfSBzYXRpc2ZpZXMgU2VydmljZUJ1aWxkO1xuICB9XG5cbiAgcHVibGljIHVzZVNlcnZpY2Uoc2VydmljZTogRWMyU2VydmljZSB8IEZhcmdhdGVTZXJ2aWNlKTogdm9pZCB7XG4gICAgY29uc3QgY29udGFpbmVyID0gdGhpcy5wYXJlbnRTZXJ2aWNlLnNlcnZpY2VEZXNjcmlwdGlvbi5nZXQoXG4gICAgICBcInNlcnZpY2UtY29udGFpbmVyXCIsXG4gICAgKSBhcyBDb250YWluZXI7XG4gICAgaWYgKCFjb250YWluZXIgfHwgIWNvbnRhaW5lci50cmFmZmljUG9ydCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICBcIkNhbm5vdCBhcHBseSBBTEIgRXh0ZW5zaW9uLCBubyBtYWluIGFwcCBjb250YWluZXIgZm91bmRcIixcbiAgICAgICk7XG4gICAgfVxuXG4gICAgY29uc3QgYWxiID1cbiAgICAgIHRoaXMucHJvcHMubG9hZEJhbGFuY2VyID8/XG4gICAgICBBcHBsaWNhdGlvbkxvYWRCYWxhbmNlclYyLmZyb21CYXNlUGxhdGZvcm0oXG4gICAgICAgIHNlcnZpY2UsXG4gICAgICAgIFwiQXBwbGljYXRpb25Mb2FkQmFsYW5jZXJWMlwiLFxuICAgICAgICB7XG4gICAgICAgICAgYmFzZVBsYXRmb3JtOiB0aGlzLnByb3BzLnBsYXRmb3JtU3RhY2tOYW1lISxcbiAgICAgICAgfSxcbiAgICAgICk7XG5cbiAgICBhbGIuYWRkVGFyZ2V0KHNlcnZpY2UpO1xuXG4gICAgdGhpcy5wYXJlbnRTZXJ2aWNlLmFkZFVSTChcInB1YmxpY1wiLCBgaHR0cHM6Ly8ke2FsYi5kb21haW5OYW1lfWApO1xuICB9XG59XG4iXX0=
|
|
@@ -78,5 +78,5 @@ class CloudMapExtension extends ecs_service_extensions_1.ServiceExtension {
|
|
|
78
78
|
}
|
|
79
79
|
exports.CloudMapExtension = CloudMapExtension;
|
|
80
80
|
_a = JSII_RTTI_SYMBOL_1;
|
|
81
|
-
CloudMapExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.CloudMapExtension", version: "0.20.
|
|
81
|
+
CloudMapExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.CloudMapExtension", version: "0.20.8" };
|
|
82
82
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ2xvdWRNYXBFeHRlbnNpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXh0ZW5zaW9ucy9DbG91ZE1hcEV4dGVuc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHVGQU1vRDtBQUNwRCw2Q0FBdUM7QUFDdkMsaURBQTJDO0FBRTNDLDJFQUE2RTtBQUM3RSw4Q0FBZ0Q7QUFDaEQsMENBQWtEO0FBQ2xELDRDQUE0QztBQW9CNUMsTUFBYSxpQkFBa0IsU0FBUSx5Q0FBZ0I7SUFXckQsWUFBWSxLQUE2QjtRQUN2QyxLQUFLLENBQUMsb0JBQW9CLENBQUMsQ0FBQztRQUU1QixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBRUQsa0JBQWtCLENBQUMsS0FBbUI7UUFDcEMsTUFBTSxhQUFhLEdBQUcsS0FBSyxDQUFDLGNBQWMsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLENBQUM7UUFFaEUsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO1lBQ25CLE1BQU0sSUFBSSxLQUFLLENBQ2Isb0VBQW9FLENBQ3JFLENBQUM7UUFDSixDQUFDO1FBRUQsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFBLGtCQUFTLEVBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUVwRCxNQUFNLFNBQVMsR0FBRyw4QkFBbUIsQ0FBQyxnQkFBZ0IsQ0FDcEQsSUFBSSxDQUFDLEtBQUssRUFDVixJQUFJLENBQUMsV0FBVyxHQUFHLHFCQUFxQixFQUN4QyxJQUFJLENBQUMsS0FBSyxDQUFDLGlCQUFpQixDQUM3QixDQUFDO1FBRUYsT0FBTztZQUNMLEdBQUcsS0FBSztZQUNSLGVBQWUsRUFBRTtnQkFDZixJQUFJLEVBQUUsSUFBSSxDQUFDLFdBQVc7Z0JBQ3RCLGFBQWEsRUFBRSxvQ0FBYSxDQUFDLEdBQUc7Z0JBQ2hDLE1BQU0sRUFBRSxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxFQUFFLENBQUM7Z0JBQzVCLGFBQWEsRUFBRSxhQUFhLENBQUMsYUFBYTtnQkFDMUMsaUJBQWlCLEVBQUUsU0FBUyxDQUFDLFNBQVM7YUFDdkM7U0FDRixDQUFDO0lBQ0osQ0FBQztJQUVELFVBQVUsQ0FBQyxPQUFvQztRQUM3QyxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGtCQUFrQixDQUFDLEdBQUcsQ0FDekQsbUJBQW1CLENBQ1AsQ0FBQztRQUVmLElBQUksQ0FBQyxPQUFPLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDN0IsTUFBTSxJQUFJLEtBQUssQ0FBQyxpREFBaUQsQ0FBQyxDQUFDO1FBQ3JFLENBQUM7UUFFRCxNQUFNLEVBQ0osZUFBZSxFQUFFLEVBQ2YsU0FBUyxFQUFFLEVBQUUsYUFBYSxFQUFFLEdBQzdCLEdBQ0YsR0FBRyxPQUFPLENBQUM7UUFFWixJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FDdkIsVUFBVSxFQUNWLFVBQVUsSUFBSSxDQUFDLFdBQVcsSUFBSSxhQUFhLElBQUksU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUN2RSxDQUFDO1FBRUYsc0NBQXNDO1FBRXRDLE1BQU0sVUFBVSxHQUFHLE9BQU8sQ0FBQyxlQUFlLEVBQUUsSUFBSSxDQUFDLFlBQTBCLENBQUM7UUFDNUUsVUFBVSxDQUFDLFNBQVMsR0FBRztZQUNyQixHQUFHLFVBQVUsQ0FBQyxTQUFTO1lBQ3ZCLFVBQVUsRUFBRTtnQkFDVjtvQkFDRSxHQUFHLEVBQUUsRUFBRTtvQkFDUCxJQUFJLEVBQUUsR0FBRztpQkFDVjtnQkFDRDtvQkFDRSxHQUFHLEVBQUUsRUFBRTtvQkFDUCxJQUFJLEVBQUUsS0FBSztpQkFDWjthQUNGO1NBQ0YsQ0FBQztRQUVGLG1DQUFtQztRQUNuQyxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFLENBQUM7WUFDN0IsSUFBSSxDQUFDLHdCQUF3QixHQUFHLElBQUksNEJBQWUsQ0FDakQsSUFBSSxDQUFDLEtBQUssRUFDVixHQUFHLElBQUksQ0FBQyxXQUFXLGlCQUFpQixFQUNwQztnQkFDRSxXQUFXLEVBQUUsSUFBSSxDQUFDLFdBQVc7Z0JBQzdCLGFBQWEsRUFBRSxPQUFPLENBQUMsV0FBVyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUM7Z0JBQ3BELGFBQWE7YUFDZCxDQUNGLENBQUM7UUFDSixDQUFDO0lBQ0gsQ0FBQztJQUVEOzs7T0FHRztJQUNILGdCQUFnQixDQUFDLE9BQWdCLEVBQUUsZUFBZ0M7UUFDakUsTUFBTSxTQUFTLEdBQUcsT0FBTyxDQUFDLGtCQUFrQixDQUFDLEdBQUcsQ0FDOUMsbUJBQW1CLENBQ1AsQ0FBQztRQUNmLElBQUksQ0FBQyxTQUFTLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVyxFQUFFLENBQUM7WUFDekMsTUFBTSxJQUFJLEtBQUssQ0FDYix1RUFBdUUsQ0FDeEUsQ0FBQztRQUNKLENBQUM7UUFFRCxPQUFPLENBQUMsVUFBVSxDQUFDLFdBQVcsQ0FBQyxTQUFTLENBQ3RDLElBQUksQ0FBQyxhQUFhLENBQUMsVUFBVSxFQUM3QixjQUFJLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxXQUFXLENBQUMsQ0FDaEMsQ0FBQztJQUNKLENBQUM7O0FBbkhILDhDQW9IQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENvbm5lY3RUb1Byb3BzLFxuICBDb250YWluZXIsXG4gIFNlcnZpY2UsXG4gIFNlcnZpY2VCdWlsZCxcbiAgU2VydmljZUV4dGVuc2lvbixcbn0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0IHsgRHVyYXRpb24gfSBmcm9tIFwiYXdzLWNkay1saWJcIjtcbmltcG9ydCB7IFBvcnQgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjMlwiO1xuaW1wb3J0IHsgRWMyU2VydmljZSwgRmFyZ2F0ZVNlcnZpY2UgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjc1wiO1xuaW1wb3J0IHsgQ2ZuU2VydmljZSwgRG5zUmVjb3JkVHlwZSB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3Mtc2VydmljZWRpc2NvdmVyeVwiO1xuaW1wb3J0IHsgRXhwb3J0ZWRTZXJ2aWNlIH0gZnJvbSBcIi4uL2NvbnN0cnVjdHNcIjtcbmltcG9ydCB7IFByaXZhdGVEbnNOYW1lc3BhY2UgfSBmcm9tIFwiLi4vcGxhdGZvcm1cIjtcbmltcG9ydCB7IGtlYmFiQ2FzZSB9IGZyb20gXCIuLi91dGlscy9jb21tb25cIjtcblxuZXhwb3J0IGludGVyZmFjZSBDbG91ZE1hcEV4dGVuc2lvblByb3BzIHtcbiAgLyoqXG4gICAqIFRoZSBuYW1lIG9mIHRoZSBwbGF0Zm9ybSBzdGFjayB0byBpbXBvcnQgdGhlIG5hbWVzcGFjZSBwYXJhbWV0ZXIgZGV0YWlscyBmcm9tLlxuICAgKi9cbiAgcmVhZG9ubHkgcGxhdGZvcm1TdGFja05hbWU6IHN0cmluZztcblxuICAvKipcbiAgICogV2hldGhlciB0byBleHBvcnQgdGhpcyBzZXJ2aWNlIGZvciBjcm9zcy1zdGFjayBjb25zdW1wdGlvbi5cbiAgICpcbiAgICogV2hlbiBlbmFibGVkLCB0aGUgc2VydmljZSBtZXRhZGF0YSAoc2VjdXJpdHkgZ3JvdXAsIG5hbWVzcGFjZSwgcG9ydCkgaXNcbiAgICogZXhwb3J0ZWQgYXMgc3RhY2sgcGFyYW1ldGVycywgYWxsb3dpbmcgb3RoZXIgc3RhY2tzIHRvIGltcG9ydCBhbmQgY29ubmVjdFxuICAgKiB0byB0aGlzIHNlcnZpY2UgdXNpbmcgRXhwb3J0ZWRTZXJ2aWNlLmZyb21BdHRyaWJ1dGVzKCkuXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICByZWFkb25seSBleHBvcnRTZXJ2aWNlPzogYm9vbGVhbjtcbn1cblxuZXhwb3J0IGNsYXNzIENsb3VkTWFwRXh0ZW5zaW9uIGV4dGVuZHMgU2VydmljZUV4dGVuc2lvbiB7XG4gIHByb3BzOiBDbG91ZE1hcEV4dGVuc2lvblByb3BzO1xuXG4gIHNlcnZpY2VOYW1lITogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBUaGUgZXhwb3J0ZWQgc2VydmljZSBjb25zdHJ1Y3QsIGlmIGV4cG9ydFNlcnZpY2UgaXMgZW5hYmxlZC5cbiAgICogQXZhaWxhYmxlIGFmdGVyIHRoZSBzZXJ2aWNlIGhhcyBiZWVuIGNvbmZpZ3VyZWQuXG4gICAqL1xuICBleHBvcnRlZFNlcnZpY2VDb25zdHJ1Y3Q/OiBFeHBvcnRlZFNlcnZpY2U7XG5cbiAgY29uc3RydWN0b3IocHJvcHM6IENsb3VkTWFwRXh0ZW5zaW9uUHJvcHMpIHtcbiAgICBzdXBlcihcImNsb3VkbWFwLWV4dGVuc2lvblwiKTtcblxuICAgIHRoaXMucHJvcHMgPSBwcm9wcztcbiAgfVxuXG4gIG1vZGlmeVNlcnZpY2VQcm9wcyhwcm9wczogU2VydmljZUJ1aWxkKTogU2VydmljZUJ1aWxkIHtcbiAgICBjb25zdCBtYWluQ29udGFpbmVyID0gcHJvcHMudGFza0RlZmluaXRpb24uZmluZENvbnRhaW5lcihcImFwcFwiKTtcblxuICAgIGlmICghbWFpbkNvbnRhaW5lcikge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICBcIllvdSBtdXN0IGFkZCBhIGNvbnRhaW5lciBiZWZvcmUgY29uZmlndXJpbmcgdGhlIENsb3VkTWFwIGV4dGVuc2lvblwiLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICB0aGlzLnNlcnZpY2VOYW1lID0ga2ViYWJDYXNlKHRoaXMucGFyZW50U2VydmljZS5pZCk7XG5cbiAgICBjb25zdCBuYW1lc3BhY2UgPSBQcml2YXRlRG5zTmFtZXNwYWNlLmZyb21CYXNlUGxhdGZvcm0oXG4gICAgICB0aGlzLnNjb3BlLFxuICAgICAgdGhpcy5zZXJ2aWNlTmFtZSArIFwiUHJpdmF0ZURuc05hbWVzcGFjZVwiLFxuICAgICAgdGhpcy5wcm9wcy5wbGF0Zm9ybVN0YWNrTmFtZSxcbiAgICApO1xuXG4gICAgcmV0dXJuIHtcbiAgICAgIC4uLnByb3BzLFxuICAgICAgY2xvdWRNYXBPcHRpb25zOiB7XG4gICAgICAgIG5hbWU6IHRoaXMuc2VydmljZU5hbWUsXG4gICAgICAgIGRuc1JlY29yZFR5cGU6IERuc1JlY29yZFR5cGUuU1JWLFxuICAgICAgICBkbnNUdGw6IER1cmF0aW9uLnNlY29uZHMoNjApLFxuICAgICAgICBjb250YWluZXJQb3J0OiBtYWluQ29udGFpbmVyLmNvbnRhaW5lclBvcnQsXG4gICAgICAgIGNsb3VkTWFwTmFtZXNwYWNlOiBuYW1lc3BhY2UubmFtZXNwYWNlLFxuICAgICAgfSxcbiAgICB9O1xuICB9XG5cbiAgdXNlU2VydmljZShzZXJ2aWNlOiBFYzJTZXJ2aWNlIHwgRmFyZ2F0ZVNlcnZpY2UpOiB2b2lkIHtcbiAgICBjb25zdCBjb250YWluZXIgPSB0aGlzLnBhcmVudFNlcnZpY2Uuc2VydmljZURlc2NyaXB0aW9uLmdldChcbiAgICAgIFwic2VydmljZS1jb250YWluZXJcIixcbiAgICApIGFzIENvbnRhaW5lcjtcblxuICAgIGlmICghc2VydmljZS5jbG91ZE1hcFNlcnZpY2UpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIkV4cGVjdGVkIHRoZSBjbG91ZCBtYXAgc2V0dGluZ3MgdG8gYmUgYXZhaWxhYmxlXCIpO1xuICAgIH1cblxuICAgIGNvbnN0IHtcbiAgICAgIGNsb3VkTWFwU2VydmljZToge1xuICAgICAgICBuYW1lc3BhY2U6IHsgbmFtZXNwYWNlTmFtZSB9LFxuICAgICAgfSxcbiAgICB9ID0gc2VydmljZTtcblxuICAgIHRoaXMucGFyZW50U2VydmljZS5hZGRVUkwoXG4gICAgICBcImludGVybmFsXCIsXG4gICAgICBgaHR0cDovLyR7dGhpcy5zZXJ2aWNlTmFtZX0uJHtuYW1lc3BhY2VOYW1lfToke2NvbnRhaW5lci50cmFmZmljUG9ydH1gLFxuICAgICk7XG5cbiAgICAvLyBhZGQgaGFjayB0byBzdXBwb3J0IFNSViArIEEgcmVjb3Jkc1xuXG4gICAgY29uc3QgY2ZuU2VydmljZSA9IHNlcnZpY2UuY2xvdWRNYXBTZXJ2aWNlPy5ub2RlLmRlZmF1bHRDaGlsZCBhcyBDZm5TZXJ2aWNlO1xuICAgIGNmblNlcnZpY2UuZG5zQ29uZmlnID0ge1xuICAgICAgLi4uY2ZuU2VydmljZS5kbnNDb25maWcsXG4gICAgICBkbnNSZWNvcmRzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICB0dGw6IDYwLFxuICAgICAgICAgIHR5cGU6IFwiQVwiLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgdHRsOiA2MCxcbiAgICAgICAgICB0eXBlOiBcIlNSVlwiLFxuICAgICAgICB9LFxuICAgICAgXSxcbiAgICB9O1xuXG4gICAgLy8gRXhwb3J0IHRoZSBzZXJ2aWNlIGlmIGNvbmZpZ3VyZWRcbiAgICBpZiAodGhpcy5wcm9wcy5leHBvcnRTZXJ2aWNlKSB7XG4gICAgICB0aGlzLmV4cG9ydGVkU2VydmljZUNvbnN0cnVjdCA9IG5ldyBFeHBvcnRlZFNlcnZpY2UoXG4gICAgICAgIHRoaXMuc2NvcGUsXG4gICAgICAgIGAke3RoaXMuc2VydmljZU5hbWV9RXhwb3J0ZWRTZXJ2aWNlYCxcbiAgICAgICAge1xuICAgICAgICAgIHNlcnZpY2VOYW1lOiB0aGlzLnNlcnZpY2VOYW1lLFxuICAgICAgICAgIHNlY3VyaXR5R3JvdXA6IHNlcnZpY2UuY29ubmVjdGlvbnMuc2VjdXJpdHlHcm91cHNbMF0sXG4gICAgICAgICAgbmFtZXNwYWNlTmFtZSxcbiAgICAgICAgfSxcbiAgICAgICk7XG4gICAgfVxuICB9XG5cbiAgLyoqXG4gICAqIEFkanVzdCB0aGUgc2VjdXJpdHkgZ3JvdXAgb2YgdGhlIGdpdmVuIHNlcnZpY2UgdG8gYWxsb3cgdHJhZmZpYyBmcm9tIHRoaXMgc2VydmljZS5cbiAgICpcbiAgICovXG4gIGNvbm5lY3RUb1NlcnZpY2Uoc2VydmljZTogU2VydmljZSwgX2Nvbm5lY3RUb1Byb3BzPzogQ29ubmVjdFRvUHJvcHMpOiB2b2lkIHtcbiAgICBjb25zdCBjb250YWluZXIgPSBzZXJ2aWNlLnNlcnZpY2VEZXNjcmlwdGlvbi5nZXQoXG4gICAgICBcInNlcnZpY2UtY29udGFpbmVyXCIsXG4gICAgKSBhcyBDb250YWluZXI7XG4gICAgaWYgKCFjb250YWluZXIgfHwgIWNvbnRhaW5lci50cmFmZmljUG9ydCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICBcIkNhbm5vdCBhcHBseSBleHRlbnNpb24sIG5vIG1haW4gYXBwIGNvbnRhaW5lciBmb3VuZCBpbiB0YXJnZXQgc2VydmljZVwiLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBzZXJ2aWNlLmVjc1NlcnZpY2UuY29ubmVjdGlvbnMuYWxsb3dGcm9tKFxuICAgICAgdGhpcy5wYXJlbnRTZXJ2aWNlLmVjc1NlcnZpY2UsXG4gICAgICBQb3J0LnRjcChjb250YWluZXIudHJhZmZpY1BvcnQpLFxuICAgICk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -28,5 +28,5 @@ class DeactivatableServiceExtension extends ecs_service_extensions_1.ServiceExte
|
|
|
28
28
|
}
|
|
29
29
|
exports.DeactivatableServiceExtension = DeactivatableServiceExtension;
|
|
30
30
|
_a = JSII_RTTI_SYMBOL_1;
|
|
31
|
-
DeactivatableServiceExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.DeactivatableServiceExtension", version: "0.20.
|
|
31
|
+
DeactivatableServiceExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.DeactivatableServiceExtension", version: "0.20.8" };
|
|
32
32
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRGVhY3RpdmF0YWJsZVNlcnZpY2VFeHRlbnNpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXh0ZW5zaW9ucy9EZWFjdGl2YXRhYmxlU2VydmljZUV4dGVuc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHVGQUdvRDtBQUNwRCw2Q0FBMEM7QUFDMUMsd0VBQXVFO0FBRXZFOzs7O0dBSUc7QUFDSCxNQUFhLDZCQUE4QixTQUFRLHlDQUFnQjtJQUNqRTtRQUNFLEtBQUssQ0FBQyx1QkFBdUIsQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFRCxrQkFBa0IsQ0FBQyxLQUFtQjtRQUNwQyxJQUFJLElBQUEsNkNBQXNCLEVBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDO1lBQ2xELHlCQUFXLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxPQUFPLENBQ3hDLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLDRCQUE0QixDQUNyRCxDQUFDO1lBQ0YsT0FBTztnQkFDTCxHQUFHLEtBQUs7Z0JBQ1IsWUFBWSxFQUFFLENBQUM7YUFDaEIsQ0FBQztRQUNKLENBQUM7UUFDRCxPQUFPLEtBQUssQ0FBQztJQUNmLENBQUM7O0FBaEJILHNFQWlCQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIFNlcnZpY2VCdWlsZCxcbiAgU2VydmljZUV4dGVuc2lvbixcbn0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0IHsgQW5ub3RhdGlvbnMgfSBmcm9tIFwiYXdzLWNkay1saWJcIjtcbmltcG9ydCB7IGlzRGVhY3RpdmF0ZWRDb25zdHJ1Y3QgfSBmcm9tIFwiLi4vdXRpbHMvZGVhY3RpdmF0ZWRDb25zdHJ1Y3RcIjtcblxuLyoqXG4gKiBFeHRlbnNpb24gdGhhdCBhbGxvd3MgdGhlIHNlcnZpY2UgdG8gYmUgZGVhY3RpdmF0ZWQsIGlmIHRoZSBlbnZpcm9ubWVudCB2YXJpYWJsZSBjb250YWluc1xuICogaXRzIElELiBEZWFjdGl2YXRpb24gaXMgaW1wbGVtZW50ZWQgYnkgc2V0dGluZyB0aGUgZGVzaXJlZCBjb3VudCB0byB6ZXJvLCBpLmUuIHRoZVxuICogY29uc3RydWN0IGlzIHN0aWxsIHByZXNlbnQgaW4gdGhlIHN0YWNrLlxuICovXG5leHBvcnQgY2xhc3MgRGVhY3RpdmF0YWJsZVNlcnZpY2VFeHRlbnNpb24gZXh0ZW5kcyBTZXJ2aWNlRXh0ZW5zaW9uIHtcbiAgY29uc3RydWN0b3IoKSB7XG4gICAgc3VwZXIoXCJkZWFjdGl2YXRhYmxlLXNlcnZpY2VcIik7XG4gIH1cblxuICBtb2RpZnlTZXJ2aWNlUHJvcHMocHJvcHM6IFNlcnZpY2VCdWlsZCk6IFNlcnZpY2VCdWlsZCB7XG4gICAgaWYgKGlzRGVhY3RpdmF0ZWRDb25zdHJ1Y3QodGhpcy5wYXJlbnRTZXJ2aWNlLmlkKSkge1xuICAgICAgQW5ub3RhdGlvbnMub2YodGhpcy5wYXJlbnRTZXJ2aWNlKS5hZGRJbmZvKFxuICAgICAgICBgJHt0aGlzLnBhcmVudFNlcnZpY2UuaWR9IGlzIHNldCB0byBiZSBkZWFjdGl2YXRlZC5gLFxuICAgICAgKTtcbiAgICAgIHJldHVybiB7XG4gICAgICAgIC4uLnByb3BzLFxuICAgICAgICBkZXNpcmVkQ291bnQ6IDAsXG4gICAgICB9O1xuICAgIH1cbiAgICByZXR1cm4gcHJvcHM7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -83,5 +83,5 @@ class DeploymentConfigExtension extends ecs_service_extensions_1.ServiceExtensio
|
|
|
83
83
|
}
|
|
84
84
|
exports.DeploymentConfigExtension = DeploymentConfigExtension;
|
|
85
85
|
_a = JSII_RTTI_SYMBOL_1;
|
|
86
|
-
DeploymentConfigExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.DeploymentConfigExtension", version: "0.20.
|
|
86
|
+
DeploymentConfigExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.DeploymentConfigExtension", version: "0.20.8" };
|
|
87
87
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRGVwbG95bWVudENvbmZpZ0V4dGVuc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leHRlbnNpb25zL0RlcGxveW1lbnRDb25maWdFeHRlbnNpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSx1RkFHb0Q7QUFDcEQsNkNBQTBDO0FBNkUxQzs7Ozs7Ozs7R0FRRztBQUNILE1BQWEseUJBQTBCLFNBQVEseUNBQWdCO0lBRzdELFlBQVksUUFBd0MsRUFBRTtRQUNwRCxLQUFLLENBQUMsbUJBQW1CLENBQUMsQ0FBQztRQUMzQixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBRUQsa0JBQWtCLENBQUMsS0FBbUI7UUFDcEMsOENBQThDO1FBQzlDLE9BQU87WUFDTCxHQUFHLEtBQUs7WUFDUixHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsS0FBSyxTQUFTLElBQUk7Z0JBQ2hELGlCQUFpQixFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsaUJBQWlCO2FBQ2hELENBQUM7WUFDRixHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsS0FBSyxTQUFTLElBQUk7Z0JBQ2hELGlCQUFpQixFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsaUJBQWlCO2FBQ2hELENBQUM7U0FDSCxDQUFDO0lBQ0osQ0FBQztJQUVELFVBQVUsQ0FBQyxPQUFvQztRQUM3QyxNQUFNLFVBQVUsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLFlBQTBCLENBQUM7UUFFM0QsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBQ2hCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0RBQWtELENBQUMsQ0FBQztRQUN0RSxDQUFDO1FBRUQsaURBQWlEO1FBQ2pELE1BQU0sb0JBQW9CLEdBQ3hCLElBQUksQ0FBQyxLQUFLLENBQUMsb0JBQW9CLEtBQUssU0FBUztZQUMzQyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxvQkFBb0I7WUFDakMsQ0FBQyxDQUFDLElBQUksQ0FBQztRQUVYLElBQUksb0JBQW9CLEVBQUUsQ0FBQztZQUN6QixNQUFNLFFBQVEsR0FDWixJQUFJLENBQUMsS0FBSyxDQUFDLHNCQUFzQixLQUFLLFNBQVM7Z0JBQzdDLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLHNCQUFzQjtnQkFDbkMsQ0FBQyxDQUFDLElBQUksQ0FBQztZQUVYLFVBQVUsQ0FBQyx1QkFBdUIsR0FBRztnQkFDbkMsR0FBRyxVQUFVLENBQUMsdUJBQXVCO2dCQUNyQyx3QkFBd0IsRUFBRTtvQkFDeEIsTUFBTSxFQUFFLElBQUk7b0JBQ1osUUFBUTtpQkFDVDthQUNGLENBQUM7WUFFRix5QkFBVyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxPQUFPLENBQzdCLHFEQUFxRCxRQUFRLEdBQUcsQ0FDakUsQ0FBQztRQUNKLENBQUM7UUFFRCxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsdUJBQXVCLEVBQUUsQ0FBQztZQUN2QyxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLG9CQUFvQixJQUFJLENBQUMsQ0FBQztZQUNsRCxNQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLHNCQUFzQixJQUFJLENBQUMsQ0FBQztZQUV0RCw4Q0FBOEM7WUFDOUMsVUFBVSxDQUFDLHdCQUF3QixHQUFHO2dCQUNwQztvQkFDRSxnQkFBZ0IsRUFBRSxjQUFjO29CQUNoQyxNQUFNO29CQUNOLElBQUk7aUJBQ0w7YUFDRixDQUFDO1lBRUYscUVBQXFFO1lBQ3JFLFVBQVUsQ0FBQyxVQUFVLEdBQUcsU0FBUyxDQUFDO1lBRWxDLHlCQUFXLENBQUMsRUFBRSxDQUFDLE9BQU8sQ0FBQyxDQUFDLE9BQU8sQ0FDN0IsbUVBQW1FLElBQUksYUFBYSxNQUFNLEdBQUcsQ0FDOUYsQ0FBQztRQUNKLENBQUM7UUFFRCx3REFBd0Q7UUFDeEQsTUFBTSxjQUFjLEdBQWEsRUFBRSxDQUFDO1FBQ3BDLElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsS0FBSyxTQUFTLEVBQUUsQ0FBQztZQUMvQyxjQUFjLENBQUMsSUFBSSxDQUNqQixzQkFBc0IsSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsR0FBRyxDQUN0RCxDQUFDO1FBQ0osQ0FBQztRQUNELElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsS0FBSyxTQUFTLEVBQUUsQ0FBQztZQUMvQyxjQUFjLENBQUMsSUFBSSxDQUNqQixzQkFBc0IsSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsR0FBRyxDQUN0RCxDQUFDO1FBQ0osQ0FBQztRQUVELElBQUksY0FBYyxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUUsQ0FBQztZQUM5Qix5QkFBVyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxPQUFPLENBQzdCLHFDQUFxQyxjQUFjLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQ2pFLENBQUM7UUFDSixDQUFDO0lBQ0gsQ0FBQzs7QUE1RkgsOERBNkZDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgU2VydmljZUJ1aWxkLFxuICBTZXJ2aWNlRXh0ZW5zaW9uLFxufSBmcm9tIFwiQGF3cy1jZGstY29udGFpbmVycy9lY3Mtc2VydmljZS1leHRlbnNpb25zXCI7XG5pbXBvcnQgeyBBbm5vdGF0aW9ucyB9IGZyb20gXCJhd3MtY2RrLWxpYlwiO1xuaW1wb3J0IHsgQ2ZuU2VydmljZSwgRWMyU2VydmljZSwgRmFyZ2F0ZVNlcnZpY2UgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjc1wiO1xuXG4vKipcbiAqIFByb3BlcnRpZXMgZm9yIGNvbmZpZ3VyaW5nIHNlcnZpY2UgZGVwbG95bWVudCBhbmQgY2FwYWNpdHkgcHJvdmlkZXIgc3RyYXRlZ3kuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgRGVwbG95bWVudENvbmZpZ0V4dGVuc2lvblByb3BzIHtcbiAgLyoqXG4gICAqIFdoZXRoZXIgdG8gdXNlIHRoZSBjbHVzdGVyJ3MgRkFSR0FURV9TUE9UIGNhcGFjaXR5IHByb3ZpZGVyIHN0cmF0ZWd5LlxuICAgKlxuICAgKiBXaGVuIGVuYWJsZWQsIHRoZSBzZXJ2aWNlIHdpbGwgdXNlIHRoZSBjYXBhY2l0eSBwcm92aWRlciBzdHJhdGVneVxuICAgKiBjb25maWd1cmVkIGF0IHRoZSBjbHVzdGVyIGxldmVsIChlLmcuLCBGQVJHQVRFX1NQT1QpLlxuICAgKlxuICAgKiAqKlJlcXVpcmVtZW50czoqKlxuICAgKiAtIFRoZSBFQ1MgY2x1c3RlciBtdXN0IGhhdmUgY2FwYWNpdHkgcHJvdmlkZXJzIGVuYWJsZWRcbiAgICogICAoc2V0IGBlbmFibGVGYXJnYXRlU3BvdENhcGFjaXR5UHJvdmlkZXI6IHRydWVgIGluIEVjc0NsdXN0ZXIpXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICByZWFkb25seSB1c2VGYXJnYXRlU3BvdEluc3RhbmNlcz86IGJvb2xlYW47XG5cbiAgLyoqXG4gICAqIFRoZSBiYXNlIHZhbHVlIGZvciB0aGUgRkFSR0FURV9TUE9UIGNhcGFjaXR5IHByb3ZpZGVyLlxuICAgKiBUaGlzIGlzIHRoZSBtaW5pbXVtIG51bWJlciBvZiB0YXNrcyB0aGF0IHNob3VsZCB1c2UgRmFyZ2F0ZSBTcG90LlxuICAgKiBPbmx5IHVzZWQgd2hlbiB1c2VDYXBhY2l0eVByb3ZpZGVyIGlzIHRydWUuXG4gICAqXG4gICAqIEBkZWZhdWx0IDBcbiAgICovXG4gIHJlYWRvbmx5IGNhcGFjaXR5UHJvdmlkZXJCYXNlPzogbnVtYmVyO1xuXG4gIC8qKlxuICAgKiBUaGUgd2VpZ2h0IHZhbHVlIGZvciB0aGUgRkFSR0FURV9TUE9UIGNhcGFjaXR5IHByb3ZpZGVyLlxuICAgKiBIaWdoZXIgdmFsdWVzIG1lYW4gbW9yZSB0YXNrcyB3aWxsIHVzZSBGYXJnYXRlIFNwb3QuXG4gICAqIE9ubHkgdXNlZCB3aGVuIHVzZUNhcGFjaXR5UHJvdmlkZXIgaXMgdHJ1ZS5cbiAgICpcbiAgICogQGRlZmF1bHQgMVxuICAgKi9cbiAgcmVhZG9ubHkgY2FwYWNpdHlQcm92aWRlcldlaWdodD86IG51bWJlcjtcblxuICAvKipcbiAgICogVGhlIG1pbmltdW0gaGVhbHRoeSBwZXJjZW50IGZvciB0aGUgc2VydmljZSBkZXBsb3ltZW50LlxuICAgKiBTZXQgdG8gMCB0byBhbGxvdyBhbGwgdGFza3MgdG8gYmUgcmVwbGFjZWQgYXQgb25jZSBmb3IgZmFzdGVyIGRlcGxveW1lbnRzXG4gICAqIHdoZXJlIHNlcnZpY2UgaW50ZXJydXB0aW9uIGlzIGFjY2VwdGFibGUuXG4gICAqXG4gICAqIEBkZWZhdWx0IDEwMFxuICAgKi9cbiAgcmVhZG9ubHkgbWluSGVhbHRoeVBlcmNlbnQ/OiBudW1iZXI7XG5cbiAgLyoqXG4gICAqIFRoZSBtYXhpbXVtIGhlYWx0aHkgcGVyY2VudCBmb3IgdGhlIHNlcnZpY2UgZGVwbG95bWVudC5cbiAgICogQ29udHJvbHMgaG93IG1hbnkgYWRkaXRpb25hbCB0YXNrcyBjYW4gYmUgc3RhcnRlZCBkdXJpbmcgZGVwbG95bWVudC5cbiAgICpcbiAgICogQGRlZmF1bHQgMjAwXG4gICAqL1xuICByZWFkb25seSBtYXhIZWFsdGh5UGVyY2VudD86IG51bWJlcjtcblxuICAvKipcbiAgICogV2hldGhlciB0byBlbmFibGUgdGhlIEVDUyBkZXBsb3ltZW50IGNpcmN1aXQgYnJlYWtlci5cbiAgICpcbiAgICogVGhlIGNpcmN1aXQgYnJlYWtlciBtb25pdG9ycyBuZXcgZGVwbG95bWVudHMgYW5kIGF1dG9tYXRpY2FsbHkgcm9sbHMgYmFja1xuICAgKiBpZiB0YXNrcyBmYWlsIHRvIHN0YXJ0IG9yIGJlY29tZSB1bmhlYWx0aHkuXG4gICAqXG4gICAqIEBkZWZhdWx0IHRydWVcbiAgICovXG4gIHJlYWRvbmx5IGVuYWJsZUNpcmN1aXRCcmVha2VyPzogYm9vbGVhbjtcblxuICAvKipcbiAgICogV2hldGhlciB0aGUgY2lyY3VpdCBicmVha2VyIHNob3VsZCBhdXRvbWF0aWNhbGx5IHJvbGwgYmFjayBmYWlsZWQgZGVwbG95bWVudHMuXG4gICAqXG4gICAqIFdoZW4gZW5hYmxlZCwgRUNTIHdpbGwgYXV0b21hdGljYWxseSByb2xsIGJhY2sgdG8gdGhlIHByZXZpb3VzIHRhc2sgZGVmaW5pdGlvblxuICAgKiBpZiB0aGUgbmV3IGRlcGxveW1lbnQgZmFpbHMuIE9ubHkgYXBwbGllcyB3aGVuIGVuYWJsZUNpcmN1aXRCcmVha2VyIGlzIHRydWUuXG4gICAqXG4gICAqIEBkZWZhdWx0IHRydWUgKGlmIGNpcmN1aXQgYnJlYWtlciBpcyBlbmFibGVkKVxuICAgKi9cbiAgcmVhZG9ubHkgY2lyY3VpdEJyZWFrZXJSb2xsYmFjaz86IGJvb2xlYW47XG59XG5cbi8qKlxuICogRXh0ZW5zaW9uIHRoYXQgY29uZmlndXJlcyBFQ1Mgc2VydmljZSBkZXBsb3ltZW50IG9wdGlvbnMgYW5kIGNhcGFjaXR5IHByb3ZpZGVyIHN0cmF0ZWd5LlxuICpcbiAqIFRoaXMgZXh0ZW5zaW9uIGFsbG93cyB5b3UgdG86XG4gKiAxLiBDb25maWd1cmUgZGVwbG95bWVudCBwYXJhbWV0ZXJzIGZvciBmYXN0ZXIgb3Igc2FmZXIgZGVwbG95bWVudHNcbiAqIDIuIEVuYWJsZSB0aGUgdXNlIG9mIGNsdXN0ZXIncyBGQVJHQVRFX1NQT1QgY2FwYWNpdHkgcHJvdmlkZXIgc3RyYXRlZ3lcbiAqIDMuIEVuYWJsZSBFQ1MgZGVwbG95bWVudCBjaXJjdWl0IGJyZWFrZXIgd2l0aCBhdXRvbWF0aWMgcm9sbGJhY2tcbiAqXG4gKi9cbmV4cG9ydCBjbGFzcyBEZXBsb3ltZW50Q29uZmlnRXh0ZW5zaW9uIGV4dGVuZHMgU2VydmljZUV4dGVuc2lvbiB7XG4gIHByaXZhdGUgcmVhZG9ubHkgcHJvcHM6IERlcGxveW1lbnRDb25maWdFeHRlbnNpb25Qcm9wcztcblxuICBjb25zdHJ1Y3Rvcihwcm9wczogRGVwbG95bWVudENvbmZpZ0V4dGVuc2lvblByb3BzID0ge30pIHtcbiAgICBzdXBlcihcImRlcGxveW1lbnQtY29uZmlnXCIpO1xuICAgIHRoaXMucHJvcHMgPSBwcm9wcztcbiAgfVxuXG4gIG1vZGlmeVNlcnZpY2VQcm9wcyhwcm9wczogU2VydmljZUJ1aWxkKTogU2VydmljZUJ1aWxkIHtcbiAgICAvLyBBcHBseSBkZXBsb3ltZW50IGNvbmZpZ3VyYXRpb24gaWYgc3BlY2lmaWVkXG4gICAgcmV0dXJuIHtcbiAgICAgIC4uLnByb3BzLFxuICAgICAgLi4uKHRoaXMucHJvcHMubWluSGVhbHRoeVBlcmNlbnQgIT09IHVuZGVmaW5lZCAmJiB7XG4gICAgICAgIG1pbkhlYWx0aHlQZXJjZW50OiB0aGlzLnByb3BzLm1pbkhlYWx0aHlQZXJjZW50LFxuICAgICAgfSksXG4gICAgICAuLi4odGhpcy5wcm9wcy5tYXhIZWFsdGh5UGVyY2VudCAhPT0gdW5kZWZpbmVkICYmIHtcbiAgICAgICAgbWF4SGVhbHRoeVBlcmNlbnQ6IHRoaXMucHJvcHMubWF4SGVhbHRoeVBlcmNlbnQsXG4gICAgICB9KSxcbiAgICB9O1xuICB9XG5cbiAgdXNlU2VydmljZShzZXJ2aWNlOiBFYzJTZXJ2aWNlIHwgRmFyZ2F0ZVNlcnZpY2UpOiB2b2lkIHtcbiAgICBjb25zdCBjZm5TZXJ2aWNlID0gc2VydmljZS5ub2RlLmRlZmF1bHRDaGlsZCBhcyBDZm5TZXJ2aWNlO1xuXG4gICAgaWYgKCFjZm5TZXJ2aWNlKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJVbmFibGUgdG8gYWNjZXNzIHVuZGVybHlpbmcgQ0ZOIHNlcnZpY2UgcmVzb3VyY2VcIik7XG4gICAgfVxuXG4gICAgLy8gQ29uZmlndXJlIGNpcmN1aXQgYnJlYWtlciAoZW5hYmxlZCBieSBkZWZhdWx0KVxuICAgIGNvbnN0IGVuYWJsZUNpcmN1aXRCcmVha2VyID1cbiAgICAgIHRoaXMucHJvcHMuZW5hYmxlQ2lyY3VpdEJyZWFrZXIgIT09IHVuZGVmaW5lZFxuICAgICAgICA/IHRoaXMucHJvcHMuZW5hYmxlQ2lyY3VpdEJyZWFrZXJcbiAgICAgICAgOiB0cnVlO1xuXG4gICAgaWYgKGVuYWJsZUNpcmN1aXRCcmVha2VyKSB7XG4gICAgICBjb25zdCByb2xsYmFjayA9XG4gICAgICAgIHRoaXMucHJvcHMuY2lyY3VpdEJyZWFrZXJSb2xsYmFjayAhPT0gdW5kZWZpbmVkXG4gICAgICAgICAgPyB0aGlzLnByb3BzLmNpcmN1aXRCcmVha2VyUm9sbGJhY2tcbiAgICAgICAgICA6IHRydWU7XG5cbiAgICAgIGNmblNlcnZpY2UuZGVwbG95bWVudENvbmZpZ3VyYXRpb24gPSB7XG4gICAgICAgIC4uLmNmblNlcnZpY2UuZGVwbG95bWVudENvbmZpZ3VyYXRpb24sXG4gICAgICAgIGRlcGxveW1lbnRDaXJjdWl0QnJlYWtlcjoge1xuICAgICAgICAgIGVuYWJsZTogdHJ1ZSxcbiAgICAgICAgICByb2xsYmFjayxcbiAgICAgICAgfSxcbiAgICAgIH07XG5cbiAgICAgIEFubm90YXRpb25zLm9mKHNlcnZpY2UpLmFkZEluZm8oXG4gICAgICAgIGBFQ1MgZGVwbG95bWVudCBjaXJjdWl0IGJyZWFrZXIgZW5hYmxlZCAocm9sbGJhY2s6ICR7cm9sbGJhY2t9KWAsXG4gICAgICApO1xuICAgIH1cblxuICAgIGlmICh0aGlzLnByb3BzLnVzZUZhcmdhdGVTcG90SW5zdGFuY2VzKSB7XG4gICAgICBjb25zdCBiYXNlID0gdGhpcy5wcm9wcy5jYXBhY2l0eVByb3ZpZGVyQmFzZSA/PyAwO1xuICAgICAgY29uc3Qgd2VpZ2h0ID0gdGhpcy5wcm9wcy5jYXBhY2l0eVByb3ZpZGVyV2VpZ2h0ID8/IDE7XG5cbiAgICAgIC8vIFNldCBGQVJHQVRFX1NQT1QgY2FwYWNpdHkgcHJvdmlkZXIgc3RyYXRlZ3lcbiAgICAgIGNmblNlcnZpY2UuY2FwYWNpdHlQcm92aWRlclN0cmF0ZWd5ID0gW1xuICAgICAgICB7XG4gICAgICAgICAgY2FwYWNpdHlQcm92aWRlcjogXCJGQVJHQVRFX1NQT1RcIixcbiAgICAgICAgICB3ZWlnaHQsXG4gICAgICAgICAgYmFzZSxcbiAgICAgICAgfSxcbiAgICAgIF07XG5cbiAgICAgIC8vIFJlbW92ZSBsYXVuY2ggdHlwZSBhcyBpdCBjb25mbGljdHMgd2l0aCBjYXBhY2l0eSBwcm92aWRlciBzdHJhdGVneVxuICAgICAgY2ZuU2VydmljZS5sYXVuY2hUeXBlID0gdW5kZWZpbmVkO1xuXG4gICAgICBBbm5vdGF0aW9ucy5vZihzZXJ2aWNlKS5hZGRJbmZvKFxuICAgICAgICBgU2VydmljZSBjb25maWd1cmVkIHRvIHVzZSBGQVJHQVRFX1NQT1QgY2FwYWNpdHkgcHJvdmlkZXIgKGJhc2U6ICR7YmFzZX0sIHdlaWdodDogJHt3ZWlnaHR9KWAsXG4gICAgICApO1xuICAgIH1cblxuICAgIC8vIEFkZCBpbmZvIGFib3V0IGRlcGxveW1lbnQgY29uZmlndXJhdGlvbiBpZiBjdXN0b21pemVkXG4gICAgY29uc3QgZGVwbG95bWVudEluZm86IHN0cmluZ1tdID0gW107XG4gICAgaWYgKHRoaXMucHJvcHMubWluSGVhbHRoeVBlcmNlbnQgIT09IHVuZGVmaW5lZCkge1xuICAgICAgZGVwbG95bWVudEluZm8ucHVzaChcbiAgICAgICAgYG1pbkhlYWx0aHlQZXJjZW50OiAke3RoaXMucHJvcHMubWluSGVhbHRoeVBlcmNlbnR9JWAsXG4gICAgICApO1xuICAgIH1cbiAgICBpZiAodGhpcy5wcm9wcy5tYXhIZWFsdGh5UGVyY2VudCAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICBkZXBsb3ltZW50SW5mby5wdXNoKFxuICAgICAgICBgbWF4SGVhbHRoeVBlcmNlbnQ6ICR7dGhpcy5wcm9wcy5tYXhIZWFsdGh5UGVyY2VudH0lYCxcbiAgICAgICk7XG4gICAgfVxuXG4gICAgaWYgKGRlcGxveW1lbnRJbmZvLmxlbmd0aCA+IDApIHtcbiAgICAgIEFubm90YXRpb25zLm9mKHNlcnZpY2UpLmFkZEluZm8oXG4gICAgICAgIGBTZXJ2aWNlIGRlcGxveW1lbnQgY29uZmlndXJhdGlvbjogJHtkZXBsb3ltZW50SW5mby5qb2luKFwiLCBcIil9YCxcbiAgICAgICk7XG4gICAgfVxuICB9XG59XG4iXX0=
|
|
@@ -44,5 +44,5 @@ class DocumentDbAccessExtension extends ecs_service_extensions_1.ServiceExtensio
|
|
|
44
44
|
}
|
|
45
45
|
exports.DocumentDbAccessExtension = DocumentDbAccessExtension;
|
|
46
46
|
_a = JSII_RTTI_SYMBOL_1;
|
|
47
|
-
DocumentDbAccessExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.DocumentDbAccessExtension", version: "0.20.
|
|
47
|
+
DocumentDbAccessExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.DocumentDbAccessExtension", version: "0.20.8" };
|
|
48
48
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRG9jdW1lbnREYkFjY2Vzc0V4dGVuc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leHRlbnNpb25zL0RvY3VtZW50RGJBY2Nlc3NFeHRlbnNpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSx1RkFJb0Q7QUFDcEQsMkNBQTJDO0FBRzNDLDBDQUFzRDtBQUN0RCxvQ0FBb0Q7QUFPcEQsTUFBTSxpQkFBa0IsU0FBUSw4Q0FBcUI7SUFDbkQsWUFBb0IsTUFBZTtRQUNqQyxLQUFLLEVBQUUsQ0FBQztRQURVLFdBQU0sR0FBTixNQUFNLENBQVM7SUFFbkMsQ0FBQztJQUVELHlCQUF5QixDQUN2QixLQUFxQztRQUVyQyxPQUFPO1lBQ0wsR0FBRyxLQUFLO1lBQ1IsT0FBTyxFQUFFO2dCQUNQLEdBQUcsS0FBSyxDQUFDLE9BQU87Z0JBQ2hCLFdBQVcsRUFBRSxHQUFHLENBQUMsTUFBTSxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUM7YUFDeEQ7WUFDRCxXQUFXLEVBQUU7Z0JBQ1gsR0FBRyxLQUFLLENBQUMsV0FBVztnQkFDcEIsNkJBQTZCLEVBQUUsTUFBTTthQUN0QztTQUNGLENBQUM7SUFDSixDQUFDO0NBQ0Y7QUFFRCxNQUFhLHlCQUEwQixTQUFRLHlDQUFnQjtJQUs3RCxZQUFZLEtBQXFDO1FBQy9DLEtBQUssQ0FBQyw2QkFBNkIsQ0FBQyxDQUFDO1FBQ3JDLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFFRCxPQUFPLENBQUMsTUFBZSxFQUFFLE1BQWlCO1FBQ3hDLElBQUksQ0FBQyxhQUFhLEdBQUcsTUFBTSxDQUFDO1FBRTVCLElBQUksQ0FBQyxVQUFVLEdBQUcscUJBQVUsQ0FBQyxnQkFBZ0IsQ0FDM0MsTUFBTSxFQUNOLFlBQVksRUFDWixJQUFJLENBQUMsS0FBSyxDQUFDLHFCQUFxQixDQUNqQyxDQUFDO0lBQ0osQ0FBQztJQUVNLFFBQVE7UUFDYixJQUFBLGdDQUF3QixFQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxTQUFTLEVBQUUsRUFBRSxDQUNqRSxTQUFTLENBQUMsd0JBQXdCLENBQ2hDLElBQUksaUJBQWlCLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsQ0FDOUMsQ0FDRixDQUFDO0lBQ0osQ0FBQztJQUVNLFVBQVUsQ0FBQyxPQUE0QztRQUM1RCxJQUFJLENBQUMsVUFBVSxDQUFDLFdBQVcsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN2QyxDQUFDOztBQTlCSCw4REErQkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb250YWluZXJNdXRhdGluZ0hvb2ssXG4gIFNlcnZpY2UsXG4gIFNlcnZpY2VFeHRlbnNpb24sXG59IGZyb20gXCJAYXdzLWNkay1jb250YWluZXJzL2Vjcy1zZXJ2aWNlLWV4dGVuc2lvbnNcIjtcbmltcG9ydCAqIGFzIGVjcyBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjc1wiO1xuaW1wb3J0IHsgSVNlY3JldCB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3Mtc2VjcmV0c21hbmFnZXJcIjtcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gXCJjb25zdHJ1Y3RzXCI7XG5pbXBvcnQgeyBEb2N1bWVudERCLCBJRG9jdW1lbnREQiB9IGZyb20gXCIuLi9wbGF0Zm9ybVwiO1xuaW1wb3J0IHsgZmlsdGVyRGJBY2Nlc3NDb250YWluZXJzIH0gZnJvbSBcIi4uL3V0aWxzXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgRG9jdW1lbnREYkFjY2Vzc0V4dGVuc2lvblByb3BzIHtcbiAgcmVhZG9ubHkgYmFzZVBsYXRmb3JtU3RhY2tOYW1lOiBzdHJpbmc7XG4gIHJlYWRvbmx5IHNlY3VyaXR5R3JvdXBJZDogc3RyaW5nO1xufVxuXG5jbGFzcyBBZGREb2N1bWVudERiSG9vayBleHRlbmRzIENvbnRhaW5lck11dGF0aW5nSG9vayB7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgc2VjcmV0OiBJU2VjcmV0KSB7XG4gICAgc3VwZXIoKTtcbiAgfVxuXG4gIG11dGF0ZUNvbnRhaW5lckRlZmluaXRpb24oXG4gICAgcHJvcHM6IGVjcy5Db250YWluZXJEZWZpbml0aW9uT3B0aW9ucyxcbiAgKTogZWNzLkNvbnRhaW5lckRlZmluaXRpb25PcHRpb25zIHtcbiAgICByZXR1cm4ge1xuICAgICAgLi4ucHJvcHMsXG4gICAgICBzZWNyZXRzOiB7XG4gICAgICAgIC4uLnByb3BzLnNlY3JldHMsXG4gICAgICAgIE1PTkdPREJfVVJMOiBlY3MuU2VjcmV0LmZyb21TZWNyZXRzTWFuYWdlcih0aGlzLnNlY3JldCksXG4gICAgICB9LFxuICAgICAgZW52aXJvbm1lbnQ6IHtcbiAgICAgICAgLi4ucHJvcHMuZW52aXJvbm1lbnQsXG4gICAgICAgIE1PTkdPREJfSUdOT1JFX1NTTF9WQUxJREFUSU9OOiBcInRydWVcIixcbiAgICAgIH0sXG4gICAgfTtcbiAgfVxufVxuXG5leHBvcnQgY2xhc3MgRG9jdW1lbnREYkFjY2Vzc0V4dGVuc2lvbiBleHRlbmRzIFNlcnZpY2VFeHRlbnNpb24ge1xuICByZWFkb25seSBwcm9wczogRG9jdW1lbnREYkFjY2Vzc0V4dGVuc2lvblByb3BzO1xuXG4gIGRvY3VtZW50RGIhOiBJRG9jdW1lbnREQjtcblxuICBjb25zdHJ1Y3Rvcihwcm9wczogRG9jdW1lbnREYkFjY2Vzc0V4dGVuc2lvblByb3BzKSB7XG4gICAgc3VwZXIoXCJkb2N1bWVudGRiLWFjY2Vzcy1leHRlbnNpb25cIik7XG4gICAgdGhpcy5wcm9wcyA9IHByb3BzO1xuICB9XG5cbiAgcHJlaG9vayhwYXJlbnQ6IFNlcnZpY2UsIF9zY29wZTogQ29uc3RydWN0KTogdm9pZCB7XG4gICAgdGhpcy5wYXJlbnRTZXJ2aWNlID0gcGFyZW50O1xuXG4gICAgdGhpcy5kb2N1bWVudERiID0gRG9jdW1lbnREQi5mcm9tQmFzZVBsYXRmb3JtKFxuICAgICAgcGFyZW50LFxuICAgICAgXCJEb2N1bWVudERCXCIsXG4gICAgICB0aGlzLnByb3BzLmJhc2VQbGF0Zm9ybVN0YWNrTmFtZSxcbiAgICApO1xuICB9XG5cbiAgcHVibGljIGFkZEhvb2tzKCkge1xuICAgIGZpbHRlckRiQWNjZXNzQ29udGFpbmVycyh0aGlzLnBhcmVudFNlcnZpY2UpLmZvckVhY2goKGV4dGVuc2lvbikgPT5cbiAgICAgIGV4dGVuc2lvbi5hZGRDb250YWluZXJNdXRhdGluZ0hvb2soXG4gICAgICAgIG5ldyBBZGREb2N1bWVudERiSG9vayh0aGlzLmRvY3VtZW50RGIuc2VjcmV0KSxcbiAgICAgICksXG4gICAgKTtcbiAgfVxuXG4gIHB1YmxpYyB1c2VTZXJ2aWNlKHNlcnZpY2U6IGVjcy5FYzJTZXJ2aWNlIHwgZWNzLkZhcmdhdGVTZXJ2aWNlKTogdm9pZCB7XG4gICAgdGhpcy5kb2N1bWVudERiLmFsbG93QWNjZXNzKHNlcnZpY2UpO1xuICB9XG59XG4iXX0=
|
|
@@ -84,5 +84,5 @@ class DomainEventMessagingExtension extends ecs_service_extensions_1.ServiceExte
|
|
|
84
84
|
}
|
|
85
85
|
exports.DomainEventMessagingExtension = DomainEventMessagingExtension;
|
|
86
86
|
_a = JSII_RTTI_SYMBOL_1;
|
|
87
|
-
DomainEventMessagingExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.DomainEventMessagingExtension", version: "0.20.
|
|
87
|
+
DomainEventMessagingExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.DomainEventMessagingExtension", version: "0.20.8" };
|
|
88
88
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRG9tYWluRXZlbnRNZXNzYWdpbmdFeHRlbnNpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXh0ZW5zaW9ucy9Eb21haW5FdmVudE1lc3NhZ2luZ0V4dGVuc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHVGQU9vRDtBQUNwRCw2Q0FBdUM7QUFNdkMsaURBSTZCO0FBRTdCLGlEQUFvRTtBQU9wRSxNQUFhLDZCQUE4QixTQUFRLHlDQUFnQjtJQVFqRSxZQUFZLEtBQW1DO1FBQzdDLEtBQUssQ0FBQywwQkFBMEIsQ0FBQyxDQUFDO1FBSnBDLG9CQUFlLEdBQWtCLEVBQUUsQ0FBQztRQUNwQyxrQkFBYSxHQUFrQixFQUFFLENBQUM7UUFJaEMsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLElBQUksRUFBRSxDQUFDO0lBQzNCLENBQUM7SUFFRCxPQUFPLENBQUMsT0FBZ0IsRUFBRSxLQUFnQjtRQUN4QyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUN0QixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksZUFBSyxDQUFDLE9BQU8sRUFBRSxPQUFPLEVBQUU7Z0JBQ3ZDLGVBQWUsRUFBRTtvQkFDZixLQUFLLEVBQUUsSUFBSSxlQUFLLENBQUMsT0FBTyxFQUFFLGlCQUFpQixFQUFFO3dCQUMzQyxlQUFlLEVBQUUsc0JBQVEsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDO3FCQUNuQyxDQUFDO29CQUNGLGVBQWUsRUFBRSxDQUFDO2lCQUNuQjthQUNGLENBQUMsQ0FBQztRQUNMLENBQUM7YUFBTSxDQUFDO1lBQ04sSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQztRQUNoQyxDQUFDO1FBRUQsSUFBSSxJQUFJLENBQUMsZUFBZSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUUsQ0FBQztZQUNwQyxJQUFJLENBQUMsY0FBYyxHQUFHLElBQUksdUNBQWMsQ0FBQztnQkFDdkMsV0FBVyxFQUFFLElBQUksQ0FBQyxLQUFLO2dCQUN2QixhQUFhLEVBQUUsSUFBSSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQ3JDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxJQUFJLDBDQUFpQixDQUFDLEVBQUUsS0FBSyxFQUFFLENBQUMsQ0FDNUM7YUFDRixDQUFDLENBQUM7WUFDSCxJQUFJLENBQUMsY0FBYyxDQUFDLE9BQU8sQ0FBQyxPQUFPLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFDOUMsQ0FBQztRQUVELElBQUksSUFBSSxDQUFDLGFBQWEsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFLENBQUM7WUFDbEMsSUFBSSxDQUFDLGlCQUFpQixHQUFHLElBQUksMENBQWlCLENBQUM7Z0JBQzdDLFdBQVcsRUFBRSxJQUFJLENBQUMsYUFBYSxDQUFDLEdBQUcsQ0FDakMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLElBQUksd0NBQWUsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQzFDO2FBQ0YsQ0FBQyxDQUFDO1lBQ0gsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxPQUFPLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFDakQsQ0FBQztJQUNILENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxDQUFDLGNBQWMsRUFBRSxRQUFRLEVBQUUsQ0FBQztRQUNoQyxJQUFJLENBQUMsaUJBQWlCLEVBQUUsUUFBUSxFQUFFLENBQUM7SUFDckMsQ0FBQztJQUVELGlCQUFpQixDQUFDLGNBQThCO1FBQzlDLElBQUksQ0FBQyxjQUFjLEVBQUUsaUJBQWlCLENBQUMsY0FBYyxDQUFDLENBQUM7UUFDdkQsSUFBSSxDQUFDLGlCQUFpQixFQUFFLGlCQUFpQixDQUFDLGNBQWMsQ0FBQyxDQUFDO0lBQzVELENBQUM7SUFFTSxTQUFTLENBQUMsS0FBYTtRQUM1QixJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNqQyxnQkFBZ0I7SUFDbEIsQ0FBQztJQUVNLE9BQU8sQ0FBQyxLQUFhO1FBQzFCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFTSxVQUFVLENBQUMsUUFBcUM7UUFDckQsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUNoQixNQUFNLElBQUksS0FBSyxDQUFDLHVCQUF1QixDQUFDLENBQUM7UUFDM0MsQ0FBQztRQUVELDJHQUEyRztRQUMzRyxxRUFBcUU7UUFDckUsTUFBTSxVQUFVLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzFELElBQUksVUFBVSxFQUFFLENBQUM7WUFDZixNQUFNLFdBQVcsR0FBRyxVQUFVLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FDOUMsVUFBVSxDQUNPLENBQUM7WUFDcEIsSUFBSSxXQUFXLEVBQUUsQ0FBQztnQkFDaEIsV0FBVyxDQUFDLGNBQWMsR0FBRyxJQUFJLHdCQUFjLENBQUM7b0JBQzlDLFVBQVUsRUFBRTt3QkFDVixJQUFJLHlCQUFlLENBQUM7NEJBQ2xCLE9BQU8sRUFBRSxDQUFDLGlCQUFpQixDQUFDOzRCQUM1QixVQUFVLEVBQUUsQ0FBQyxJQUFJLDBCQUFnQixDQUFDLG1CQUFtQixDQUFDLENBQUM7NEJBQ3ZELFNBQVMsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDOzRCQUNoQyxHQUFHLEVBQUUscUJBQXFCO3lCQUMzQixDQUFDO3FCQUNIO2lCQUNGLENBQUMsQ0FBQztnQkFDSCxXQUFXLENBQUMsTUFBTSxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsQ0FBQztZQUM3QyxDQUFDO1FBQ0gsQ0FBQztJQUNILENBQUM7O0FBNUZILHNFQTZGQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEluamVjdGFibGVUb3BpYyxcbiAgSW5qZWN0ZXJFeHRlbnNpb24sXG4gIFF1ZXVlRXh0ZW5zaW9uLFxuICBTZXJ2aWNlLFxuICBTZXJ2aWNlRXh0ZW5zaW9uLFxuICBUb3BpY1N1YnNjcmlwdGlvbixcbn0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0IHsgRHVyYXRpb24gfSBmcm9tIFwiYXdzLWNkay1saWJcIjtcbmltcG9ydCB7XG4gIEVjMlNlcnZpY2UsXG4gIEZhcmdhdGVTZXJ2aWNlLFxuICBUYXNrRGVmaW5pdGlvbixcbn0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1lY3NcIjtcbmltcG9ydCB7XG4gIFBvbGljeURvY3VtZW50LFxuICBQb2xpY3lTdGF0ZW1lbnQsXG4gIFNlcnZpY2VQcmluY2lwYWwsXG59IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtaWFtXCI7XG5pbXBvcnQgeyBJVG9waWMgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLXNuc1wiO1xuaW1wb3J0IHsgQ2ZuUXVldWVQb2xpY3ksIElRdWV1ZSwgUXVldWUgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLXNxc1wiO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSBcImNvbnN0cnVjdHNcIjtcblxuZXhwb3J0IGludGVyZmFjZSBFdmVudExpc3RlbmVyRXh0ZW5zaW9uUHJvcHMge1xuICByZWFkb25seSBxdWV1ZT86IFF1ZXVlO1xufVxuXG5leHBvcnQgY2xhc3MgRG9tYWluRXZlbnRNZXNzYWdpbmdFeHRlbnNpb24gZXh0ZW5kcyBTZXJ2aWNlRXh0ZW5zaW9uIHtcbiAgcHJvcHM6IEV2ZW50TGlzdGVuZXJFeHRlbnNpb25Qcm9wcztcbiAgcXVldWU6IElRdWV1ZSB8IHVuZGVmaW5lZDtcbiAgcXVldWVFeHRlbnNpb24/OiBRdWV1ZUV4dGVuc2lvbjtcbiAgaW5qZWN0ZXJFeHRlbnNpb24/OiBJbmplY3RlckV4dGVuc2lvbjtcbiAgc3Vic2NyaWJlRXZlbnRzOiBBcnJheTxJVG9waWM+ID0gW107XG4gIHB1Ymxpc2hFdmVudHM6IEFycmF5PElUb3BpYz4gPSBbXTtcblxuICBjb25zdHJ1Y3Rvcihwcm9wcz86IEV2ZW50TGlzdGVuZXJFeHRlbnNpb25Qcm9wcykge1xuICAgIHN1cGVyKFwiZXZlbnQtbGlzdGVuZXItZXh0ZW5zaW9uXCIpO1xuICAgIHRoaXMucHJvcHMgPSBwcm9wcyA/PyB7fTtcbiAgfVxuXG4gIHByZWhvb2soc2VydmljZTogU2VydmljZSwgc2NvcGU6IENvbnN0cnVjdCk6IHZvaWQge1xuICAgIGlmICghdGhpcy5wcm9wcy5xdWV1ZSkge1xuICAgICAgdGhpcy5xdWV1ZSA9IG5ldyBRdWV1ZShzZXJ2aWNlLCBcIlF1ZXVlXCIsIHtcbiAgICAgICAgZGVhZExldHRlclF1ZXVlOiB7XG4gICAgICAgICAgcXVldWU6IG5ldyBRdWV1ZShzZXJ2aWNlLCBcIkRlYWRMZXR0ZXJRdWV1ZVwiLCB7XG4gICAgICAgICAgICByZXRlbnRpb25QZXJpb2Q6IER1cmF0aW9uLmRheXMoMTQpLFxuICAgICAgICAgIH0pLFxuICAgICAgICAgIG1heFJlY2VpdmVDb3VudDogMyxcbiAgICAgICAgfSxcbiAgICAgIH0pO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLnF1ZXVlID0gdGhpcy5wcm9wcy5xdWV1ZTtcbiAgICB9XG5cbiAgICBpZiAodGhpcy5zdWJzY3JpYmVFdmVudHMubGVuZ3RoID4gMCkge1xuICAgICAgdGhpcy5xdWV1ZUV4dGVuc2lvbiA9IG5ldyBRdWV1ZUV4dGVuc2lvbih7XG4gICAgICAgIGV2ZW50c1F1ZXVlOiB0aGlzLnF1ZXVlLFxuICAgICAgICBzdWJzY3JpcHRpb25zOiB0aGlzLnN1YnNjcmliZUV2ZW50cy5tYXAoXG4gICAgICAgICAgKHRvcGljKSA9PiBuZXcgVG9waWNTdWJzY3JpcHRpb24oeyB0b3BpYyB9KSxcbiAgICAgICAgKSxcbiAgICAgIH0pO1xuICAgICAgdGhpcy5xdWV1ZUV4dGVuc2lvbi5wcmVob29rKHNlcnZpY2UsIHNjb3BlKTtcbiAgICB9XG5cbiAgICBpZiAodGhpcy5wdWJsaXNoRXZlbnRzLmxlbmd0aCA+IDApIHtcbiAgICAgIHRoaXMuaW5qZWN0ZXJFeHRlbnNpb24gPSBuZXcgSW5qZWN0ZXJFeHRlbnNpb24oe1xuICAgICAgICBpbmplY3RhYmxlczogdGhpcy5wdWJsaXNoRXZlbnRzLm1hcChcbiAgICAgICAgICAodG9waWMpID0+IG5ldyBJbmplY3RhYmxlVG9waWMoeyB0b3BpYyB9KSxcbiAgICAgICAgKSxcbiAgICAgIH0pO1xuICAgICAgdGhpcy5pbmplY3RlckV4dGVuc2lvbi5wcmVob29rKHNlcnZpY2UsIHNjb3BlKTtcbiAgICB9XG4gIH1cblxuICBhZGRIb29rcygpOiB2b2lkIHtcbiAgICB0aGlzLnF1ZXVlRXh0ZW5zaW9uPy5hZGRIb29rcygpO1xuICAgIHRoaXMuaW5qZWN0ZXJFeHRlbnNpb24/LmFkZEhvb2tzKCk7XG4gIH1cblxuICB1c2VUYXNrRGVmaW5pdGlvbih0YXNrRGVmaW5pdGlvbjogVGFza0RlZmluaXRpb24pOiB2b2lkIHtcbiAgICB0aGlzLnF1ZXVlRXh0ZW5zaW9uPy51c2VUYXNrRGVmaW5pdGlvbih0YXNrRGVmaW5pdGlvbik7XG4gICAgdGhpcy5pbmplY3RlckV4dGVuc2lvbj8udXNlVGFza0RlZmluaXRpb24odGFza0RlZmluaXRpb24pO1xuICB9XG5cbiAgcHVibGljIHN1YnNjcmliZSh0b3BpYzogSVRvcGljKTogdm9pZCB7XG4gICAgdGhpcy5zdWJzY3JpYmVFdmVudHMucHVzaCh0b3BpYyk7XG4gICAgLy8gYWRkIHRoZSB0b3BpY1xuICB9XG5cbiAgcHVibGljIHB1Ymxpc2godG9waWM6IElUb3BpYykge1xuICAgIHRoaXMucHVibGlzaEV2ZW50cy5wdXNoKHRvcGljKTtcbiAgfVxuXG4gIHB1YmxpYyB1c2VTZXJ2aWNlKF9zZXJ2aWNlOiBFYzJTZXJ2aWNlIHwgRmFyZ2F0ZVNlcnZpY2UpOiB2b2lkIHtcbiAgICBpZiAoIXRoaXMucXVldWUpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIlF1ZXVlIG11c3QgYmUgZGVmaW5lZFwiKTtcbiAgICB9XG5cbiAgICAvLyBwcmV2ZW50IGlzc3VlIHdpdGggdG9vIG1hbnkgc3BlY2lmaWMgcG9saWN5IHJlc3RyaWN0aW9ucywgc2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9hd3MvYXdzLWNkay9pc3N1ZXMvNzczMlxuICAgIC8vIHVuZGVmaW5lZCBwb2xpY3kgaGFwcGVucyB3aGVuIHRoZXJlIGlzIG5vIGV2ZW50IHRvcGljIHRvIHN1YnNjcmliZVxuICAgIGNvbnN0IHBvbGljeU5vZGUgPSB0aGlzLnF1ZXVlLm5vZGUudHJ5RmluZENoaWxkKFwiUG9saWN5XCIpO1xuICAgIGlmIChwb2xpY3lOb2RlKSB7XG4gICAgICBjb25zdCBxdWV1ZVBvbGljeSA9IHBvbGljeU5vZGUubm9kZS50cnlGaW5kQ2hpbGQoXG4gICAgICAgIFwiUmVzb3VyY2VcIixcbiAgICAgICkgYXMgQ2ZuUXVldWVQb2xpY3k7XG4gICAgICBpZiAocXVldWVQb2xpY3kpIHtcbiAgICAgICAgcXVldWVQb2xpY3kucG9saWN5RG9jdW1lbnQgPSBuZXcgUG9saWN5RG9jdW1lbnQoe1xuICAgICAgICAgIHN0YXRlbWVudHM6IFtcbiAgICAgICAgICAgIG5ldyBQb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgICAgICAgICBhY3Rpb25zOiBbXCJzcXM6U2VuZE1lc3NhZ2VcIl0sXG4gICAgICAgICAgICAgIHByaW5jaXBhbHM6IFtuZXcgU2VydmljZVByaW5jaXBhbChcInNucy5hbWF6b25hd3MuY29tXCIpXSxcbiAgICAgICAgICAgICAgcmVzb3VyY2VzOiBbdGhpcy5xdWV1ZS5xdWV1ZUFybl0sXG4gICAgICAgICAgICAgIHNpZDogXCJBbGxvd1NOU1RvU2VuZFRvU1FTXCIsXG4gICAgICAgICAgICB9KSxcbiAgICAgICAgICBdLFxuICAgICAgICB9KTtcbiAgICAgICAgcXVldWVQb2xpY3kucXVldWVzID0gW3RoaXMucXVldWUucXVldWVVcmxdO1xuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIl19
|
|
@@ -46,5 +46,5 @@ class EfsMountExtension extends ecs_service_extensions_1.ServiceExtension {
|
|
|
46
46
|
}
|
|
47
47
|
exports.EfsMountExtension = EfsMountExtension;
|
|
48
48
|
_a = JSII_RTTI_SYMBOL_1;
|
|
49
|
-
EfsMountExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.EfsMountExtension", version: "0.20.
|
|
49
|
+
EfsMountExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.EfsMountExtension", version: "0.20.8" };
|
|
50
50
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRWZzTW91bnRFeHRlbnNpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXh0ZW5zaW9ucy9FZnNNb3VudEV4dGVuc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHVGQUE4RTtBQU05RSw2REFBMEU7QUFzQjFFOzs7R0FHRztBQUNILE1BQWEsaUJBQWtCLFNBQVEseUNBQWdCO0lBTXJELFlBQVksS0FBa0M7UUFDNUMsS0FBSyxDQUFDLHFCQUFxQixDQUFDLENBQUM7UUFFN0IsSUFBSSxDQUFDLElBQUksR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxVQUFVLEdBQUcsS0FBSyxDQUFDLFVBQVUsQ0FBQztRQUNuQyxJQUFJLENBQUMsVUFBVSxHQUFHLEtBQUssQ0FBQyxVQUFVLENBQUM7UUFDbkMsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7SUFDeEMsQ0FBQztJQUVNLGlCQUFpQixDQUFDLGNBQThCO1FBQ3JELE1BQU0sWUFBWSxHQUFHLGNBQWMsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLENBQUM7UUFFekQsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDO1lBQ2xCLE1BQU0sSUFBSSxLQUFLLENBQ2Isd0VBQXdFLENBQ3pFLENBQUM7UUFDSixDQUFDO1FBRUQsY0FBYyxDQUFDLFNBQVMsQ0FBQztZQUN2QixJQUFJLEVBQUUsSUFBSSxDQUFDLFVBQVU7WUFDckIsc0JBQXNCLEVBQUU7Z0JBQ3RCLFlBQVksRUFBRSxJQUFJLENBQUMsVUFBVSxDQUFDLFlBQVksRUFBRTtnQkFDNUMsYUFBYSxFQUFFLEdBQUc7Z0JBQ2xCLGlCQUFpQixFQUFFLFNBQVM7YUFDN0I7U0FDRixDQUFDLENBQUM7UUFFSCxZQUFZLENBQUMsY0FBYyxDQUFDO1lBQzFCLGFBQWEsRUFBRSxJQUFJLENBQUMsSUFBSTtZQUN4QixRQUFRLEVBQUUsSUFBSSxDQUFDLFVBQVUsSUFBSSw2QkFBYSxDQUFDLFNBQVM7WUFDcEQsWUFBWSxFQUFFLElBQUksQ0FBQyxVQUFVO1NBQzlCLENBQUMsQ0FBQztRQUVILElBQUksQ0FBQyxVQUFVLENBQUMsV0FBVyxDQUN6QixZQUFZLENBQUMsY0FBYyxDQUFDLFFBQVEsRUFDcEMsSUFBSSxDQUFDLFVBQVUsQ0FDaEIsQ0FBQztJQUNKLENBQUM7SUFFTSxVQUFVLENBQUMsT0FBb0M7UUFDcEQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxlQUFlLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDM0MsQ0FBQztJQUVPLFlBQVk7UUFDbEIsT0FBTyxjQUFjLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLFlBQVksRUFBRSxHQUFHLENBQUMsQ0FBQyxPQUFPLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxFQUFFLENBQUM7SUFDakYsQ0FBQzs7QUFuREgsOENBb0RDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2VydmljZUV4dGVuc2lvbiB9IGZyb20gXCJAYXdzLWNkay1jb250YWluZXJzL2Vjcy1zZXJ2aWNlLWV4dGVuc2lvbnNcIjtcbmltcG9ydCB7XG4gIEVjMlNlcnZpY2UsXG4gIEZhcmdhdGVTZXJ2aWNlLFxuICBUYXNrRGVmaW5pdGlvbixcbn0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1lY3NcIjtcbmltcG9ydCB7IEVmc0FjY2Vzc01vZGUsIElFZnNGaWxlU3lzdGVtIH0gZnJvbSBcIi4uL3BsYXRmb3JtL0Vmc0ZpbGVTeXN0ZW1cIjtcblxuLyoqXG4gKiBFRlMgZXh0ZW5zaW9uIHByb3BlcnRpZXMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgRWZzTW91bnRFeHRlbnNpb25Qcm9wZXJ0aWVzIHtcbiAgLyoqXG4gICAqIFRoZSBwYXRoIHRvIG1vdW50IHRoZSBFRlMgdG8uXG4gICAqL1xuICByZWFkb25seSBwYXRoOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFRoZSBhY2Nlc3MgbW9kZSBmb3IgdGhlIGZpbGVzeXN0ZW0gZm9yIHRoaXMgc2VydmljZS5cbiAgICovXG4gIHJlYWRvbmx5IGFjY2Vzc01vZGU6IEVmc0FjY2Vzc01vZGU7XG5cbiAgLyoqXG4gICAqIFRoZSBmaWxlc3lzdGVtIHRvIGJlIG1vdW50ZWQuXG4gICAqL1xuICByZWFkb25seSBmaWxlc3lzdGVtOiBJRWZzRmlsZVN5c3RlbTtcbn1cblxuLyoqXG4gKiBFeHRlbnNpb24gdGhhdCBhbGxvd3MgdG8gbW91bnQgYW4gRUZTIHRvIGEgZ2l2ZW4gbW91bnQgcG9pbnQuXG4gKiBNdWx0aXBsZSBleHRlbnNpb25zIGluc3RhbmNlcyBjYW4gYmUgdXNlZCwgd2hlbiBkaWZmZXJlbnQgbW91bnQgcG9pbnRzIGFyZSBzcGVjaWZpZWQuXG4gKi9cbmV4cG9ydCBjbGFzcyBFZnNNb3VudEV4dGVuc2lvbiBleHRlbmRzIFNlcnZpY2VFeHRlbnNpb24ge1xuICByZWFkb25seSBmaWxlc3lzdGVtOiBJRWZzRmlsZVN5c3RlbTtcbiAgcmVhZG9ubHkgcGF0aDogc3RyaW5nO1xuICByZWFkb25seSBhY2Nlc3NNb2RlOiBFZnNBY2Nlc3NNb2RlO1xuICByZWFkb25seSB2b2x1bWVOYW1lOiBzdHJpbmc7XG5cbiAgY29uc3RydWN0b3IocHJvcHM6IEVmc01vdW50RXh0ZW5zaW9uUHJvcGVydGllcykge1xuICAgIHN1cGVyKFwiZWZzLW1vdW50LWV4dGVuc2lvblwiKTtcblxuICAgIHRoaXMucGF0aCA9IHByb3BzLnBhdGg7XG4gICAgdGhpcy5hY2Nlc3NNb2RlID0gcHJvcHMuYWNjZXNzTW9kZTtcbiAgICB0aGlzLmZpbGVzeXN0ZW0gPSBwcm9wcy5maWxlc3lzdGVtO1xuICAgIHRoaXMudm9sdW1lTmFtZSA9IHRoaXMuZ2VuZXJhdGVOYW1lKCk7XG4gIH1cblxuICBwdWJsaWMgdXNlVGFza0RlZmluaXRpb24odGFza0RlZmluaXRpb246IFRhc2tEZWZpbml0aW9uKTogdm9pZCB7XG4gICAgY29uc3QgYXBwQ29udGFpbmVyID0gdGFza0RlZmluaXRpb24uZmluZENvbnRhaW5lcihcImFwcFwiKTtcblxuICAgIGlmICghYXBwQ29udGFpbmVyKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIFwiQ2FuIG5vdCBhZGQgYSB2b2x1bWUgdG8gYSB0YXNrIGJlZm9yZSBhZGRpbmcgdGhlIGFwcGxpY2F0aW9uIGNvbnRhaW5lclwiLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICB0YXNrRGVmaW5pdGlvbi5hZGRWb2x1bWUoe1xuICAgICAgbmFtZTogdGhpcy52b2x1bWVOYW1lLFxuICAgICAgZWZzVm9sdW1lQ29uZmlndXJhdGlvbjoge1xuICAgICAgICBmaWxlU3lzdGVtSWQ6IHRoaXMuZmlsZXN5c3RlbS5maWxlU3lzdGVtSWQoKSxcbiAgICAgICAgcm9vdERpcmVjdG9yeTogXCIvXCIsXG4gICAgICAgIHRyYW5zaXRFbmNyeXB0aW9uOiBcIkVOQUJMRURcIixcbiAgICAgIH0sXG4gICAgfSk7XG5cbiAgICBhcHBDb250YWluZXIuYWRkTW91bnRQb2ludHMoe1xuICAgICAgY29udGFpbmVyUGF0aDogdGhpcy5wYXRoLFxuICAgICAgcmVhZE9ubHk6IHRoaXMuYWNjZXNzTW9kZSA9PSBFZnNBY2Nlc3NNb2RlLlJFQURfT05MWSxcbiAgICAgIHNvdXJjZVZvbHVtZTogdGhpcy52b2x1bWVOYW1lLFxuICAgIH0pO1xuXG4gICAgdGhpcy5maWxlc3lzdGVtLmdyYW50QWNjZXNzKFxuICAgICAgYXBwQ29udGFpbmVyLnRhc2tEZWZpbml0aW9uLnRhc2tSb2xlLFxuICAgICAgdGhpcy5hY2Nlc3NNb2RlLFxuICAgICk7XG4gIH1cblxuICBwdWJsaWMgdXNlU2VydmljZShzZXJ2aWNlOiBFYzJTZXJ2aWNlIHwgRmFyZ2F0ZVNlcnZpY2UpOiB2b2lkIHtcbiAgICB0aGlzLmZpbGVzeXN0ZW0uYWxsb3dDb25uZWN0aW9uKHNlcnZpY2UpO1xuICB9XG5cbiAgcHJpdmF0ZSBnZW5lcmF0ZU5hbWUoKSB7XG4gICAgcmV0dXJuIGBlZnMtdm9sdW1lLSR7dGhpcy5wYXRoLnJlcGxhY2UoL1teYS16QS1aXS9nLCBcIi1cIikucmVwbGFjZSgvXi0rLywgXCJcIil9YDtcbiAgfVxufVxuIl19
|
|
@@ -61,5 +61,5 @@ class ExtraContainerExtension extends ecs_service_extensions_1.ServiceExtension
|
|
|
61
61
|
}
|
|
62
62
|
exports.ExtraContainerExtension = ExtraContainerExtension;
|
|
63
63
|
_a = JSII_RTTI_SYMBOL_1;
|
|
64
|
-
ExtraContainerExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ExtraContainerExtension", version: "0.20.
|
|
64
|
+
ExtraContainerExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ExtraContainerExtension", version: "0.20.8" };
|
|
65
65
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXh0cmFDb250YWluZXJFeHRlbnNpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXh0ZW5zaW9ucy9FeHRyYUNvbnRhaW5lckV4dGVuc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHVGQUE4RTtBQUM5RSxpREFBMkM7QUFDM0MsMkNBQTJDO0FBa0QzQyxNQUFhLHVCQUF3QixTQUFRLHlDQUFnQjtJQUkzRCxZQUFZLElBQVksRUFBRSxjQUE0QztRQUNwRSxLQUFLLENBQUMsR0FBRyxJQUFJLDRCQUE0QixDQUFDLENBQUM7UUFDM0MsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUM7UUFDMUIsSUFBSSxDQUFDLEtBQUssR0FBRyxjQUFjLENBQUM7SUFDOUIsQ0FBQztJQUVELElBQUksUUFBUTtRQUNWLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLElBQUksS0FBSyxDQUFDO0lBQ3RDLENBQUM7SUFFRCxVQUFVLENBQUMsT0FBNEM7UUFDckQsSUFBSSxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsWUFBWSxFQUFFLE9BQU8sQ0FBQyxDQUFDLFdBQVcsRUFBRSxFQUFFO1lBQ3pELE9BQU8sQ0FBQyxXQUFXLENBQUMsU0FBUyxDQUMzQixPQUFPLEVBQ1AsY0FBSSxDQUFDLEdBQUcsQ0FBQyxXQUFXLENBQUMsYUFBYSxDQUFDLENBQ3BDLENBQUM7UUFDSixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxpQkFBaUIsQ0FBQyxjQUFrQztRQUNsRCxJQUFJLGNBQWMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQztRQUUxQyxJQUFJLENBQUMsc0JBQXNCLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUU7WUFDM0MsY0FBYyxHQUFHLElBQUksQ0FBQyx5QkFBeUIsQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUNsRSxDQUFDLENBQUMsQ0FBQztRQUVILElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxFQUFFLENBQUM7WUFDNUIsY0FBYyxHQUFHO2dCQUNmLEdBQUcsY0FBYztnQkFDakIsT0FBTyxFQUFFLElBQUksR0FBRyxDQUFDLFlBQVksQ0FBQztvQkFDNUIsWUFBWSxFQUFFLElBQUksQ0FBQyxhQUFhLENBQUMsRUFBRTtvQkFDbkMsUUFBUSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUyxDQUFDLFFBQVE7aUJBQ3hDLENBQUM7YUFDSCxDQUFDO1FBQ0osQ0FBQztRQUVELElBQUksQ0FBQyxTQUFTLEdBQUcsY0FBYyxDQUFDLFlBQVksQ0FDMUMsSUFBSSxDQUFDLGFBQWEsRUFDbEIsY0FBYyxDQUNmLENBQUM7UUFFRixJQUFJLENBQUMsU0FBUyxDQUFDLHdCQUF3QixDQUNyQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMscUJBQXFCLElBQUksRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1lBQ2xFLFNBQVMsRUFBRSxHQUFHLENBQUMsR0FBRyxDQUFDLFNBQVU7WUFDN0IsU0FBUyxFQUFFLEdBQUcsQ0FBQyxTQUFTO1NBQ3pCLENBQUMsQ0FBQyxDQUNKLENBQUM7UUFFRixNQUFNLFNBQVMsR0FBRyxjQUFjLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRXRELElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FBQztZQUNmLE1BQU0sSUFBSSxLQUFLLENBQUMsbUNBQW1DLENBQUMsQ0FBQztRQUN2RCxDQUFDO1FBRUQsOEZBQThGO1FBQzlGLFNBQVMsQ0FBQyx3QkFBd0IsQ0FBQztZQUNqQyxTQUFTLEVBQUUsSUFBSSxDQUFDLFNBQVM7WUFDekIsU0FBUyxFQUFFLElBQUksQ0FBQyxlQUFlO1NBQ2hDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxJQUFJLGVBQWU7UUFDakIsSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLG9CQUFvQixFQUFFLENBQUM7WUFDcEMsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLG9CQUFvQixDQUFDO1FBQ3pDLENBQUM7UUFFRCxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsV0FBVyxFQUFFLENBQUM7WUFDdEMsT0FBTyxHQUFHLENBQUMsNEJBQTRCLENBQUMsS0FBSyxDQUFDO1FBQ2hELENBQUM7UUFFRCxPQUFPLEdBQUcsQ0FBQyw0QkFBNEIsQ0FBQyxPQUFPLENBQUM7SUFDbEQsQ0FBQzs7QUEzRUgsMERBNEVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2VydmljZUV4dGVuc2lvbiB9IGZyb20gXCJAYXdzLWNkay1jb250YWluZXJzL2Vjcy1zZXJ2aWNlLWV4dGVuc2lvbnNcIjtcbmltcG9ydCB7IFBvcnQgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjMlwiO1xuaW1wb3J0ICogYXMgZWNzIGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtZWNzXCI7XG5pbXBvcnQgKiBhcyBhd3Nsb2dzIGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtbG9nc1wiO1xuXG4vKipcbiAqIFRoZSBkZXRhaWxzIG9mIGEgZGVwZW5kZW5jeSBvbiBhbm90aGVyIGNvbnRhaW5lciBpbiB0aGUgdGFzayBkZWZpbml0aW9uLlxuICpcbiAqIEBzZWUgaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvbkVDUy9sYXRlc3QvQVBJUmVmZXJlbmNlL0FQSV9Db250YWluZXJEZXBlbmRlbmN5Lmh0bWxcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBDb250YWluZXJEZXBlbmRlbmN5IHtcbiAgLyoqXG4gICAqIFRoZSBjb250YWluZXIgZXh0ZW5zaW9uIHRvIGRlcGVuZCBvbi5cbiAgICovXG4gIHJlYWRvbmx5IGV4dDogU2VydmljZUV4dGVuc2lvbjtcblxuICAvKipcbiAgICogVGhlIHN0YXRlIHRoZSBjb250YWluZXIgbmVlZHMgdG8gYmUgaW4gdG8gc2F0aXNmeSB0aGUgZGVwZW5kZW5jeSBhbmQgcHJvY2VlZCB3aXRoIHN0YXJ0dXAuXG4gICAqIFZhbGlkIHZhbHVlcyBhcmUgQ29udGFpbmVyRGVwZW5kZW5jeUNvbmRpdGlvbi5TVEFSVCwgQ29udGFpbmVyRGVwZW5kZW5jeUNvbmRpdGlvbi5DT01QTEVURSxcbiAgICogQ29udGFpbmVyRGVwZW5kZW5jeUNvbmRpdGlvbi5TVUNDRVNTIGFuZCBDb250YWluZXJEZXBlbmRlbmN5Q29uZGl0aW9uLkhFQUxUSFkuXG4gICAqXG4gICAqIEBkZWZhdWx0IENvbnRhaW5lckRlcGVuZGVuY3lDb25kaXRpb24uSEVBTFRIWVxuICAgKi9cbiAgcmVhZG9ubHkgY29uZGl0aW9uPzogZWNzLkNvbnRhaW5lckRlcGVuZGVuY3lDb25kaXRpb247XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQ29udGFpbmVyUHJvcHMgZXh0ZW5kcyBlY3MuQ29udGFpbmVyRGVmaW5pdGlvbk9wdGlvbnMge1xuICAvKipcbiAgICogVGhlIGxvZyBncm91cCBpbnRvIHdoaWNoIGFwcGxpY2F0aW9uIGNvbnRhaW5lciBsb2dzIHNob3VsZCBiZSByb3V0ZWQuXG4gICAqXG4gICAqIEBkZWZhdWx0IC0gQSBsb2cgZ3JvdXAgaXMgYXV0b21hdGljYWxseSBjcmVhdGVkIGZvciB5b3UgaWYgdGhlIGBFQ1NfU0VSVklDRV9FWFRFTlNJT05TX0VOQUJMRV9ERUZBVUxUX0xPR19EUklWRVJgIGZlYXR1cmUgZmxhZyBpcyBzZXQuXG4gICAqL1xuICByZWFkb25seSBsb2dHcm91cD86IGF3c2xvZ3MuSUxvZ0dyb3VwO1xuXG4gIC8qKlxuICAgKiBTcGVjaWZ5IGFkZGl0aW9uYWwgY29udGFpbmVyIGRlcGVuZGVuY2llcyB3aGljaCBzaG91bGQgYmUgYWRkZWQgYWZ0ZXIgdGhlXG4gICAqIGNvbnRhaW5lciBoYXMgYmVlbiBjcmVhdGVkIGluIHRoZSB0YXNrIGRlZmluaXRpb24uXG4gICAqL1xuICByZWFkb25seSBjb250YWluZXJEZXBlbmRlbmNpZXM/OiBDb250YWluZXJEZXBlbmRlbmN5W107XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRXh0cmFDb250YWluZXJFeHRlbnNpb25Qcm9wcyB7XG4gIHJlYWRvbmx5IGNvbnRhaW5lcjogQ29udGFpbmVyUHJvcHM7XG5cbiAgLyoqXG4gICAqIFNwZWNpZnkgdGhlIGNvbmRpdGlvbiB3aGVuIHRoaXMgY29udGFpbmVyIHNob3VsZCBiZSBjb25zaWRlcmVkXG4gICAqIGhlYWx0aHkgc3VjaCB0aGF0IHRoZSBtYWluIGNvbnRhaW5lciBjYW4gc3RhcnQuIERlZmF1bHRzIHRvIENvbnRhaW5lckRlcGVuZGVuY3lDb25kaXRpb24uSEVBTFRIWS5cbiAgICovXG4gIHJlYWRvbmx5IGhlYWx0aENoZWNrQ29uZGl0aW9uPzogZWNzLkNvbnRhaW5lckRlcGVuZGVuY3lDb25kaXRpb247XG4gIHJlYWRvbmx5IGRiQWNjZXNzPzogYm9vbGVhbjtcbn1cblxuZXhwb3J0IGNsYXNzIEV4dHJhQ29udGFpbmVyRXh0ZW5zaW9uIGV4dGVuZHMgU2VydmljZUV4dGVuc2lvbiB7XG4gIHJlYWRvbmx5IGNvbnRhaW5lck5hbWU6IHN0cmluZztcbiAgcmVhZG9ubHkgcHJvcHM6IEV4dHJhQ29udGFpbmVyRXh0ZW5zaW9uUHJvcHM7XG5cbiAgY29uc3RydWN0b3IobmFtZTogc3RyaW5nLCBleHRyYUNvbnRhaW5lcjogRXh0cmFDb250YWluZXJFeHRlbnNpb25Qcm9wcykge1xuICAgIHN1cGVyKGAke25hbWV9LWV4dHJhLWNvbnRhaW5lci1leHRlbnNpb25gKTtcbiAgICB0aGlzLmNvbnRhaW5lck5hbWUgPSBuYW1lO1xuICAgIHRoaXMucHJvcHMgPSBleHRyYUNvbnRhaW5lcjtcbiAgfVxuXG4gIGdldCBkYkFjY2VzcygpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5wcm9wcy5kYkFjY2VzcyA/PyBmYWxzZTtcbiAgfVxuXG4gIHVzZVNlcnZpY2Uoc2VydmljZTogZWNzLkVjMlNlcnZpY2UgfCBlY3MuRmFyZ2F0ZVNlcnZpY2UpOiB2b2lkIHtcbiAgICB0aGlzLnByb3BzLmNvbnRhaW5lci5wb3J0TWFwcGluZ3M/LmZvckVhY2goKHBvcnRNYXBwaW5nKSA9PiB7XG4gICAgICBzZXJ2aWNlLmNvbm5lY3Rpb25zLmFsbG93RnJvbShcbiAgICAgICAgc2VydmljZSxcbiAgICAgICAgUG9ydC50Y3AocG9ydE1hcHBpbmcuY29udGFpbmVyUG9ydCksXG4gICAgICApO1xuICAgIH0pO1xuICB9XG5cbiAgdXNlVGFza0RlZmluaXRpb24odGFza0RlZmluaXRpb246IGVjcy5UYXNrRGVmaW5pdGlvbik6IHZvaWQge1xuICAgIGxldCBjb250YWluZXJQcm9wcyA9IHRoaXMucHJvcHMuY29udGFpbmVyO1xuXG4gICAgdGhpcy5jb250YWluZXJNdXRhdGluZ0hvb2tzLmZvckVhY2goKGhvb2spID0+IHtcbiAgICAgIGNvbnRhaW5lclByb3BzID0gaG9vay5tdXRhdGVDb250YWluZXJEZWZpbml0aW9uKGNvbnRhaW5lclByb3BzKTtcbiAgICB9KTtcblxuICAgIGlmICghY29udGFpbmVyUHJvcHMubG9nZ2luZykge1xuICAgICAgY29udGFpbmVyUHJvcHMgPSB7XG4gICAgICAgIC4uLmNvbnRhaW5lclByb3BzLFxuICAgICAgICBsb2dnaW5nOiBuZXcgZWNzLkF3c0xvZ0RyaXZlcih7XG4gICAgICAgICAgc3RyZWFtUHJlZml4OiB0aGlzLnBhcmVudFNlcnZpY2UuaWQsXG4gICAgICAgICAgbG9nR3JvdXA6IHRoaXMucHJvcHMuY29udGFpbmVyLmxvZ0dyb3VwLFxuICAgICAgICB9KSxcbiAgICAgIH07XG4gICAgfVxuXG4gICAgdGhpcy5jb250YWluZXIgPSB0YXNrRGVmaW5pdGlvbi5hZGRDb250YWluZXIoXG4gICAgICB0aGlzLmNvbnRhaW5lck5hbWUsXG4gICAgICBjb250YWluZXJQcm9wcyxcbiAgICApO1xuXG4gICAgdGhpcy5jb250YWluZXIuYWRkQ29udGFpbmVyRGVwZW5kZW5jaWVzKFxuICAgICAgLi4uKHRoaXMucHJvcHMuY29udGFpbmVyLmNvbnRhaW5lckRlcGVuZGVuY2llcyA/PyBbXSkubWFwKChkZXApID0+ICh7XG4gICAgICAgIGNvbnRhaW5lcjogZGVwLmV4dC5jb250YWluZXIhLFxuICAgICAgICBjb25kaXRpb246IGRlcC5jb25kaXRpb24sXG4gICAgICB9KSksXG4gICAgKTtcblxuICAgIGNvbnN0IGNvbnRhaW5lciA9IHRhc2tEZWZpbml0aW9uLmZpbmRDb250YWluZXIoXCJhcHBcIik7XG5cbiAgICBpZiAoIWNvbnRhaW5lcikge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFwiWW91IG11c3Qgc3BlY2lmeSBhIG1haW4gY29udGFpbmVyXCIpO1xuICAgIH1cblxuICAgIC8vIHdlIHdhbnQgdG8gbWFrZSBzdXJlIHRoYXQgdGhlIGV4dHJhIGNvbnRhaW5lciBpcyBoZWFsdGh5IGJlZm9yZSBzdGFydGluZyB0aGUgbWFpbiBjb250YWluZXJcbiAgICBjb250YWluZXIuYWRkQ29udGFpbmVyRGVwZW5kZW5jaWVzKHtcbiAgICAgIGNvbnRhaW5lcjogdGhpcy5jb250YWluZXIsXG4gICAgICBjb25kaXRpb246IHRoaXMuaGVhbHRoQ29uZGl0aW9uLFxuICAgIH0pO1xuICB9XG5cbiAgZ2V0IGhlYWx0aENvbmRpdGlvbigpIHtcbiAgICBpZiAodGhpcy5wcm9wcy5oZWFsdGhDaGVja0NvbmRpdGlvbikge1xuICAgICAgcmV0dXJuIHRoaXMucHJvcHMuaGVhbHRoQ2hlY2tDb25kaXRpb247XG4gICAgfVxuXG4gICAgaWYgKCF0aGlzLnByb3BzLmNvbnRhaW5lci5oZWFsdGhDaGVjaykge1xuICAgICAgcmV0dXJuIGVjcy5Db250YWluZXJEZXBlbmRlbmN5Q29uZGl0aW9uLlNUQVJUO1xuICAgIH1cblxuICAgIHJldHVybiBlY3MuQ29udGFpbmVyRGVwZW5kZW5jeUNvbmRpdGlvbi5IRUFMVEhZO1xuICB9XG59XG4iXX0=
|
|
@@ -101,5 +101,5 @@ class HTTPApiExtension extends ecs_service_extensions_1.ServiceExtension {
|
|
|
101
101
|
}
|
|
102
102
|
exports.HTTPApiExtension = HTTPApiExtension;
|
|
103
103
|
_a = JSII_RTTI_SYMBOL_1;
|
|
104
|
-
HTTPApiExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.HTTPApiExtension", version: "0.20.
|
|
104
|
+
HTTPApiExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.HTTPApiExtension", version: "0.20.8" };
|
|
105
105
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSFRUUEFwaUV4dGVuc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leHRlbnNpb25zL0hUVFBBcGlFeHRlbnNpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSx1RkFHb0Q7QUFDcEQsNkNBQW9DO0FBQ3BDLG1FQVFzQztBQUN0Qyw2RkFBNEY7QUFDNUYsK0VBRzRDO0FBRTVDLGlEQUF1RDtBQUN2RCxtREFBZ0Q7QUFDaEQseURBQTZFO0FBQzdFLHlFQUErRTtBQUMvRSwwQ0FBaUU7QUFxQ2pFOztHQUVHO0FBQ0gsTUFBYSxnQkFBaUIsU0FBUSx5Q0FBZ0I7SUFHcEQ7OztPQUdHO0lBQ0gsWUFBWSxLQUE0QjtRQUN0QyxLQUFLLENBQUMsdUJBQXVCLENBQUMsQ0FBQztRQUMvQixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBRUQsVUFBVSxDQUFDLE9BQW9DO1FBQzdDLElBQUksQ0FBQyxPQUFPLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDN0IsTUFBTSxJQUFJLEtBQUssQ0FDYiw0REFBNEQsQ0FDN0QsQ0FBQztRQUNKLENBQUM7UUFFRCxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGtCQUFrQixDQUFDLEdBQUcsQ0FDekQsbUJBQW1CLENBQ1AsQ0FBQztRQUNmLElBQUksQ0FBQyxTQUFTLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVyxFQUFFLENBQUM7WUFDekMsTUFBTSxJQUFJLEtBQUssQ0FDYixpRUFBaUUsQ0FDbEUsQ0FBQztRQUNKLENBQUM7UUFFRCxNQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsWUFBWSxDQUM5QixHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUMvRCxDQUFDO1FBRUYsSUFBSSxxQkFBTyxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsY0FBYyxFQUFFO1lBQ3RDLElBQUksRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVU7WUFDM0IsVUFBVSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWTtZQUNuQyxNQUFNLEVBQUUsMEJBQVksQ0FBQyxTQUFTLENBQzVCLElBQUksa0RBQTRCLENBQzlCLE1BQU0sQ0FBQyxrQkFBa0IsRUFDekIsTUFBTSxDQUFDLG9CQUFvQixDQUM1QixDQUNGO1NBQ0YsQ0FBQyxDQUFDO1FBRUgsTUFBTSxXQUFXLEdBQUcsR0FBRyxtQkFBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsU0FBUyxJQUFJLElBQUksQ0FBQyxhQUFhLENBQUMsRUFBRSxFQUFFLENBQUM7UUFFakYsTUFBTSxPQUFPLEdBQUcsMEJBQWUsQ0FBQyxnQkFBZ0IsQ0FDOUMsSUFBSSxDQUFDLEtBQUssRUFDVixJQUFJLENBQUMsYUFBYSxDQUFDLEVBQUUsR0FBRyxpQkFBaUIsRUFDekMsSUFBSSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsQ0FDN0IsQ0FBQztRQUVGLE1BQU0sT0FBTyxHQUFHLElBQUksMEJBQU8sQ0FBQyxJQUFJLENBQUMsS0FBSyxFQUFFLFNBQVMsRUFBRTtZQUNqRCxPQUFPLEVBQUUsV0FBVyxHQUFHLE1BQU07WUFDN0IsaUJBQWlCLEVBQUUsT0FBTyxDQUFDLDRCQUE0QixFQUFFO1lBQ3pELG9CQUFvQixFQUFFO2dCQUNwQixVQUFVLEVBQUUsTUFBTTthQUNuQjtZQUNELEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxzQkFBc0I7U0FDckMsQ0FBQyxDQUFDO1FBRUgsTUFBTSxVQUFVLEdBQUcsNEJBQWlCLENBQUMsZ0JBQWdCLENBQ25ELElBQUksQ0FBQyxLQUFLLEVBQ1YsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLEdBQUcsY0FBYyxFQUN0QztZQUNFLFlBQVksRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLGlCQUFpQjtZQUMxQyxHQUFHLEVBQUUsT0FBTyxDQUFDLE9BQU8sQ0FBQyxHQUFHO1NBQ3pCLENBQ0YsQ0FBQztRQUVGLE1BQU0sV0FBVyxHQUFHLElBQUksK0RBQStCLENBQ3JELEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLDZCQUE2QixFQUNyRCxPQUFPLENBQUMsZUFBZSxFQUN2QjtZQUNFLE1BQU0sRUFBRSw2QkFBVSxDQUFDLEdBQUc7WUFDdEIsT0FBTyxFQUFFLFVBQVUsQ0FBQyxPQUFPO1lBQzNCLGdCQUFnQixFQUFFLElBQUksbUNBQWdCLEVBQUUsQ0FBQyxhQUFhLENBQ3BELCtCQUFZLENBQUMsTUFBTSxDQUFDLHNCQUFzQixDQUFDLENBQzVDO1NBQ0YsQ0FDRixDQUFDO1FBRUYsT0FBTyxDQUFDLFNBQVMsQ0FBQztZQUNoQixXQUFXO1lBQ1gsSUFBSSxFQUFFLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLElBQUksRUFBRSxXQUFXO1NBQ3BELENBQUMsQ0FBQztRQUVILElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQyxnQkFBZ0IsSUFBSSxJQUFJLEVBQUUsQ0FBQztZQUN4QyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDakMsQ0FBQztRQUVELFVBQVUsQ0FBQyxhQUFhLENBQ3RCLE9BQU8sRUFDUCxTQUFTLENBQUMsV0FBVyxFQUNyQixtQkFBbUIsV0FBVyxjQUFjLENBQzdDLENBQUM7UUFFRixJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FDdkIsUUFBUSxFQUNSLFdBQVcsTUFBTSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsSUFBSSxHQUFHLEVBQUUsQ0FDNUQsQ0FBQztJQUNKLENBQUM7SUFFTyxZQUFZLENBQUMsVUFBa0I7UUFDckMsTUFBTSxXQUFXLEdBQUcsSUFBSSxvQ0FBVyxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsYUFBYSxFQUFFO1lBQzdELFVBQVU7WUFDVixVQUFVLEVBQUUsOENBQXFCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxDQUFDO1NBQ2pFLENBQUMsQ0FBQztRQUVILE9BQU8sSUFBSSw2QkFBVSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsWUFBWSxFQUFFO1lBQzlDLFVBQVU7WUFDVixXQUFXLEVBQUUsV0FBVztTQUN6QixDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU8sZ0JBQWdCLENBQUMsV0FBb0I7UUFDM0MsTUFBTSxLQUFLLEdBQUcsV0FBVyxDQUFDLFlBQWEsQ0FBQyxJQUFJLENBQUMsWUFBd0IsQ0FBQztRQUN0RSxNQUFNLFFBQVEsR0FBRyxJQUFJLG1CQUFRLENBQUMsV0FBVyxFQUFFLGlCQUFpQixFQUFFO1lBQzVELFNBQVMsRUFBRSxFQUFFO1NBQ2QsQ0FBQyxDQUFDO1FBRUgsS0FBSyxDQUFDLGlCQUFpQixHQUFHO1lBQ3hCLGNBQWMsRUFBRSxRQUFRLENBQUMsV0FBVztZQUNwQyxNQUFNLEVBQUUsSUFBSSxDQUFDLFNBQVMsQ0FBQztnQkFDckIsU0FBUyxFQUFFLG9CQUFvQjtnQkFDL0IsU0FBUyxFQUFFLDZCQUE2QjtnQkFDeEMsUUFBUSxFQUFFLDRCQUE0QjtnQkFDdEMsV0FBVyxFQUFFLHNCQUFzQjtnQkFDbkMsVUFBVSxFQUFFLHFCQUFxQjtnQkFDakMsSUFBSSxFQUFFLGVBQWU7Z0JBQ3JCLE1BQU0sRUFBRSxpQkFBaUI7Z0JBQ3pCLGNBQWMsRUFBRSx5QkFBeUI7YUFDMUMsQ0FBQztTQUNILENBQUM7UUFFRixRQUFRLENBQUMsVUFBVSxDQUFDLElBQUksMEJBQWdCLENBQUMsMEJBQTBCLENBQUMsQ0FBQyxDQUFDO0lBQ3hFLENBQUM7O0FBdklILDRDQXdJQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENvbnRhaW5lcixcbiAgU2VydmljZUV4dGVuc2lvbixcbn0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0IHsgU3RhY2sgfSBmcm9tIFwiYXdzLWNkay1saWJcIjtcbmltcG9ydCB7XG4gIENmblN0YWdlLFxuICBEb21haW5OYW1lLFxuICBIdHRwQXBpLFxuICBIdHRwQXBpQXR0cmlidXRlcyxcbiAgSHR0cE1ldGhvZCxcbiAgTWFwcGluZ1ZhbHVlLFxuICBQYXJhbWV0ZXJNYXBwaW5nLFxufSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWFwaWdhdGV3YXl2MlwiO1xuaW1wb3J0IHsgSHR0cFNlcnZpY2VEaXNjb3ZlcnlJbnRlZ3JhdGlvbiB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtYXBpZ2F0ZXdheXYyLWludGVncmF0aW9uc1wiO1xuaW1wb3J0IHtcbiAgQ2VydGlmaWNhdGUsXG4gIENlcnRpZmljYXRlVmFsaWRhdGlvbixcbn0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1jZXJ0aWZpY2F0ZW1hbmFnZXJcIjtcbmltcG9ydCB7IEVjMlNlcnZpY2UsIEZhcmdhdGVTZXJ2aWNlIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1lY3NcIjtcbmltcG9ydCB7IFNlcnZpY2VQcmluY2lwYWwgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWlhbVwiO1xuaW1wb3J0IHsgTG9nR3JvdXAgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWxvZ3NcIjtcbmltcG9ydCB7IEFSZWNvcmQsIElIb3N0ZWRab25lLCBSZWNvcmRUYXJnZXQgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLXJvdXRlNTNcIjtcbmltcG9ydCB7IEFwaUdhdGV3YXl2MkRvbWFpblByb3BlcnRpZXMgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLXJvdXRlNTMtdGFyZ2V0c1wiO1xuaW1wb3J0IHsgQXBpR2F0ZXdheVZwY0xpbmssIENvZ25pdG9Vc2VyUG9vbCB9IGZyb20gXCIuLi9wbGF0Zm9ybVwiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEhUVFBBcGlFeHRlbnNpb25Qcm9wcyB7XG4gIC8qKlxuICAgKiBUaGUgcHJlZml4IGZvciB0aGUgQVBJIEdhdGV3YXkgZW5kcG9pbnQuXG4gICAqL1xuICByZWFkb25seSBlbmRwb2ludFByZWZpeD86IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIG5hbWUgb2YgdGhlIGJhc2UgcGxhdGZvcm0gc3RhY2suXG4gICAqL1xuICByZWFkb25seSBwbGF0Zm9ybVN0YWNrTmFtZTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBEb21haW4gcHJlZml4IGZvciB0aGUgQVBJIEdhdGV3YXkgZW5kcG9pbnQuXG4gICAqXG4gICAqL1xuICByZWFkb25seSBkb21haW5QcmVmaXg/OiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIEhvc3RlZCBab25lIHRvIGNyZWF0ZSB0aGUgZ2F0ZXdheSBkb21haW4gQSByZWNvcmQuXG4gICAqL1xuICByZWFkb25seSBob3N0ZWRab25lOiBJSG9zdGVkWm9uZTtcblxuICAvKipcbiAgICogRW5hYmxlIGFjY2VzcyBsb2dzIGZvciB0aGUgQVBJIEdhdGV3YXkuXG4gICAqXG4gICAqIGRlZmF1bHQ6IHRydWVcbiAgICovXG4gIHJlYWRvbmx5IGVuYWJsZUFjY2Vzc0xvZ3M/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiBTcGVjaWZ5IGFkZGl0aW9uYWwgSFRUUCBBUEkgQXR0cmlidXRlcy5cbiAgICovXG4gIHJlYWRvbmx5IGV4dHJhSHR0cEFwaUF0dHJpYnV0ZXM/OiBIdHRwQXBpQXR0cmlidXRlcztcbn1cblxuLyoqXG4gKiBDb25maWd1cmVzIHRoZSBzZXJ2aWNlIHRvIGJlIHJlYWNoYWJsZSB2aWEgYW4gSHR0cCBBcGkuXG4gKi9cbmV4cG9ydCBjbGFzcyBIVFRQQXBpRXh0ZW5zaW9uIGV4dGVuZHMgU2VydmljZUV4dGVuc2lvbiB7XG4gIHJlYWRvbmx5IHByb3BzOiBIVFRQQXBpRXh0ZW5zaW9uUHJvcHM7XG5cbiAgLyoqXG4gICAqXG4gICAqIEBwYXJhbSBwcm9wc1xuICAgKi9cbiAgY29uc3RydWN0b3IocHJvcHM6IEhUVFBBcGlFeHRlbnNpb25Qcm9wcykge1xuICAgIHN1cGVyKFwiYXBpLWdhdGV3YXktZXh0ZW5zaW9uXCIpO1xuICAgIHRoaXMucHJvcHMgPSBwcm9wcztcbiAgfVxuXG4gIHVzZVNlcnZpY2Uoc2VydmljZTogRWMyU2VydmljZSB8IEZhcmdhdGVTZXJ2aWNlKTogdm9pZCB7XG4gICAgaWYgKCFzZXJ2aWNlLmNsb3VkTWFwU2VydmljZSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICBcIlRoaXMgZXh0ZW5zaW9uIHJlcXVpcmVzIHRoZSBDbG91ZE1hcCBleHRlbnNpb24gdG8gYmUgYWRkZWRcIixcbiAgICAgICk7XG4gICAgfVxuXG4gICAgY29uc3QgY29udGFpbmVyID0gdGhpcy5wYXJlbnRTZXJ2aWNlLnNlcnZpY2VEZXNjcmlwdGlvbi5nZXQoXG4gICAgICBcInNlcnZpY2UtY29udGFpbmVyXCIsXG4gICAgKSBhcyBDb250YWluZXI7XG4gICAgaWYgKCFjb250YWluZXIgfHwgIWNvbnRhaW5lci50cmFmZmljUG9ydCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICBcIkNhbm5vdCBhcHBseSBBUEkgR2F0ZXdheSBFeHRlbnNpb24sIG5vIG1haW4gYXBwIGNvbnRhaW5lciBmb3VuZFwiLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBjb25zdCBkb21haW4gPSB0aGlzLmNyZWF0ZURvbWFpbihcbiAgICAgIGAke3RoaXMucHJvcHMuZG9tYWluUHJlZml4fS4ke3RoaXMucHJvcHMuaG9zdGVkWm9uZS56b25lTmFtZX1gLFxuICAgICk7XG5cbiAgICBuZXcgQVJlY29yZCh0aGlzLnNjb3BlLCBcIkFQSUdXQVJlY29yZFwiLCB7XG4gICAgICB6b25lOiB0aGlzLnByb3BzLmhvc3RlZFpvbmUsXG4gICAgICByZWNvcmROYW1lOiB0aGlzLnByb3BzLmRvbWFpblByZWZpeCxcbiAgICAgIHRhcmdldDogUmVjb3JkVGFyZ2V0LmZyb21BbGlhcyhcbiAgICAgICAgbmV3IEFwaUdhdGV3YXl2MkRvbWFpblByb3BlcnRpZXMoXG4gICAgICAgICAgZG9tYWluLnJlZ2lvbmFsRG9tYWluTmFtZSxcbiAgICAgICAgICBkb21haW4ucmVnaW9uYWxIb3N0ZWRab25lSWQsXG4gICAgICAgICksXG4gICAgICApLFxuICAgIH0pO1xuXG4gICAgY29uc3Qgc2VydmljZU5hbWUgPSBgJHtTdGFjay5vZih0aGlzLnNjb3BlKS5zdGFja05hbWV9LyR7dGhpcy5wYXJlbnRTZXJ2aWNlLmlkfWA7XG5cbiAgICBjb25zdCBjb2duaXRvID0gQ29nbml0b1VzZXJQb29sLmZyb21CYXNlUGxhdGZvcm0oXG4gICAgICB0aGlzLnNjb3BlLFxuICAgICAgdGhpcy5wYXJlbnRTZXJ2aWNlLmlkICsgXCJDb2duaXRvVXNlclBvb2xcIixcbiAgICAgIHRoaXMucHJvcHMucGxhdGZvcm1TdGFja05hbWUsXG4gICAgKTtcblxuICAgIGNvbnN0IGh0dHBBcGkgPSBuZXcgSHR0cEFwaSh0aGlzLnNjb3BlLCBcIkh0dHBBcGlcIiwge1xuICAgICAgYXBpTmFtZTogc2VydmljZU5hbWUgKyBcIiBBUElcIixcbiAgICAgIGRlZmF1bHRBdXRob3JpemVyOiBjb2duaXRvLmNyZWF0ZUh0dHBVc2VyUG9vbEF1dGhvcml6ZXIoKSxcbiAgICAgIGRlZmF1bHREb21haW5NYXBwaW5nOiB7XG4gICAgICAgIGRvbWFpbk5hbWU6IGRvbWFpbixcbiAgICAgIH0sXG4gICAgICAuLi50aGlzLnByb3BzLmV4dHJhSHR0cEFwaUF0dHJpYnV0ZXMsXG4gICAgfSk7XG5cbiAgICBjb25zdCBhcGlHYXRld2F5ID0gQXBpR2F0ZXdheVZwY0xpbmsuZnJvbUJhc2VQbGF0Zm9ybShcbiAgICAgIHRoaXMuc2NvcGUsXG4gICAgICB0aGlzLnBhcmVudFNlcnZpY2UuaWQgKyBcIkFwaUdhdGV3YXlWMlwiLFxuICAgICAge1xuICAgICAgICBiYXNlUGxhdGZvcm06IHRoaXMucHJvcHMucGxhdGZvcm1TdGFja05hbWUsXG4gICAgICAgIHZwYzogc2VydmljZS5jbHVzdGVyLnZwYyxcbiAgICAgIH0sXG4gICAgKTtcblxuICAgIGNvbnN0IGludGVncmF0aW9uID0gbmV3IEh0dHBTZXJ2aWNlRGlzY292ZXJ5SW50ZWdyYXRpb24oXG4gICAgICBgJHt0aGlzLnBhcmVudFNlcnZpY2UuaWR9U2VydmljZURpc2NvdmVyeUludGVncmF0aW9uYCxcbiAgICAgIHNlcnZpY2UuY2xvdWRNYXBTZXJ2aWNlLFxuICAgICAge1xuICAgICAgICBtZXRob2Q6IEh0dHBNZXRob2QuQU5ZLFxuICAgICAgICB2cGNMaW5rOiBhcGlHYXRld2F5LnZwY0xpbmssXG4gICAgICAgIHBhcmFtZXRlck1hcHBpbmc6IG5ldyBQYXJhbWV0ZXJNYXBwaW5nKCkub3ZlcndyaXRlUGF0aChcbiAgICAgICAgICBNYXBwaW5nVmFsdWUuY3VzdG9tKFwiLyRyZXF1ZXN0LnBhdGgucHJveHlcIiksXG4gICAgICAgICksXG4gICAgICB9LFxuICAgICk7XG5cbiAgICBodHRwQXBpLmFkZFJvdXRlcyh7XG4gICAgICBpbnRlZ3JhdGlvbixcbiAgICAgIHBhdGg6IGAke3RoaXMucHJvcHMuZW5kcG9pbnRQcmVmaXggPz8gXCJcIn0ve3Byb3h5K31gLFxuICAgIH0pO1xuXG4gICAgaWYgKHRoaXMucHJvcHMuZW5hYmxlQWNjZXNzTG9ncyA/PyB0cnVlKSB7XG4gICAgICB0aGlzLmVuYWJsZUFjY2Vzc0xvZ3MoaHR0cEFwaSk7XG4gICAgfVxuXG4gICAgYXBpR2F0ZXdheS5hbGxvd0FjY2Vzc1RvKFxuICAgICAgc2VydmljZSxcbiAgICAgIGNvbnRhaW5lci50cmFmZmljUG9ydCxcbiAgICAgIGBBbGxvdyBhY2Nlc3MgdG8gJHtzZXJ2aWNlTmFtZX0gRUNTIHNlcnZpY2VgLFxuICAgICk7XG5cbiAgICB0aGlzLnBhcmVudFNlcnZpY2UuYWRkVVJMKFxuICAgICAgXCJwdWJsaWNcIixcbiAgICAgIGBodHRwczovLyR7ZG9tYWluLm5hbWV9JHt0aGlzLnByb3BzLmVuZHBvaW50UHJlZml4ID8/IFwiL1wifWAsXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgY3JlYXRlRG9tYWluKGRvbWFpbk5hbWU6IHN0cmluZykge1xuICAgIGNvbnN0IGNlcnRpZmljYXRlID0gbmV3IENlcnRpZmljYXRlKHRoaXMuc2NvcGUsIFwiQ2VydGlmaWNhdGVcIiwge1xuICAgICAgZG9tYWluTmFtZSxcbiAgICAgIHZhbGlkYXRpb246IENlcnRpZmljYXRlVmFsaWRhdGlvbi5mcm9tRG5zKHRoaXMucHJvcHMuaG9zdGVkWm9uZSksXG4gICAgfSk7XG5cbiAgICByZXR1cm4gbmV3IERvbWFpbk5hbWUodGhpcy5zY29wZSwgXCJEb21haW5OYW1lXCIsIHtcbiAgICAgIGRvbWFpbk5hbWUsXG4gICAgICBjZXJ0aWZpY2F0ZTogY2VydGlmaWNhdGUsXG4gICAgfSk7XG4gIH1cblxuICBwcml2YXRlIGVuYWJsZUFjY2Vzc0xvZ3MoYXBpRW5kcG9pbnQ6IEh0dHBBcGkpIHtcbiAgICBjb25zdCBzdGFnZSA9IGFwaUVuZHBvaW50LmRlZmF1bHRTdGFnZSEubm9kZS5kZWZhdWx0Q2hpbGQgYXMgQ2ZuU3RhZ2U7XG4gICAgY29uc3QgbG9nR3JvdXAgPSBuZXcgTG9nR3JvdXAoYXBpRW5kcG9pbnQsIFwiQVBJR1dBY2Nlc3NMb2dzXCIsIHtcbiAgICAgIHJldGVudGlvbjogOTAsXG4gICAgfSk7XG5cbiAgICBzdGFnZS5hY2Nlc3NMb2dTZXR0aW5ncyA9IHtcbiAgICAgIGRlc3RpbmF0aW9uQXJuOiBsb2dHcm91cC5sb2dHcm91cEFybixcbiAgICAgIGZvcm1hdDogSlNPTi5zdHJpbmdpZnkoe1xuICAgICAgICByZXF1ZXN0SWQ6IFwiJGNvbnRleHQucmVxdWVzdElkXCIsXG4gICAgICAgIHVzZXJBZ2VudDogXCIkY29udGV4dC5pZGVudGl0eS51c2VyQWdlbnRcIixcbiAgICAgICAgc291cmNlSXA6IFwiJGNvbnRleHQuaWRlbnRpdHkuc291cmNlSXBcIixcbiAgICAgICAgcmVxdWVzdFRpbWU6IFwiJGNvbnRleHQucmVxdWVzdFRpbWVcIixcbiAgICAgICAgaHR0cE1ldGhvZDogXCIkY29udGV4dC5odHRwTWV0aG9kXCIsXG4gICAgICAgIHBhdGg6IFwiJGNvbnRleHQucGF0aFwiLFxuICAgICAgICBzdGF0dXM6IFwiJGNvbnRleHQuc3RhdHVzXCIsXG4gICAgICAgIHJlc3BvbnNlTGVuZ3RoOiBcIiRjb250ZXh0LnJlc3BvbnNlTGVuZ3RoXCIsXG4gICAgICB9KSxcbiAgICB9O1xuXG4gICAgbG9nR3JvdXAuZ3JhbnRXcml0ZShuZXcgU2VydmljZVByaW5jaXBhbChcImFwaWdhdGV3YXkuYW1hem9uYXdzLmNvbVwiKSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -43,5 +43,5 @@ class LogExtension extends ecs_service_extensions_1.ServiceExtension {
|
|
|
43
43
|
}
|
|
44
44
|
exports.LogExtension = LogExtension;
|
|
45
45
|
_a = JSII_RTTI_SYMBOL_1;
|
|
46
|
-
LogExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.LogExtension", version: "0.20.
|
|
46
|
+
LogExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.LogExtension", version: "0.20.8" };
|
|
47
47
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTG9nRXh0ZW5zaW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2V4dGVuc2lvbnMvTG9nRXh0ZW5zaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsdUZBSW9EO0FBQ3BELDJDQUEyQztBQUczQywwQ0FBMEM7QUFDMUMsb0NBQStDO0FBUy9DLE1BQU0sY0FBZSxTQUFRLDhDQUFxQjtJQUNoRCxZQUNVLFFBQW1CLEVBQ25CLFlBQW9CO1FBRTVCLEtBQUssRUFBRSxDQUFDO1FBSEEsYUFBUSxHQUFSLFFBQVEsQ0FBVztRQUNuQixpQkFBWSxHQUFaLFlBQVksQ0FBUTtJQUc5QixDQUFDO0lBRUQseUJBQXlCLENBQ3ZCLEtBQXFDO1FBRXJDLE9BQU87WUFDTCxHQUFHLEtBQUs7WUFDUixPQUFPLEVBQUUsSUFBSSxHQUFHLENBQUMsWUFBWSxDQUFDO2dCQUM1QixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7Z0JBQ3ZCLFlBQVksRUFBRSxJQUFJLENBQUMsWUFBWTthQUNoQyxDQUFDO1NBQ0gsQ0FBQztJQUNKLENBQUM7Q0FDRjtBQUVELE1BQWEsWUFBYSxTQUFRLHlDQUFnQjtJQUVoRCxZQUFvQixPQUFxRDtRQUN2RSxLQUFLLENBQUMsZUFBZSxDQUFDLENBQUM7UUFETCxZQUFPLEdBQVAsT0FBTyxDQUE4QztJQUV6RSxDQUFDO0lBRU0sT0FBTyxDQUFDLE1BQWUsRUFBRSxNQUFpQjtRQUMvQyxJQUFJLENBQUMsYUFBYSxHQUFHLE1BQU0sQ0FBQztRQUU1QixJQUFJLGtCQUFrQixJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUN2QyxJQUFJLENBQUMsUUFBUSxHQUFHLHNCQUFXLENBQUMsZ0JBQWdCLENBQzFDLE1BQU0sRUFDTixnQ0FBZ0MsRUFDaEMsRUFBRSxZQUFZLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxnQkFBZ0IsRUFBRSxDQUNoRCxDQUFDO1FBQ0osQ0FBQzthQUFNLENBQUM7WUFDTixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDO1FBQ3hDLENBQUM7SUFDSCxDQUFDO0lBRU0sUUFBUTtRQUNiLElBQUEsMkJBQW1CLEVBQ2pCLElBQUksQ0FBQyxhQUFhLEVBQ2xCLElBQUksY0FBYyxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLENBQUMsQ0FDekQsQ0FBQztJQUNKLENBQUM7O0FBekJILG9DQTBCQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENvbnRhaW5lck11dGF0aW5nSG9vayxcbiAgU2VydmljZSxcbiAgU2VydmljZUV4dGVuc2lvbixcbn0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0ICogYXMgZWNzIGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtZWNzXCI7XG5pbXBvcnQgeyBJTG9nR3JvdXAgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWxvZ3NcIjtcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gXCJjb25zdHJ1Y3RzXCI7XG5pbXBvcnQgeyBCVENMb2dHcm91cCB9IGZyb20gXCIuLi9wbGF0Zm9ybVwiO1xuaW1wb3J0IHsgYWRkSG9va1RvRXh0ZW5zaW9ucyB9IGZyb20gXCIuLi91dGlsc1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEV4aXN0aW5nTG9ncm91cE9wdGlvbiB7XG4gIHJlYWRvbmx5IGxvZ0dyb3VwOiBJTG9nR3JvdXA7XG59XG5leHBvcnQgaW50ZXJmYWNlIEltcG9ydExvZ0dyb3VwT3B0aW9uIHtcbiAgcmVhZG9ubHkgYmFzZVBsYXRmb3JtTmFtZTogc3RyaW5nO1xufVxuXG5jbGFzcyBBZGRMb2dnaW5nSG9vayBleHRlbmRzIENvbnRhaW5lck11dGF0aW5nSG9vayB7XG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgbG9nR3JvdXA6IElMb2dHcm91cCxcbiAgICBwcml2YXRlIHN0cmVhbVByZWZpeDogc3RyaW5nLFxuICApIHtcbiAgICBzdXBlcigpO1xuICB9XG5cbiAgbXV0YXRlQ29udGFpbmVyRGVmaW5pdGlvbihcbiAgICBwcm9wczogZWNzLkNvbnRhaW5lckRlZmluaXRpb25PcHRpb25zLFxuICApOiBlY3MuQ29udGFpbmVyRGVmaW5pdGlvbk9wdGlvbnMge1xuICAgIHJldHVybiB7XG4gICAgICAuLi5wcm9wcyxcbiAgICAgIGxvZ2dpbmc6IG5ldyBlY3MuQXdzTG9nRHJpdmVyKHtcbiAgICAgICAgbG9nR3JvdXA6IHRoaXMubG9nR3JvdXAsXG4gICAgICAgIHN0cmVhbVByZWZpeDogdGhpcy5zdHJlYW1QcmVmaXgsXG4gICAgICB9KSxcbiAgICB9O1xuICB9XG59XG5cbmV4cG9ydCBjbGFzcyBMb2dFeHRlbnNpb24gZXh0ZW5kcyBTZXJ2aWNlRXh0ZW5zaW9uIHtcbiAgcHJpdmF0ZSBsb2dHcm91cCE6IElMb2dHcm91cDtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBvcHRpb25zOiBFeGlzdGluZ0xvZ3JvdXBPcHRpb24gfCBJbXBvcnRMb2dHcm91cE9wdGlvbikge1xuICAgIHN1cGVyKFwibG9nLWV4dGVuc2lvblwiKTtcbiAgfVxuXG4gIHB1YmxpYyBwcmVob29rKHBhcmVudDogU2VydmljZSwgX3Njb3BlOiBDb25zdHJ1Y3QpOiB2b2lkIHtcbiAgICB0aGlzLnBhcmVudFNlcnZpY2UgPSBwYXJlbnQ7XG5cbiAgICBpZiAoXCJiYXNlUGxhdGZvcm1OYW1lXCIgaW4gdGhpcy5vcHRpb25zKSB7XG4gICAgICB0aGlzLmxvZ0dyb3VwID0gQlRDTG9nR3JvdXAuZnJvbUJhc2VQbGF0Zm9ybShcbiAgICAgICAgcGFyZW50LFxuICAgICAgICBcIkltcG9ydExvZ0dyb3VwRnJvbUJhc2VQbGF0Zm9ybVwiLFxuICAgICAgICB7IGJhc2VQbGF0Zm9ybTogdGhpcy5vcHRpb25zLmJhc2VQbGF0Zm9ybU5hbWUgfSxcbiAgICAgICk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMubG9nR3JvdXAgPSB0aGlzLm9wdGlvbnMubG9nR3JvdXA7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIGFkZEhvb2tzKCkge1xuICAgIGFkZEhvb2tUb0V4dGVuc2lvbnMoXG4gICAgICB0aGlzLnBhcmVudFNlcnZpY2UsXG4gICAgICBuZXcgQWRkTG9nZ2luZ0hvb2sodGhpcy5sb2dHcm91cCwgdGhpcy5wYXJlbnRTZXJ2aWNlLmlkKSxcbiAgICApO1xuICB9XG59XG4iXX0=
|
|
@@ -40,5 +40,5 @@ class ModifyContainerDefinitionExtension extends ecs_service_extensions_1.Servic
|
|
|
40
40
|
}
|
|
41
41
|
exports.ModifyContainerDefinitionExtension = ModifyContainerDefinitionExtension;
|
|
42
42
|
_a = JSII_RTTI_SYMBOL_1;
|
|
43
|
-
ModifyContainerDefinitionExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ModifyContainerDefinitionExtension", version: "0.20.
|
|
43
|
+
ModifyContainerDefinitionExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ModifyContainerDefinitionExtension", version: "0.20.8" };
|
|
44
44
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTW9kaWZ5Q29udGFpbmVyRGVmaW5pdGlvbkV4dGVuc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leHRlbnNpb25zL01vZGlmeUNvbnRhaW5lckRlZmluaXRpb25FeHRlbnNpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSx1RkFJb0Q7QUFHcEQsTUFBTSxJQUFLLFNBQVEsOENBQXFCO0lBQ3RDLFlBQTZCLEtBQXdDO1FBQ25FLEtBQUssRUFBRSxDQUFDO1FBRG1CLFVBQUssR0FBTCxLQUFLLENBQW1DO0lBRXJFLENBQUM7SUFFRCx5QkFBeUIsQ0FDdkIsT0FBbUM7UUFFbkMsT0FBTztZQUNMLEdBQUcsT0FBTztZQUNWLEdBQUcsSUFBSSxDQUFDLEtBQUs7U0FDZCxDQUFDO0lBQ0osQ0FBQztDQUNGO0FBR0Q7Ozs7Ozs7O0dBUUc7QUFDSCxNQUFhLGtDQUFtQyxTQUFRLHlDQUFnQjtJQUd0RSxZQUFZLEtBQXdDO1FBQ2xELEtBQUssQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO1FBQzFCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFFTSxRQUFRO1FBQ2IsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQ3pELG1CQUFtQixDQUNQLENBQUM7UUFFZixJQUFJLENBQUMsU0FBUyxFQUFFLENBQUM7WUFDZixNQUFNLElBQUksS0FBSyxDQUFDLHFEQUFxRCxDQUFDLENBQUM7UUFDekUsQ0FBQztRQUVELFNBQVMsQ0FBQyx3QkFBd0IsQ0FBQyxJQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztJQUMzRCxDQUFDOztBQWxCSCxnRkFtQkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb250YWluZXIsXG4gIENvbnRhaW5lck11dGF0aW5nSG9vayxcbiAgU2VydmljZUV4dGVuc2lvbixcbn0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0IHsgQ29udGFpbmVyRGVmaW5pdGlvbk9wdGlvbnMgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjc1wiO1xuXG5jbGFzcyBIb29rIGV4dGVuZHMgQ29udGFpbmVyTXV0YXRpbmdIb29rIHtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSByZWFkb25seSBwcm9wczogQ29udGFpbmVyRGVmaW5pdGlvbkV4dGVuc2lvblByb3BzKSB7XG4gICAgc3VwZXIoKTtcbiAgfVxuXG4gIG11dGF0ZUNvbnRhaW5lckRlZmluaXRpb24oXG4gICAgb3B0aW9uczogQ29udGFpbmVyRGVmaW5pdGlvbk9wdGlvbnMsXG4gICk6IENvbnRhaW5lckRlZmluaXRpb25PcHRpb25zIHtcbiAgICByZXR1cm4ge1xuICAgICAgLi4ub3B0aW9ucyxcbiAgICAgIC4uLnRoaXMucHJvcHMsXG4gICAgfTtcbiAgfVxufVxuXG5leHBvcnQgaW50ZXJmYWNlIENvbnRhaW5lckRlZmluaXRpb25FeHRlbnNpb25Qcm9wcyBleHRlbmRzIENvbnRhaW5lckRlZmluaXRpb25PcHRpb25zIHt9XG4vKipcbiAqIEFuIGV4dGVuc2lvbiB0aGF0IGFsbG93cyBtb2RpZnlpbmcgdGhlIG1haW4gY29udGFpbmVyIGRlZmluaXRpb24gb3B0aW9ucy5cbiAqXG4gKiBTb21lIGNvbnRhaW5lciBwcm9wZXJ0aWVzIGFyZSBub3QgZXhwb3NlZCB0aGUgdXBzdHJlYW0gRUNTIENvbnRhaW5lclxuICogZXh0ZW5zaW9uLiBUaGlzIGV4dGVuc2lvbiBhbGxvd3MgeW91IHRvIGFkanVzdCB0aGUgY29udGFpbmVyIGRlZmluaXRpb25cbiAqIG9wdGlvbnMgYWZ0ZXIgdGhlIENvbnRhaW5lciBleHRlbnNpb24gaGFzIGJlZW4gYWRkZWQgdG8gdGhlIHNlcnZpY2UuXG4gKlxuICogQHNlZSBDb250YWluZXJEZWZpbml0aW9uT3B0aW9uc1xuICovXG5leHBvcnQgY2xhc3MgTW9kaWZ5Q29udGFpbmVyRGVmaW5pdGlvbkV4dGVuc2lvbiBleHRlbmRzIFNlcnZpY2VFeHRlbnNpb24ge1xuICByZWFkb25seSBwcm9wczogQ29udGFpbmVyRGVmaW5pdGlvbkV4dGVuc2lvblByb3BzO1xuXG4gIGNvbnN0cnVjdG9yKHByb3BzOiBDb250YWluZXJEZWZpbml0aW9uRXh0ZW5zaW9uUHJvcHMpIHtcbiAgICBzdXBlcihcIm1vZGlmeS1jb250YWluZXJcIik7XG4gICAgdGhpcy5wcm9wcyA9IHByb3BzO1xuICB9XG5cbiAgcHVibGljIGFkZEhvb2tzKCk6IHZvaWQge1xuICAgIGNvbnN0IGNvbnRhaW5lciA9IHRoaXMucGFyZW50U2VydmljZS5zZXJ2aWNlRGVzY3JpcHRpb24uZ2V0KFxuICAgICAgXCJzZXJ2aWNlLWNvbnRhaW5lclwiLFxuICAgICkgYXMgQ29udGFpbmVyO1xuXG4gICAgaWYgKCFjb250YWluZXIpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIkNhbm5vdCBhcHBseSBleHRlbnNpb24sIG5vIG1haW4gYXBwIGNvbnRhaW5lciBmb3VuZFwiKTtcbiAgICB9XG5cbiAgICBjb250YWluZXIuYWRkQ29udGFpbmVyTXV0YXRpbmdIb29rKG5ldyBIb29rKHRoaXMucHJvcHMpKTtcbiAgfVxufVxuIl19
|
|
@@ -21,5 +21,5 @@ class ModifyTaskDefinitionExtension extends ecs_service_extensions_1.ServiceExte
|
|
|
21
21
|
}
|
|
22
22
|
exports.ModifyTaskDefinitionExtension = ModifyTaskDefinitionExtension;
|
|
23
23
|
_a = JSII_RTTI_SYMBOL_1;
|
|
24
|
-
ModifyTaskDefinitionExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ModifyTaskDefinitionExtension", version: "0.20.
|
|
24
|
+
ModifyTaskDefinitionExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.ModifyTaskDefinitionExtension", version: "0.20.8" };
|
|
25
25
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTW9kaWZ5VGFza0RlZmluaXRpb25FeHRlbnNpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXh0ZW5zaW9ucy9Nb2RpZnlUYXNrRGVmaW5pdGlvbkV4dGVuc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHVGQUE4RTtBQUc5RTs7R0FFRztBQUNILE1BQWEsNkJBQThCLFNBQVEseUNBQWdCO0lBR2pFLFlBQVksS0FBMEI7UUFDcEMsS0FBSyxDQUFDLHdCQUF3QixDQUFDLENBQUM7UUFDaEMsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7SUFDckIsQ0FBQztJQUVELHlCQUF5QixDQUFDLEtBQTBCO1FBQ2xELE9BQU87WUFDTCxHQUFHLEtBQUs7WUFDUixHQUFHLElBQUksQ0FBQyxLQUFLO1NBQ2QsQ0FBQztJQUNKLENBQUM7O0FBYkgsc0VBY0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBTZXJ2aWNlRXh0ZW5zaW9uIH0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0IHsgVGFza0RlZmluaXRpb25Qcm9wcyB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtZWNzXCI7XG5cbi8qKlxuICogQW4gZXh0ZW5zaW9uIHRoYXQgYWxsb3dzIG1vZGlmeWluZyB0aGUgdGFzayBkZWZpbml0aW9uIHByb3BlcnRpZXMuXG4gKi9cbmV4cG9ydCBjbGFzcyBNb2RpZnlUYXNrRGVmaW5pdGlvbkV4dGVuc2lvbiBleHRlbmRzIFNlcnZpY2VFeHRlbnNpb24ge1xuICByZWFkb25seSBwcm9wczogVGFza0RlZmluaXRpb25Qcm9wcztcblxuICBjb25zdHJ1Y3Rvcihwcm9wczogVGFza0RlZmluaXRpb25Qcm9wcykge1xuICAgIHN1cGVyKFwibW9kaWZ5LXRhc2stZGVmaW5pdGlvblwiKTtcbiAgICB0aGlzLnByb3BzID0gcHJvcHM7XG4gIH1cblxuICBtb2RpZnlUYXNrRGVmaW5pdGlvblByb3BzKHByb3BzOiBUYXNrRGVmaW5pdGlvblByb3BzKTogVGFza0RlZmluaXRpb25Qcm9wcyB7XG4gICAgcmV0dXJuIHtcbiAgICAgIC4uLnByb3BzLFxuICAgICAgLi4udGhpcy5wcm9wcyxcbiAgICB9O1xuICB9XG59XG4iXX0=
|
|
@@ -48,5 +48,5 @@ class OpenIdExtension extends ecs_service_extensions_1.ServiceExtension {
|
|
|
48
48
|
}
|
|
49
49
|
exports.OpenIdExtension = OpenIdExtension;
|
|
50
50
|
_a = JSII_RTTI_SYMBOL_1;
|
|
51
|
-
OpenIdExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.OpenIdExtension", version: "0.20.
|
|
51
|
+
OpenIdExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.OpenIdExtension", version: "0.20.8" };
|
|
52
52
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiT3BlbklkRXh0ZW5zaW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2V4dGVuc2lvbnMvT3BlbklkRXh0ZW5zaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsdUZBS29EO0FBQ3BELDJDQUEyQztBQUkzQywwQ0FBZ0U7QUFVaEUsTUFBTSxlQUFnQixTQUFRLDhDQUFxQjtJQUVqRCxZQUFZLEtBQXdCO1FBQ2xDLEtBQUssRUFBRSxDQUFDO1FBQ1IsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7SUFDckIsQ0FBQztJQUVELHlCQUF5QixDQUN2QixLQUFpQztRQUVqQyxPQUFPO1lBQ0wsR0FBRyxLQUFLO1lBQ1IsT0FBTyxFQUFFO2dCQUNQLGtCQUFrQixFQUFFLEdBQUcsQ0FBQyxNQUFNLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUM7YUFDckU7WUFDRCxXQUFXLEVBQUU7Z0JBQ1gsR0FBRyxLQUFLLENBQUMsV0FBVztnQkFDcEIsZUFBZSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUztnQkFDckMsY0FBYyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUTtnQkFDbkMsVUFBVSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSztnQkFDNUIsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsV0FBVztvQkFDeEIsQ0FBQyxDQUFDLEVBQUUsaUJBQWlCLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxXQUFXLEVBQUU7b0JBQy9DLENBQUMsQ0FBQyxFQUFFLENBQUM7YUFDUjtTQUNGLENBQUM7SUFDSixDQUFDO0NBQ0Y7QUFjRCxNQUFhLGVBQWdCLFNBQVEseUNBQWdCO0lBS25ELFlBQVksS0FBMkI7UUFDckMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQ2hCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFFRCxRQUFRO1FBQ04sTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQ3pELG1CQUFtQixDQUNQLENBQUM7UUFFZixJQUFJLENBQUMsU0FBUyxJQUFJLENBQUMsU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUFDO1lBQ3pDLE1BQU0sSUFBSSxLQUFLLENBQ2IsNERBQTRELENBQzdELENBQUM7UUFDSixDQUFDO1FBRUQsU0FBUyxDQUFDLHdCQUF3QixDQUNoQyxJQUFJLGVBQWUsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLG1CQUFtQixDQUFDLENBQzlELENBQUM7SUFDSixDQUFDO0lBRUQsT0FBTyxDQUFDLE9BQWdCLEVBQUUsTUFBaUI7UUFDekMsSUFBSSxDQUFDLGFBQWEsR0FBRyxPQUFPLENBQUM7UUFFN0IsSUFBSSxDQUFDLGVBQWUsR0FBRywwQkFBZSxDQUFDLGdCQUFnQixDQUNyRCxPQUFPLEVBQ1AsaUJBQWlCLEVBQ2pCLElBQUksQ0FBQyxLQUFLLENBQUMsaUJBQWlCLENBQzdCLENBQUM7SUFDSixDQUFDOztBQWxDSCwwQ0FtQ0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb250YWluZXIsXG4gIENvbnRhaW5lck11dGF0aW5nSG9vayxcbiAgU2VydmljZSxcbiAgU2VydmljZUV4dGVuc2lvbixcbn0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0ICogYXMgZWNzIGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtZWNzXCI7XG5pbXBvcnQgeyBDb250YWluZXJEZWZpbml0aW9uT3B0aW9ucyB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtZWNzXCI7XG5pbXBvcnQgeyBJU2VjcmV0IH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1zZWNyZXRzbWFuYWdlclwiO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSBcImNvbnN0cnVjdHNcIjtcbmltcG9ydCB7IENvZ25pdG9Vc2VyUG9vbCwgSUNvZ25pdG9Vc2VyUG9vbCB9IGZyb20gXCIuLi9wbGF0Zm9ybVwiO1xuXG5pbnRlcmZhY2UgT2lkY1ZhcnNIb29rUHJvcHMge1xuICByZWFkb25seSBpc3N1ZXJVcmw6IHN0cmluZztcbiAgcmVhZG9ubHkgY2xpZW50SWQ6IHN0cmluZztcbiAgcmVhZG9ubHkgc2VjcmV0OiBJU2VjcmV0O1xuICByZWFkb25seSBzY29wZTogc3RyaW5nO1xuICByZWFkb25seSByZWRpcmVjdFVyaT86IHN0cmluZztcbn1cblxuY2xhc3MgQWRkT2lkY1ZhcnNIb29rIGV4dGVuZHMgQ29udGFpbmVyTXV0YXRpbmdIb29rIHtcbiAgcmVhZG9ubHkgcHJvcHM6IE9pZGNWYXJzSG9va1Byb3BzO1xuICBjb25zdHJ1Y3Rvcihwcm9wczogT2lkY1ZhcnNIb29rUHJvcHMpIHtcbiAgICBzdXBlcigpO1xuICAgIHRoaXMucHJvcHMgPSBwcm9wcztcbiAgfVxuXG4gIG11dGF0ZUNvbnRhaW5lckRlZmluaXRpb24oXG4gICAgcHJvcHM6IENvbnRhaW5lckRlZmluaXRpb25PcHRpb25zLFxuICApOiBDb250YWluZXJEZWZpbml0aW9uT3B0aW9ucyB7XG4gICAgcmV0dXJuIHtcbiAgICAgIC4uLnByb3BzLFxuICAgICAgc2VjcmV0czoge1xuICAgICAgICBPSURDX0NMSUVOVF9TRUNSRVQ6IGVjcy5TZWNyZXQuZnJvbVNlY3JldHNNYW5hZ2VyKHRoaXMucHJvcHMuc2VjcmV0KSxcbiAgICAgIH0sXG4gICAgICBlbnZpcm9ubWVudDoge1xuICAgICAgICAuLi5wcm9wcy5lbnZpcm9ubWVudCxcbiAgICAgICAgT0lEQ19JU1NVRVJfVVJMOiB0aGlzLnByb3BzLmlzc3VlclVybCxcbiAgICAgICAgT0lEQ19DTElFTlRfSUQ6IHRoaXMucHJvcHMuY2xpZW50SWQsXG4gICAgICAgIE9JRENfU0NPUEU6IHRoaXMucHJvcHMuc2NvcGUsXG4gICAgICAgIC4uLih0aGlzLnByb3BzLnJlZGlyZWN0VXJpXG4gICAgICAgICAgPyB7IE9JRENfUkVESVJFQ1RfVVJJOiB0aGlzLnByb3BzLnJlZGlyZWN0VXJpIH1cbiAgICAgICAgICA6IHt9KSxcbiAgICAgIH0sXG4gICAgfTtcbiAgfVxufVxuXG5leHBvcnQgaW50ZXJmYWNlIE9wZW5JZEV4dGVuc2lvblByb3BzIHtcbiAgLyoqXG4gICAqIFRoZSBuYW1lIG9mIHRoZSBiYXNlIHBsYXRmb3JtIHN0YWNrLlxuICAgKi9cbiAgcmVhZG9ubHkgcGxhdGZvcm1TdGFja05hbWU6IHN0cmluZztcblxuICAvKipcbiAgICogQWRkcyBPSURDX1JFRElSRUNUX1VSSSBlbnZpcm9ubWVudCB2YXJpYWJsZSB0byB0aGUgY29udGFpbmVyIGlmIHNldC5cbiAgICovXG4gIHJlYWRvbmx5IHJlZGlyZWN0VXJpPzogc3RyaW5nO1xufVxuXG5leHBvcnQgY2xhc3MgT3BlbklkRXh0ZW5zaW9uIGV4dGVuZHMgU2VydmljZUV4dGVuc2lvbiB7XG4gIHByaXZhdGUgcmVhZG9ubHkgcHJvcHM6IE9wZW5JZEV4dGVuc2lvblByb3BzO1xuXG4gIGNvZ25pdG9Vc2VyUG9vbCE6IElDb2duaXRvVXNlclBvb2w7XG5cbiAgY29uc3RydWN0b3IocHJvcHM6IE9wZW5JZEV4dGVuc2lvblByb3BzKSB7XG4gICAgc3VwZXIoXCJvcGVuaWRcIik7XG4gICAgdGhpcy5wcm9wcyA9IHByb3BzO1xuICB9XG5cbiAgYWRkSG9va3MoKTogdm9pZCB7XG4gICAgY29uc3QgY29udGFpbmVyID0gdGhpcy5wYXJlbnRTZXJ2aWNlLnNlcnZpY2VEZXNjcmlwdGlvbi5nZXQoXG4gICAgICBcInNlcnZpY2UtY29udGFpbmVyXCIsXG4gICAgKSBhcyBDb250YWluZXI7XG5cbiAgICBpZiAoIWNvbnRhaW5lciB8fCAhY29udGFpbmVyLnRyYWZmaWNQb3J0KSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIFwiQ2Fubm90IGFwcGx5IE9wZW5JRCBleHRlbnNpb24sIG5vIG1haW4gYXBwIGNvbnRhaW5lciBmb3VuZFwiLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICBjb250YWluZXIuYWRkQ29udGFpbmVyTXV0YXRpbmdIb29rKFxuICAgICAgbmV3IEFkZE9pZGNWYXJzSG9vayh0aGlzLmNvZ25pdG9Vc2VyUG9vbC5hcHBPcGVuSWRQYXJhbWV0ZXJzKSxcbiAgICApO1xuICB9XG5cbiAgcHJlaG9vayhzZXJ2aWNlOiBTZXJ2aWNlLCBfc2NvcGU6IENvbnN0cnVjdCk6IHZvaWQge1xuICAgIHRoaXMucGFyZW50U2VydmljZSA9IHNlcnZpY2U7XG5cbiAgICB0aGlzLmNvZ25pdG9Vc2VyUG9vbCA9IENvZ25pdG9Vc2VyUG9vbC5mcm9tQmFzZVBsYXRmb3JtKFxuICAgICAgc2VydmljZSxcbiAgICAgIFwiQ29nbml0b1VzZXJQb29sXCIsXG4gICAgICB0aGlzLnByb3BzLnBsYXRmb3JtU3RhY2tOYW1lLFxuICAgICk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -83,5 +83,5 @@ class OpenTelemetryExtension extends ecs_service_extensions_1.ServiceExtension {
|
|
|
83
83
|
}
|
|
84
84
|
exports.OpenTelemetryExtension = OpenTelemetryExtension;
|
|
85
85
|
_a = JSII_RTTI_SYMBOL_1;
|
|
86
|
-
OpenTelemetryExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.OpenTelemetryExtension", version: "0.20.
|
|
86
|
+
OpenTelemetryExtension[_a] = { fqn: "@btc-embedded/cdk-extensions.OpenTelemetryExtension", version: "0.20.8" };
|
|
87
87
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiT3BlblRlbGVtZXRyeUV4dGVuc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leHRlbnNpb25zL09wZW5UZWxlbWV0cnlFeHRlbnNpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSx1RkFJb0Q7QUFDcEQsNkNBQW9DO0FBQ3BDLGlEQUk2QjtBQUM3QixpREFBNkU7QUFFaEUsUUFBQSxvQkFBb0IsR0FDL0IsNERBQTRELENBQUM7QUF1Qi9ELE1BQU0sSUFBSyxTQUFRLDhDQUFxQjtJQUN0QyxZQUE2QixLQUEwQztRQUNyRSxLQUFLLEVBQUUsQ0FBQztRQURtQixVQUFLLEdBQUwsS0FBSyxDQUFxQztJQUV2RSxDQUFDO0lBRUQseUJBQXlCLENBQ3ZCLE9BQW1DO1FBRW5DLE9BQU87WUFDTCxHQUFHLE9BQU87WUFDVixHQUFHLElBQUksQ0FBQyxLQUFLO1lBQ2IsV0FBVyxFQUFFO2dCQUNYLEdBQUcsT0FBTyxDQUFDLFdBQVc7Z0JBQ3RCLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxXQUFXO2FBQzFCO1NBQ0YsQ0FBQztJQUNKLENBQUM7Q0FDRjtBQUVEOztHQUVHO0FBQ0gsTUFBYSxzQkFBdUIsU0FBUSx5Q0FBZ0I7SUFHMUQsWUFBWSxLQUFrQztRQUM1QyxLQUFLLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUN4QixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBRU0saUJBQWlCLENBQUMsY0FBOEI7UUFDckQsSUFBSSxjQUFjLEdBQStCO1lBQy9DLEtBQUssRUFBRSxrQkFBUSxDQUFDLFlBQVksQ0FBQyw0QkFBb0IsQ0FBQztZQUNsRCxPQUFPLEVBQUUsQ0FBQywyQ0FBMkMsQ0FBQztZQUN0RCxXQUFXLEVBQUU7Z0JBQ1gsVUFBVSxFQUFFLGNBQWMsQ0FBQyxLQUFLLENBQUMsTUFBTTthQUN4QztTQUNGLENBQUM7UUFFRixJQUFJLENBQUMsc0JBQXNCLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUU7WUFDM0MsY0FBYyxHQUFHLElBQUksQ0FBQyx5QkFBeUIsQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUNsRSxDQUFDLENBQUMsQ0FBQztRQUVILGNBQWMsQ0FBQyxZQUFZLENBQUMsd0JBQXdCLEVBQUUsY0FBYyxDQUFDLENBQUM7UUFFdEUsY0FBYyxDQUFDLFFBQVEsQ0FBQyxnQkFBZ0IsQ0FDdEMsdUJBQWEsQ0FBQyx3QkFBd0IsQ0FBQyx3QkFBd0IsQ0FBQyxDQUNqRSxDQUFDO1FBRUYsY0FBYyxDQUFDLG1CQUFtQixDQUNoQyxJQUFJLHlCQUFlLENBQUM7WUFDbEIsT0FBTyxFQUFFO2dCQUNQLG1CQUFtQjtnQkFDbkIseUJBQXlCO2dCQUN6Qix3QkFBd0I7Z0JBQ3hCLDBCQUEwQjtnQkFDMUIscUJBQXFCO2dCQUNyQixrQkFBa0I7YUFDbkI7WUFDRCxTQUFTLEVBQUUsQ0FBQyxHQUFHLENBQUM7WUFDaEIsTUFBTSxFQUFFLGdCQUFNLENBQUMsS0FBSztTQUNyQixDQUFDLENBQ0gsQ0FBQztJQUNKLENBQUM7SUFFRCxRQUFRO1FBQ04sTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQ3pELG1CQUFtQixDQUNQLENBQUM7UUFFZixJQUFJLENBQUMsU0FBUyxFQUFFLENBQUM7WUFDZixNQUFNLElBQUksS0FBSyxDQUFDLHFEQUFxRCxDQUFDLENBQUM7UUFDekUsQ0FBQztRQUVELElBQUksVUFBVSxHQUEyQjtZQUN2Qyx3QkFBd0IsRUFDdEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxnQkFBZ0IsSUFBSSxtQkFBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsU0FBUztZQUN2RSxtQkFBbUIsRUFDakIsSUFBSSxDQUFDLEtBQUssQ0FBQyxnQkFBZ0IsSUFBSSxtQkFBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsU0FBUztZQUN2RSxjQUFjLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxXQUFXLElBQUksSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFO1NBQ2hFLENBQUM7UUFFRixNQUFNLHNCQUFzQixHQUFHLE1BQU0sQ0FBQyxPQUFPLENBQUMsVUFBVSxDQUFDO2FBQ3RELEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQzthQUM1QixJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7UUFFYixTQUFTLENBQUMsd0JBQXdCLENBQ2hDLElBQUksSUFBSSxDQUFDO1lBQ1AsV0FBVyxFQUFFO2dCQUNYLDJEQUEyRDtnQkFDM0QsZ0RBQWdEO2dCQUNoRCx3QkFBd0IsRUFBRSxzQkFBc0I7Z0JBQ2hELEdBQUcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLGdCQUFnQixJQUFJLEVBQUUsQ0FBQzthQUN2QztTQUNGLENBQUMsQ0FDSCxDQUFDO0lBQ0osQ0FBQzs7QUExRUgsd0RBMkVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ29udGFpbmVyLFxuICBDb250YWluZXJNdXRhdGluZ0hvb2ssXG4gIFNlcnZpY2VFeHRlbnNpb24sXG59IGZyb20gXCJAYXdzLWNkay1jb250YWluZXJzL2Vjcy1zZXJ2aWNlLWV4dGVuc2lvbnNcIjtcbmltcG9ydCB7IFN0YWNrIH0gZnJvbSBcImF3cy1jZGstbGliXCI7XG5pbXBvcnQge1xuICBDb250YWluZXJEZWZpbml0aW9uT3B0aW9ucyxcbiAgRWNySW1hZ2UsXG4gIFRhc2tEZWZpbml0aW9uLFxufSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWVjc1wiO1xuaW1wb3J0IHsgRWZmZWN0LCBNYW5hZ2VkUG9saWN5LCBQb2xpY3lTdGF0ZW1lbnQgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWlhbVwiO1xuXG5leHBvcnQgY29uc3QgT1RFTF9DT0xMRUNUT1JfSU1BR0UgPVxuICBcInB1YmxpYy5lY3IuYXdzL2F3cy1vYnNlcnZhYmlsaXR5L2F3cy1vdGVsLWNvbGxlY3RvcjpsYXRlc3RcIjtcblxuZXhwb3J0IGludGVyZmFjZSBPcGVuVGVsZW1ldHJ5RXh0ZW5zaW9uUHJvcHMge1xuICAvKipcbiAgICogVGhlIG5hbWUgb2YgdGhlIHNlcnZpY2UgdG8gdXNlIGluIHRoZSBPVGVsIGF0dHJpYnV0ZXMuXG4gICAqXG4gICAqIEBkZWZhdWx0IC0gdXNlIHRoZSBzZXJ2aWNlIGlkXG4gICAqL1xuICByZWFkb25seSBzZXJ2aWNlTmFtZT86IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIG5hbWVzcGFjZSBvZiB0aGUgc2VydmljZSB0byB1c2UgaW4gdGhlIE9UZWwgYXR0cmlidXRlcy5cbiAgICpcbiAgICogQGRlZmF1bHQgLSB1c2UgdGhlIHN0YWNrIG5hbWVcbiAgICovXG4gIHJlYWRvbmx5IHNlcnZpY2VOYW1lc3BhY2U/OiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIEV4dHJhIGVudmlyb25tZW50IHNldHRpbmdzIHRvIHBhc3MgdG8gdGhlIHNlcnZpY2UgY29udGFpbmVyLlxuICAgKi9cbiAgcmVhZG9ubHkgZXh0cmFFbnZTZXR0aW5ncz86IFJlY29yZDxzdHJpbmcsIHN0cmluZz47XG59XG5cbmNsYXNzIEhvb2sgZXh0ZW5kcyBDb250YWluZXJNdXRhdGluZ0hvb2sge1xuICBjb25zdHJ1Y3Rvcihwcml2YXRlIHJlYWRvbmx5IHByb3BzOiBQYXJ0aWFsPENvbnRhaW5lckRlZmluaXRpb25PcHRpb25zPikge1xuICAgIHN1cGVyKCk7XG4gIH1cblxuICBtdXRhdGVDb250YWluZXJEZWZpbml0aW9uKFxuICAgIG9wdGlvbnM6IENvbnRhaW5lckRlZmluaXRpb25PcHRpb25zLFxuICApOiBDb250YWluZXJEZWZpbml0aW9uT3B0aW9ucyB7XG4gICAgcmV0dXJuIHtcbiAgICAgIC4uLm9wdGlvbnMsXG4gICAgICAuLi50aGlzLnByb3BzLFxuICAgICAgZW52aXJvbm1lbnQ6IHtcbiAgICAgICAgLi4ub3B0aW9ucy5lbnZpcm9ubWVudCxcbiAgICAgICAgLi4udGhpcy5wcm9wcy5lbnZpcm9ubWVudCxcbiAgICAgIH0sXG4gICAgfTtcbiAgfVxufVxuXG4vKipcbiAqIEFkZHMgdGhlIE9wZW5UZWxlbWV0cnkgY29sbGVjdG9yIGFzIGEgc2lkZWNhciB0byB0aGUgRUNTIHRhc2suXG4gKi9cbmV4cG9ydCBjbGFzcyBPcGVuVGVsZW1ldHJ5RXh0ZW5zaW9uIGV4dGVuZHMgU2VydmljZUV4dGVuc2lvbiB7XG4gIHJlYWRvbmx5IHByb3BzOiBPcGVuVGVsZW1ldHJ5RXh0ZW5zaW9uUHJvcHM7XG5cbiAgY29uc3RydWN0b3IocHJvcHM6IE9wZW5UZWxlbWV0cnlFeHRlbnNpb25Qcm9wcykge1xuICAgIHN1cGVyKFwib3RlbC1leHRlbnNpb25cIik7XG4gICAgdGhpcy5wcm9wcyA9IHByb3BzO1xuICB9XG5cbiAgcHVibGljIHVzZVRhc2tEZWZpbml0aW9uKHRhc2tEZWZpbml0aW9uOiBUYXNrRGVmaW5pdGlvbik6IHZvaWQge1xuICAgIGxldCBjb250YWluZXJQcm9wczogQ29udGFpbmVyRGVmaW5pdGlvbk9wdGlvbnMgPSB7XG4gICAgICBpbWFnZTogRWNySW1hZ2UuZnJvbVJlZ2lzdHJ5KE9URUxfQ09MTEVDVE9SX0lNQUdFKSxcbiAgICAgIGNvbW1hbmQ6IFtcIi0tY29uZmlnPS9ldGMvZWNzL2Vjcy1kZWZhdWx0LWNvbmZpZy55YW1sXCJdLFxuICAgICAgZW52aXJvbm1lbnQ6IHtcbiAgICAgICAgQVdTX1JFR0lPTjogdGFza0RlZmluaXRpb24uc3RhY2sucmVnaW9uLFxuICAgICAgfSxcbiAgICB9O1xuXG4gICAgdGhpcy5jb250YWluZXJNdXRhdGluZ0hvb2tzLmZvckVhY2goKGhvb2spID0+IHtcbiAgICAgIGNvbnRhaW5lclByb3BzID0gaG9vay5tdXRhdGVDb250YWluZXJEZWZpbml0aW9uKGNvbnRhaW5lclByb3BzKTtcbiAgICB9KTtcblxuICAgIHRhc2tEZWZpbml0aW9uLmFkZENvbnRhaW5lcihcIm90ZWwtY29sbGVjdG9yLXNpZGVjYXJcIiwgY29udGFpbmVyUHJvcHMpO1xuXG4gICAgdGFza0RlZmluaXRpb24udGFza1JvbGUuYWRkTWFuYWdlZFBvbGljeShcbiAgICAgIE1hbmFnZWRQb2xpY3kuZnJvbUF3c01hbmFnZWRQb2xpY3lOYW1lKFwiQVdTWHJheVdyaXRlT25seUFjY2Vzc1wiKSxcbiAgICApO1xuXG4gICAgdGFza0RlZmluaXRpb24uYWRkVG9UYXNrUm9sZVBvbGljeShcbiAgICAgIG5ldyBQb2xpY3lTdGF0ZW1lbnQoe1xuICAgICAgICBhY3Rpb25zOiBbXG4gICAgICAgICAgXCJsb2dzOlB1dExvZ0V2ZW50c1wiLFxuICAgICAgICAgIFwibG9nczpEZXNjcmliZUxvZ1N0cmVhbXNcIixcbiAgICAgICAgICBcImxvZ3M6RGVzY3JpYmVMb2dHcm91cHNcIixcbiAgICAgICAgICBcImNsb3Vkd2F0Y2g6UHV0TWV0cmljRGF0YVwiLFxuICAgICAgICAgIFwiZWMyOkRlc2NyaWJlVm9sdW1lc1wiLFxuICAgICAgICAgIFwiZWMyOkRlc2NyaWJlVGFnc1wiLFxuICAgICAgICBdLFxuICAgICAgICByZXNvdXJjZXM6IFtcIipcIl0sXG4gICAgICAgIGVmZmVjdDogRWZmZWN0LkFMTE9XLFxuICAgICAgfSksXG4gICAgKTtcbiAgfVxuXG4gIGFkZEhvb2tzKCk6IHZvaWQge1xuICAgIGNvbnN0IGNvbnRhaW5lciA9IHRoaXMucGFyZW50U2VydmljZS5zZXJ2aWNlRGVzY3JpcHRpb24uZ2V0KFxuICAgICAgXCJzZXJ2aWNlLWNvbnRhaW5lclwiLFxuICAgICkgYXMgQ29udGFpbmVyO1xuXG4gICAgaWYgKCFjb250YWluZXIpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIkNhbm5vdCBhcHBseSBleHRlbnNpb24sIG5vIG1haW4gYXBwIGNvbnRhaW5lciBmb3VuZFwiKTtcbiAgICB9XG5cbiAgICBsZXQgYXR0cmlidXRlczogUmVjb3JkPHN0cmluZywgc3RyaW5nPiA9IHtcbiAgICAgIFwiZGVwbG95bWVudC5lbnZpcm9ubWVudFwiOlxuICAgICAgICB0aGlzLnByb3BzLnNlcnZpY2VOYW1lc3BhY2UgPz8gU3RhY2sub2YodGhpcy5wYXJlbnRTZXJ2aWNlKS5zdGFja05hbWUsXG4gICAgICBcInNlcnZpY2UubmFtZXNwYWNlXCI6XG4gICAgICAgIHRoaXMucHJvcHMuc2VydmljZU5hbWVzcGFjZSA/PyBTdGFjay5vZih0aGlzLnBhcmVudFNlcnZpY2UpLnN0YWNrTmFtZSxcbiAgICAgIFwic2VydmljZS5uYW1lXCI6IHRoaXMucHJvcHMuc2VydmljZU5hbWUgPz8gdGhpcy5wYXJlbnRTZXJ2aWNlLmlkLFxuICAgIH07XG5cbiAgICBjb25zdCByZXNvdXJjZUF0dHJpYnV0ZXNMaXN0ID0gT2JqZWN0LmVudHJpZXMoYXR0cmlidXRlcylcbiAgICAgIC5tYXAoKFtrLCB2XSkgPT4gYCR7a309JHt2fWApXG4gICAgICAuam9pbihcIixcIik7XG5cbiAgICBjb250YWluZXIuYWRkQ29udGFpbmVyTXV0YXRpbmdIb29rKFxuICAgICAgbmV3IEhvb2soe1xuICAgICAgICBlbnZpcm9ubWVudDoge1xuICAgICAgICAgIC8vIFRPRE86IG5lZWQgdG8gaW50ZWdyYXRlIGNsb3Vkd2F0Y2ggYXBwIHNpZ25hbHMgY29sbGVjdG9yXG4gICAgICAgICAgLy8gT1RFTF9BV1NfQVBQTElDQVRJT05fU0lHTkFMU19FTkFCTEVEOiBcInRydWVcIixcbiAgICAgICAgICBPVEVMX1JFU09VUkNFX0FUVFJJQlVURVM6IHJlc291cmNlQXR0cmlidXRlc0xpc3QsXG4gICAgICAgICAgLi4uKHRoaXMucHJvcHMuZXh0cmFFbnZTZXR0aW5ncyA/PyB7fSksXG4gICAgICAgIH0sXG4gICAgICB9KSxcbiAgICApO1xuICB9XG59XG4iXX0=
|