@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
|
@@ -145,5 +145,5 @@ class EventPipe extends construct_1.Construct {
|
|
|
145
145
|
}
|
|
146
146
|
exports.EventPipe = EventPipe;
|
|
147
147
|
_a = JSII_RTTI_SYMBOL_1;
|
|
148
|
-
EventPipe[_a] = { fqn: "@btc-embedded/cdk-extensions.EventPipe", version: "0.20.
|
|
148
|
+
EventPipe[_a] = { fqn: "@btc-embedded/cdk-extensions.EventPipe", version: "0.20.8" };
|
|
149
149
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXZlbnRQaXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0cnVjdHMvRXZlbnRQaXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsNkNBQTBDO0FBQzFDLGlEQUE2RDtBQUU3RCxxREFBZ0Q7QUFHaEQsd0RBQXFEO0FBQ3JELDBDQUEwQztBQUMxQyx3RUFBdUU7QUFzQ3ZFLElBQVksUUFpQlg7QUFqQkQsV0FBWSxRQUFRO0lBQ2xCOztPQUVHO0lBQ0gsdUJBQVcsQ0FBQTtJQUNYOztPQUVHO0lBQ0gsMkJBQWUsQ0FBQTtJQUNmOztPQUVHO0lBQ0gseUJBQWEsQ0FBQTtJQUNiOztPQUVHO0lBQ0gsMkJBQWUsQ0FBQTtBQUNqQixDQUFDLEVBakJXLFFBQVEsd0JBQVIsUUFBUSxRQWlCbkI7QUFFRDs7R0FFRztBQUNILElBQVksY0FjWDtBQWRELFdBQVksY0FBYztJQUN4Qjs7Ozs7T0FLRztJQUNILDJFQUFnQixDQUFBO0lBQ2hCOzs7O09BSUc7SUFDSCx5RUFBZSxDQUFBO0FBQ2pCLENBQUMsRUFkVyxjQUFjLDhCQUFkLGNBQWMsUUFjekI7QUEyRkQ7O0dBRUc7QUFDSCxNQUFhLFNBQVUsU0FBUSxxQkFBUztJQUd0QyxZQUFZLEtBQWdCLEVBQUUsRUFBVSxFQUFFLEtBQXFCO1FBQzdELEtBQUssQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFFakIsSUFBSSxrQkFBa0IsR0FDcEIsY0FBYyxJQUFJLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7UUFDekUsSUFBSSw0QkFBNEIsR0FDOUIsWUFBWSxJQUFJLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7UUFFckUsSUFBSSxXQUFXLEdBQUcsT0FBTyxJQUFJLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7UUFFM0UsSUFBSSxTQUFTLEdBQUcsV0FBVyxLQUFLLFNBQVMsQ0FBQztRQUUxQyxJQUFJLFNBQVMsR0FBRyxTQUFTO1lBQ3ZCLENBQUMsQ0FBQyxXQUFZLENBQUMsUUFBUTtZQUN2QixDQUFDLENBQUMsa0JBQW1CLENBQUMsZUFBZSxDQUFDO1FBRXhDLElBQUksWUFBWSxHQUFHLFNBQVMsQ0FBQztRQUM3QixJQUFJLElBQUEsNkNBQXNCLEVBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQztZQUMvQix5QkFBVyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsQ0FBQyxPQUFPLENBQUMsR0FBRyxFQUFFLDRCQUE0QixDQUFDLENBQUM7WUFDaEUsWUFBWSxHQUFHLFNBQVMsQ0FBQztRQUMzQixDQUFDO1FBRUQsSUFBSSxDQUFDLElBQUk7WUFDUCxLQUFLLENBQUMsSUFBSTtnQkFDVixJQUFJLGNBQUksQ0FBQyxJQUFJLEVBQUUsZUFBZSxFQUFFO29CQUM5QixTQUFTLEVBQUUsSUFBSSwwQkFBZ0IsQ0FBQyxxQkFBcUIsQ0FBQztpQkFDdkQsQ0FBQyxDQUFDO1FBRUwsSUFBSSxjQUFjLEdBQUcsS0FBSyxDQUFDLE1BQU07WUFDL0IsQ0FBQyxDQUFDO2dCQUNFLE9BQU8sRUFBRTtvQkFDUDt3QkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLFNBQVMsQ0FBQzs0QkFDdEIsSUFBSSxFQUFFO2dDQUNKLEdBQUcsS0FBSyxDQUFDLE1BQU07NkJBQ2hCO3lCQUNGLENBQUM7cUJBQ0g7aUJBQ0Y7YUFDRjtZQUNILENBQUMsQ0FBQyxTQUFTLENBQUM7UUFFZCxJQUFJLGdCQUFnQixHQUF5QyxFQUFFLENBQUM7UUFDaEUsSUFBSSxXQUFXLEVBQUUsQ0FBQztZQUNoQixnQkFBZ0IsR0FBRztnQkFDakIsa0JBQWtCLEVBQUU7b0JBQ2xCLGNBQWMsRUFBRSxTQUFTO2lCQUMxQjthQUNGLENBQUM7UUFDSixDQUFDO2FBQU0sQ0FBQztZQUNOLGdCQUFnQixHQUFHO2dCQUNqQixrQ0FBa0MsRUFBRTtvQkFDbEMsY0FBYyxFQUFFLDRCQUE0QixFQUFFLGNBQWM7d0JBQzFELENBQUMsQ0FBQyxjQUFjLENBQUMsNEJBQTRCLENBQUMsY0FBYyxDQUFDO3dCQUM3RCxDQUFDLENBQUMsY0FBYyxDQUFDLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQztpQkFDcEQ7Z0JBQ0QsR0FBRyxDQUFDLDRCQUE0QixFQUFFLGFBQWEsSUFBSTtvQkFDakQsYUFBYSxFQUFFLElBQUksQ0FBQyxTQUFTLENBQzNCLDRCQUE0QixDQUFDLGFBQWEsQ0FDM0MsQ0FBQyxPQUFPLENBQUMsaUJBQWlCLEVBQUUsSUFBSSxDQUFDO2lCQUNuQyxDQUFDO2FBQ0gsQ0FBQztRQUNKLENBQUM7UUFFRCxJQUFJLGdCQUFnQixHQUFHO1lBQ3JCLGtCQUFrQixFQUFFO2dCQUNsQixTQUFTLEVBQUUsQ0FBQzthQUNiO1lBQ0QsR0FBRyxDQUFDLGNBQWMsSUFBSSxFQUFFLGNBQWMsRUFBRSxjQUFjLEVBQUUsQ0FBQztTQUMxRCxDQUFDO1FBRUYsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLGNBQWMsQ0FBQyxLQUFLLENBQUM7WUFDekMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLFFBQVE7Z0JBQ2YsSUFBSSxzQkFBVyxDQUFDLElBQUksRUFBRSxtQkFBbUIsRUFBRTtvQkFDekMsT0FBTyxFQUFFLFlBQVk7aUJBQ3RCLENBQUMsQ0FBQztZQUNMLENBQUMsQ0FBQyxTQUFTLENBQUM7UUFFZCxNQUFNLGlCQUFpQixHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDO1lBQ2xELENBQUMsQ0FBQztnQkFDRSxnQkFBZ0IsRUFBRTtvQkFDaEIsNEJBQTRCLEVBQUU7d0JBQzVCLFdBQVcsRUFBRSxRQUFTLENBQUMsV0FBVztxQkFDbkM7b0JBQ0QsS0FBSyxFQUFFLEtBQUssQ0FBQyxRQUFRO2lCQUN0QjthQUNGO1lBQ0gsQ0FBQyxDQUFDLEVBQUUsQ0FBQztRQUVQLElBQUksbUJBQU8sQ0FBQyxJQUFJLEVBQUUsV0FBVyxFQUFFO1lBQzdCLEdBQUcsaUJBQWlCO1lBQ3BCLE9BQU8sRUFBRSxJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU87WUFDMUIsTUFBTSxFQUFFLEtBQUssQ0FBQyxNQUFNLENBQUMsUUFBUTtZQUM3QixNQUFNLEVBQUUsU0FBUztZQUNqQixnQkFBZ0IsRUFBRSxnQkFBZ0I7WUFDbEMsZ0JBQWdCLEVBQUUsZ0JBQWdCO1lBQ2xDLFlBQVksRUFBRSxZQUFZO1NBQzNCLENBQUMsQ0FBQztRQUVILEtBQUssQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQzdDLFdBQVcsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDMUMsa0JBQWtCLEVBQUUsbUJBQW1CLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ25ELFFBQVEsRUFBRSxVQUFVLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ2xDLENBQUM7SUFFTyxjQUFjLENBQUMsS0FBcUI7UUFDMUMsT0FBTyxLQUFLLENBQUMsUUFBUSxLQUFLLFNBQVMsSUFBSSxLQUFLLENBQUMsUUFBUSxLQUFLLFFBQVEsQ0FBQyxHQUFHLENBQUM7SUFDekUsQ0FBQzs7QUE5R0gsOEJBK0dDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQW5ub3RhdGlvbnMgfSBmcm9tIFwiYXdzLWNkay1saWJcIjtcbmltcG9ydCB7IFJvbGUsIFNlcnZpY2VQcmluY2lwYWwgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWlhbVwiO1xuaW1wb3J0IHsgSUxvZ0dyb3VwIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1sb2dzXCI7XG5pbXBvcnQgeyBDZm5QaXBlIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1waXBlc1wiO1xuaW1wb3J0IHsgSVF1ZXVlIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1zcXNcIjtcbmltcG9ydCB7IElTdGF0ZU1hY2hpbmUgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLXN0ZXBmdW5jdGlvbnNcIjtcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gXCJjb25zdHJ1Y3RzL2xpYi9jb25zdHJ1Y3RcIjtcbmltcG9ydCB7IEJUQ0xvZ0dyb3VwIH0gZnJvbSBcIi4uL3BsYXRmb3JtXCI7XG5pbXBvcnQgeyBpc0RlYWN0aXZhdGVkQ29uc3RydWN0IH0gZnJvbSBcIi4uL3V0aWxzL2RlYWN0aXZhdGVkQ29uc3RydWN0XCI7XG5cbi8qKlxuICogUHJvcGVydGllcyBmb3IgcGlwZSBjb25zdHJ1Y3Rpb24uXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgRXZlbnRQaXBlUHJvcHMge1xuICAvKipcbiAgICogVGhlIHNvdXJjZSBTUVMgcXVldWUuIE5vIG90aGVyIHNvdXJjZSB0eXBlcyBhcmUgc3VwcG9ydGVkIGF0IHRoZSBtb21lbnQuXG4gICAqL1xuICByZWFkb25seSBzb3VyY2U6IElRdWV1ZTtcblxuICAvKipcbiAgICogVGhlIHRhcmdldCBTUVMgcXVldWUgb3IgdGFyZ2V0IHN0ZXAgZnVuY3Rpb24uXG4gICAqL1xuICByZWFkb25seSB0YXJnZXQ6IFRhcmdldFF1ZXVlIHwgVGFyZ2V0U3RlcEZ1bmN0aW9uO1xuXG4gIC8qKlxuICAgKiBUaGUgcm9sZSB1c2VkIGJ5IHRoZSBldmVudCBwaXBlLiBJZiBvbWl0dGVkLCBhIG5ldyByb2xlIGlzIGNyZWF0ZWQuXG4gICAqL1xuICByZWFkb25seSByb2xlPzogUm9sZTtcblxuICAvKipcbiAgICogQW4gb3B0aW9uYWwgZmlsdGVyIGZvciB0aGUgcGlwZS5cbiAgICovXG4gIHJlYWRvbmx5IGZpbHRlcj86IFBpcGVGaWx0ZXI7XG5cbiAgLyoqXG4gICAqIFNldCB0aGUgbG9nIGxldmVsIGZvciB0aGUgcGlwZS4gQ3JlYXRlcyBhIG5ldyBsb2cgZ3JvdXAsIGlmIGVuYWJsZWQuXG4gICAqIERlZmF1bHQ6IERpc2FibGVkLlxuICAgKi9cbiAgcmVhZG9ubHkgbG9nTGV2ZWw/OiBMb2dMZXZlbDtcblxuICAvKipcbiAgICogVXNlIGFuIGV4aXN0aW5nIGxvZyBncm91cC4gSWYgbm9uZSBpcyBnaXZlbiBhbmQgbG9nZ2luZyBpcyBlbmFibGVkLCBhIG5ldyBsb2cgZ3JvdXAgd2lsbCBiZSBjcmVhdGVkLlxuICAgKi9cbiAgcmVhZG9ubHkgbG9nR3JvdXA/OiBJTG9nR3JvdXA7XG59XG5cbmV4cG9ydCBlbnVtIExvZ0xldmVsIHtcbiAgLyoqXG4gICAqIERlYWN0aXZhdGUgbG9nZ2luZy4gTm8gbG9nIGdyb3VwIHdpbGwgYmUgY3JlYXRlZC5cbiAgICovXG4gIE9GRiA9IFwiT0ZGXCIsXG4gIC8qKlxuICAgKiBPbmx5IGxvZyBlcnJvcnMuXG4gICAqL1xuICBFUlJPUiA9IFwiRVJST1JcIixcbiAgLyoqXG4gICAqIExvZyBlcnJvcnMgYW5kIGluZm9ybWF0aW9uYWwgbWVzc2FnZXMuXG4gICAqL1xuICBJTkZPID0gXCJJTkZPXCIsXG4gIC8qKlxuICAgKiBMb2cgdmVyeSB2ZXJib3NlLlxuICAgKi9cbiAgVFJBQ0UgPSBcIlRSQUNFXCIsXG59XG5cbi8qKlxuICogVGhlIGludm9jYXRpb24gdHlwZSBvZiB0aGUgc3RlcCBmdW5jdGlvbi5cbiAqL1xuZXhwb3J0IGVudW0gSW52b2NhdGlvblR5cGUge1xuICAvKipcbiAgICogKGRlZmF1bHQpIC0gSW52b2tlIHN5bmNocm9ub3VzbHkuIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbiAgICogW1N0YXJ0U3luY0V4ZWN1dGlvbl0oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL3N0ZXAtZnVuY3Rpb25zL2xhdGVzdC9hcGlyZWZlcmVuY2UvQVBJX1N0YXJ0U3luY0V4ZWN1dGlvbi5odG1sKVxuICAgKiBpbiB0aGUgKkFXUyBTdGVwIEZ1bmN0aW9ucyBBUEkgUmVmZXJlbmNlKi5cbiAgICogPiBgUkVRVUVTVF9SRVNQT05TRWAgaXMgbm90IHN1cHBvcnRlZCBmb3IgYFNUQU5EQVJEYCBzdGF0ZSBtYWNoaW5lIHdvcmtmbG93cy5cbiAgICovXG4gIFJFUVVFU1RfUkVTUE9OU0UsXG4gIC8qKlxuICAgKiBJbnZva2UgYXN5bmNocm9ub3VzbHkuIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbiAgICogW1N0YXJ0RXhlY3V0aW9uXShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vc3RlcC1mdW5jdGlvbnMvbGF0ZXN0L2FwaXJlZmVyZW5jZS9BUElfU3RhcnRFeGVjdXRpb24uaHRtbClcbiAgICogaW4gdGhlICpBV1MgU3RlcCBGdW5jdGlvbnMgQVBJIFJlZmVyZW5jZSouXG4gICAqL1xuICBGSVJFX0FORF9GT1JHRVQsXG59XG5cbi8qKlxuICogVGhlIGlucHV0IHRlbXBsYXRlLlxuICogTm90ZSB0aGF0IHNvbWUgdmFsdWVzIGluIHRoZSByZXN1bHRpbmcgY29kZSBzaG91bGQgbm90IGhhdmUgcXVvdGVzIGFyb3VuZCB0aGUgdmFsdWUsIGUuZy4gaWYgYW4gb2JqZWN0XG4gKiBzaGFsbCBiZSBhZGRlZC4gVG8gcmVmbGVjdCB0aGlzLCBhZGQgY3VybHkgYnJhY2tldHMgYXJvdW5kIHRoZSB2YWx1ZSwgZS5nLiBge3s8JC5ib2R5Pn19YC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbnB1dFRlbXBsYXRlIHtcbiAgLyoqXG4gICAqIEBqc2lpIGlnbm9yZVxuICAgKi9cbiAgcmVhZG9ubHkgW2tleTogc3RyaW5nXTogc3RyaW5nO1xufVxuXG4vKipcbiAqIFNRUyBxdWV1ZSBhcyBwaXBlIHRhcmdldC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBUYXJnZXRRdWV1ZSB7XG4gIHJlYWRvbmx5IHF1ZXVlOiBJUXVldWU7XG59XG5cbi8qKlxuICogU3RlcEZ1bmN0aW9uIGFzIHBpcGUgdGFyZ2V0LlxuICovXG5leHBvcnQgaW50ZXJmYWNlIFRhcmdldFN0ZXBGdW5jdGlvbiB7XG4gIHJlYWRvbmx5IHN0ZXBGdW5jdGlvbjogSVN0YXRlTWFjaGluZTtcbiAgcmVhZG9ubHkgcGFyYW1ldGVycz86IFRhcmdldFN0ZXBGdW5jdGlvblBhcmFtZXRlcnM7XG59XG5cbi8qKlxuICogUGFyYW1ldGVycyBmb3IgYSBzdGVwIGZ1bmN0aW9uIHRhcmdldC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBUYXJnZXRTdGVwRnVuY3Rpb25QYXJhbWV0ZXJzIHtcbiAgcmVhZG9ubHkgaW5wdXRUZW1wbGF0ZT86IElucHV0VGVtcGxhdGU7XG4gIHJlYWRvbmx5IGludm9jYXRpb25UeXBlPzogSW52b2NhdGlvblR5cGU7XG59XG5cbi8qKlxuICogQmFzZSB0eXBlIGZvciBmaWx0ZXIgcnVsZXMuIE5vdCBhbGwgYXZhaWxhYmxlIHJ1bGVzIGFyZSBjdXJyZW50bHkgaW1wbGVtZW50ZWQuXG4gKi9cbmV4cG9ydCB0eXBlIEZpbHRlclJ1bGUgPVxuICB8IFByZWZpeEZpbHRlclJ1bGVcbiAgfCBTdWZmaXhGaWx0ZXJSdWxlXG4gIHwgQW55dGhpbmdCdXRGaWx0ZXJSdWxlXG4gIHwgRmlsdGVyRXF1YWxzSWdub3JlQ2FzZTtcblxuLyoqXG4gKiBSdWxlIHRoYXQgYSBwcm9wZXJ0eSBoYXMgdG8gc3RhcnQgd2l0aCBhIHByZWZpeC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBQcmVmaXhGaWx0ZXJSdWxlIHtcbiAgcmVhZG9ubHkgcHJlZml4OiBzdHJpbmcgfCBGaWx0ZXJFcXVhbHNJZ25vcmVDYXNlO1xufVxuXG4vKipcbiAqIFJ1bGUgdGhhdCBhIHByb3BlcnR5IGhhcyB0byBlbmQgd2l0aCBhIHN1ZmZpeC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBTdWZmaXhGaWx0ZXJSdWxlIHtcbiAgcmVhZG9ubHkgc3VmZml4OiBzdHJpbmcgfCBGaWx0ZXJFcXVhbHNJZ25vcmVDYXNlO1xufVxuXG4vKipcbiAqIFJ1bGUgdGhhdCBhbGxvd3MgYWxsIHZhbHVlcyBleGNlcHQgdGhlIGdpdmVuIG9uZXMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgQW55dGhpbmdCdXRGaWx0ZXJSdWxlIHtcbiAgLyoqXG4gICAqIEBqc2lpIGlnbm9yZVxuICAgKi9cbiAgcmVhZG9ubHkgXCJhbnl0aGluZy1idXRcIjogc3RyaW5nW10gfCBGaWx0ZXJSdWxlO1xufVxuXG4vKipcbiAqIFJ1bGUgdGhhdCBtYXRjaGVzIGEgc3RyaW5nLCBpZ25vcmluZyB0aGUgY2FzZS5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBGaWx0ZXJFcXVhbHNJZ25vcmVDYXNlIHtcbiAgLyoqXG4gICAqIEBqc2lpIGlnbm9yZVxuICAgKi9cbiAgcmVhZG9ubHkgXCJlcXVhbHMtaWdub3JlLWNhc2VcIjogc3RyaW5nIHwgc3RyaW5nW107XG59XG5cbi8qKlxuICogQSBmaWx0ZXIgZm9yIG1lc3NhZ2VzIGluIHRoZSBwaXBlLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIFBpcGVGaWx0ZXIge1xuICAvKipcbiAgICogVGhlIHJ1bGVzIGZvciBlYWNoIGF0dHJpYnV0ZSBvZiB0aGUgYm9keS5cbiAgICogQGpzaWkgaWdub3JlXG4gICAqL1xuICByZWFkb25seSBba2V5OiBzdHJpbmddOiBGaWx0ZXJSdWxlW107XG59XG5cbi8qKlxuICogQSB3cmFwcGVyIGZvciB0aGUgTDEgZXZlbnQgcGlwZSB3aXRoIHRoZSBhYmlsaXR5IHRvIGRlYWN0aXZhdGUgaXQgd2l0aGluIHRoZSBzdGFjay5cbiAqL1xuZXhwb3J0IGNsYXNzIEV2ZW50UGlwZSBleHRlbmRzIENvbnN0cnVjdCB7XG4gIHB1YmxpYyByZWFkb25seSByb2xlOiBSb2xlO1xuXG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBFdmVudFBpcGVQcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCk7XG5cbiAgICBsZXQgdGFyZ2V0U3RlcEZ1bmN0aW9uID1cbiAgICAgIFwic3RlcEZ1bmN0aW9uXCIgaW4gcHJvcHMudGFyZ2V0ID8gcHJvcHMudGFyZ2V0LnN0ZXBGdW5jdGlvbiA6IHVuZGVmaW5lZDtcbiAgICBsZXQgdGFyZ2V0U3RlcEZ1bmN0aW9uUGFyYW1ldGVycyA9XG4gICAgICBcInBhcmFtZXRlcnNcIiBpbiBwcm9wcy50YXJnZXQgPyBwcm9wcy50YXJnZXQucGFyYW1ldGVycyA6IHVuZGVmaW5lZDtcblxuICAgIGxldCB0YXJnZXRRdWV1ZSA9IFwicXVldWVcIiBpbiBwcm9wcy50YXJnZXQgPyBwcm9wcy50YXJnZXQucXVldWUgOiB1bmRlZmluZWQ7XG5cbiAgICBsZXQgc3FzVGFyZ2V0ID0gdGFyZ2V0UXVldWUgIT09IHVuZGVmaW5lZDtcblxuICAgIGxldCB0YXJnZXRBcm4gPSBzcXNUYXJnZXRcbiAgICAgID8gdGFyZ2V0UXVldWUhLnF1ZXVlQXJuXG4gICAgICA6IHRhcmdldFN0ZXBGdW5jdGlvbiEuc3RhdGVNYWNoaW5lQXJuO1xuXG4gICAgbGV0IGRlc2lyZWRTdGF0ZSA9IFwiUlVOTklOR1wiO1xuICAgIGlmIChpc0RlYWN0aXZhdGVkQ29uc3RydWN0KGlkKSkge1xuICAgICAgQW5ub3RhdGlvbnMub2YodGhpcykuYWRkSW5mbyhgJHtpZH0gaXMgc2V0IGRvIGJlIGRlYWN0aXZhdGVkLmApO1xuICAgICAgZGVzaXJlZFN0YXRlID0gXCJTVE9QUEVEXCI7XG4gICAgfVxuXG4gICAgdGhpcy5yb2xlID1cbiAgICAgIHByb3BzLnJvbGUgfHxcbiAgICAgIG5ldyBSb2xlKHRoaXMsIFwiRXZlbnRQaXBlUm9sZVwiLCB7XG4gICAgICAgIGFzc3VtZWRCeTogbmV3IFNlcnZpY2VQcmluY2lwYWwoXCJwaXBlcy5hbWF6b25hd3MuY29tXCIpLFxuICAgICAgfSk7XG5cbiAgICBsZXQgZmlsdGVyQ3JpdGVyaWEgPSBwcm9wcy5maWx0ZXJcbiAgICAgID8ge1xuICAgICAgICAgIGZpbHRlcnM6IFtcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgcGF0dGVybjogSlNPTi5zdHJpbmdpZnkoe1xuICAgICAgICAgICAgICAgIGJvZHk6IHtcbiAgICAgICAgICAgICAgICAgIC4uLnByb3BzLmZpbHRlcixcbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgXSxcbiAgICAgICAgfVxuICAgICAgOiB1bmRlZmluZWQ7XG5cbiAgICBsZXQgdGFyZ2V0UGFyYW1ldGVyczogQ2ZuUGlwZS5QaXBlVGFyZ2V0UGFyYW1ldGVyc1Byb3BlcnR5ID0ge307XG4gICAgaWYgKHRhcmdldFF1ZXVlKSB7XG4gICAgICB0YXJnZXRQYXJhbWV0ZXJzID0ge1xuICAgICAgICBzcXNRdWV1ZVBhcmFtZXRlcnM6IHtcbiAgICAgICAgICBtZXNzYWdlR3JvdXBJZDogXCJkZWZhdWx0XCIsXG4gICAgICAgIH0sXG4gICAgICB9O1xuICAgIH0gZWxzZSB7XG4gICAgICB0YXJnZXRQYXJhbWV0ZXJzID0ge1xuICAgICAgICBzdGVwRnVuY3Rpb25TdGF0ZU1hY2hpbmVQYXJhbWV0ZXJzOiB7XG4gICAgICAgICAgaW52b2NhdGlvblR5cGU6IHRhcmdldFN0ZXBGdW5jdGlvblBhcmFtZXRlcnM/Lmludm9jYXRpb25UeXBlXG4gICAgICAgICAgICA/IEludm9jYXRpb25UeXBlW3RhcmdldFN0ZXBGdW5jdGlvblBhcmFtZXRlcnMuaW52b2NhdGlvblR5cGVdXG4gICAgICAgICAgICA6IEludm9jYXRpb25UeXBlW0ludm9jYXRpb25UeXBlLlJFUVVFU1RfUkVTUE9OU0VdLFxuICAgICAgICB9LFxuICAgICAgICAuLi4odGFyZ2V0U3RlcEZ1bmN0aW9uUGFyYW1ldGVycz8uaW5wdXRUZW1wbGF0ZSAmJiB7XG4gICAgICAgICAgaW5wdXRUZW1wbGF0ZTogSlNPTi5zdHJpbmdpZnkoXG4gICAgICAgICAgICB0YXJnZXRTdGVwRnVuY3Rpb25QYXJhbWV0ZXJzLmlucHV0VGVtcGxhdGUsXG4gICAgICAgICAgKS5yZXBsYWNlKC9cIlxce1xceyguKz8pXFx9XFx9XCIvLCBcIiQxXCIpLFxuICAgICAgICB9KSxcbiAgICAgIH07XG4gICAgfVxuXG4gICAgbGV0IHNvdXJjZVBhcmFtZXRlcnMgPSB7XG4gICAgICBzcXNRdWV1ZVBhcmFtZXRlcnM6IHtcbiAgICAgICAgYmF0Y2hTaXplOiAxLFxuICAgICAgfSxcbiAgICAgIC4uLihmaWx0ZXJDcml0ZXJpYSAmJiB7IGZpbHRlckNyaXRlcmlhOiBmaWx0ZXJDcml0ZXJpYSB9KSxcbiAgICB9O1xuXG4gICAgY29uc3QgbG9nR3JvdXAgPSB0aGlzLmxvZ2dpbmdFbmFibGVkKHByb3BzKVxuICAgICAgPyAocHJvcHMubG9nR3JvdXAgPz9cbiAgICAgICAgbmV3IEJUQ0xvZ0dyb3VwKHRoaXMsIFwiRXZlbnRQaXBlTG9nR3JvdXBcIiwge1xuICAgICAgICAgIGxvZ1R5cGU6IFwiZXZlbnQtcGlwZVwiLFxuICAgICAgICB9KSlcbiAgICAgIDogdW5kZWZpbmVkO1xuXG4gICAgY29uc3QgcGlwZUNvbmZpZ3VyYXRpb24gPSB0aGlzLmxvZ2dpbmdFbmFibGVkKHByb3BzKVxuICAgICAgPyB7XG4gICAgICAgICAgbG9nQ29uZmlndXJhdGlvbjoge1xuICAgICAgICAgICAgY2xvdWR3YXRjaExvZ3NMb2dEZXN0aW5hdGlvbjoge1xuICAgICAgICAgICAgICBsb2dHcm91cEFybjogbG9nR3JvdXAhLmxvZ0dyb3VwQXJuLFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIGxldmVsOiBwcm9wcy5sb2dMZXZlbCxcbiAgICAgICAgICB9LFxuICAgICAgICB9XG4gICAgICA6IHt9O1xuXG4gICAgbmV3IENmblBpcGUodGhpcywgXCJFdmVudFBpcGVcIiwge1xuICAgICAgLi4ucGlwZUNvbmZpZ3VyYXRpb24sXG4gICAgICByb2xlQXJuOiB0aGlzLnJvbGUucm9sZUFybixcbiAgICAgIHNvdXJjZTogcHJvcHMuc291cmNlLnF1ZXVlQXJuLFxuICAgICAgdGFyZ2V0OiB0YXJnZXRBcm4sXG4gICAgICBzb3VyY2VQYXJhbWV0ZXJzOiBzb3VyY2VQYXJhbWV0ZXJzLFxuICAgICAgdGFyZ2V0UGFyYW1ldGVyczogdGFyZ2V0UGFyYW1ldGVycyxcbiAgICAgIGRlc2lyZWRTdGF0ZTogZGVzaXJlZFN0YXRlLFxuICAgIH0pO1xuXG4gICAgcHJvcHMuc291cmNlLmdyYW50Q29uc3VtZU1lc3NhZ2VzKHRoaXMucm9sZSk7XG4gICAgdGFyZ2V0UXVldWU/LmdyYW50U2VuZE1lc3NhZ2VzKHRoaXMucm9sZSk7XG4gICAgdGFyZ2V0U3RlcEZ1bmN0aW9uPy5ncmFudFN0YXJ0RXhlY3V0aW9uKHRoaXMucm9sZSk7XG4gICAgbG9nR3JvdXA/LmdyYW50V3JpdGUodGhpcy5yb2xlKTtcbiAgfVxuXG4gIHByaXZhdGUgbG9nZ2luZ0VuYWJsZWQocHJvcHM6IEV2ZW50UGlwZVByb3BzKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHByb3BzLmxvZ0xldmVsICE9PSB1bmRlZmluZWQgJiYgcHJvcHMubG9nTGV2ZWwgIT09IExvZ0xldmVsLk9GRjtcbiAgfVxufVxuIl19
|
|
@@ -135,5 +135,5 @@ class ExportedService extends ExportedServiceBase {
|
|
|
135
135
|
}
|
|
136
136
|
exports.ExportedService = ExportedService;
|
|
137
137
|
_a = JSII_RTTI_SYMBOL_1;
|
|
138
|
-
ExportedService[_a] = { fqn: "@btc-embedded/cdk-extensions.ExportedService", version: "0.20.
|
|
138
|
+
ExportedService[_a] = { fqn: "@btc-embedded/cdk-extensions.ExportedService", version: "0.20.8" };
|
|
139
139
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXhwb3J0ZWRTZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0cnVjdHMvRXhwb3J0ZWRTZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQ0EsaURBSzZCO0FBQzdCLDJDQUF1QztBQUN2QyxvQ0FBMEM7QUFDMUMsNENBQTRDO0FBOEQ1Qzs7Ozs7R0FLRztBQUNILE1BQWUsbUJBQ2IsU0FBUSxzQkFBUztJQVFqQixZQUNFLEtBQWdCLEVBQ2hCLEVBQVUsRUFDVixXQUFtQixFQUNuQixhQUFxQixFQUNyQixJQUFZLEVBQ1osYUFBNkI7UUFFN0IsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztRQUNqQixJQUFJLENBQUMsV0FBVyxHQUFHLFdBQVcsQ0FBQztRQUMvQixJQUFJLENBQUMsYUFBYSxHQUFHLGFBQWEsQ0FBQztRQUNuQyxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQztRQUNqQixJQUFJLENBQUMsYUFBYSxHQUFHLGFBQWEsQ0FBQztJQUNyQyxDQUFDO0lBRUQ7Ozs7OztPQU1HO0lBQ0ksTUFBTTtRQUNYLE9BQU8sVUFBVSxJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxhQUFhLElBQUksSUFBSSxDQUFDLElBQUksR0FBRyxDQUFDO0lBQzFFLENBQUM7SUFFRDs7Ozs7T0FLRztJQUNILElBQUksV0FBVztRQUNiLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQyxXQUFXLENBQUM7SUFDeEMsQ0FBQztJQUVEOzs7Ozs7OztPQVFHO0lBQ0ksU0FBUyxDQUNkLE9BQWdCLEVBQ2hCLGNBQXNCLG1DQUFtQztRQUV6RCxJQUFJLENBQUMsYUFBYSxDQUFDLFdBQVcsQ0FBQyxTQUFTLENBQ3RDLE9BQU8sQ0FBQyxVQUFVLEVBQ2xCLGNBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUNuQixXQUFXLENBQ1osQ0FBQztJQUNKLENBQUM7Q0FDRjtBQUVEOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQTZCRztBQUNILE1BQWEsZUFBZ0IsU0FBUSxtQkFBbUI7SUFDdEQ7Ozs7Ozs7Ozs7O09BV0c7SUFDSSxNQUFNLENBQUMsY0FBYyxDQUMxQixLQUFnQixFQUNoQixFQUFVLEVBQ1YsS0FBbUM7UUFFbkMsTUFBTSxxQkFBcUIsR0FBRyxJQUFBLGtCQUFTLEVBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQyxDQUFDO1FBQzNELE1BQU0sZUFBZSxHQUFHLGVBQWUsQ0FBQyxxQkFBcUIsQ0FDM0QscUJBQXFCLENBQ3RCLENBQUM7UUFFRixNQUFNLGVBQWUsR0FBRyxlQUFlLENBQUMsc0JBQXNCLENBQUMsTUFBTSxDQUNuRSxLQUFLLENBQUMsU0FBUyxDQUNoQixDQUFDO1FBQ0YsTUFBTSxhQUFhLEdBQUcsZUFBZSxDQUFDLGtCQUFrQixDQUFDLE1BQU0sQ0FDN0QsS0FBSyxDQUFDLFNBQVMsQ0FDaEIsQ0FBQztRQUVGLE1BQU0sYUFBYSxHQUFHLHVCQUFhLENBQUMsbUJBQW1CLENBQ3JELEtBQUssRUFDTCx1QkFBdUIsRUFDdkIsZUFBZSxFQUNmLEVBQUUsZ0JBQWdCLEVBQUUsSUFBSSxFQUFFLENBQzNCLENBQUM7UUFFRixNQUFNLE1BQU8sU0FBUSxtQkFBbUI7WUFDdEM7Z0JBQ0UsS0FBSyxDQUNILEtBQUssRUFDTCxFQUFFLEVBQ0YscUJBQXFCLEVBQ3JCLGFBQWEsRUFDYixLQUFLLENBQUMsSUFBSSxFQUNWLGFBQWEsQ0FDZCxDQUFDO1lBQ0osQ0FBQztTQUNGO1FBRUQsT0FBTyxJQUFJLE1BQU0sRUFBRSxDQUFDO0lBQ3RCLENBQUM7SUFDTyxNQUFNLENBQUMscUJBQXFCLENBQUMsV0FBbUI7UUFDdEQsT0FBTztZQUNMLHNCQUFzQixFQUFFLElBQUksc0JBQWMsQ0FBQztnQkFDekMsTUFBTSxFQUFFLENBQUMsa0JBQWtCLEVBQUUsV0FBVyxDQUFDO2dCQUN6QyxHQUFHLEVBQUUsbUJBQW1CO2dCQUN4QixXQUFXLEVBQUUsK0NBQStDO2FBQzdELENBQUM7WUFDRixrQkFBa0IsRUFBRSxJQUFJLHNCQUFjLENBQUM7Z0JBQ3JDLE1BQU0sRUFBRSxDQUFDLGtCQUFrQixFQUFFLFdBQVcsQ0FBQztnQkFDekMsR0FBRyxFQUFFLFdBQVc7Z0JBQ2hCLFdBQVcsRUFBRSxnREFBZ0Q7YUFDOUQsQ0FBQztTQUNILENBQUM7SUFDSixDQUFDO0lBTUQsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUEyQjtRQUNuRSxNQUFNLHFCQUFxQixHQUFHLElBQUEsa0JBQVMsRUFBQyxLQUFLLENBQUMsV0FBVyxDQUFDLENBQUM7UUFDM0QsS0FBSyxDQUNILEtBQUssRUFDTCxFQUFFLEVBQ0YscUJBQXFCLEVBQ3JCLEtBQUssQ0FBQyxhQUFhLEVBQ25CLENBQUMsRUFBRSwyREFBMkQ7UUFDOUQsS0FBSyxDQUFDLGFBQWEsQ0FDcEIsQ0FBQztRQUVGLElBQUksQ0FBQyxlQUFlLEdBQUcsZUFBZSxDQUFDLHFCQUFxQixDQUMxRCxxQkFBcUIsQ0FDdEIsQ0FBQztRQUVGLHNEQUFzRDtRQUN0RCxJQUFJLENBQUMsZUFBZSxDQUFDLHNCQUFzQixDQUFDLE1BQU0sQ0FDaEQsSUFBSSxFQUNKLEtBQUssQ0FBQyxhQUFhLENBQUMsZUFBZSxDQUNwQyxDQUFDO1FBQ0YsSUFBSSxDQUFDLGVBQWUsQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLEtBQUssQ0FBQyxhQUFhLENBQUMsQ0FBQztJQUM1RSxDQUFDOztBQTVGSCwwQ0E2RkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBTZXJ2aWNlIH0gZnJvbSBcIkBhd3MtY2RrLWNvbnRhaW5lcnMvZWNzLXNlcnZpY2UtZXh0ZW5zaW9uc1wiO1xuaW1wb3J0IHtcbiAgSUNvbm5lY3RhYmxlLFxuICBJU2VjdXJpdHlHcm91cCxcbiAgUG9ydCxcbiAgU2VjdXJpdHlHcm91cCxcbn0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1lYzJcIjtcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gXCJjb25zdHJ1Y3RzXCI7XG5pbXBvcnQgeyBTdGFja1BhcmFtZXRlciB9IGZyb20gXCIuLi91dGlsc1wiO1xuaW1wb3J0IHsga2ViYWJDYXNlIH0gZnJvbSBcIi4uL3V0aWxzL2NvbW1vblwiO1xuXG4vKipcbiAqIE9wdGlvbnMgZm9yIGltcG9ydGluZyBhbiBFeHBvcnRlZFNlcnZpY2UgZnJvbSBhbm90aGVyIHN0YWNrLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIEV4cG9ydGVkU2VydmljZUxvb2t1cE9wdGlvbnMge1xuICAvKipcbiAgICogVGhlIG5hbWUgb2YgdGhlIHN0YWNrIHdoZXJlIHRoZSBzZXJ2aWNlIHdhcyBleHBvcnRlZC5cbiAgICovXG4gIHJlYWRvbmx5IHN0YWNrTmFtZTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBUaGUgbmFtZSBvZiB0aGUgZXhwb3J0ZWQgRUNTIHNlcnZpY2UuXG4gICAqL1xuICByZWFkb25seSBzZXJ2aWNlTmFtZTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBUaGUgcG9ydCBvbiB3aGljaCB0aGUgc2VydmljZSBpcyBsaXN0ZW5pbmcuXG4gICAqL1xuICByZWFkb25seSBwb3J0OiBudW1iZXI7XG59XG5cbi8qKlxuICogUHVibGljIGludGVyZmFjZSBmb3IgYW4gRXhwb3J0ZWRTZXJ2aWNlLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIElFeHBvcnRlZFNlcnZpY2UgZXh0ZW5kcyBJQ29ubmVjdGFibGUge1xuICAvKipcbiAgICogVGhlIHNlY3VyaXR5IGdyb3VwIG9mIHRoZSBleHBvcnRlZCBFQ1Mgc2VydmljZS5cbiAgICovXG4gIHJlYWRvbmx5IHNlY3VyaXR5R3JvdXA6IElTZWN1cml0eUdyb3VwO1xuXG4gIC8qKlxuICAgKiBHZXQgdGhlIGludGVybmFsIEFQSSBVUkwgb2YgdGhlIHNlcnZpY2UuXG4gICAqL1xuICBhcGlVcmwoKTogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBBbGxvdyBhbiBFQ1Mgc2VydmljZSB0byBjb25uZWN0IHRvIHRoaXMgZXhwb3J0ZWQgc2VydmljZS5cbiAgICovXG4gIGFsbG93RnJvbShzZXJ2aWNlOiBTZXJ2aWNlLCBkZXNjcmlwdGlvbj86IHN0cmluZyk6IHZvaWQ7XG59XG5cbi8qKlxuICogUHJvcGVydGllcyBmb3IgY3JlYXRpbmcgYSBuZXcgRXhwb3J0ZWRTZXJ2aWNlLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIEV4cG9ydGVkU2VydmljZVByb3BzIHtcbiAgLyoqXG4gICAqIFRoZSBuYW1lIG9mIHRoZSBFQ1Mgc2VydmljZSBiZWluZyBleHBvcnRlZC5cbiAgICovXG4gIHJlYWRvbmx5IHNlcnZpY2VOYW1lOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFRoZSBzZWN1cml0eSBncm91cCBvZiB0aGUgRUNTIHNlcnZpY2UuXG4gICAqL1xuICByZWFkb25seSBzZWN1cml0eUdyb3VwOiBJU2VjdXJpdHlHcm91cDtcblxuICAvKipcbiAgICogVGhlIG5hbWVzcGFjZSBuYW1lIHdoZXJlIHRoZSBzZXJ2aWNlIGlzIHJlZ2lzdGVyZWQgKENsb3VkTWFwIG5hbWVzcGFjZSkuXG4gICAqL1xuICByZWFkb25seSBuYW1lc3BhY2VOYW1lOiBzdHJpbmc7XG59XG5cbi8qKlxuICogQmFzZSBjbGFzcyBmb3IgYW4gRUNTIHNlcnZpY2UgdGhhdCBjYW4gYmUgdXNlZCBhY3Jvc3Mgc3RhY2sgYm91bmRhcmllcy5cbiAqXG4gKiBUaGlzIGFic3RyYWN0IGNsYXNzIHByb3ZpZGVzIGNvbW1vbiBmdW5jdGlvbmFsaXR5IGZvciB3b3JraW5nIHdpdGggZXhwb3J0ZWRcbiAqIEVDUyBzZXJ2aWNlcywgaW5jbHVkaW5nIEFQSSBVUkwgZ2VuZXJhdGlvbiBhbmQgY29ubmVjdGlvbiBtYW5hZ2VtZW50LlxuICovXG5hYnN0cmFjdCBjbGFzcyBFeHBvcnRlZFNlcnZpY2VCYXNlXG4gIGV4dGVuZHMgQ29uc3RydWN0XG4gIGltcGxlbWVudHMgSUV4cG9ydGVkU2VydmljZVxue1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgc2VydmljZU5hbWU6IHN0cmluZztcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IG5hbWVzcGFjZU5hbWU6IHN0cmluZztcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IHBvcnQ6IG51bWJlcjtcbiAgcHVibGljIHJlYWRvbmx5IHNlY3VyaXR5R3JvdXA6IElTZWN1cml0eUdyb3VwO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHNjb3BlOiBDb25zdHJ1Y3QsXG4gICAgaWQ6IHN0cmluZyxcbiAgICBzZXJ2aWNlTmFtZTogc3RyaW5nLFxuICAgIG5hbWVzcGFjZU5hbWU6IHN0cmluZyxcbiAgICBwb3J0OiBudW1iZXIsXG4gICAgc2VjdXJpdHlHcm91cDogSVNlY3VyaXR5R3JvdXAsXG4gICkge1xuICAgIHN1cGVyKHNjb3BlLCBpZCk7XG4gICAgdGhpcy5zZXJ2aWNlTmFtZSA9IHNlcnZpY2VOYW1lO1xuICAgIHRoaXMubmFtZXNwYWNlTmFtZSA9IG5hbWVzcGFjZU5hbWU7XG4gICAgdGhpcy5wb3J0ID0gcG9ydDtcbiAgICB0aGlzLnNlY3VyaXR5R3JvdXAgPSBzZWN1cml0eUdyb3VwO1xuICB9XG5cbiAgLyoqXG4gICAqIEdldCB0aGUgaW50ZXJuYWwgQVBJIFVSTCBvZiB0aGUgc2VydmljZS5cbiAgICpcbiAgICogVGhlIFVSTCBmb3JtYXQgaXM6IGh0dHA6Ly88c2VydmljZS1uYW1lPi48bmFtZXNwYWNlPjo8cG9ydD4vXG4gICAqXG4gICAqIEByZXR1cm5zIFRoZSBpbnRlcm5hbCBBUEkgVVJMXG4gICAqL1xuICBwdWJsaWMgYXBpVXJsKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIGBodHRwOi8vJHt0aGlzLnNlcnZpY2VOYW1lfS4ke3RoaXMubmFtZXNwYWNlTmFtZX06JHt0aGlzLnBvcnR9L2A7XG4gIH1cblxuICAvKipcbiAgICogR2V0IHRoZSBjb25uZWN0aW9ucyBvYmplY3QgZm9yIHRoaXMgc2VydmljZS5cbiAgICpcbiAgICogVGhpcyBhbGxvd3MgdGhlIEV4cG9ydGVkU2VydmljZSB0byBiZSB1c2VkIHdpdGggdGhlIHN0YW5kYXJkIENESyBJQ29ubmVjdGFibGVcbiAgICogcGF0dGVybiBmb3Igc2VjdXJpdHkgZ3JvdXAgbWFuYWdlbWVudC5cbiAgICovXG4gIGdldCBjb25uZWN0aW9ucygpIHtcbiAgICByZXR1cm4gdGhpcy5zZWN1cml0eUdyb3VwLmNvbm5lY3Rpb25zO1xuICB9XG5cbiAgLyoqXG4gICAqIEFsbG93IGFuIEVDUyBzZXJ2aWNlIHRvIGNvbm5lY3QgdG8gdGhpcyBleHBvcnRlZCBzZXJ2aWNlLlxuICAgKlxuICAgKiBUaGlzIG1ldGhvZCBhZGRzIGEgc2VjdXJpdHkgZ3JvdXAgaW5ncmVzcyBydWxlIGFsbG93aW5nIHRyYWZmaWMgZnJvbSB0aGVcbiAgICogZ2l2ZW4gc2VydmljZSB0byB0aGlzIGV4cG9ydGVkIHNlcnZpY2Ugb24gaXRzIGNvbmZpZ3VyZWQgcG9ydC5cbiAgICpcbiAgICogQHBhcmFtIHNlcnZpY2UgLSBUaGUgRUNTIHNlcnZpY2UgdG8gYWxsb3cgY29ubmVjdGlvbnMgZnJvbVxuICAgKiBAcGFyYW0gZGVzY3JpcHRpb24gLSBPcHRpb25hbCBkZXNjcmlwdGlvbiBmb3IgdGhlIHNlY3VyaXR5IGdyb3VwIHJ1bGVcbiAgICovXG4gIHB1YmxpYyBhbGxvd0Zyb20oXG4gICAgc2VydmljZTogU2VydmljZSxcbiAgICBkZXNjcmlwdGlvbjogc3RyaW5nID0gXCJBbGxvdyBjb25uZWN0aW9uIGZyb20gRUNTIHNlcnZpY2VcIixcbiAgKTogdm9pZCB7XG4gICAgdGhpcy5zZWN1cml0eUdyb3VwLmNvbm5lY3Rpb25zLmFsbG93RnJvbShcbiAgICAgIHNlcnZpY2UuZWNzU2VydmljZSxcbiAgICAgIFBvcnQudGNwKHRoaXMucG9ydCksXG4gICAgICBkZXNjcmlwdGlvbixcbiAgICApO1xuICB9XG59XG5cbi8qKlxuICogUmVwcmVzZW50cyBhbiBFQ1Mgc2VydmljZSBleHBvcnRlZCBmcm9tIGFub3RoZXIgQ0RLIHN0YWNrLlxuICpcbiAqIFRoaXMgY29uc3RydWN0IGVuYWJsZXMgY3Jvc3Mtc3RhY2sgc2VydmljZSBjb25uZWN0aXZpdHkgYnkgdHJhbnNwb3J0aW5nIHNlcnZpY2VcbiAqIG1ldGFkYXRhIChzZWN1cml0eSBncm91cCBJRCBhbmQgbmFtZXNwYWNlKSBhY3Jvc3Mgc3RhY2sgYm91bmRhcmllcyB1c2luZyBTdGFja1BhcmFtZXRlci5cbiAqIFRoZSBwb3J0IG11c3QgYmUgc3BlY2lmaWVkIHdoZW4gaW1wb3J0aW5nIHRoZSBzZXJ2aWNlLlxuICpcbiAqIE9uIHRoZSBwcm92aWRlciBzaWRlICh3aGVyZSB0aGUgc2VydmljZSBpcyBkZWZpbmVkKSwgdXNlIEV4cG9ydGVkU2VydmljZVxuICogd2l0aGluIHRoZSBDbG91ZE1hcEV4dGVuc2lvbiB0byBleHBvc2UgdGhlIHNlcnZpY2UuIE9uIHRoZSBjb25zdW1lciBzaWRlLFxuICogdXNlIEV4cG9ydGVkU2VydmljZS5mcm9tQXR0cmlidXRlcygpIHRvIGltcG9ydCB0aGUgc2VydmljZSB3aXRoIHRoZSBwb3J0LlxuICpcbiAqIEBleGFtcGxlXG4gKiAvLyBQcm92aWRlciBzaWRlXG4gKiBjb25zdCBleHBvcnRlZFNlcnZpY2UgPSBuZXcgRXhwb3J0ZWRTZXJ2aWNlKHRoaXMsIFwiRXhwb3J0ZWRTZXJ2aWNlXCIsIHtcbiAqICAgc2VydmljZU5hbWU6ICdteS1zZXJ2aWNlJyxcbiAqICAgc2VjdXJpdHlHcm91cDogc2VydmljZS5jb25uZWN0aW9ucy5zZWN1cml0eUdyb3Vwc1swXSxcbiAqICAgbmFtZXNwYWNlTmFtZTogJ215LW5hbWVzcGFjZScsXG4gKiB9KTtcbiAqXG4gKiBAZXhhbXBsZVxuICogLy8gQ29uc3VtZXIgc2lkZVxuICogY29uc3QgZXhwb3J0ZWRTZXJ2aWNlID0gRXhwb3J0ZWRTZXJ2aWNlLmZyb21BdHRyaWJ1dGVzKHNjb3BlLCBpZCwge1xuICogICBzdGFja05hbWU6ICdteS1zZXJ2aWNlLXN0YWNrJyxcbiAqICAgc2VydmljZU5hbWU6ICdteS1zZXJ2aWNlJyxcbiAqICAgcG9ydDogODA4MCxcbiAqIH0pO1xuICpcbiAqIGV4cG9ydGVkU2VydmljZS5hbGxvd0Zyb20obXlTZXJ2aWNlKTtcbiAqIGNvbnN0IHVybCA9IGV4cG9ydGVkU2VydmljZS5hcGlVcmwoKTtcbiAqL1xuZXhwb3J0IGNsYXNzIEV4cG9ydGVkU2VydmljZSBleHRlbmRzIEV4cG9ydGVkU2VydmljZUJhc2Uge1xuICAvKipcbiAgICogSW1wb3J0IGFuIEV4cG9ydGVkU2VydmljZSBmcm9tIGFub3RoZXIgc3RhY2suXG4gICAqXG4gICAqIFRoaXMgbWV0aG9kIGltcG9ydHMgdGhlIHNlcnZpY2UgbWV0YWRhdGEgKHNlY3VyaXR5IGdyb3VwIGFuZCBuYW1lc3BhY2UpXG4gICAqIHRoYXQgd2FzIGV4cG9ydGVkIGJ5IHRoZSBwcm92aWRlciBzdGFjayBhbmQgY29uc3RydWN0cyBhbiBJRXhwb3J0ZWRTZXJ2aWNlXG4gICAqIGluc3RhbmNlIHRoYXQgY2FuIGJlIHVzZWQgZm9yIGVzdGFibGlzaGluZyBjb25uZWN0aW9ucy5cbiAgICpcbiAgICogQHBhcmFtIHNjb3BlIC0gVGhlIHNjb3BlIGluIHdoaWNoIHRvIGRlZmluZSB0aGUgY29uc3RydWN0XG4gICAqIEBwYXJhbSBpZCAtIFRoZSBjb25zdHJ1Y3QgSURcbiAgICogQHBhcmFtIGF0dHJzIC0gVGhlIGV4cG9ydGVkIHNlcnZpY2UgbG9va3VwIG9wdGlvbnMgKHN0YWNrTmFtZSwgc2VydmljZU5hbWUsIGFuZCBwb3J0KVxuICAgKiBAcmV0dXJucyBBbiBJRXhwb3J0ZWRTZXJ2aWNlIGluc3RhbmNlXG4gICAqL1xuICBwdWJsaWMgc3RhdGljIGZyb21BdHRyaWJ1dGVzKFxuICAgIHNjb3BlOiBDb25zdHJ1Y3QsXG4gICAgaWQ6IHN0cmluZyxcbiAgICBhdHRyczogRXhwb3J0ZWRTZXJ2aWNlTG9va3VwT3B0aW9ucyxcbiAgKTogSUV4cG9ydGVkU2VydmljZSB7XG4gICAgY29uc3Qgbm9ybWFsaXplZFNlcnZpY2VOYW1lID0ga2ViYWJDYXNlKGF0dHJzLnNlcnZpY2VOYW1lKTtcbiAgICBjb25zdCBzdGFja1BhcmFtZXRlcnMgPSBFeHBvcnRlZFNlcnZpY2UuY3JlYXRlU3RhY2tQYXJhbWV0ZXJzKFxuICAgICAgbm9ybWFsaXplZFNlcnZpY2VOYW1lLFxuICAgICk7XG5cbiAgICBjb25zdCBzZWN1cml0eUdyb3VwSWQgPSBzdGFja1BhcmFtZXRlcnMuc2VjdXJpdHlHcm91cFBhcmFtZXRlci5pbXBvcnQoXG4gICAgICBhdHRycy5zdGFja05hbWUsXG4gICAgKTtcbiAgICBjb25zdCBuYW1lc3BhY2VOYW1lID0gc3RhY2tQYXJhbWV0ZXJzLm5hbWVzcGFjZVBhcmFtZXRlci5pbXBvcnQoXG4gICAgICBhdHRycy5zdGFja05hbWUsXG4gICAgKTtcblxuICAgIGNvbnN0IHNlY3VyaXR5R3JvdXAgPSBTZWN1cml0eUdyb3VwLmZyb21TZWN1cml0eUdyb3VwSWQoXG4gICAgICBzY29wZSxcbiAgICAgIFwiSW1wb3J0ZWRTZWN1cml0eUdyb3VwXCIsXG4gICAgICBzZWN1cml0eUdyb3VwSWQsXG4gICAgICB7IGFsbG93QWxsT3V0Ym91bmQ6IHRydWUgfSxcbiAgICApO1xuXG4gICAgY2xhc3MgSW1wb3J0IGV4dGVuZHMgRXhwb3J0ZWRTZXJ2aWNlQmFzZSB7XG4gICAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgc3VwZXIoXG4gICAgICAgICAgc2NvcGUsXG4gICAgICAgICAgaWQsXG4gICAgICAgICAgbm9ybWFsaXplZFNlcnZpY2VOYW1lLFxuICAgICAgICAgIG5hbWVzcGFjZU5hbWUsXG4gICAgICAgICAgYXR0cnMucG9ydCxcbiAgICAgICAgICBzZWN1cml0eUdyb3VwLFxuICAgICAgICApO1xuICAgICAgfVxuICAgIH1cblxuICAgIHJldHVybiBuZXcgSW1wb3J0KCk7XG4gIH1cbiAgcHJpdmF0ZSBzdGF0aWMgY3JlYXRlU3RhY2tQYXJhbWV0ZXJzKHNlcnZpY2VOYW1lOiBzdHJpbmcpIHtcbiAgICByZXR1cm4ge1xuICAgICAgc2VjdXJpdHlHcm91cFBhcmFtZXRlcjogbmV3IFN0YWNrUGFyYW1ldGVyKHtcbiAgICAgICAgcHJlZml4OiBbXCJleHBvcnRlZC1zZXJ2aWNlXCIsIHNlcnZpY2VOYW1lXSxcbiAgICAgICAga2V5OiBcInNlY3VyaXR5LWdyb3VwLWlkXCIsXG4gICAgICAgIGRlc2NyaXB0aW9uOiBcIlNlY3VyaXR5IEdyb3VwIElEIG9mIHRoZSBleHBvcnRlZCBFQ1Mgc2VydmljZVwiLFxuICAgICAgfSksXG4gICAgICBuYW1lc3BhY2VQYXJhbWV0ZXI6IG5ldyBTdGFja1BhcmFtZXRlcih7XG4gICAgICAgIHByZWZpeDogW1wiZXhwb3J0ZWQtc2VydmljZVwiLCBzZXJ2aWNlTmFtZV0sXG4gICAgICAgIGtleTogXCJuYW1lc3BhY2VcIixcbiAgICAgICAgZGVzY3JpcHRpb246IFwiQ2xvdWRNYXAgbmFtZXNwYWNlIG9mIHRoZSBleHBvcnRlZCBFQ1Mgc2VydmljZVwiLFxuICAgICAgfSksXG4gICAgfTtcbiAgfVxuXG4gIHByaXZhdGUgcmVhZG9ubHkgc3RhY2tQYXJhbWV0ZXJzOiBSZXR1cm5UeXBlPFxuICAgIHR5cGVvZiBFeHBvcnRlZFNlcnZpY2UuY3JlYXRlU3RhY2tQYXJhbWV0ZXJzXG4gID47XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IEV4cG9ydGVkU2VydmljZVByb3BzKSB7XG4gICAgY29uc3Qgbm9ybWFsaXplZFNlcnZpY2VOYW1lID0ga2ViYWJDYXNlKHByb3BzLnNlcnZpY2VOYW1lKTtcbiAgICBzdXBlcihcbiAgICAgIHNjb3BlLFxuICAgICAgaWQsXG4gICAgICBub3JtYWxpemVkU2VydmljZU5hbWUsXG4gICAgICBwcm9wcy5uYW1lc3BhY2VOYW1lLFxuICAgICAgMCwgLy8gRGVmYXVsdCBwb3J0IC0gYWN0dWFsIHBvcnQgaXMgc3BlY2lmaWVkIG9uIGNvbnN1bWVyIHNpZGVcbiAgICAgIHByb3BzLnNlY3VyaXR5R3JvdXAsXG4gICAgKTtcblxuICAgIHRoaXMuc3RhY2tQYXJhbWV0ZXJzID0gRXhwb3J0ZWRTZXJ2aWNlLmNyZWF0ZVN0YWNrUGFyYW1ldGVycyhcbiAgICAgIG5vcm1hbGl6ZWRTZXJ2aWNlTmFtZSxcbiAgICApO1xuXG4gICAgLy8gRXhwb3J0IHNlcnZpY2UgbWV0YWRhdGEgZm9yIGNyb3NzLXN0YWNrIGNvbnN1bXB0aW9uXG4gICAgdGhpcy5zdGFja1BhcmFtZXRlcnMuc2VjdXJpdHlHcm91cFBhcmFtZXRlci5leHBvcnQoXG4gICAgICB0aGlzLFxuICAgICAgcHJvcHMuc2VjdXJpdHlHcm91cC5zZWN1cml0eUdyb3VwSWQsXG4gICAgKTtcbiAgICB0aGlzLnN0YWNrUGFyYW1ldGVycy5uYW1lc3BhY2VQYXJhbWV0ZXIuZXhwb3J0KHRoaXMsIHByb3BzLm5hbWVzcGFjZU5hbWUpO1xuICB9XG59XG4iXX0=
|
|
@@ -35,5 +35,5 @@ class S3Bucket extends aws_s3_1.Bucket {
|
|
|
35
35
|
}
|
|
36
36
|
exports.S3Bucket = S3Bucket;
|
|
37
37
|
_a = JSII_RTTI_SYMBOL_1;
|
|
38
|
-
S3Bucket[_a] = { fqn: "@btc-embedded/cdk-extensions.S3Bucket", version: "0.20.
|
|
38
|
+
S3Bucket[_a] = { fqn: "@btc-embedded/cdk-extensions.S3Bucket", version: "0.20.8" };
|
|
39
39
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUzNCdWNrZXQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY29uc3RydWN0cy9TM0J1Y2tldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLDZDQUFtRTtBQUNuRSwrQ0FBeUQ7QUFFekQsb0NBQTRDO0FBRTVDLFNBQVMsV0FBVyxDQUNsQixLQUFnQixFQUNoQixFQUFVLEVBQ1YsS0FBbUI7SUFFbkIsSUFBSSxJQUFBLHdCQUFnQixHQUFFLEVBQUUsQ0FBQztRQUN2Qix5QkFBVyxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxPQUFPLENBQzNCLEdBQUcsRUFBRSx5RUFBeUUsQ0FDL0UsQ0FBQztRQUNGLE9BQU87WUFDTCxHQUFHLEtBQUs7WUFDUixhQUFhLEVBQUUsMkJBQWEsQ0FBQyxPQUFPO1lBQ3BDLGlCQUFpQixFQUFFLElBQUk7WUFDdkIsY0FBYyxFQUFFO2dCQUNkO29CQUNFLFVBQVUsRUFBRSxzQkFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUM7b0JBQzVCLG1DQUFtQyxFQUFFLHNCQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztpQkFDdEQ7YUFDRjtTQUNGLENBQUM7SUFDSixDQUFDO0lBQ0QsT0FBTyxFQUFFLEdBQUcsS0FBSyxFQUFFLENBQUM7QUFDdEIsQ0FBQztBQUVEOzs7O0dBSUc7QUFDSCxNQUFhLFFBQVMsU0FBUSxlQUFNO0lBQ2xDLFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBbUI7UUFDM0QsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsV0FBVyxDQUFDLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUMsQ0FBQztJQUNsRCxDQUFDOztBQUhILDRCQUlDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQW5ub3RhdGlvbnMsIER1cmF0aW9uLCBSZW1vdmFsUG9saWN5IH0gZnJvbSBcImF3cy1jZGstbGliXCI7XG5pbXBvcnQgeyBCdWNrZXQsIEJ1Y2tldFByb3BzIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1zM1wiO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSBcImNvbnN0cnVjdHNcIjtcbmltcG9ydCB7IGlzRGV2ZWxvcGVyU3RhY2sgfSBmcm9tIFwiLi4vdXRpbHNcIjtcblxuZnVuY3Rpb24gYWRqdXN0UHJvcHMoXG4gIHNjb3BlOiBDb25zdHJ1Y3QsXG4gIGlkOiBzdHJpbmcsXG4gIHByb3BzPzogQnVja2V0UHJvcHMsXG4pOiBCdWNrZXRQcm9wcyB7XG4gIGlmIChpc0RldmVsb3BlclN0YWNrKCkpIHtcbiAgICBBbm5vdGF0aW9ucy5vZihzY29wZSkuYWRkSW5mbyhcbiAgICAgIGAke2lkfSBpcyBkZXBsb3llZCBpbiBhIGRldmVsb3BlciB2YXJpYW50LiBGaWxlcyB3aWxsIGJlIHJldGFpbmVkIGZvciAzIGRheXMuYCxcbiAgICApO1xuICAgIHJldHVybiB7XG4gICAgICAuLi5wcm9wcyxcbiAgICAgIHJlbW92YWxQb2xpY3k6IFJlbW92YWxQb2xpY3kuREVTVFJPWSxcbiAgICAgIGF1dG9EZWxldGVPYmplY3RzOiB0cnVlLFxuICAgICAgbGlmZWN5Y2xlUnVsZXM6IFtcbiAgICAgICAge1xuICAgICAgICAgIGV4cGlyYXRpb246IER1cmF0aW9uLmRheXMoMyksXG4gICAgICAgICAgYWJvcnRJbmNvbXBsZXRlTXVsdGlwYXJ0VXBsb2FkQWZ0ZXI6IER1cmF0aW9uLmRheXMoMSksXG4gICAgICAgIH0sXG4gICAgICBdLFxuICAgIH07XG4gIH1cbiAgcmV0dXJuIHsgLi4ucHJvcHMgfTtcbn1cblxuLyoqXG4gKiBXcmFwcGVyIGZvciB0aGUge0BsaW5rIEJ1Y2tldH0gY29uc3RydWN0cyB0aGF0IGFkZHMgYWRkaXRpb25hbCBwcm9wZXJ0aWVzLCBpZiBhIGRldmVsb3BlclxuICogc3RhY2sgaXMgZGV0ZWN0ZWQuIFdpbGwgY2F1c2UgZmlsZXMgdG8gZXhwaXJlIGFmdGVyIHRyZWUgZGF5cyBhbmQgYWxsb3dzIHRvIGRlbGV0ZSB0aGVcbiAqIGJ1Y2tldCBhbmQgYWxsIGl0cyBjb250ZW50cywgaWYgdGhlIHN0YWNrIGlzIGRlbGV0ZWQuXG4gKi9cbmV4cG9ydCBjbGFzcyBTM0J1Y2tldCBleHRlbmRzIEJ1Y2tldCB7XG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzPzogQnVja2V0UHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQsIGFkanVzdFByb3BzKHNjb3BlLCBpZCwgcHJvcHMpKTtcbiAgfVxufVxuIl19
|
|
@@ -51,5 +51,5 @@ class SecureRestApi extends construct_1.Construct {
|
|
|
51
51
|
}
|
|
52
52
|
exports.SecureRestApi = SecureRestApi;
|
|
53
53
|
_a = JSII_RTTI_SYMBOL_1;
|
|
54
|
-
SecureRestApi[_a] = { fqn: "@btc-embedded/cdk-extensions.SecureRestApi", version: "0.20.
|
|
54
|
+
SecureRestApi[_a] = { fqn: "@btc-embedded/cdk-extensions.SecureRestApi", version: "0.20.8" };
|
|
55
55
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiU2VjdXJlUmVzdEFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb25zdHJ1Y3RzL1NlY3VyZVJlc3RBcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSwrREFJb0M7QUFDcEMsK0VBRzRDO0FBQzVDLHlEQUFtRDtBQUNuRCx5REFBa0U7QUFDbEUsd0RBQXFEO0FBQ3JELDBDQUFrQztBQUNsQyxvQ0FBdUM7QUF1QnZDOztHQUVHO0FBQ0gsTUFBYSxhQUFjLFNBQVEscUJBQVM7SUFRMUMsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUF5QjtRQUNqRSxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQ2pCLG9CQUFvQjtRQUNwQixJQUFJLENBQUMsS0FBSyxDQUFDLHFCQUFxQixJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksRUFBRSxDQUFDO1lBQ3hELE1BQU0sSUFBSSxLQUFLLENBQUMsZ0RBQWdELENBQUMsQ0FBQztRQUNwRSxDQUFDO1FBRUQsTUFBTSxpQkFBaUIsR0FBRyxJQUFBLG1CQUFXLEVBQ25DLEtBQUssQ0FBQyxxQkFBcUIsRUFDM0IsU0FBUyxFQUNULGNBQWMsQ0FDZixDQUFDO1FBQ0YsTUFBTSxXQUFXLEdBQUcsc0JBQVEsQ0FBQyxjQUFjLENBQ3pDLElBQUksRUFDSixhQUFhLEVBQ2IsaUJBQWlCLENBQ2xCLENBQUM7UUFFRixNQUFNLEVBQUUsSUFBSSxFQUFFLEdBQUcsY0FBRyxDQUFDLGdCQUFnQixDQUNuQyxJQUFJLEVBQ0osUUFBUSxFQUNSLEtBQUssQ0FBQyxxQkFBcUIsQ0FDNUIsQ0FBQztRQUNGLE1BQU0sVUFBVSxHQUNkLEtBQUssQ0FBQyxVQUFVO1lBQ2hCLHdCQUFVLENBQUMsVUFBVSxDQUFDLElBQUksRUFBRSxZQUFZLEVBQUU7Z0JBQ3hDLFVBQVUsRUFBRSxJQUFJO2FBQ2pCLENBQUMsQ0FBQztRQUNMLElBQUksQ0FBQyxVQUFVLEdBQUcsR0FBRyxLQUFLLENBQUMsWUFBWSxJQUFJLFVBQVUsQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUVqRSxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksb0NBQVcsQ0FBQyxJQUFJLEVBQUUsYUFBYSxFQUFFO1lBQ3RELFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVTtZQUMzQixVQUFVLEVBQUUsOENBQXFCLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQztTQUN0RCxDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsaUJBQWlCLEdBQUcsSUFBSSwyQ0FBMEIsQ0FDckQsSUFBSSxFQUNKLG1CQUFtQixFQUNuQjtZQUNFLGdCQUFnQixFQUFFLENBQUMsV0FBVyxDQUFDO1NBQ2hDLENBQ0YsQ0FBQztRQUVGLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSx3QkFBTyxDQUFDLElBQUksRUFBRSxTQUFTLEVBQUU7WUFDMUMsR0FBRyxLQUFLLENBQUMsWUFBWTtZQUNyQixvQkFBb0IsRUFBRTtnQkFDcEIsR0FBRyxLQUFLLENBQUMsWUFBWSxDQUFDLG9CQUFvQjtnQkFDMUMsVUFBVSxFQUFFLElBQUksQ0FBQyxpQkFBaUI7YUFDbkM7WUFDRCxVQUFVLEVBQUU7Z0JBQ1YsR0FBRyxLQUFLLENBQUMsWUFBWSxDQUFDLFVBQVU7Z0JBQ2hDLFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVTtnQkFDM0IsV0FBVyxFQUFFLElBQUksQ0FBQyxXQUFXO2FBQzlCO1NBQ0YsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs7QUEvREgsc0NBZ0VDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ29nbml0b1VzZXJQb29sc0F1dGhvcml6ZXIsXG4gIFJlc3RBcGksXG4gIFJlc3RBcGlQcm9wcyxcbn0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1hcGlnYXRld2F5XCI7XG5pbXBvcnQge1xuICBDZXJ0aWZpY2F0ZSxcbiAgQ2VydGlmaWNhdGVWYWxpZGF0aW9uLFxufSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWNlcnRpZmljYXRlbWFuYWdlclwiO1xuaW1wb3J0IHsgVXNlclBvb2wgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWNvZ25pdG9cIjtcbmltcG9ydCB7IEhvc3RlZFpvbmUsIElIb3N0ZWRab25lIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1yb3V0ZTUzXCI7XG5pbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tIFwiY29uc3RydWN0cy9saWIvY29uc3RydWN0XCI7XG5pbXBvcnQgeyBWcGMgfSBmcm9tIFwiLi4vcGxhdGZvcm1cIjtcbmltcG9ydCB7IGltcG9ydFZhbHVlIH0gZnJvbSBcIi4uL3V0aWxzXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgU2VjdXJlUmVzdEFwaVByb3BzIHtcbiAgLyoqXG4gICAqIFRoZSBuYW1lIG9mIHRoZSBCYXNlIHBsYXRmb3JtIFN0YWNrXG4gICAqL1xuICByZWFkb25seSBiYXNlUGxhdGZvcm1TdGFja05hbWU6IHN0cmluZztcbiAgLyoqXG4gICAqIFN1YmRvbWFpbiB0aGF0IGlzIHVzZWQgZm9yIFJFU1QgQVBJIHByb3BzXG4gICAqL1xuICByZWFkb25seSBhcGlTdWJEb21haW46IHN0cmluZztcbiAgLyoqXG4gICAqIGhvc3RlZCB6b25lIGZvciB0aGUgc3ViZG9tYWluXG4gICAqIEFuIG9wdGlvbmFsIHBhcmFtZXRlclxuICAgKiBAZGVmYXVsdCAtIGZxZG4gb3V0cHV0IG9mIGJhc2UgcGxhdGZvcm0gc3RhY2sgaXMgdXNlZCB0byBpbXBvcnQgdGhlIGhvc3RlZCB6b25lXG4gICAqL1xuICByZWFkb25seSBob3N0ZWRab25lPzogSUhvc3RlZFpvbmU7XG5cbiAgLyoqXG4gICAqIFByb3BzIGZvcndhcmRlZCB0byB0aGUgUmVzdEFwaSBjb25zdHJ1Y3QuXG4gICAqL1xuICByZWFkb25seSByZXN0QXBpUHJvcHM6IFJlc3RBcGlQcm9wcztcbn1cbi8qKlxuICogQGRlcHJlY2F0ZWQgVXNlIHtAbGluayBTZWN1cmVSZXN0QXBpVjJ9IGluc3RlYWRcbiAqL1xuZXhwb3J0IGNsYXNzIFNlY3VyZVJlc3RBcGkgZXh0ZW5kcyBDb25zdHJ1Y3Qge1xuICAvL3B1YmxpYyByZXN0QXBpRG9tYWluTmFtZTogRG9tYWluTmFtZTtcbiAgcHVibGljIGRvbWFpbk5hbWU6IHN0cmluZztcbiAgcHVibGljIGRlZmF1bHRBdXRob3JpemVyOiBDb2duaXRvVXNlclBvb2xzQXV0aG9yaXplcjtcbiAgcHJpdmF0ZSBjZXJ0aWZpY2F0ZTogQ2VydGlmaWNhdGU7XG5cbiAgcHVibGljIHJlc3RBcGk6IFJlc3RBcGk7XG5cbiAgY29uc3RydWN0b3Ioc2NvcGU6IENvbnN0cnVjdCwgaWQ6IHN0cmluZywgcHJvcHM6IFNlY3VyZVJlc3RBcGlQcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCk7XG4gICAgLy92YWxpZGF0ZSB0aGUgcHJvcHNcbiAgICBpZiAoIXByb3BzLmJhc2VQbGF0Zm9ybVN0YWNrTmFtZSAmJiAhcHJvcHMuYXBpU3ViRG9tYWluKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJwbGF0Zm9ybVN0YWNrTmFtZSBhbmQgQXBpU3ViRG9tYWluIGlzIHJlcXVpcmVkXCIpO1xuICAgIH1cblxuICAgIGNvbnN0IGNvZ25pdG9Vc2VyUG9vbElkID0gaW1wb3J0VmFsdWUoXG4gICAgICBwcm9wcy5iYXNlUGxhdGZvcm1TdGFja05hbWUsXG4gICAgICBcImNvZ25pdG9cIixcbiAgICAgIFwidXNlci1wb29sLWlkXCIsXG4gICAgKTtcbiAgICBjb25zdCB1c2VyUG9vbFJlZiA9IFVzZXJQb29sLmZyb21Vc2VyUG9vbElkKFxuICAgICAgdGhpcyxcbiAgICAgIFwiVXNlclBvb2xSZWZcIixcbiAgICAgIGNvZ25pdG9Vc2VyUG9vbElkLFxuICAgICk7XG5cbiAgICBjb25zdCB7IGZxZG4gfSA9IFZwYy5mcm9tQmFzZVBsYXRmb3JtKFxuICAgICAgdGhpcyxcbiAgICAgIFwiVnBjUmVmXCIsXG4gICAgICBwcm9wcy5iYXNlUGxhdGZvcm1TdGFja05hbWUsXG4gICAgKTtcbiAgICBjb25zdCBob3N0ZWRab25lID1cbiAgICAgIHByb3BzLmhvc3RlZFpvbmUgPz9cbiAgICAgIEhvc3RlZFpvbmUuZnJvbUxvb2t1cCh0aGlzLCBcIkhvc3RlZFpvbmVcIiwge1xuICAgICAgICBkb21haW5OYW1lOiBmcWRuLFxuICAgICAgfSk7XG4gICAgdGhpcy5kb21haW5OYW1lID0gYCR7cHJvcHMuYXBpU3ViRG9tYWlufS4ke2hvc3RlZFpvbmUuem9uZU5hbWV9YDtcblxuICAgIHRoaXMuY2VydGlmaWNhdGUgPSBuZXcgQ2VydGlmaWNhdGUodGhpcywgXCJDZXJ0aWZpY2F0ZVwiLCB7XG4gICAgICBkb21haW5OYW1lOiB0aGlzLmRvbWFpbk5hbWUsXG4gICAgICB2YWxpZGF0aW9uOiBDZXJ0aWZpY2F0ZVZhbGlkYXRpb24uZnJvbURucyhob3N0ZWRab25lKSxcbiAgICB9KTtcblxuICAgIHRoaXMuZGVmYXVsdEF1dGhvcml6ZXIgPSBuZXcgQ29nbml0b1VzZXJQb29sc0F1dGhvcml6ZXIoXG4gICAgICB0aGlzLFxuICAgICAgXCJkZWZhdWx0QXV0aG9yaXplclwiLFxuICAgICAge1xuICAgICAgICBjb2duaXRvVXNlclBvb2xzOiBbdXNlclBvb2xSZWZdLFxuICAgICAgfSxcbiAgICApO1xuXG4gICAgdGhpcy5yZXN0QXBpID0gbmV3IFJlc3RBcGkodGhpcywgXCJSZXN0QXBpXCIsIHtcbiAgICAgIC4uLnByb3BzLnJlc3RBcGlQcm9wcyxcbiAgICAgIGRlZmF1bHRNZXRob2RPcHRpb25zOiB7XG4gICAgICAgIC4uLnByb3BzLnJlc3RBcGlQcm9wcy5kZWZhdWx0TWV0aG9kT3B0aW9ucyxcbiAgICAgICAgYXV0aG9yaXplcjogdGhpcy5kZWZhdWx0QXV0aG9yaXplcixcbiAgICAgIH0sXG4gICAgICBkb21haW5OYW1lOiB7XG4gICAgICAgIC4uLnByb3BzLnJlc3RBcGlQcm9wcy5kb21haW5OYW1lLFxuICAgICAgICBkb21haW5OYW1lOiB0aGlzLmRvbWFpbk5hbWUsXG4gICAgICAgIGNlcnRpZmljYXRlOiB0aGlzLmNlcnRpZmljYXRlLFxuICAgICAgfSxcbiAgICB9KTtcbiAgfVxufVxuIl19
|
|
@@ -52,5 +52,5 @@ class SecureRestApiV2 extends construct_1.Construct {
|
|
|
52
52
|
}
|
|
53
53
|
exports.SecureRestApiV2 = SecureRestApiV2;
|
|
54
54
|
_a = JSII_RTTI_SYMBOL_1;
|
|
55
|
-
SecureRestApiV2[_a] = { fqn: "@btc-embedded/cdk-extensions.SecureRestApiV2", version: "0.20.
|
|
55
|
+
SecureRestApiV2[_a] = { fqn: "@btc-embedded/cdk-extensions.SecureRestApiV2", version: "0.20.8" };
|
|
56
56
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiU2VjdXJlUmVzdEFwaVYyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0cnVjdHMvU2VjdXJlUmVzdEFwaVYyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsK0RBTW9DO0FBQ3BDLCtFQUc0QztBQUM1Qyx5REFBa0U7QUFDbEUsd0RBQXFEO0FBQ3JELDBDQUFtRDtBQTJCbkQsTUFBYSxlQUFnQixTQUFRLHFCQUFTO0lBSzVDLFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBMkI7UUFDbkUsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztRQUVqQixJQUFJLENBQUMsSUFBSSxHQUFHLGNBQUcsQ0FBQyxnQkFBZ0IsQ0FDOUIsSUFBSSxFQUNKLFFBQVEsRUFDUixLQUFLLENBQUMscUJBQXFCLENBQzVCLENBQUMsSUFBSSxDQUFDO1FBRVAsTUFBTSxVQUFVLEdBQ2QsS0FBSyxDQUFDLFVBQVU7WUFDaEIsd0JBQVUsQ0FBQyxVQUFVLENBQUMsSUFBSSxFQUFFLFlBQVksRUFBRTtnQkFDeEMsVUFBVSxFQUFFLElBQUksQ0FBQyxJQUFJO2FBQ3RCLENBQUMsQ0FBQztRQUVMLE1BQU0sVUFBVSxHQUFHLEdBQUcsS0FBSyxDQUFDLFlBQVksSUFBSSxVQUFVLENBQUMsUUFBUSxFQUFFLENBQUM7UUFFbEUsTUFBTSxXQUFXLEdBQUcsSUFBSSxvQ0FBVyxDQUFDLElBQUksRUFBRSxhQUFhLEVBQUU7WUFDdkQsVUFBVTtZQUNWLFVBQVUsRUFBRSw4Q0FBcUIsQ0FBQyxPQUFPLENBQUMsVUFBVSxDQUFDO1NBQ3RELENBQUMsQ0FBQztRQUVILE1BQU0sT0FBTyxHQUFHLDBCQUFlLENBQUMsZ0JBQWdCLENBQzlDLElBQUksRUFDSixTQUFTLEVBQ1QsS0FBSyxDQUFDLHFCQUFxQixDQUM1QixDQUFDO1FBRUYsSUFBSSxDQUFDLFVBQVUsR0FBRyxPQUFPLENBQUMsZ0NBQWdDLEVBQUUsQ0FBQztRQUU3RCxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksd0JBQU8sQ0FBQyxJQUFJLEVBQUUsU0FBUyxFQUFFO1lBQzFDLEdBQUcsS0FBSyxDQUFDLFlBQVk7WUFDckIsb0JBQW9CLEVBQUU7Z0JBQ3BCLEdBQUcsS0FBSyxDQUFDLFlBQVksQ0FBQyxvQkFBb0I7Z0JBQzFDLFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVTthQUM1QjtZQUNELFVBQVUsRUFBRTtnQkFDVixHQUFHLEtBQUssQ0FBQyxZQUFZLENBQUMsVUFBVTtnQkFDaEMsVUFBVTtnQkFDVixXQUFXO2FBQ1o7U0FDRixDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU0sU0FBUyxDQUNkLFVBQWtCLEVBQ2xCLE1BQW9CLEVBQ3BCLE9BQXVCO1FBRXZCLE1BQU0sbUJBQW1CLEdBQUcsQ0FBQyxLQUFLLEVBQUUsTUFBTSxFQUFFLFNBQVMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxVQUFVLENBQUM7WUFDekUsQ0FBQyxDQUFDO2dCQUNFLGVBQWUsSUFBSSxDQUFDLElBQUksV0FBVztnQkFDbkMsZUFBZSxJQUFJLENBQUMsSUFBSSxZQUFZO2FBQ3JDO1lBQ0gsQ0FBQyxDQUFDLENBQUMsZUFBZSxJQUFJLENBQUMsSUFBSSxZQUFZLENBQUMsQ0FBQztRQUUzQyxPQUFPLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxVQUFVLEVBQUUsTUFBTSxFQUFFO1lBQ3JELFVBQVUsRUFBRSxJQUFJLENBQUMsVUFBVTtZQUMzQixtQkFBbUI7WUFDbkIsR0FBRyxPQUFPO1NBQ1gsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs7QUFsRUgsMENBbUVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ29nbml0b1VzZXJQb29sc0F1dGhvcml6ZXIsXG4gIEludGVncmF0aW9uLFxuICBNZXRob2RPcHRpb25zLFxuICBSZXN0QXBpLFxuICBSZXN0QXBpUHJvcHMsXG59IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtYXBpZ2F0ZXdheVwiO1xuaW1wb3J0IHtcbiAgQ2VydGlmaWNhdGUsXG4gIENlcnRpZmljYXRlVmFsaWRhdGlvbixcbn0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1jZXJ0aWZpY2F0ZW1hbmFnZXJcIjtcbmltcG9ydCB7IEhvc3RlZFpvbmUsIElIb3N0ZWRab25lIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1yb3V0ZTUzXCI7XG5pbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tIFwiY29uc3RydWN0cy9saWIvY29uc3RydWN0XCI7XG5pbXBvcnQgeyBDb2duaXRvVXNlclBvb2wsIFZwYyB9IGZyb20gXCIuLi9wbGF0Zm9ybVwiO1xuXG5leHBvcnQgaW50ZXJmYWNlIFNlY3VyZVJlc3RBcGlQcm9wc1YyIHtcbiAgLyoqXG4gICAqIFRoZSBuYW1lIG9mIHRoZSBCYXNlIHBsYXRmb3JtIFN0YWNrXG4gICAqL1xuICByZWFkb25seSBiYXNlUGxhdGZvcm1TdGFja05hbWU6IHN0cmluZztcblxuICAvKipcbiAgICogU3ViZG9tYWluIHRoYXQgaXMgdXNlZCBmb3IgUkVTVCBBUEkgcHJvcHNcbiAgICovXG4gIHJlYWRvbmx5IGFwaVN1YkRvbWFpbjogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBob3N0ZWQgem9uZSBmb3IgdGhlIHN1YmRvbWFpbi5cbiAgICogQW4gb3B0aW9uYWwgcGFyYW1ldGVyXG4gICAqXG4gICAqIEBkZWZhdWx0IC0gZnFkbiBvdXRwdXQgb2YgYmFzZSBwbGF0Zm9ybSBzdGFjayBpcyB1c2VkIHRvIGltcG9ydCB0aGUgaG9zdGVkIHpvbmVcbiAgICovXG4gIHJlYWRvbmx5IGhvc3RlZFpvbmU/OiBJSG9zdGVkWm9uZTtcblxuICAvKipcbiAgICogUHJvcHMgZm9yd2FyZGVkIHRvIHRoZSBSZXN0QXBpIGNvbnN0cnVjdC5cbiAgICovXG4gIHJlYWRvbmx5IHJlc3RBcGlQcm9wczogUmVzdEFwaVByb3BzO1xufVxuXG5leHBvcnQgY2xhc3MgU2VjdXJlUmVzdEFwaVYyIGV4dGVuZHMgQ29uc3RydWN0IHtcbiAgcHJpdmF0ZSByZWFkb25seSBhdXRob3JpemVyOiBDb2duaXRvVXNlclBvb2xzQXV0aG9yaXplcjtcbiAgcHJpdmF0ZSByZWFkb25seSBmcWRuOiBzdHJpbmc7XG4gIHByaXZhdGUgcmVhZG9ubHkgcmVzdEFwaTogUmVzdEFwaTtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogU2VjdXJlUmVzdEFwaVByb3BzVjIpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuXG4gICAgdGhpcy5mcWRuID0gVnBjLmZyb21CYXNlUGxhdGZvcm0oXG4gICAgICB0aGlzLFxuICAgICAgXCJWcGNSZWZcIixcbiAgICAgIHByb3BzLmJhc2VQbGF0Zm9ybVN0YWNrTmFtZSxcbiAgICApLmZxZG47XG5cbiAgICBjb25zdCBob3N0ZWRab25lID1cbiAgICAgIHByb3BzLmhvc3RlZFpvbmUgPz9cbiAgICAgIEhvc3RlZFpvbmUuZnJvbUxvb2t1cCh0aGlzLCBcIkhvc3RlZFpvbmVcIiwge1xuICAgICAgICBkb21haW5OYW1lOiB0aGlzLmZxZG4sXG4gICAgICB9KTtcblxuICAgIGNvbnN0IGRvbWFpbk5hbWUgPSBgJHtwcm9wcy5hcGlTdWJEb21haW59LiR7aG9zdGVkWm9uZS56b25lTmFtZX1gO1xuXG4gICAgY29uc3QgY2VydGlmaWNhdGUgPSBuZXcgQ2VydGlmaWNhdGUodGhpcywgXCJDZXJ0aWZpY2F0ZVwiLCB7XG4gICAgICBkb21haW5OYW1lLFxuICAgICAgdmFsaWRhdGlvbjogQ2VydGlmaWNhdGVWYWxpZGF0aW9uLmZyb21EbnMoaG9zdGVkWm9uZSksXG4gICAgfSk7XG5cbiAgICBjb25zdCBjb2duaXRvID0gQ29nbml0b1VzZXJQb29sLmZyb21CYXNlUGxhdGZvcm0oXG4gICAgICB0aGlzLFxuICAgICAgXCJDb2duaXRvXCIsXG4gICAgICBwcm9wcy5iYXNlUGxhdGZvcm1TdGFja05hbWUsXG4gICAgKTtcblxuICAgIHRoaXMuYXV0aG9yaXplciA9IGNvZ25pdG8uY3JlYXRlQ29nbml0b1VzZXJQb29sc0F1dGhvcml6ZXIoKTtcblxuICAgIHRoaXMucmVzdEFwaSA9IG5ldyBSZXN0QXBpKHRoaXMsIFwiUmVzdEFwaVwiLCB7XG4gICAgICAuLi5wcm9wcy5yZXN0QXBpUHJvcHMsXG4gICAgICBkZWZhdWx0TWV0aG9kT3B0aW9uczoge1xuICAgICAgICAuLi5wcm9wcy5yZXN0QXBpUHJvcHMuZGVmYXVsdE1ldGhvZE9wdGlvbnMsXG4gICAgICAgIGF1dGhvcml6ZXI6IHRoaXMuYXV0aG9yaXplcixcbiAgICAgIH0sXG4gICAgICBkb21haW5OYW1lOiB7XG4gICAgICAgIC4uLnByb3BzLnJlc3RBcGlQcm9wcy5kb21haW5OYW1lLFxuICAgICAgICBkb21haW5OYW1lLFxuICAgICAgICBjZXJ0aWZpY2F0ZSxcbiAgICAgIH0sXG4gICAgfSk7XG4gIH1cblxuICBwdWJsaWMgYWRkTWV0aG9kKFxuICAgIGh0dHBNZXRob2Q6IHN0cmluZyxcbiAgICB0YXJnZXQ/OiBJbnRlZ3JhdGlvbixcbiAgICBvcHRpb25zPzogTWV0aG9kT3B0aW9ucyxcbiAgKSB7XG4gICAgY29uc3QgYXV0aG9yaXphdGlvblNjb3BlcyA9IFtgR0VUYCwgYEhFQURgLCBgT1BUSU9OU2BdLmluY2x1ZGVzKGh0dHBNZXRob2QpXG4gICAgICA/IFtcbiAgICAgICAgICBgaHR0cHM6Ly9hcGkuJHt0aGlzLmZxZG59L3JlYWRfYXBpYCxcbiAgICAgICAgICBgaHR0cHM6Ly9hcGkuJHt0aGlzLmZxZG59L3dyaXRlX2FwaWAsXG4gICAgICAgIF1cbiAgICAgIDogW2BodHRwczovL2FwaS4ke3RoaXMuZnFkbn0vd3JpdGVfYXBpYF07XG5cbiAgICByZXR1cm4gdGhpcy5yZXN0QXBpLnJvb3QuYWRkTWV0aG9kKGh0dHBNZXRob2QsIHRhcmdldCwge1xuICAgICAgYXV0aG9yaXplcjogdGhpcy5hdXRob3JpemVyLFxuICAgICAgYXV0aG9yaXphdGlvblNjb3BlcyxcbiAgICAgIC4uLm9wdGlvbnMsXG4gICAgfSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { IHttpApi } from "aws-cdk-lib/aws-apigatewayv2";
|
|
2
|
+
import { ISecret } from "aws-cdk-lib/aws-secretsmanager";
|
|
3
|
+
import { Construct } from "constructs";
|
|
4
|
+
/**
|
|
5
|
+
* Properties to instantiate the {@link ApiKeyClientAuthorization} component.
|
|
6
|
+
*/
|
|
7
|
+
export interface ApiKeyClientAuthorizationProps {
|
|
8
|
+
/**
|
|
9
|
+
* An existing HttpApi to attach the endpoint to. The default authorizer will we ignored
|
|
10
|
+
* and no authorization will be required for the endpoint.
|
|
11
|
+
*/
|
|
12
|
+
readonly authorizationHttpApi: IHttpApi;
|
|
13
|
+
/**
|
|
14
|
+
* An optional base URL for the {@link IHttpApi} in case it cannot be retrieved.
|
|
15
|
+
*/
|
|
16
|
+
readonly authorizationHttpApiUrl?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The ID of the API client. Credentials required for authorization will be fetched for
|
|
19
|
+
* this client.
|
|
20
|
+
*/
|
|
21
|
+
readonly userPoolClientId: string;
|
|
22
|
+
/**
|
|
23
|
+
* The secret containing the user pool client secret.
|
|
24
|
+
*/
|
|
25
|
+
readonly userPoolClientSecret: ISecret;
|
|
26
|
+
/**
|
|
27
|
+
* The issuer URL for the user pool. Used to extract the OAuth URL.
|
|
28
|
+
*/
|
|
29
|
+
readonly oidcIssuerUrl: string;
|
|
30
|
+
/**
|
|
31
|
+
* The scope to be used for retrieving the token.
|
|
32
|
+
*/
|
|
33
|
+
readonly scope: string;
|
|
34
|
+
/**
|
|
35
|
+
* Path (without preceding and trailing slash) to be used to retrieve the token.
|
|
36
|
+
* Will default to `token` if not set.
|
|
37
|
+
*/
|
|
38
|
+
readonly authorizationPath?: string;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Construct that provides a custom OAuth URL for authorizing an API client by only passing a
|
|
42
|
+
* valid client id. It will add a new endpoint to an existing HttpApi as `/authorize/{id}`.
|
|
43
|
+
*/
|
|
44
|
+
export declare class ApiKeyClientAuthorization extends Construct {
|
|
45
|
+
private authorizationUrl;
|
|
46
|
+
/**
|
|
47
|
+
* Create a new instance of the component.
|
|
48
|
+
* @param scope The scope to be used.
|
|
49
|
+
* @param id The ID used for the component instance.
|
|
50
|
+
* @param props The {@link ApiKeyClientAuthorizationProps} required for creating the instance.
|
|
51
|
+
*/
|
|
52
|
+
constructor(scope: Construct, id: string, props: ApiKeyClientAuthorizationProps);
|
|
53
|
+
/**
|
|
54
|
+
* Get the authorization URL to be used to retrieve the token.
|
|
55
|
+
*/
|
|
56
|
+
get tokenUrl(): string;
|
|
57
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var _a;
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.ApiKeyClientAuthorization = void 0;
|
|
5
|
+
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
6
|
+
const aws_cdk_lib_1 = require("aws-cdk-lib");
|
|
7
|
+
const aws_apigatewayv2_1 = require("aws-cdk-lib/aws-apigatewayv2");
|
|
8
|
+
const aws_apigatewayv2_integrations_1 = require("aws-cdk-lib/aws-apigatewayv2-integrations");
|
|
9
|
+
const constructs_1 = require("constructs");
|
|
10
|
+
const api_client_authorization_function_1 = require("./lambdas/api-client-authorization-function");
|
|
11
|
+
const DEFAULT_AUTHORIZATION_PATH = "token";
|
|
12
|
+
/**
|
|
13
|
+
* Construct that provides a custom OAuth URL for authorizing an API client by only passing a
|
|
14
|
+
* valid client id. It will add a new endpoint to an existing HttpApi as `/authorize/{id}`.
|
|
15
|
+
*/
|
|
16
|
+
class ApiKeyClientAuthorization extends constructs_1.Construct {
|
|
17
|
+
/**
|
|
18
|
+
* Create a new instance of the component.
|
|
19
|
+
* @param scope The scope to be used.
|
|
20
|
+
* @param id The ID used for the component instance.
|
|
21
|
+
* @param props The {@link ApiKeyClientAuthorizationProps} required for creating the instance.
|
|
22
|
+
*/
|
|
23
|
+
constructor(scope, id, props) {
|
|
24
|
+
super(scope, id);
|
|
25
|
+
const clientAuthorization = new api_client_authorization_function_1.ApiClientAuthorizationFunction(this, "AuthorizationFunction", {
|
|
26
|
+
timeout: aws_cdk_lib_1.Duration.seconds(45),
|
|
27
|
+
});
|
|
28
|
+
clientAuthorization.addEnvironment("OIDC_CLIENT_ID", props.userPoolClientId);
|
|
29
|
+
clientAuthorization.addEnvironment("OIDC_CLIENT_SECRET_ARN", props.userPoolClientSecret.secretArn);
|
|
30
|
+
clientAuthorization.addEnvironment("OIDC_ISSUER_URL", props.oidcIssuerUrl);
|
|
31
|
+
clientAuthorization.addEnvironment("OIDC_SCOPE", props.scope);
|
|
32
|
+
props.userPoolClientSecret.grantRead(clientAuthorization);
|
|
33
|
+
const apiKeyIntegration = new aws_apigatewayv2_integrations_1.HttpLambdaIntegration("ApiKeyIntegration", clientAuthorization);
|
|
34
|
+
const path = props.authorizationPath ?? DEFAULT_AUTHORIZATION_PATH;
|
|
35
|
+
new aws_apigatewayv2_1.HttpRoute(this, "AuthorizationRoute", {
|
|
36
|
+
httpApi: props.authorizationHttpApi,
|
|
37
|
+
integration: apiKeyIntegration,
|
|
38
|
+
routeKey: aws_apigatewayv2_1.HttpRouteKey.with(`/${path}`, aws_apigatewayv2_1.HttpMethod.POST),
|
|
39
|
+
authorizer: new aws_apigatewayv2_1.HttpNoneAuthorizer(),
|
|
40
|
+
});
|
|
41
|
+
this.authorizationUrl =
|
|
42
|
+
(props.authorizationHttpApiUrl ??
|
|
43
|
+
props.authorizationHttpApi.defaultStage?.domainUrl +
|
|
44
|
+
props.authorizationHttpApi.apiEndpoint) + `${path}`;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Get the authorization URL to be used to retrieve the token.
|
|
48
|
+
*/
|
|
49
|
+
get tokenUrl() {
|
|
50
|
+
return this.authorizationUrl;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.ApiKeyClientAuthorization = ApiKeyClientAuthorization;
|
|
54
|
+
_a = JSII_RTTI_SYMBOL_1;
|
|
55
|
+
ApiKeyClientAuthorization[_a] = { fqn: "@btc-embedded/cdk-extensions.ApiKeyClientAuthorization", version: "0.20.8" };
|
|
56
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQXBpS2V5Q2xpZW50QXV0aG9yaXphdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb25zdHJ1Y3RzL2FwaS1rZXlzL0FwaUtleUNsaWVudEF1dGhvcml6YXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSw2Q0FBdUM7QUFDdkMsbUVBTXNDO0FBQ3RDLDZGQUFrRjtBQUVsRiwyQ0FBdUM7QUFDdkMsbUdBQTZGO0FBRTdGLE1BQU0sMEJBQTBCLEdBQUcsT0FBTyxDQUFDO0FBNkMzQzs7O0dBR0c7QUFDSCxNQUFhLHlCQUEwQixTQUFRLHNCQUFTO0lBR3REOzs7OztPQUtHO0lBQ0gsWUFDRSxLQUFnQixFQUNoQixFQUFVLEVBQ1YsS0FBcUM7UUFFckMsS0FBSyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztRQUVqQixNQUFNLG1CQUFtQixHQUFHLElBQUksa0VBQThCLENBQzVELElBQUksRUFDSix1QkFBdUIsRUFDdkI7WUFDRSxPQUFPLEVBQUUsc0JBQVEsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUFDO1NBQzlCLENBQ0YsQ0FBQztRQUVGLG1CQUFtQixDQUFDLGNBQWMsQ0FDaEMsZ0JBQWdCLEVBQ2hCLEtBQUssQ0FBQyxnQkFBZ0IsQ0FDdkIsQ0FBQztRQUNGLG1CQUFtQixDQUFDLGNBQWMsQ0FDaEMsd0JBQXdCLEVBQ3hCLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxTQUFTLENBQ3JDLENBQUM7UUFDRixtQkFBbUIsQ0FBQyxjQUFjLENBQUMsaUJBQWlCLEVBQUUsS0FBSyxDQUFDLGFBQWEsQ0FBQyxDQUFDO1FBQzNFLG1CQUFtQixDQUFDLGNBQWMsQ0FBQyxZQUFZLEVBQUUsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRTlELEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxTQUFTLENBQUMsbUJBQW1CLENBQUMsQ0FBQztRQUUxRCxNQUFNLGlCQUFpQixHQUFHLElBQUkscURBQXFCLENBQ2pELG1CQUFtQixFQUNuQixtQkFBbUIsQ0FDcEIsQ0FBQztRQUVGLE1BQU0sSUFBSSxHQUFHLEtBQUssQ0FBQyxpQkFBaUIsSUFBSSwwQkFBMEIsQ0FBQztRQUVuRSxJQUFJLDRCQUFTLENBQUMsSUFBSSxFQUFFLG9CQUFvQixFQUFFO1lBQ3hDLE9BQU8sRUFBRSxLQUFLLENBQUMsb0JBQW9CO1lBQ25DLFdBQVcsRUFBRSxpQkFBaUI7WUFDOUIsUUFBUSxFQUFFLCtCQUFZLENBQUMsSUFBSSxDQUFDLElBQUksSUFBSSxFQUFFLEVBQUUsNkJBQVUsQ0FBQyxJQUFJLENBQUM7WUFDeEQsVUFBVSxFQUFFLElBQUkscUNBQWtCLEVBQUU7U0FDckMsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLGdCQUFnQjtZQUNuQixDQUFDLEtBQUssQ0FBQyx1QkFBdUI7Z0JBQzVCLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxZQUFZLEVBQUUsU0FBUztvQkFDaEQsS0FBSyxDQUFDLG9CQUFvQixDQUFDLFdBQVcsQ0FBQyxHQUFHLEdBQUcsSUFBSSxFQUFFLENBQUM7SUFDNUQsQ0FBQztJQUVEOztPQUVHO0lBQ0gsSUFBSSxRQUFRO1FBQ1YsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUM7SUFDL0IsQ0FBQzs7QUE5REgsOERBK0RDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRHVyYXRpb24gfSBmcm9tIFwiYXdzLWNkay1saWJcIjtcbmltcG9ydCB7XG4gIEh0dHBNZXRob2QsXG4gIEh0dHBOb25lQXV0aG9yaXplcixcbiAgSHR0cFJvdXRlLFxuICBIdHRwUm91dGVLZXksXG4gIElIdHRwQXBpLFxufSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWFwaWdhdGV3YXl2MlwiO1xuaW1wb3J0IHsgSHR0cExhbWJkYUludGVncmF0aW9uIH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1hcGlnYXRld2F5djItaW50ZWdyYXRpb25zXCI7XG5pbXBvcnQgeyBJU2VjcmV0IH0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1zZWNyZXRzbWFuYWdlclwiO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSBcImNvbnN0cnVjdHNcIjtcbmltcG9ydCB7IEFwaUNsaWVudEF1dGhvcml6YXRpb25GdW5jdGlvbiB9IGZyb20gXCIuL2xhbWJkYXMvYXBpLWNsaWVudC1hdXRob3JpemF0aW9uLWZ1bmN0aW9uXCI7XG5cbmNvbnN0IERFRkFVTFRfQVVUSE9SSVpBVElPTl9QQVRIID0gXCJ0b2tlblwiO1xuXG4vKipcbiAqIFByb3BlcnRpZXMgdG8gaW5zdGFudGlhdGUgdGhlIHtAbGluayBBcGlLZXlDbGllbnRBdXRob3JpemF0aW9ufSBjb21wb25lbnQuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgQXBpS2V5Q2xpZW50QXV0aG9yaXphdGlvblByb3BzIHtcbiAgLyoqXG4gICAqIEFuIGV4aXN0aW5nIEh0dHBBcGkgdG8gYXR0YWNoIHRoZSBlbmRwb2ludCB0by4gVGhlIGRlZmF1bHQgYXV0aG9yaXplciB3aWxsIHdlIGlnbm9yZWRcbiAgICogYW5kIG5vIGF1dGhvcml6YXRpb24gd2lsbCBiZSByZXF1aXJlZCBmb3IgdGhlIGVuZHBvaW50LlxuICAgKi9cbiAgcmVhZG9ubHkgYXV0aG9yaXphdGlvbkh0dHBBcGk6IElIdHRwQXBpO1xuXG4gIC8qKlxuICAgKiBBbiBvcHRpb25hbCBiYXNlIFVSTCBmb3IgdGhlIHtAbGluayBJSHR0cEFwaX0gaW4gY2FzZSBpdCBjYW5ub3QgYmUgcmV0cmlldmVkLlxuICAgKi9cbiAgcmVhZG9ubHkgYXV0aG9yaXphdGlvbkh0dHBBcGlVcmw/OiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFRoZSBJRCBvZiB0aGUgQVBJIGNsaWVudC4gQ3JlZGVudGlhbHMgcmVxdWlyZWQgZm9yIGF1dGhvcml6YXRpb24gd2lsbCBiZSBmZXRjaGVkIGZvclxuICAgKiB0aGlzIGNsaWVudC5cbiAgICovXG4gIHJlYWRvbmx5IHVzZXJQb29sQ2xpZW50SWQ6IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIHNlY3JldCBjb250YWluaW5nIHRoZSB1c2VyIHBvb2wgY2xpZW50IHNlY3JldC5cbiAgICovXG4gIHJlYWRvbmx5IHVzZXJQb29sQ2xpZW50U2VjcmV0OiBJU2VjcmV0O1xuXG4gIC8qKlxuICAgKiBUaGUgaXNzdWVyIFVSTCBmb3IgdGhlIHVzZXIgcG9vbC4gVXNlZCB0byBleHRyYWN0IHRoZSBPQXV0aCBVUkwuXG4gICAqL1xuICByZWFkb25seSBvaWRjSXNzdWVyVXJsOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFRoZSBzY29wZSB0byBiZSB1c2VkIGZvciByZXRyaWV2aW5nIHRoZSB0b2tlbi5cbiAgICovXG4gIHJlYWRvbmx5IHNjb3BlOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFBhdGggKHdpdGhvdXQgcHJlY2VkaW5nIGFuZCB0cmFpbGluZyBzbGFzaCkgdG8gYmUgdXNlZCB0byByZXRyaWV2ZSB0aGUgdG9rZW4uXG4gICAqIFdpbGwgZGVmYXVsdCB0byBgdG9rZW5gIGlmIG5vdCBzZXQuXG4gICAqL1xuICByZWFkb25seSBhdXRob3JpemF0aW9uUGF0aD86IHN0cmluZztcbn1cblxuLyoqXG4gKiBDb25zdHJ1Y3QgdGhhdCBwcm92aWRlcyBhIGN1c3RvbSBPQXV0aCBVUkwgZm9yIGF1dGhvcml6aW5nIGFuIEFQSSBjbGllbnQgYnkgb25seSBwYXNzaW5nIGFcbiAqIHZhbGlkIGNsaWVudCBpZC4gSXQgd2lsbCBhZGQgYSBuZXcgZW5kcG9pbnQgdG8gYW4gZXhpc3RpbmcgSHR0cEFwaSBhcyBgL2F1dGhvcml6ZS97aWR9YC5cbiAqL1xuZXhwb3J0IGNsYXNzIEFwaUtleUNsaWVudEF1dGhvcml6YXRpb24gZXh0ZW5kcyBDb25zdHJ1Y3Qge1xuICBwcml2YXRlIGF1dGhvcml6YXRpb25Vcmw6IHN0cmluZztcblxuICAvKipcbiAgICogQ3JlYXRlIGEgbmV3IGluc3RhbmNlIG9mIHRoZSBjb21wb25lbnQuXG4gICAqIEBwYXJhbSBzY29wZSBUaGUgc2NvcGUgdG8gYmUgdXNlZC5cbiAgICogQHBhcmFtIGlkIFRoZSBJRCB1c2VkIGZvciB0aGUgY29tcG9uZW50IGluc3RhbmNlLlxuICAgKiBAcGFyYW0gcHJvcHMgVGhlIHtAbGluayBBcGlLZXlDbGllbnRBdXRob3JpemF0aW9uUHJvcHN9IHJlcXVpcmVkIGZvciBjcmVhdGluZyB0aGUgaW5zdGFuY2UuXG4gICAqL1xuICBjb25zdHJ1Y3RvcihcbiAgICBzY29wZTogQ29uc3RydWN0LFxuICAgIGlkOiBzdHJpbmcsXG4gICAgcHJvcHM6IEFwaUtleUNsaWVudEF1dGhvcml6YXRpb25Qcm9wcyxcbiAgKSB7XG4gICAgc3VwZXIoc2NvcGUsIGlkKTtcblxuICAgIGNvbnN0IGNsaWVudEF1dGhvcml6YXRpb24gPSBuZXcgQXBpQ2xpZW50QXV0aG9yaXphdGlvbkZ1bmN0aW9uKFxuICAgICAgdGhpcyxcbiAgICAgIFwiQXV0aG9yaXphdGlvbkZ1bmN0aW9uXCIsXG4gICAgICB7XG4gICAgICAgIHRpbWVvdXQ6IER1cmF0aW9uLnNlY29uZHMoNDUpLFxuICAgICAgfSxcbiAgICApO1xuXG4gICAgY2xpZW50QXV0aG9yaXphdGlvbi5hZGRFbnZpcm9ubWVudChcbiAgICAgIFwiT0lEQ19DTElFTlRfSURcIixcbiAgICAgIHByb3BzLnVzZXJQb29sQ2xpZW50SWQsXG4gICAgKTtcbiAgICBjbGllbnRBdXRob3JpemF0aW9uLmFkZEVudmlyb25tZW50KFxuICAgICAgXCJPSURDX0NMSUVOVF9TRUNSRVRfQVJOXCIsXG4gICAgICBwcm9wcy51c2VyUG9vbENsaWVudFNlY3JldC5zZWNyZXRBcm4sXG4gICAgKTtcbiAgICBjbGllbnRBdXRob3JpemF0aW9uLmFkZEVudmlyb25tZW50KFwiT0lEQ19JU1NVRVJfVVJMXCIsIHByb3BzLm9pZGNJc3N1ZXJVcmwpO1xuICAgIGNsaWVudEF1dGhvcml6YXRpb24uYWRkRW52aXJvbm1lbnQoXCJPSURDX1NDT1BFXCIsIHByb3BzLnNjb3BlKTtcblxuICAgIHByb3BzLnVzZXJQb29sQ2xpZW50U2VjcmV0LmdyYW50UmVhZChjbGllbnRBdXRob3JpemF0aW9uKTtcblxuICAgIGNvbnN0IGFwaUtleUludGVncmF0aW9uID0gbmV3IEh0dHBMYW1iZGFJbnRlZ3JhdGlvbihcbiAgICAgIFwiQXBpS2V5SW50ZWdyYXRpb25cIixcbiAgICAgIGNsaWVudEF1dGhvcml6YXRpb24sXG4gICAgKTtcblxuICAgIGNvbnN0IHBhdGggPSBwcm9wcy5hdXRob3JpemF0aW9uUGF0aCA/PyBERUZBVUxUX0FVVEhPUklaQVRJT05fUEFUSDtcblxuICAgIG5ldyBIdHRwUm91dGUodGhpcywgXCJBdXRob3JpemF0aW9uUm91dGVcIiwge1xuICAgICAgaHR0cEFwaTogcHJvcHMuYXV0aG9yaXphdGlvbkh0dHBBcGksXG4gICAgICBpbnRlZ3JhdGlvbjogYXBpS2V5SW50ZWdyYXRpb24sXG4gICAgICByb3V0ZUtleTogSHR0cFJvdXRlS2V5LndpdGgoYC8ke3BhdGh9YCwgSHR0cE1ldGhvZC5QT1NUKSxcbiAgICAgIGF1dGhvcml6ZXI6IG5ldyBIdHRwTm9uZUF1dGhvcml6ZXIoKSxcbiAgICB9KTtcblxuICAgIHRoaXMuYXV0aG9yaXphdGlvblVybCA9XG4gICAgICAocHJvcHMuYXV0aG9yaXphdGlvbkh0dHBBcGlVcmwgPz9cbiAgICAgICAgcHJvcHMuYXV0aG9yaXphdGlvbkh0dHBBcGkuZGVmYXVsdFN0YWdlPy5kb21haW5VcmwgK1xuICAgICAgICAgIHByb3BzLmF1dGhvcml6YXRpb25IdHRwQXBpLmFwaUVuZHBvaW50KSArIGAke3BhdGh9YDtcbiAgfVxuXG4gIC8qKlxuICAgKiBHZXQgdGhlIGF1dGhvcml6YXRpb24gVVJMIHRvIGJlIHVzZWQgdG8gcmV0cmlldmUgdGhlIHRva2VuLlxuICAgKi9cbiAgZ2V0IHRva2VuVXJsKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuYXV0aG9yaXphdGlvblVybDtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { IUserPool } from "aws-cdk-lib/aws-cognito";
|
|
2
|
+
import { IRole } from "aws-cdk-lib/aws-iam";
|
|
3
|
+
import { Construct } from "constructs";
|
|
4
|
+
import { ApiKeyStore } from "./ApiKeyStore";
|
|
5
|
+
/**
|
|
6
|
+
* Properties to instantiate the {@link ApiKeyManagement} component.
|
|
7
|
+
*/
|
|
8
|
+
export interface ApiKeyManagementProps {
|
|
9
|
+
/**
|
|
10
|
+
* The user pool to be used.
|
|
11
|
+
*/
|
|
12
|
+
readonly userPool: IUserPool;
|
|
13
|
+
/**
|
|
14
|
+
* The {@link ApiKeyStore} component.
|
|
15
|
+
*/
|
|
16
|
+
readonly apiKeys: ApiKeyStore;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Component that provides a REST API to manage (create, modify, delete) API keys.
|
|
20
|
+
*/
|
|
21
|
+
export declare class ApiKeyManagement extends Construct {
|
|
22
|
+
private externalUrl;
|
|
23
|
+
private restApi;
|
|
24
|
+
private table;
|
|
25
|
+
private attributes;
|
|
26
|
+
/**
|
|
27
|
+
* Create a new instance of the component.
|
|
28
|
+
* @param scope The scope to be used.
|
|
29
|
+
* @param id The ID used for the component instance.
|
|
30
|
+
* @param props The {@link ApiKeyManagementProps} required for creating the instance.
|
|
31
|
+
*/
|
|
32
|
+
constructor(scope: Construct, id: string, props: ApiKeyManagementProps);
|
|
33
|
+
/**
|
|
34
|
+
* Get the base URL to manage the keys.
|
|
35
|
+
*/
|
|
36
|
+
get baseUrl(): string;
|
|
37
|
+
/**
|
|
38
|
+
* Get the path relative to the base url to manage all keys.
|
|
39
|
+
*/
|
|
40
|
+
get keysManagementPath(): string;
|
|
41
|
+
/**
|
|
42
|
+
* Get the path relative to the base url to manage a single key. Contains
|
|
43
|
+
* a placeholder {id} that has to replaced by the ID of the element to be managed.
|
|
44
|
+
*/
|
|
45
|
+
get keyManagementPath(): string;
|
|
46
|
+
/**
|
|
47
|
+
* Grant connection privileges to the passed role.
|
|
48
|
+
* @param role The role to allow access to the API.
|
|
49
|
+
*/
|
|
50
|
+
allowConnection(role: IRole): void;
|
|
51
|
+
/**
|
|
52
|
+
* Set up the available resources for the API.
|
|
53
|
+
*/
|
|
54
|
+
private setUpResources;
|
|
55
|
+
}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var _a;
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.ApiKeyManagement = void 0;
|
|
5
|
+
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
6
|
+
const aws_apigateway_1 = require("aws-cdk-lib/aws-apigateway");
|
|
7
|
+
const aws_iam_1 = require("aws-cdk-lib/aws-iam");
|
|
8
|
+
const constructs_1 = require("constructs");
|
|
9
|
+
const api_key_creation_function_1 = require("./lambdas/api-key-creation-function");
|
|
10
|
+
const api_key_update_function_1 = require("./lambdas/api-key-update-function");
|
|
11
|
+
const MANAGEMENT_PATH = "apiKeys";
|
|
12
|
+
/**
|
|
13
|
+
* Component that provides a REST API to manage (create, modify, delete) API keys.
|
|
14
|
+
*/
|
|
15
|
+
class ApiKeyManagement extends constructs_1.Construct {
|
|
16
|
+
/**
|
|
17
|
+
* Create a new instance of the component.
|
|
18
|
+
* @param scope The scope to be used.
|
|
19
|
+
* @param id The ID used for the component instance.
|
|
20
|
+
* @param props The {@link ApiKeyManagementProps} required for creating the instance.
|
|
21
|
+
*/
|
|
22
|
+
constructor(scope, id, props) {
|
|
23
|
+
super(scope, id);
|
|
24
|
+
this.attributes = props.apiKeys.attributes;
|
|
25
|
+
this.table = props.apiKeys.apiKeyTable;
|
|
26
|
+
const restApi = new aws_apigateway_1.RestApi(this, "ManagementApi", {
|
|
27
|
+
restApiName: "API Key Management",
|
|
28
|
+
description: "API for managing API keys",
|
|
29
|
+
endpointConfiguration: {
|
|
30
|
+
types: [aws_apigateway_1.EndpointType.REGIONAL],
|
|
31
|
+
},
|
|
32
|
+
});
|
|
33
|
+
this.externalUrl = `${restApi.url}`;
|
|
34
|
+
this.restApi = restApi;
|
|
35
|
+
this.setUpResources();
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Get the base URL to manage the keys.
|
|
39
|
+
*/
|
|
40
|
+
get baseUrl() {
|
|
41
|
+
return this.externalUrl;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Get the path relative to the base url to manage all keys.
|
|
45
|
+
*/
|
|
46
|
+
get keysManagementPath() {
|
|
47
|
+
return MANAGEMENT_PATH;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Get the path relative to the base url to manage a single key. Contains
|
|
51
|
+
* a placeholder {id} that has to replaced by the ID of the element to be managed.
|
|
52
|
+
*/
|
|
53
|
+
get keyManagementPath() {
|
|
54
|
+
return this.keysManagementPath + "/{id}";
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Grant connection privileges to the passed role.
|
|
58
|
+
* @param role The role to allow access to the API.
|
|
59
|
+
*/
|
|
60
|
+
allowConnection(role) {
|
|
61
|
+
const statement = new aws_iam_1.PolicyStatement();
|
|
62
|
+
statement.addResources(this.restApi.arnForExecuteApi());
|
|
63
|
+
statement.addActions("execute-api:Invoke");
|
|
64
|
+
statement.effect = aws_iam_1.Effect.ALLOW;
|
|
65
|
+
role.addManagedPolicy(new aws_iam_1.ManagedPolicy(role, "ApiClientManagementAccessPolicy", {
|
|
66
|
+
statements: [statement],
|
|
67
|
+
}));
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Set up the available resources for the API.
|
|
71
|
+
*/
|
|
72
|
+
setUpResources() {
|
|
73
|
+
// Create IAM role for API Gateway to access DynamoDB
|
|
74
|
+
const apiGatewayRole = new aws_iam_1.Role(this, "ApiGatewayDynamoDBRole", {
|
|
75
|
+
assumedBy: new aws_iam_1.ServicePrincipal("apigateway.amazonaws.com"),
|
|
76
|
+
});
|
|
77
|
+
this.table.grantReadWriteData(apiGatewayRole);
|
|
78
|
+
// Resource for actions on all keys
|
|
79
|
+
const apiKeysResource = this.restApi.root.addResource(MANAGEMENT_PATH);
|
|
80
|
+
// Resource for actions on a single key
|
|
81
|
+
const apiKeyResource = apiKeysResource.addResource("{id}");
|
|
82
|
+
// Get all keys
|
|
83
|
+
apiKeysResource.addMethod("GET", new aws_apigateway_1.AwsIntegration({
|
|
84
|
+
service: "dynamodb",
|
|
85
|
+
action: "Scan",
|
|
86
|
+
options: {
|
|
87
|
+
credentialsRole: apiGatewayRole,
|
|
88
|
+
requestTemplates: {
|
|
89
|
+
"application/json": JSON.stringify({
|
|
90
|
+
TableName: this.table.tableName,
|
|
91
|
+
ConsistentRead: true,
|
|
92
|
+
}),
|
|
93
|
+
},
|
|
94
|
+
integrationResponses: [
|
|
95
|
+
{
|
|
96
|
+
statusCode: "200",
|
|
97
|
+
responseTemplates: {
|
|
98
|
+
"application/json": `#set($inputRoot = $input.path('$'))
|
|
99
|
+
{
|
|
100
|
+
"keys": [
|
|
101
|
+
#foreach($elem in $inputRoot.Items)
|
|
102
|
+
{
|
|
103
|
+
"id": "$elem.id.S",
|
|
104
|
+
"createdAt": "$elem.createdAt.S"
|
|
105
|
+
#foreach($attribute in ${JSON.stringify(this.attributes)})
|
|
106
|
+
#if($elem[$attribute.apiName].S != '')
|
|
107
|
+
,"$attribute.apiName": "$elem[$attribute.apiName].S"
|
|
108
|
+
#end
|
|
109
|
+
#end
|
|
110
|
+
}#if($foreach.hasNext),#end
|
|
111
|
+
#end
|
|
112
|
+
]
|
|
113
|
+
}`,
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
],
|
|
117
|
+
},
|
|
118
|
+
}), {
|
|
119
|
+
methodResponses: [{ statusCode: "200" }],
|
|
120
|
+
authorizationType: aws_apigateway_1.AuthorizationType.IAM,
|
|
121
|
+
});
|
|
122
|
+
// Get a single key
|
|
123
|
+
apiKeyResource.addMethod("GET", new aws_apigateway_1.AwsIntegration({
|
|
124
|
+
service: "dynamodb",
|
|
125
|
+
action: "GetItem",
|
|
126
|
+
options: {
|
|
127
|
+
credentialsRole: apiGatewayRole,
|
|
128
|
+
requestTemplates: {
|
|
129
|
+
"application/json": JSON.stringify({
|
|
130
|
+
TableName: this.table.tableName,
|
|
131
|
+
Key: {
|
|
132
|
+
id: { S: "$method.request.path.id" },
|
|
133
|
+
},
|
|
134
|
+
ConsistentRead: true,
|
|
135
|
+
}),
|
|
136
|
+
},
|
|
137
|
+
integrationResponses: [
|
|
138
|
+
{
|
|
139
|
+
statusCode: "200",
|
|
140
|
+
responseTemplates: {
|
|
141
|
+
"application/json": `#set($inputRoot = $input.path('$'))
|
|
142
|
+
#if($inputRoot.Item)
|
|
143
|
+
{
|
|
144
|
+
"id": "$inputRoot.Item.id.S",
|
|
145
|
+
"createdAt": "$inputRoot.Item.createdAt.S"
|
|
146
|
+
#foreach($attribute in ${JSON.stringify(this.attributes)})
|
|
147
|
+
#if($inputRoot.Item[$attribute.apiName].S != '')
|
|
148
|
+
,"$attribute.apiName": "$inputRoot.Item[$attribute.apiName].S"
|
|
149
|
+
#end
|
|
150
|
+
#end
|
|
151
|
+
}
|
|
152
|
+
#else
|
|
153
|
+
{}
|
|
154
|
+
#end`,
|
|
155
|
+
},
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
}), {
|
|
160
|
+
methodResponses: [{ statusCode: "200" }],
|
|
161
|
+
authorizationType: aws_apigateway_1.AuthorizationType.IAM,
|
|
162
|
+
});
|
|
163
|
+
// Delete a key
|
|
164
|
+
apiKeyResource.addMethod("DELETE", new aws_apigateway_1.AwsIntegration({
|
|
165
|
+
service: "dynamodb",
|
|
166
|
+
action: "DeleteItem",
|
|
167
|
+
options: {
|
|
168
|
+
credentialsRole: apiGatewayRole,
|
|
169
|
+
requestTemplates: {
|
|
170
|
+
"application/json": JSON.stringify({
|
|
171
|
+
TableName: this.table.tableName,
|
|
172
|
+
Key: {
|
|
173
|
+
id: { S: "$method.request.path.id" },
|
|
174
|
+
},
|
|
175
|
+
}),
|
|
176
|
+
},
|
|
177
|
+
integrationResponses: [
|
|
178
|
+
{
|
|
179
|
+
statusCode: "200",
|
|
180
|
+
responseTemplates: {
|
|
181
|
+
"application/json": '{"message": "Item deleted successfully"}',
|
|
182
|
+
},
|
|
183
|
+
},
|
|
184
|
+
],
|
|
185
|
+
},
|
|
186
|
+
}), {
|
|
187
|
+
methodResponses: [{ statusCode: "200" }],
|
|
188
|
+
authorizationType: aws_apigateway_1.AuthorizationType.IAM,
|
|
189
|
+
});
|
|
190
|
+
// Create a key
|
|
191
|
+
const creationHandler = new api_key_creation_function_1.ApiKeyCreationFunction(this, "CreationHandler", { environment: { TABLE_NAME: this.table.tableName } });
|
|
192
|
+
this.table.grantReadWriteData(creationHandler);
|
|
193
|
+
apiKeysResource.addMethod("POST", new aws_apigateway_1.LambdaIntegration(creationHandler), {
|
|
194
|
+
methodResponses: [{ statusCode: "200" }],
|
|
195
|
+
authorizationType: aws_apigateway_1.AuthorizationType.IAM,
|
|
196
|
+
});
|
|
197
|
+
// Update a key
|
|
198
|
+
const updateHandler = new api_key_update_function_1.ApiKeyUpdateFunction(this, "UpdateHandler", {
|
|
199
|
+
environment: {
|
|
200
|
+
TABLE_NAME: this.table.tableName,
|
|
201
|
+
ATTRIBUTE_NAMES: this.attributes.map((f) => f.apiName).join(","),
|
|
202
|
+
},
|
|
203
|
+
});
|
|
204
|
+
this.table.grantReadWriteData(updateHandler);
|
|
205
|
+
apiKeyResource.addMethod("POST", new aws_apigateway_1.LambdaIntegration(updateHandler), {
|
|
206
|
+
methodResponses: [{ statusCode: "200" }],
|
|
207
|
+
authorizationType: aws_apigateway_1.AuthorizationType.IAM,
|
|
208
|
+
});
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
exports.ApiKeyManagement = ApiKeyManagement;
|
|
212
|
+
_a = JSII_RTTI_SYMBOL_1;
|
|
213
|
+
ApiKeyManagement[_a] = { fqn: "@btc-embedded/cdk-extensions.ApiKeyManagement", version: "0.20.8" };
|
|
214
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQXBpS2V5TWFuYWdlbWVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb25zdHJ1Y3RzL2FwaS1rZXlzL0FwaUtleU1hbmFnZW1lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSwrREFPb0M7QUFHcEMsaURBTzZCO0FBQzdCLDJDQUF1QztBQUV2QyxtRkFBNkU7QUFDN0UsK0VBQXlFO0FBRXpFLE1BQU0sZUFBZSxHQUFHLFNBQVMsQ0FBQztBQWlCbEM7O0dBRUc7QUFDSCxNQUFhLGdCQUFpQixTQUFRLHNCQUFTO0lBSzdDOzs7OztPQUtHO0lBQ0gsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUE0QjtRQUNwRSxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBRWpCLElBQUksQ0FBQyxVQUFVLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxVQUFVLENBQUM7UUFFM0MsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBQztRQUV2QyxNQUFNLE9BQU8sR0FBRyxJQUFJLHdCQUFPLENBQUMsSUFBSSxFQUFFLGVBQWUsRUFBRTtZQUNqRCxXQUFXLEVBQUUsb0JBQW9CO1lBQ2pDLFdBQVcsRUFBRSwyQkFBMkI7WUFDeEMscUJBQXFCLEVBQUU7Z0JBQ3JCLEtBQUssRUFBRSxDQUFDLDZCQUFZLENBQUMsUUFBUSxDQUFDO2FBQy9CO1NBQ0YsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLFdBQVcsR0FBRyxHQUFHLE9BQU8sQ0FBQyxHQUFHLEVBQUUsQ0FBQztRQUNwQyxJQUFJLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQztRQUV2QixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDeEIsQ0FBQztJQUVEOztPQUVHO0lBQ0gsSUFBVyxPQUFPO1FBQ2hCLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQztJQUMxQixDQUFDO0lBRUQ7O09BRUc7SUFDSCxJQUFXLGtCQUFrQjtRQUMzQixPQUFPLGVBQWUsQ0FBQztJQUN6QixDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsSUFBVyxpQkFBaUI7UUFDMUIsT0FBTyxJQUFJLENBQUMsa0JBQWtCLEdBQUcsT0FBTyxDQUFDO0lBQzNDLENBQUM7SUFFRDs7O09BR0c7SUFDSSxlQUFlLENBQUMsSUFBVztRQUNoQyxNQUFNLFNBQVMsR0FBRyxJQUFJLHlCQUFlLEVBQUUsQ0FBQztRQUN4QyxTQUFTLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQyxDQUFDO1FBQ3hELFNBQVMsQ0FBQyxVQUFVLENBQUMsb0JBQW9CLENBQUMsQ0FBQztRQUMzQyxTQUFTLENBQUMsTUFBTSxHQUFHLGdCQUFNLENBQUMsS0FBSyxDQUFDO1FBQ2hDLElBQUksQ0FBQyxnQkFBZ0IsQ0FDbkIsSUFBSSx1QkFBYSxDQUFDLElBQUksRUFBRSxpQ0FBaUMsRUFBRTtZQUN6RCxVQUFVLEVBQUUsQ0FBQyxTQUFTLENBQUM7U0FDeEIsQ0FBQyxDQUNILENBQUM7SUFDSixDQUFDO0lBRUQ7O09BRUc7SUFDSyxjQUFjO1FBQ3BCLHFEQUFxRDtRQUNyRCxNQUFNLGNBQWMsR0FBRyxJQUFJLGNBQUksQ0FBQyxJQUFJLEVBQUUsd0JBQXdCLEVBQUU7WUFDOUQsU0FBUyxFQUFFLElBQUksMEJBQWdCLENBQUMsMEJBQTBCLENBQUM7U0FDNUQsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLEtBQUssQ0FBQyxrQkFBa0IsQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUU5QyxtQ0FBbUM7UUFDbkMsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLGVBQWUsQ0FBQyxDQUFDO1FBQ3ZFLHVDQUF1QztRQUN2QyxNQUFNLGNBQWMsR0FBRyxlQUFlLENBQUMsV0FBVyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBRTNELGVBQWU7UUFDZixlQUFlLENBQUMsU0FBUyxDQUN2QixLQUFLLEVBQ0wsSUFBSSwrQkFBYyxDQUFDO1lBQ2pCLE9BQU8sRUFBRSxVQUFVO1lBQ25CLE1BQU0sRUFBRSxNQUFNO1lBQ2QsT0FBTyxFQUFFO2dCQUNQLGVBQWUsRUFBRSxjQUFjO2dCQUMvQixnQkFBZ0IsRUFBRTtvQkFDaEIsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLFNBQVMsQ0FBQzt3QkFDakMsU0FBUyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUzt3QkFDL0IsY0FBYyxFQUFFLElBQUk7cUJBQ3JCLENBQUM7aUJBQ0g7Z0JBQ0Qsb0JBQW9CLEVBQUU7b0JBQ3BCO3dCQUNFLFVBQVUsRUFBRSxLQUFLO3dCQUNqQixpQkFBaUIsRUFBRTs0QkFDakIsa0JBQWtCLEVBQUU7Ozs7Ozs7aURBT2EsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDOzs7Ozs7OztvQkFRNUQ7eUJBQ0w7cUJBQ0Y7aUJBQ0Y7YUFDRjtTQUNGLENBQUMsRUFDRjtZQUNFLGVBQWUsRUFBRSxDQUFDLEVBQUUsVUFBVSxFQUFFLEtBQUssRUFBRSxDQUFDO1lBQ3hDLGlCQUFpQixFQUFFLGtDQUFpQixDQUFDLEdBQUc7U0FDekMsQ0FDRixDQUFDO1FBRUYsbUJBQW1CO1FBQ25CLGNBQWMsQ0FBQyxTQUFTLENBQ3RCLEtBQUssRUFDTCxJQUFJLCtCQUFjLENBQUM7WUFDakIsT0FBTyxFQUFFLFVBQVU7WUFDbkIsTUFBTSxFQUFFLFNBQVM7WUFDakIsT0FBTyxFQUFFO2dCQUNQLGVBQWUsRUFBRSxjQUFjO2dCQUMvQixnQkFBZ0IsRUFBRTtvQkFDaEIsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLFNBQVMsQ0FBQzt3QkFDakMsU0FBUyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUzt3QkFDL0IsR0FBRyxFQUFFOzRCQUNILEVBQUUsRUFBRSxFQUFFLENBQUMsRUFBRSx5QkFBeUIsRUFBRTt5QkFDckM7d0JBQ0QsY0FBYyxFQUFFLElBQUk7cUJBQ3JCLENBQUM7aUJBQ0g7Z0JBQ0Qsb0JBQW9CLEVBQUU7b0JBQ3BCO3dCQUNFLFVBQVUsRUFBRSxLQUFLO3dCQUNqQixpQkFBaUIsRUFBRTs0QkFDakIsa0JBQWtCLEVBQUU7Ozs7OzZDQUtTLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQzs7Ozs7Ozs7dUJBUXJEO3lCQUNSO3FCQUNGO2lCQUNGO2FBQ0Y7U0FDRixDQUFDLEVBQ0Y7WUFDRSxlQUFlLEVBQUUsQ0FBQyxFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQUUsQ0FBQztZQUN4QyxpQkFBaUIsRUFBRSxrQ0FBaUIsQ0FBQyxHQUFHO1NBQ3pDLENBQ0YsQ0FBQztRQUVGLGVBQWU7UUFDZixjQUFjLENBQUMsU0FBUyxDQUN0QixRQUFRLEVBQ1IsSUFBSSwrQkFBYyxDQUFDO1lBQ2pCLE9BQU8sRUFBRSxVQUFVO1lBQ25CLE1BQU0sRUFBRSxZQUFZO1lBQ3BCLE9BQU8sRUFBRTtnQkFDUCxlQUFlLEVBQUUsY0FBYztnQkFDL0IsZ0JBQWdCLEVBQUU7b0JBQ2hCLGtCQUFrQixFQUFFLElBQUksQ0FBQyxTQUFTLENBQUM7d0JBQ2pDLFNBQVMsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVM7d0JBQy9CLEdBQUcsRUFBRTs0QkFDSCxFQUFFLEVBQUUsRUFBRSxDQUFDLEVBQUUseUJBQXlCLEVBQUU7eUJBQ3JDO3FCQUNGLENBQUM7aUJBQ0g7Z0JBQ0Qsb0JBQW9CLEVBQUU7b0JBQ3BCO3dCQUNFLFVBQVUsRUFBRSxLQUFLO3dCQUNqQixpQkFBaUIsRUFBRTs0QkFDakIsa0JBQWtCLEVBQUUsMENBQTBDO3lCQUMvRDtxQkFDRjtpQkFDRjthQUNGO1NBQ0YsQ0FBQyxFQUNGO1lBQ0UsZUFBZSxFQUFFLENBQUMsRUFBRSxVQUFVLEVBQUUsS0FBSyxFQUFFLENBQUM7WUFDeEMsaUJBQWlCLEVBQUUsa0NBQWlCLENBQUMsR0FBRztTQUN6QyxDQUNGLENBQUM7UUFFRixlQUFlO1FBQ2YsTUFBTSxlQUFlLEdBQUcsSUFBSSxrREFBc0IsQ0FDaEQsSUFBSSxFQUNKLGlCQUFpQixFQUNqQixFQUFFLFdBQVcsRUFBRSxFQUFFLFVBQVUsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVMsRUFBRSxFQUFFLENBQ3RELENBQUM7UUFFRixJQUFJLENBQUMsS0FBSyxDQUFDLGtCQUFrQixDQUFDLGVBQWUsQ0FBQyxDQUFDO1FBRS9DLGVBQWUsQ0FBQyxTQUFTLENBQUMsTUFBTSxFQUFFLElBQUksa0NBQWlCLENBQUMsZUFBZSxDQUFDLEVBQUU7WUFDeEUsZUFBZSxFQUFFLENBQUMsRUFBRSxVQUFVLEVBQUUsS0FBSyxFQUFFLENBQUM7WUFDeEMsaUJBQWlCLEVBQUUsa0NBQWlCLENBQUMsR0FBRztTQUN6QyxDQUFDLENBQUM7UUFFSCxlQUFlO1FBQ2YsTUFBTSxhQUFhLEdBQUcsSUFBSSw4Q0FBb0IsQ0FBQyxJQUFJLEVBQUUsZUFBZSxFQUFFO1lBQ3BFLFdBQVcsRUFBRTtnQkFDWCxVQUFVLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxTQUFTO2dCQUNoQyxlQUFlLEVBQUUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDO2FBQ2pFO1NBQ0YsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLEtBQUssQ0FBQyxrQkFBa0IsQ0FBQyxhQUFhLENBQUMsQ0FBQztRQUU3QyxjQUFjLENBQUMsU0FBUyxDQUFDLE1BQU0sRUFBRSxJQUFJLGtDQUFpQixDQUFDLGFBQWEsQ0FBQyxFQUFFO1lBQ3JFLGVBQWUsRUFBRSxDQUFDLEVBQUUsVUFBVSxFQUFFLEtBQUssRUFBRSxDQUFDO1lBQ3hDLGlCQUFpQixFQUFFLGtDQUFpQixDQUFDLEdBQUc7U0FDekMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs7QUE3T0gsNENBOE9DIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQXV0aG9yaXphdGlvblR5cGUsXG4gIEF3c0ludGVncmF0aW9uLFxuICBFbmRwb2ludFR5cGUsXG4gIElSZXN0QXBpLFxuICBMYW1iZGFJbnRlZ3JhdGlvbixcbiAgUmVzdEFwaSxcbn0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1hcGlnYXRld2F5XCI7XG5pbXBvcnQgeyBJVXNlclBvb2wgfSBmcm9tIFwiYXdzLWNkay1saWIvYXdzLWNvZ25pdG9cIjtcbmltcG9ydCB7IElUYWJsZSB9IGZyb20gXCJhd3MtY2RrLWxpYi9hd3MtZHluYW1vZGJcIjtcbmltcG9ydCB7XG4gIEVmZmVjdCxcbiAgSVJvbGUsXG4gIE1hbmFnZWRQb2xpY3ksXG4gIFBvbGljeVN0YXRlbWVudCxcbiAgUm9sZSxcbiAgU2VydmljZVByaW5jaXBhbCxcbn0gZnJvbSBcImF3cy1jZGstbGliL2F3cy1pYW1cIjtcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gXCJjb25zdHJ1Y3RzXCI7XG5pbXBvcnQgeyBBcGlLZXlBdHRyaWJ1dGUsIEFwaUtleVN0b3JlIH0gZnJvbSBcIi4vQXBpS2V5U3RvcmVcIjtcbmltcG9ydCB7IEFwaUtleUNyZWF0aW9uRnVuY3Rpb24gfSBmcm9tIFwiLi9sYW1iZGFzL2FwaS1rZXktY3JlYXRpb24tZnVuY3Rpb25cIjtcbmltcG9ydCB7IEFwaUtleVVwZGF0ZUZ1bmN0aW9uIH0gZnJvbSBcIi4vbGFtYmRhcy9hcGkta2V5LXVwZGF0ZS1mdW5jdGlvblwiO1xuXG5jb25zdCBNQU5BR0VNRU5UX1BBVEggPSBcImFwaUtleXNcIjtcblxuLyoqXG4gKiBQcm9wZXJ0aWVzIHRvIGluc3RhbnRpYXRlIHRoZSB7QGxpbmsgQXBpS2V5TWFuYWdlbWVudH0gY29tcG9uZW50LlxuICovXG5leHBvcnQgaW50ZXJmYWNlIEFwaUtleU1hbmFnZW1lbnRQcm9wcyB7XG4gIC8qKlxuICAgKiBUaGUgdXNlciBwb29sIHRvIGJlIHVzZWQuXG4gICAqL1xuICByZWFkb25seSB1c2VyUG9vbDogSVVzZXJQb29sO1xuXG4gIC8qKlxuICAgKiBUaGUge0BsaW5rIEFwaUtleVN0b3JlfSBjb21wb25lbnQuXG4gICAqL1xuICByZWFkb25seSBhcGlLZXlzOiBBcGlLZXlTdG9yZTtcbn1cblxuLyoqXG4gKiBDb21wb25lbnQgdGhhdCBwcm92aWRlcyBhIFJFU1QgQVBJIHRvIG1hbmFnZSAoY3JlYXRlLCBtb2RpZnksIGRlbGV0ZSkgQVBJIGtleXMuXG4gKi9cbmV4cG9ydCBjbGFzcyBBcGlLZXlNYW5hZ2VtZW50IGV4dGVuZHMgQ29uc3RydWN0IHtcbiAgcHJpdmF0ZSBleHRlcm5hbFVybDogc3RyaW5nO1xuICBwcml2YXRlIHJlc3RBcGk6IElSZXN0QXBpO1xuICBwcml2YXRlIHRhYmxlOiBJVGFibGU7XG4gIHByaXZhdGUgYXR0cmlidXRlczogQXBpS2V5QXR0cmlidXRlW107XG4gIC8qKlxuICAgKiBDcmVhdGUgYSBuZXcgaW5zdGFuY2Ugb2YgdGhlIGNvbXBvbmVudC5cbiAgICogQHBhcmFtIHNjb3BlIFRoZSBzY29wZSB0byBiZSB1c2VkLlxuICAgKiBAcGFyYW0gaWQgVGhlIElEIHVzZWQgZm9yIHRoZSBjb21wb25lbnQgaW5zdGFuY2UuXG4gICAqIEBwYXJhbSBwcm9wcyBUaGUge0BsaW5rIEFwaUtleU1hbmFnZW1lbnRQcm9wc30gcmVxdWlyZWQgZm9yIGNyZWF0aW5nIHRoZSBpbnN0YW5jZS5cbiAgICovXG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBBcGlLZXlNYW5hZ2VtZW50UHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuXG4gICAgdGhpcy5hdHRyaWJ1dGVzID0gcHJvcHMuYXBpS2V5cy5hdHRyaWJ1dGVzO1xuXG4gICAgdGhpcy50YWJsZSA9IHByb3BzLmFwaUtleXMuYXBpS2V5VGFibGU7XG5cbiAgICBjb25zdCByZXN0QXBpID0gbmV3IFJlc3RBcGkodGhpcywgXCJNYW5hZ2VtZW50QXBpXCIsIHtcbiAgICAgIHJlc3RBcGlOYW1lOiBcIkFQSSBLZXkgTWFuYWdlbWVudFwiLFxuICAgICAgZGVzY3JpcHRpb246IFwiQVBJIGZvciBtYW5hZ2luZyBBUEkga2V5c1wiLFxuICAgICAgZW5kcG9pbnRDb25maWd1cmF0aW9uOiB7XG4gICAgICAgIHR5cGVzOiBbRW5kcG9pbnRUeXBlLlJFR0lPTkFMXSxcbiAgICAgIH0sXG4gICAgfSk7XG5cbiAgICB0aGlzLmV4dGVybmFsVXJsID0gYCR7cmVzdEFwaS51cmx9YDtcbiAgICB0aGlzLnJlc3RBcGkgPSByZXN0QXBpO1xuXG4gICAgdGhpcy5zZXRVcFJlc291cmNlcygpO1xuICB9XG5cbiAgLyoqXG4gICAqIEdldCB0aGUgYmFzZSBVUkwgdG8gbWFuYWdlIHRoZSBrZXlzLlxuICAgKi9cbiAgcHVibGljIGdldCBiYXNlVXJsKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuZXh0ZXJuYWxVcmw7XG4gIH1cblxuICAvKipcbiAgICogR2V0IHRoZSBwYXRoIHJlbGF0aXZlIHRvIHRoZSBiYXNlIHVybCB0byBtYW5hZ2UgYWxsIGtleXMuXG4gICAqL1xuICBwdWJsaWMgZ2V0IGtleXNNYW5hZ2VtZW50UGF0aCgpOiBzdHJpbmcge1xuICAgIHJldHVybiBNQU5BR0VNRU5UX1BBVEg7XG4gIH1cblxuICAvKipcbiAgICogR2V0IHRoZSBwYXRoIHJlbGF0aXZlIHRvIHRoZSBiYXNlIHVybCB0byBtYW5hZ2UgYSBzaW5nbGUga2V5LiBDb250YWluc1xuICAgKiBhIHBsYWNlaG9sZGVyIHtpZH0gdGhhdCBoYXMgdG8gcmVwbGFjZWQgYnkgdGhlIElEIG9mIHRoZSBlbGVtZW50IHRvIGJlIG1hbmFnZWQuXG4gICAqL1xuICBwdWJsaWMgZ2V0IGtleU1hbmFnZW1lbnRQYXRoKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMua2V5c01hbmFnZW1lbnRQYXRoICsgXCIve2lkfVwiO1xuICB9XG5cbiAgLyoqXG4gICAqIEdyYW50IGNvbm5lY3Rpb24gcHJpdmlsZWdlcyB0byB0aGUgcGFzc2VkIHJvbGUuXG4gICAqIEBwYXJhbSByb2xlIFRoZSByb2xlIHRvIGFsbG93IGFjY2VzcyB0byB0aGUgQVBJLlxuICAgKi9cbiAgcHVibGljIGFsbG93Q29ubmVjdGlvbihyb2xlOiBJUm9sZSk6IHZvaWQge1xuICAgIGNvbnN0IHN0YXRlbWVudCA9IG5ldyBQb2xpY3lTdGF0ZW1lbnQoKTtcbiAgICBzdGF0ZW1lbnQuYWRkUmVzb3VyY2VzKHRoaXMucmVzdEFwaS5hcm5Gb3JFeGVjdXRlQXBpKCkpO1xuICAgIHN0YXRlbWVudC5hZGRBY3Rpb25zKFwiZXhlY3V0ZS1hcGk6SW52b2tlXCIpO1xuICAgIHN0YXRlbWVudC5lZmZlY3QgPSBFZmZlY3QuQUxMT1c7XG4gICAgcm9sZS5hZGRNYW5hZ2VkUG9saWN5KFxuICAgICAgbmV3IE1hbmFnZWRQb2xpY3kocm9sZSwgXCJBcGlDbGllbnRNYW5hZ2VtZW50QWNjZXNzUG9saWN5XCIsIHtcbiAgICAgICAgc3RhdGVtZW50czogW3N0YXRlbWVudF0sXG4gICAgICB9KSxcbiAgICApO1xuICB9XG5cbiAgLyoqXG4gICAqIFNldCB1cCB0aGUgYXZhaWxhYmxlIHJlc291cmNlcyBmb3IgdGhlIEFQSS5cbiAgICovXG4gIHByaXZhdGUgc2V0VXBSZXNvdXJjZXMoKTogdm9pZCB7XG4gICAgLy8gQ3JlYXRlIElBTSByb2xlIGZvciBBUEkgR2F0ZXdheSB0byBhY2Nlc3MgRHluYW1vREJcbiAgICBjb25zdCBhcGlHYXRld2F5Um9sZSA9IG5ldyBSb2xlKHRoaXMsIFwiQXBpR2F0ZXdheUR5bmFtb0RCUm9sZVwiLCB7XG4gICAgICBhc3N1bWVkQnk6IG5ldyBTZXJ2aWNlUHJpbmNpcGFsKFwiYXBpZ2F0ZXdheS5hbWF6b25hd3MuY29tXCIpLFxuICAgIH0pO1xuXG4gICAgdGhpcy50YWJsZS5ncmFudFJlYWRXcml0ZURhdGEoYXBpR2F0ZXdheVJvbGUpO1xuXG4gICAgLy8gUmVzb3VyY2UgZm9yIGFjdGlvbnMgb24gYWxsIGtleXNcbiAgICBjb25zdCBhcGlLZXlzUmVzb3VyY2UgPSB0aGlzLnJlc3RBcGkucm9vdC5hZGRSZXNvdXJjZShNQU5BR0VNRU5UX1BBVEgpO1xuICAgIC8vIFJlc291cmNlIGZvciBhY3Rpb25zIG9uIGEgc2luZ2xlIGtleVxuICAgIGNvbnN0IGFwaUtleVJlc291cmNlID0gYXBpS2V5c1Jlc291cmNlLmFkZFJlc291cmNlKFwie2lkfVwiKTtcblxuICAgIC8vIEdldCBhbGwga2V5c1xuICAgIGFwaUtleXNSZXNvdXJjZS5hZGRNZXRob2QoXG4gICAgICBcIkdFVFwiLFxuICAgICAgbmV3IEF3c0ludGVncmF0aW9uKHtcbiAgICAgICAgc2VydmljZTogXCJkeW5hbW9kYlwiLFxuICAgICAgICBhY3Rpb246IFwiU2NhblwiLFxuICAgICAgICBvcHRpb25zOiB7XG4gICAgICAgICAgY3JlZGVudGlhbHNSb2xlOiBhcGlHYXRld2F5Um9sZSxcbiAgICAgICAgICByZXF1ZXN0VGVtcGxhdGVzOiB7XG4gICAgICAgICAgICBcImFwcGxpY2F0aW9uL2pzb25cIjogSlNPTi5zdHJpbmdpZnkoe1xuICAgICAgICAgICAgICBUYWJsZU5hbWU6IHRoaXMudGFibGUudGFibGVOYW1lLFxuICAgICAgICAgICAgICBDb25zaXN0ZW50UmVhZDogdHJ1ZSxcbiAgICAgICAgICAgIH0pLFxuICAgICAgICAgIH0sXG4gICAgICAgICAgaW50ZWdyYXRpb25SZXNwb25zZXM6IFtcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgc3RhdHVzQ29kZTogXCIyMDBcIixcbiAgICAgICAgICAgICAgcmVzcG9uc2VUZW1wbGF0ZXM6IHtcbiAgICAgICAgICAgICAgICBcImFwcGxpY2F0aW9uL2pzb25cIjogYCNzZXQoJGlucHV0Um9vdCA9ICRpbnB1dC5wYXRoKCckJykpXG4gICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIFwia2V5c1wiOiBbXG4gICAgICAgICAgICAgICAgICAgICAgI2ZvcmVhY2goJGVsZW0gaW4gJGlucHV0Um9vdC5JdGVtcylcbiAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICBcImlkXCI6IFwiJGVsZW0uaWQuU1wiLFxuICAgICAgICAgICAgICAgICAgICAgICAgXCJjcmVhdGVkQXRcIjogXCIkZWxlbS5jcmVhdGVkQXQuU1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAjZm9yZWFjaCgkYXR0cmlidXRlIGluICR7SlNPTi5zdHJpbmdpZnkodGhpcy5hdHRyaWJ1dGVzKX0pXG4gICAgICAgICAgICAgICAgICAgICAgICAgICNpZigkZWxlbVskYXR0cmlidXRlLmFwaU5hbWVdLlMgIT0gJycpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgLFwiJGF0dHJpYnV0ZS5hcGlOYW1lXCI6IFwiJGVsZW1bJGF0dHJpYnV0ZS5hcGlOYW1lXS5TXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgI2VuZFxuICAgICAgICAgICAgICAgICAgICAgICAgI2VuZFxuICAgICAgICAgICAgICAgICAgICAgIH0jaWYoJGZvcmVhY2guaGFzTmV4dCksI2VuZFxuICAgICAgICAgICAgICAgICAgICAgICNlbmRcbiAgICAgICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgICAgICAgfWAsXG4gICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB9LFxuICAgICAgICAgIF0sXG4gICAgICAgIH0sXG4gICAgICB9KSxcbiAgICAgIHtcbiAgICAgICAgbWV0aG9kUmVzcG9uc2VzOiBbeyBzdGF0dXNDb2RlOiBcIjIwMFwiIH1dLFxuICAgICAgICBhdXRob3JpemF0aW9uVHlwZTogQXV0aG9yaXphdGlvblR5cGUuSUFNLFxuICAgICAgfSxcbiAgICApO1xuXG4gICAgLy8gR2V0IGEgc2luZ2xlIGtleVxuICAgIGFwaUtleVJlc291cmNlLmFkZE1ldGhvZChcbiAgICAgIFwiR0VUXCIsXG4gICAgICBuZXcgQXdzSW50ZWdyYXRpb24oe1xuICAgICAgICBzZXJ2aWNlOiBcImR5bmFtb2RiXCIsXG4gICAgICAgIGFjdGlvbjogXCJHZXRJdGVtXCIsXG4gICAgICAgIG9wdGlvbnM6IHtcbiAgICAgICAgICBjcmVkZW50aWFsc1JvbGU6IGFwaUdhdGV3YXlSb2xlLFxuICAgICAgICAgIHJlcXVlc3RUZW1wbGF0ZXM6IHtcbiAgICAgICAgICAgIFwiYXBwbGljYXRpb24vanNvblwiOiBKU09OLnN0cmluZ2lmeSh7XG4gICAgICAgICAgICAgIFRhYmxlTmFtZTogdGhpcy50YWJsZS50YWJsZU5hbWUsXG4gICAgICAgICAgICAgIEtleToge1xuICAgICAgICAgICAgICAgIGlkOiB7IFM6IFwiJG1ldGhvZC5yZXF1ZXN0LnBhdGguaWRcIiB9LFxuICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICBDb25zaXN0ZW50UmVhZDogdHJ1ZSxcbiAgICAgICAgICAgIH0pLFxuICAgICAgICAgIH0sXG4gICAgICAgICAgaW50ZWdyYXRpb25SZXNwb25zZXM6IFtcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgc3RhdHVzQ29kZTogXCIyMDBcIixcbiAgICAgICAgICAgICAgcmVzcG9uc2VUZW1wbGF0ZXM6IHtcbiAgICAgICAgICAgICAgICBcImFwcGxpY2F0aW9uL2pzb25cIjogYCNzZXQoJGlucHV0Um9vdCA9ICRpbnB1dC5wYXRoKCckJykpXG4gICAgICAgICAgICAgICAgICAjaWYoJGlucHV0Um9vdC5JdGVtKVxuICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBcImlkXCI6IFwiJGlucHV0Um9vdC5JdGVtLmlkLlNcIixcbiAgICAgICAgICAgICAgICAgICAgXCJjcmVhdGVkQXRcIjogXCIkaW5wdXRSb290Lkl0ZW0uY3JlYXRlZEF0LlNcIlxuICAgICAgICAgICAgICAgICAgICAjZm9yZWFjaCgkYXR0cmlidXRlIGluICR7SlNPTi5zdHJpbmdpZnkodGhpcy5hdHRyaWJ1dGVzKX0pXG4gICAgICAgICAgICAgICAgICAgICAgI2lmKCRpbnB1dFJvb3QuSXRlbVskYXR0cmlidXRlLmFwaU5hbWVdLlMgIT0gJycpXG4gICAgICAgICAgICAgICAgICAgICAgICAsXCIkYXR0cmlidXRlLmFwaU5hbWVcIjogXCIkaW5wdXRSb290Lkl0ZW1bJGF0dHJpYnV0ZS5hcGlOYW1lXS5TXCJcbiAgICAgICAgICAgICAgICAgICAgICAjZW5kXG4gICAgICAgICAgICAgICAgICAgICNlbmRcbiAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICNlbHNlXG4gICAgICAgICAgICAgICAgICB7fVxuICAgICAgICAgICAgICAgICAgI2VuZGAsXG4gICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB9LFxuICAgICAgICAgIF0sXG4gICAgICAgIH0sXG4gICAgICB9KSxcbiAgICAgIHtcbiAgICAgICAgbWV0aG9kUmVzcG9uc2VzOiBbeyBzdGF0dXNDb2RlOiBcIjIwMFwiIH1dLFxuICAgICAgICBhdXRob3JpemF0aW9uVHlwZTogQXV0aG9yaXphdGlvblR5cGUuSUFNLFxuICAgICAgfSxcbiAgICApO1xuXG4gICAgLy8gRGVsZXRlIGEga2V5XG4gICAgYXBpS2V5UmVzb3VyY2UuYWRkTWV0aG9kKFxuICAgICAgXCJERUxFVEVcIixcbiAgICAgIG5ldyBBd3NJbnRlZ3JhdGlvbih7XG4gICAgICAgIHNlcnZpY2U6IFwiZHluYW1vZGJcIixcbiAgICAgICAgYWN0aW9uOiBcIkRlbGV0ZUl0ZW1cIixcbiAgICAgICAgb3B0aW9uczoge1xuICAgICAgICAgIGNyZWRlbnRpYWxzUm9sZTogYXBpR2F0ZXdheVJvbGUsXG4gICAgICAgICAgcmVxdWVzdFRlbXBsYXRlczoge1xuICAgICAgICAgICAgXCJhcHBsaWNhdGlvbi9qc29uXCI6IEpTT04uc3RyaW5naWZ5KHtcbiAgICAgICAgICAgICAgVGFibGVOYW1lOiB0aGlzLnRhYmxlLnRhYmxlTmFtZSxcbiAgICAgICAgICAgICAgS2V5OiB7XG4gICAgICAgICAgICAgICAgaWQ6IHsgUzogXCIkbWV0aG9kLnJlcXVlc3QucGF0aC5pZFwiIH0sXG4gICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB9KSxcbiAgICAgICAgICB9LFxuICAgICAgICAgIGludGVncmF0aW9uUmVzcG9uc2VzOiBbXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgIHN0YXR1c0NvZGU6IFwiMjAwXCIsXG4gICAgICAgICAgICAgIHJlc3BvbnNlVGVtcGxhdGVzOiB7XG4gICAgICAgICAgICAgICAgXCJhcHBsaWNhdGlvbi9qc29uXCI6ICd7XCJtZXNzYWdlXCI6IFwiSXRlbSBkZWxldGVkIHN1Y2Nlc3NmdWxseVwifScsXG4gICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB9LFxuICAgICAgICAgIF0sXG4gICAgICAgIH0sXG4gICAgICB9KSxcbiAgICAgIHtcbiAgICAgICAgbWV0aG9kUmVzcG9uc2VzOiBbeyBzdGF0dXNDb2RlOiBcIjIwMFwiIH1dLFxuICAgICAgICBhdXRob3JpemF0aW9uVHlwZTogQXV0aG9yaXphdGlvblR5cGUuSUFNLFxuICAgICAgfSxcbiAgICApO1xuXG4gICAgLy8gQ3JlYXRlIGEga2V5XG4gICAgY29uc3QgY3JlYXRpb25IYW5kbGVyID0gbmV3IEFwaUtleUNyZWF0aW9uRnVuY3Rpb24oXG4gICAgICB0aGlzLFxuICAgICAgXCJDcmVhdGlvbkhhbmRsZXJcIixcbiAgICAgIHsgZW52aXJvbm1lbnQ6IHsgVEFCTEVfTkFNRTogdGhpcy50YWJsZS50YWJsZU5hbWUgfSB9LFxuICAgICk7XG5cbiAgICB0aGlzLnRhYmxlLmdyYW50UmVhZFdyaXRlRGF0YShjcmVhdGlvbkhhbmRsZXIpO1xuXG4gICAgYXBpS2V5c1Jlc291cmNlLmFkZE1ldGhvZChcIlBPU1RcIiwgbmV3IExhbWJkYUludGVncmF0aW9uKGNyZWF0aW9uSGFuZGxlciksIHtcbiAgICAgIG1ldGhvZFJlc3BvbnNlczogW3sgc3RhdHVzQ29kZTogXCIyMDBcIiB9XSxcbiAgICAgIGF1dGhvcml6YXRpb25UeXBlOiBBdXRob3JpemF0aW9uVHlwZS5JQU0sXG4gICAgfSk7XG5cbiAgICAvLyBVcGRhdGUgYSBrZXlcbiAgICBjb25zdCB1cGRhdGVIYW5kbGVyID0gbmV3IEFwaUtleVVwZGF0ZUZ1bmN0aW9uKHRoaXMsIFwiVXBkYXRlSGFuZGxlclwiLCB7XG4gICAgICBlbnZpcm9ubWVudDoge1xuICAgICAgICBUQUJMRV9OQU1FOiB0aGlzLnRhYmxlLnRhYmxlTmFtZSxcbiAgICAgICAgQVRUUklCVVRFX05BTUVTOiB0aGlzLmF0dHJpYnV0ZXMubWFwKChmKSA9PiBmLmFwaU5hbWUpLmpvaW4oXCIsXCIpLFxuICAgICAgfSxcbiAgICB9KTtcblxuICAgIHRoaXMudGFibGUuZ3JhbnRSZWFkV3JpdGVEYXRhKHVwZGF0ZUhhbmRsZXIpO1xuXG4gICAgYXBpS2V5UmVzb3VyY2UuYWRkTWV0aG9kKFwiUE9TVFwiLCBuZXcgTGFtYmRhSW50ZWdyYXRpb24odXBkYXRlSGFuZGxlciksIHtcbiAgICAgIG1ldGhvZFJlc3BvbnNlczogW3sgc3RhdHVzQ29kZTogXCIyMDBcIiB9XSxcbiAgICAgIGF1dGhvcml6YXRpb25UeXBlOiBBdXRob3JpemF0aW9uVHlwZS5JQU0sXG4gICAgfSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IUserPool } from "aws-cdk-lib/aws-cognito";
|
|
2
|
+
import { Construct } from "constructs";
|
|
3
|
+
import { ApiKeyStore } from "./ApiKeyStore";
|
|
4
|
+
/**
|
|
5
|
+
* Properties to instantiate the {@link ApiKeyPreTokenHandler} component.
|
|
6
|
+
*/
|
|
7
|
+
export interface ApiKeyPreTokenHandlerProps {
|
|
8
|
+
/**
|
|
9
|
+
* The user pool to be used.
|
|
10
|
+
*/
|
|
11
|
+
readonly userPool: IUserPool;
|
|
12
|
+
/**
|
|
13
|
+
* The {@link ApiKeyStore} component.
|
|
14
|
+
*/
|
|
15
|
+
readonly apiKeys: ApiKeyStore;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Component that provides pre-token lambda that enhances the Cognito access token.
|
|
19
|
+
*/
|
|
20
|
+
export declare class ApiKeyPreTokenHandler extends Construct {
|
|
21
|
+
/**
|
|
22
|
+
* Create a new instance of the component.
|
|
23
|
+
* @param scope The scope to be used.
|
|
24
|
+
* @param id The ID used for the component instance.
|
|
25
|
+
* @param props The {@link ApiKeyPreTokenHandlerProps} required for creating the instance.
|
|
26
|
+
*/
|
|
27
|
+
constructor(scope: Construct, id: string, props: ApiKeyPreTokenHandlerProps);
|
|
28
|
+
}
|