@gemeentenijmegen/webapp 0.0.1
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 +4519 -0
- package/API.md +762 -0
- package/LICENSE +287 -0
- package/README.md +1 -0
- package/assets/webapp/auth/auth.lambda/index.js +12295 -0
- package/assets/webapp/configuration-layer/authentication.json +1 -0
- package/assets/webapp/login/login.lambda/index.js +10242 -0
- package/assets/webapp/logout/logout.lambda/index.js +1141 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +17 -0
- package/lib/webapp/Api.d.ts +63 -0
- package/lib/webapp/Api.js +140 -0
- package/lib/webapp/Cloudfront.d.ts +86 -0
- package/lib/webapp/Cloudfront.js +259 -0
- package/lib/webapp/OIDCConnectionProfile.d.ts +40 -0
- package/lib/webapp/OIDCConnectionProfile.js +3 -0
- package/lib/webapp/SessionsTable.d.ts +10 -0
- package/lib/webapp/SessionsTable.js +22 -0
- package/lib/webapp/Webapp.d.ts +20 -0
- package/lib/webapp/Webapp.js +57 -0
- package/lib/webapp/WebappOptions.d.ts +69 -0
- package/lib/webapp/WebappOptions.js +3 -0
- package/lib/webapp/Webpage.d.ts +49 -0
- package/lib/webapp/Webpage.js +91 -0
- package/lib/webapp/auth/AuthRequestHandler.d.ts +15 -0
- package/lib/webapp/auth/AuthRequestHandler.js +77 -0
- package/lib/webapp/auth/auth-function.d.ts +13 -0
- package/lib/webapp/auth/auth-function.js +23 -0
- package/lib/webapp/auth/auth.lambda.d.ts +2 -0
- package/lib/webapp/auth/auth.lambda.js +36 -0
- package/lib/webapp/login/login-function.d.ts +13 -0
- package/lib/webapp/login/login-function.js +23 -0
- package/lib/webapp/login/login.lambda.d.ts +2 -0
- package/lib/webapp/login/login.lambda.js +29 -0
- package/lib/webapp/login/loginRequestHandler.d.ts +19 -0
- package/lib/webapp/login/loginRequestHandler.js +63 -0
- package/lib/webapp/logout/handleLogoutRequest.d.ts +2 -0
- package/lib/webapp/logout/handleLogoutRequest.js +27 -0
- package/lib/webapp/logout/logout-function.d.ts +13 -0
- package/lib/webapp/logout/logout-function.js +23 -0
- package/lib/webapp/logout/logout.lambda.d.ts +1 -0
- package/lib/webapp/logout/logout.lambda.js +24 -0
- package/lib/webapp/util/Files.d.ts +13 -0
- package/lib/webapp/util/Files.js +29 -0
- package/lib/webapp/util/OpenIDConnect.d.ts +46 -0
- package/lib/webapp/util/OpenIDConnect.js +120 -0
- package/lib/webapp/util/render.d.ts +11 -0
- package/lib/webapp/util/render.js +33 -0
- package/node_modules/@aws-crypto/crc32/CHANGELOG.md +76 -0
- package/node_modules/@aws-crypto/crc32/LICENSE +201 -0
- package/node_modules/@aws-crypto/crc32/README.md +16 -0
- package/node_modules/@aws-crypto/crc32/build/aws_crc32.d.ts +7 -0
- package/node_modules/@aws-crypto/crc32/build/aws_crc32.js +31 -0
- package/node_modules/@aws-crypto/crc32/build/aws_crc32.js.map +1 -0
- package/node_modules/@aws-crypto/crc32/build/index.d.ts +7 -0
- package/node_modules/@aws-crypto/crc32/build/index.js +108 -0
- package/node_modules/@aws-crypto/crc32/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/crc32/package.json +28 -0
- package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +24 -0
- package/node_modules/@aws-crypto/crc32/src/index.ts +92 -0
- package/node_modules/@aws-crypto/crc32/tsconfig.json +23 -0
- package/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +46 -0
- package/node_modules/@aws-crypto/ie11-detection/LICENSE +202 -0
- package/node_modules/@aws-crypto/ie11-detection/README.md +20 -0
- package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.d.ts +19 -0
- package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js +3 -0
- package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/Key.d.ts +12 -0
- package/node_modules/@aws-crypto/ie11-detection/build/Key.js +3 -0
- package/node_modules/@aws-crypto/ie11-detection/build/Key.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.d.ts +12 -0
- package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js +3 -0
- package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.d.ts +33 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js +3 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.d.ts +21 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js +32 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/index.d.ts +5 -0
- package/node_modules/@aws-crypto/ie11-detection/build/index.js +9 -0
- package/node_modules/@aws-crypto/ie11-detection/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/ie11-detection/package.json +26 -0
- package/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +21 -0
- package/node_modules/@aws-crypto/ie11-detection/src/Key.ts +12 -0
- package/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +13 -0
- package/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +88 -0
- package/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +59 -0
- package/node_modules/@aws-crypto/ie11-detection/src/index.ts +5 -0
- package/node_modules/@aws-crypto/ie11-detection/tsconfig.json +17 -0
- package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +88 -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/constants.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/constants.js +43 -0
- package/node_modules/@aws-crypto/sha256-browser/build/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.d.ts +8 -0
- package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js +35 -0
- package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.d.ts +9 -0
- package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js +80 -0
- package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/index.d.ts +3 -0
- package/node_modules/@aws-crypto/sha256-browser/build/index.js +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js +11 -0
- package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js +56 -0
- package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.js +284 -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 +34 -0
- package/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +108 -0
- package/node_modules/@aws-crypto/sha256-browser/src/index.ts +3 -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 +22 -0
- package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +86 -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/RawSha256.d.ts +17 -0
- package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js +124 -0
- package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/constants.d.ts +20 -0
- package/node_modules/@aws-crypto/sha256-js/build/constants.js +98 -0
- package/node_modules/@aws-crypto/sha256-js/build/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/index.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/index.js +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/jsSha256.d.ts +12 -0
- package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js +85 -0
- package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.d.ts +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js +322 -0
- package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/sha256-js/package.json +28 -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 +17 -0
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +46 -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/index.d.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/index.js +5 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.d.ts +4 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +69 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +26 -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 +16 -0
- package/node_modules/@aws-crypto/util/CHANGELOG.md +47 -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/convertToBuffer.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/convertToBuffer.js +24 -0
- package/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/build/index.js +14 -0
- package/node_modules/@aws-crypto/util/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/isEmptyData.js +13 -0
- package/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/numToUint8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/numToUint8.js +15 -0
- package/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +20 -0
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/util/package.json +31 -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 +23 -0
- package/node_modules/@aws-lambda-powertools/commons/LICENSE +14 -0
- package/node_modules/@aws-lambda-powertools/commons/README.md +120 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/Utility.d.ts +72 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/Utility.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/Utility.js +89 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.js +59 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.js +24 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.d.ts +50 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.js +15 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.d.ts +76 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.js +107 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/index.d.ts +9 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/index.js +37 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.d.ts +50 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.js +71 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.d.ts +12 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.js +18 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.js +18 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.js +17 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.js +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.js +27 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.d.ts +40 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.js +57 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.js +17 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/version.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/version.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/version.js +5 -0
- package/node_modules/@aws-lambda-powertools/commons/package.json +30 -0
- package/node_modules/@aws-lambda-powertools/logger/LICENSE +14 -0
- package/node_modules/@aws-lambda-powertools/logger/README.md +117 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/Logger.d.ts +546 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/Logger.js +856 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.d.ts +94 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.js +123 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.d.ts +41 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.js +75 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.d.ts +22 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.d.ts +21 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.js +35 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.js +19 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/helpers.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/helpers.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/helpers.js +11 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/index.js +20 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.js +43 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.d.ts +7 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.js +17 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.d.ts +30 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.js +69 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.d.ts +58 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.d.ts +82 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.js +17 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/logger/package.json +44 -0
- package/node_modules/@aws-sdk/client-dynamodb/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-dynamodb/README.md +654 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/DynamoDB.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/DynamoDBClient.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchExecuteStatementCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchGetItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchWriteItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateBackupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateGlobalTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteBackupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeBackupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeContinuousBackupsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeContributorInsightsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeEndpointsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeExportCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeGlobalTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeGlobalTableSettingsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeImportCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeKinesisStreamingDestinationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeLimitsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTableReplicaAutoScalingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTimeToLiveCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DisableKinesisStreamingDestinationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/EnableKinesisStreamingDestinationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExecuteStatementCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExecuteTransactionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExportTableToPointInTimeCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/GetItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ImportTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListBackupsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListContributorInsightsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListExportsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListGlobalTablesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListImportsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListTablesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListTagsOfResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/PutItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/QueryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/RestoreTableFromBackupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/RestoreTableToPointInTimeCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ScanCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TagResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TransactGetItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TransactWriteItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UntagResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateContinuousBackupsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateContributorInsightsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateGlobalTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateGlobalTableSettingsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateKinesisStreamingDestinationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTableReplicaAutoScalingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTimeToLiveCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/index.js +6772 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/DynamoDBServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListContributorInsightsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListExportsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListImportsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListTablesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/QueryPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ScanPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/protocols/Aws_json1_0.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.browser.js +40 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.js +52 -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 +34 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeExtensions.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/waitForTableExists.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/waitForTableNotExists.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDB.js +115 -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 +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchGetItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchWriteItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateBackupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateGlobalTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteBackupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeBackupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContinuousBackupsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContributorInsightsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeEndpointsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeExportCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableSettingsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeImportCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeLimitsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTimeToLiveCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteStatementCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteTransactionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExportTableToPointInTimeCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ImportTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListBackupsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListContributorInsightsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListExportsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListGlobalTablesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListImportsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTablesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTagsOfResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/QueryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableFromBackupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableToPointInTimeCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ScanCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TagResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactGetItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactWriteItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UntagResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContinuousBackupsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContributorInsightsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableSettingsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTimeToLiveCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/index.js +54 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/endpointResolver.js +8 -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/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/models_0.js +640 -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/protocols/Aws_json1_0.js +4494 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.browser.js +35 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.js +47 -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 +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeExtensions.js +21 -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 +404 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDBClient.d.ts +248 -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 +61 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +213 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchGetItemCommand.d.ts +339 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchWriteItemCommand.d.ts +377 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateBackupCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateGlobalTableCommand.d.ts +183 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateTableCommand.d.ts +372 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteBackupCommand.d.ts +171 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteItemCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteTableCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeBackupCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContributorInsightsCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeEndpointsCommand.d.ts +62 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeExportCommand.d.ts +106 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +170 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeImportCommand.d.ts +139 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeLimitsCommand.d.ts +150 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableCommand.d.ts +262 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +152 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTimeToLiveCommand.d.ts +70 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +228 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +519 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetItemCommand.d.ts +242 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ImportTableCommand.d.ts +223 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListBackupsCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListContributorInsightsCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListExportsCommand.d.ts +86 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListGlobalTablesCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListImportsCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand.d.ts +88 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTagsOfResourceCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutItemCommand.d.ts +285 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/QueryCommand.d.ts +316 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableFromBackupCommand.d.ts +300 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +332 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ScanCommand.d.ts +314 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TagResourceCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +475 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +644 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UntagResourceCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContributorInsightsCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableCommand.d.ts +158 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +264 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateItemCommand.d.ts +297 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableCommand.d.ts +394 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +221 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTimeToLiveCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/index.d.ts +54 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/endpointResolver.d.ts +5 -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 +32 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/DynamoDBServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +10435 -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/protocols/Aws_json1_0.d.ts +488 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +941 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +445 -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 +44 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +54 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -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 +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +1858 -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/protocols/Aws_json1_0.d.ts +650 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +102 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +93 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -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/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 +415 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/SecretsManager.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/SecretsManagerClient.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/BatchGetSecretValueCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/CancelRotateSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/CreateSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DeleteSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DescribeSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetRandomPasswordCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetSecretValueCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ListSecretVersionIdsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ListSecretsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/PutResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/PutSecretValueCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RemoveRegionsFromReplicationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ReplicateSecretToRegionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RestoreSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RotateSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/StopReplicationToReplicaCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/TagResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UntagResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UpdateSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UpdateSecretVersionStageCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ValidateResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/endpointResolver.js +12 -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/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/index.js +2468 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/SecretsManagerServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/BatchGetSecretValuePaginator.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/ListSecretVersionIdsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/ListSecretsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/protocols/Aws_json1_1.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.js +50 -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 +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeExtensions.js +1 -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 +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/BatchGetSecretValueCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CancelRotateSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CreateSecretCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DescribeSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetRandomPasswordCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetSecretValueCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretVersionIdsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutSecretValueCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RemoveRegionsFromReplicationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ReplicateSecretToRegionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RestoreSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RotateSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/StopReplicationToReplicaCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/TagResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UntagResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretVersionStageCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ValidateResourcePolicyCommand.js +24 -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 +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/endpointResolver.js +8 -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 +7 -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/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/models_0.js +209 -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/protocols/Aws_json1_1.js +1527 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.js +45 -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 +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeExtensions.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManager.d.ts +196 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManagerClient.d.ts +217 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/BatchGetSecretValueCommand.d.ts +184 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CancelRotateSecretCommand.d.ts +122 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CreateSecretCommand.d.ts +190 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteResourcePolicyCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteSecretCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DescribeSecretCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetRandomPasswordCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetResourcePolicyCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetSecretValueCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretVersionIdsCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretsCommand.d.ts +180 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutResourcePolicyCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutSecretValueCommand.d.ts +160 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +104 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RestoreSecretCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RotateSecretCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/StopReplicationToReplicaCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/TagResourceCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UntagResourceCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretCommand.d.ts +194 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +171 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ValidateResourcePolicyCommand.d.ts +134 -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 +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/endpointResolver.d.ts +5 -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 +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/index.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/SecretsManagerServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/models_0.d.ts +1959 -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/protocols/Aws_json1_1.d.ts +209 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.native.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.shared.d.ts +19 -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/ts3.4/SecretsManager.d.ts +398 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManagerClient.d.ts +257 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/BatchGetSecretValueCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +30 -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 +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/models_0.d.ts +445 -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/protocols/Aws_json1_1.d.ts +281 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -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/package.json +103 -0
- package/node_modules/@aws-sdk/client-ssm/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-ssm/README.md +1352 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/SSM.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/SSMClient.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AddTagsToResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AssociateOpsItemRelatedItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelCommandCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelMaintenanceWindowExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateActivationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationBatchCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreatePatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateResourceDataSyncCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteActivationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteAssociationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteInventoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteOpsItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParameterCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParametersCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeletePatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourceDataSyncCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterManagedInstanceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterPatchBaselineForPatchGroupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTargetFromMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTaskFromMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeActivationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionTargetsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationExecutionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationStepExecutionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAvailablePatchesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentPermissionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectiveInstanceAssociationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceAssociationsStatusCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceInformationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInventoryDeletionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowScheduleCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTargetsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTasksCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsForTargetCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeOpsItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeParametersCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchBaselinesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupStateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchPropertiesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeSessionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DisassociateOpsItemRelatedItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetAutomationExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCalendarStateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCommandInvocationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetConnectionStatusCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDefaultPatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDeployablePatchSnapshotForInstanceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventorySchemaCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowTaskCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsSummaryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterHistoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersByPathCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineForPatchGroupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetResourcePoliciesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetServiceSettingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/LabelParameterVersionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationVersionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandInvocationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceSummariesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentMetadataHistoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentVersionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListInventoryEntriesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemEventsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemRelatedItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceComplianceSummariesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceDataSyncCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListTagsForResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ModifyDocumentPermissionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutComplianceItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutInventoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutParameterCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterDefaultPatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterPatchBaselineForPatchGroupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTargetWithMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTaskWithMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RemoveTagsFromResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResetServiceSettingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResumeSessionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendAutomationSignalCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendCommandCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAssociationsOnceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAutomationExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartChangeRequestExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartSessionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StopAutomationExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/TerminateSessionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UnlabelParameterVersionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationStatusCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentDefaultVersionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTargetCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTaskCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateManagedInstanceRoleCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdatePatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateResourceDataSyncCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateServiceSettingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +16367 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_2.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeActivationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionTargetsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationExecutionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationStepExecutionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAvailablePatchesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceAssociationsStatusPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceInformationPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInventoryDeletionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowSchedulePaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTargetsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTasksPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeOpsItemsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeParametersPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchBaselinesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchGroupsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchPropertiesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeSessionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventoryPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventorySchemaPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetOpsSummaryPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParameterHistoryPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParametersByPathPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetResourcePoliciesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationVersionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandInvocationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceItemsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceSummariesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentVersionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemEventsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemRelatedItemsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsMetadataPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceComplianceSummariesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceDataSyncPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/protocols/Aws_json1_1.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +50 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeExtensions.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/waitForCommandExecuted.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +285 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +39 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +139 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/index.js +3 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_0.js +1304 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_1.js +1050 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_2.js +170 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeActivationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionTargetsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationExecutionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationStepExecutionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAvailablePatchesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceAssociationsStatusPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceInformationPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInventoryDeletionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowSchedulePaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTargetsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTasksPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeOpsItemsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeParametersPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchBaselinesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchGroupsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchPropertiesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeSessionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventoryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventorySchemaPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetOpsSummaryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParameterHistoryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParametersByPathPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetResourcePoliciesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationVersionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandInvocationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceItemsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceSummariesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentVersionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemEventsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemRelatedItemsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsMetadataPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceComplianceSummariesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceDataSyncPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +48 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/protocols/Aws_json1_1.js +9406 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +45 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +20 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeExtensions.js +18 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +97 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1018 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +343 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +69 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +358 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +299 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +174 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +72 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +90 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +90 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +65 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +63 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +69 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +65 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +68 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +73 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +66 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +69 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +194 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +102 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +196 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +170 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +106 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +146 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +109 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +127 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +86 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +78 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +102 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +125 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +79 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +76 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +259 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +84 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +63 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +65 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +158 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +112 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +144 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +104 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +109 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +86 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +64 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +137 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +148 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +163 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +106 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +88 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +154 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +141 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +90 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +164 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +73 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +220 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +65 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +154 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +67 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +63 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +289 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +202 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +173 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +287 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +176 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +139 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/extensionConfiguration.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +7976 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +9465 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_2.d.ts +1739 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeActivationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationExecutionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAvailablePatchesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceInformationPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInventoryDeletionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeOpsItemsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeParametersPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchBaselinesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchGroupsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchPropertiesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeSessionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventoryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventorySchemaPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetOpsSummaryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParameterHistoryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParametersByPathPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationVersionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandInvocationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceItemsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceSummariesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentVersionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemEventsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemRelatedItemsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsMetadataPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceComplianceSummariesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceDataSyncPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +48 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/protocols/Aws_json1_1.d.ts +1253 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +45 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +2482 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +949 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +28 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +139 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +2121 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +2279 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_2.d.ts +415 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeActivationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationExecutionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAvailablePatchesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceInformationPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInventoryDeletionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeOpsItemsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeParametersPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchBaselinesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchGroupsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchPropertiesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeSessionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventoryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventorySchemaPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetOpsSummaryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParameterHistoryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParametersByPathPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationVersionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandInvocationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceItemsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceSummariesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentVersionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemEventsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemRelatedItemsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsMetadataPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceComplianceSummariesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceDataSyncPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +48 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +1673 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ssm/package.json +104 -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/SSO.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +692 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/models/SSOServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +1 -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 +47 -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 +24 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeExtensions.js +1 -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 +36 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +25 -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 +14 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +8 -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 +7 -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/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +75 -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/protocols/Aws_restJson1.js +335 -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 +42 -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 +20 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +18 -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 +181 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +84 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +81 -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 +40 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -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 +8 -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 +13 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +266 -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/protocols/Aws_restJson1.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -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 +131 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +22 -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 +7 -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 +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +93 -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/protocols/Aws_restJson1.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +64 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/package.json +98 -0
- package/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sts/README.md +273 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/STS.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +56 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js +67 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +78 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +20 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +277 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +12 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +149 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1084 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +64 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +40 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/STS.js +23 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +52 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js +60 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +72 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +16 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +130 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +1065 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +59 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +36 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +69 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +182 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthSchemeProvider.d.ts +71 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +256 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +281 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +229 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +153 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +20 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1213 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +74 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +57 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +55 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +56 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +141 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +165 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +54 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +22 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +206 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +128 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +117 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +119 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sts/package.json +103 -0
- package/node_modules/@aws-sdk/core/CHANGELOG.md +174 -0
- package/node_modules/@aws-sdk/core/README.md +5 -0
- package/node_modules/@aws-sdk/core/api-extractor.json +4 -0
- package/node_modules/@aws-sdk/core/dist-cjs/client/emitWarningIfUnsupportedVersion.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/client/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getDateHeader.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/isClockSkewed.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +316 -0
- package/node_modules/@aws-sdk/core/dist-cjs/protocols/coercing-serializers.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/protocols/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/protocols/json/awsExpectUnion.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/client/emitWarningIfUnsupportedVersion.js +13 -0
- package/node_modules/@aws-sdk/core/dist-es/client/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +55 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +78 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/core/dist-es/protocols/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/core/dist-types/client/emitWarningIfUnsupportedVersion.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +17 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +95 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/protocols/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/client/emitWarningIfUnsupportedVersion.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +55 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -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/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/core/jest.config.js +6 -0
- package/node_modules/@aws-sdk/core/package.json +57 -0
- package/node_modules/@aws-sdk/core/scripts/lint.js +24 -0
- package/node_modules/@aws-sdk/core/src/client/emitWarningIfUnsupportedVersion.spec.ts +70 -0
- package/node_modules/@aws-sdk/core/src/client/emitWarningIfUnsupportedVersion.ts +25 -0
- package/node_modules/@aws-sdk/core/src/client/index.ts +1 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.ts +132 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/index.ts +2 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.ts +236 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/index.ts +1 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getDateHeader.ts +7 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.spec.ts +17 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.ts +8 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.spec.ts +37 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.ts +18 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/index.ts +3 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.spec.ts +32 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.ts +12 -0
- package/node_modules/@aws-sdk/core/src/index.ts +3 -0
- package/node_modules/@aws-sdk/core/src/protocols/coercing-serializers.spec.ts +76 -0
- package/node_modules/@aws-sdk/core/src/protocols/coercing-serializers.ts +72 -0
- package/node_modules/@aws-sdk/core/src/protocols/index.ts +2 -0
- package/node_modules/@aws-sdk/core/src/protocols/json/awsExpectUnion.spec.ts +30 -0
- package/node_modules/@aws-sdk/core/src/protocols/json/awsExpectUnion.ts +17 -0
- package/node_modules/@aws-sdk/core/tsconfig.cjs.json +9 -0
- package/node_modules/@aws-sdk/core/tsconfig.cjs.tsbuildinfo +1 -0
- package/node_modules/@aws-sdk/core/tsconfig.es.json +9 -0
- package/node_modules/@aws-sdk/core/tsconfig.es.tsbuildinfo +1 -0
- package/node_modules/@aws-sdk/core/tsconfig.types.json +9 -0
- package/node_modules/@aws-sdk/core/tsconfig.types.tsbuildinfo +1 -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/fromEnv.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +66 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +23 -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 +29 -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 +7 -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 +60 -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/fromIni.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +175 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveAssumeRoleCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveCredentialSource.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProfileData.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveSsoCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveStaticCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveWebIdentityCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +6 -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 +47 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +17 -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 +28 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +41 -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 +44 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +17 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +18 -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 +20 -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 +17 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +13 -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 +66 -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/defaultProvider.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +73 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/remoteProvider.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -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 +14 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +42 -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 +4 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +14 -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 +6 -0
- package/node_modules/@aws-sdk/credential-provider-node/package.json +67 -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/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/fromProcess.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/getValidatedProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +96 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/resolveProcessCredentials.js +1 -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 +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +22 -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 +33 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +11 -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 +8 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -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 +5 -0
- package/node_modules/@aws-sdk/credential-provider-process/package.json +61 -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/fromSSO.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +177 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/isSsoProfile.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/resolveSSOCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/types.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/validateSsoProfile.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +57 -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/resolveSSOCredentials.js +51 -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 +67 -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/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +16 -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/resolveSSOCredentials.d.ts +11 -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 +4 -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 +5 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +63 -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 +25 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +21 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +27 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +20 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +17 -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 +135 -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 +11 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +35 -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 +68 -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/Endpoint.js +1 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/EndpointCache.js +1 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/index.js +135 -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 +53 -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 +53 -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/configurations.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/endpointDiscoveryMiddleware.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/getCacheKey.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/getEndpointDiscoveryPlugin.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/index.js +227 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/resolveEndpointDiscoveryConfig.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/updateDiscoveredEndpointInCache.js +1 -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 +10 -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 +2 -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 +18 -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 +54 -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 +57 -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 +70 -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 +20 -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 +55 -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 +79 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +1 -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 +56 -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 +67 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +55 -0
- package/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/awsAuthConfiguration.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/awsAuthMiddleware.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +227 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/awsAuthConfiguration.js +103 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/awsAuthMiddleware.js +55 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/awsAuthConfiguration.d.ts +99 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/awsAuthMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/awsAuthConfiguration.d.ts +68 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/awsAuthMiddleware.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts +8 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-signing/package.json +59 -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/configurations.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +122 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -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/index.js +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +72 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +31 -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/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -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/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +57 -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/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +115 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/config.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/index.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +25 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -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 +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +37 -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 +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/region-config-resolver/package.json +58 -0
- package/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/token-providers/README.md +53 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +1032 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +1038 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/constants.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +211 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +1010 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +1017 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +78 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +7 -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/bundle/client-sso-oidc-browser.d.ts +191 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +191 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +5 -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/bundle/client-sso-oidc-browser.d.ts +235 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +235 -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/fromSso.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -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 +103 -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/abort.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/auth.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/checksum.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/client.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/command.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/connection.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/credentials.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/crypto.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/dns.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/encode.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/http.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +466 -0
- package/node_modules/@aws-sdk/types/dist-cjs/logger.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/middleware.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/pagination.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/profile.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/request.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/response.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/retry.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/serde.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/shapes.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/signature.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/stream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/token.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/transfer.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/uri.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/util.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/waiter.js +1 -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/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 +32 -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 +17 -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/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 +1 -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 +1 -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 +32 -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 +1 -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 +4 -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/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 +4 -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 +1 -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 +32 -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 +40 -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 +56 -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/aws.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +424 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/index.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/isVirtualHostableS3Bucket.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/parseArn.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partition.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +216 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/index.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js +1 -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 +5 -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 +15 -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 +216 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -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 +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +5 -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/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +5 -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/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 +56 -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 +39 -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 +52 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -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/index.js +23 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +17 -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/index.js +17 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +13 -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/index.d.ts +9 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +9 -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/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +53 -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/crt-availability.js +1 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +94 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +1 -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/index.js +39 -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-types/crt-availability.d.ts +9 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +20 -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/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -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/package.json +63 -0
- package/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-utf8-browser/README.md +8 -0
- package/node_modules/@aws-sdk/util-utf8-browser/package.json +50 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/.eslintignore +5 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/.jsii +3976 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/README.md +126 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/architecture.png +0 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.d.ts +86 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.js +90 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/package.json +91 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.expected.json +262 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.js +40 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.expected.json +1012 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js +46 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.expected.json +609 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js +36 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.expected.json +233 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.js +32 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.expected.json +246 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.js +41 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.expected.json +233 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.js +33 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda/index.js +8 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.js +774 -0
- package/node_modules/@aws-solutions-constructs/core/.eslintignore +7 -0
- package/node_modules/@aws-solutions-constructs/core/.jsii +7978 -0
- package/node_modules/@aws-solutions-constructs/core/README.md +80 -0
- package/node_modules/@aws-solutions-constructs/core/index.d.ts +74 -0
- package/node_modules/@aws-solutions-constructs/core/index.js +87 -0
- package/node_modules/@aws-solutions-constructs/core/lib/alb-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/alb-defaults.js +31 -0
- package/node_modules/@aws-solutions-constructs/core/lib/alb-helper.d.ts +61 -0
- package/node_modules/@aws-solutions-constructs/core/lib/alb-helper.js +210 -0
- package/node_modules/@aws-solutions-constructs/core/lib/apigateway-defaults.d.ts +62 -0
- package/node_modules/@aws-solutions-constructs/core/lib/apigateway-defaults.js +139 -0
- package/node_modules/@aws-solutions-constructs/core/lib/apigateway-helper.d.ts +103 -0
- package/node_modules/@aws-solutions-constructs/core/lib/apigateway-helper.js +293 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.d.ts +29 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.js +100 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.d.ts +62 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.js +202 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.js +31 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.js +54 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cognito-defaults.d.ts +23 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cognito-defaults.js +41 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cognito-helper.d.ts +40 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cognito-helper.js +125 -0
- package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.d.ts +16 -0
- package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.js +42 -0
- package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-helper.d.ts +77 -0
- package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-helper.js +90 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticache-defaults.d.ts +27 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticache-defaults.js +42 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticache-helper.d.ts +34 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticache-helper.js +78 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-defaults.d.ts +19 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-defaults.js +69 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-helper.d.ts +40 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-helper.js +254 -0
- package/node_modules/@aws-solutions-constructs/core/lib/eventbridge-helper.d.ts +37 -0
- package/node_modules/@aws-solutions-constructs/core/lib/eventbridge-helper.js +46 -0
- package/node_modules/@aws-solutions-constructs/core/lib/events-rule-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/events-rule-defaults.js +27 -0
- package/node_modules/@aws-solutions-constructs/core/lib/fargate-defaults.d.ts +41 -0
- package/node_modules/@aws-solutions-constructs/core/lib/fargate-defaults.js +72 -0
- package/node_modules/@aws-solutions-constructs/core/lib/fargate-helper.d.ts +48 -0
- package/node_modules/@aws-solutions-constructs/core/lib/fargate-helper.js +194 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-database-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-database-defaults.js +30 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-database-helper.d.ts +23 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-database-helper.js +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-job-defaults.d.ts +19 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-job-defaults.js +41 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-job-helper.d.ts +125 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-job-helper.js +210 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-table-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-table-defaults.js +63 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-table-helper.d.ts +38 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-table-helper.js +68 -0
- package/node_modules/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.js +31 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kendra-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kendra-defaults.js +28 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kendra-helper.d.ts +36 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kendra-helper.js +216 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.js +20 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.d.ts +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.js +60 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.js +44 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.js +25 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-helper.d.ts +42 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-helper.js +88 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kms-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kms-defaults.js +20 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kms-helper.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kms-helper.js +35 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-defaults.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-defaults.js +32 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.d.ts +32 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.js +80 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-helper.d.ts +60 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-helper.js +197 -0
- package/node_modules/@aws-solutions-constructs/core/lib/mediastore-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/mediastore-defaults.js +72 -0
- package/node_modules/@aws-solutions-constructs/core/lib/mediastore-helper.d.ts +23 -0
- package/node_modules/@aws-solutions-constructs/core/lib/mediastore-helper.js +50 -0
- package/node_modules/@aws-solutions-constructs/core/lib/opensearch-defaults.d.ts +19 -0
- package/node_modules/@aws-solutions-constructs/core/lib/opensearch-defaults.js +72 -0
- package/node_modules/@aws-solutions-constructs/core/lib/opensearch-helper.d.ts +44 -0
- package/node_modules/@aws-solutions-constructs/core/lib/opensearch-helper.js +265 -0
- package/node_modules/@aws-solutions-constructs/core/lib/override-warning-service.d.ts +20 -0
- package/node_modules/@aws-solutions-constructs/core/lib/override-warning-service.js +96 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-defaults.d.ts +19 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-defaults.js +39 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-helper.d.ts +69 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-helper.js +233 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-oac-origin.d.ts +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-oac-origin.js +70 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-defaults.d.ts +29 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-defaults.js +67 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-helper.d.ts +119 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-helper.js +388 -0
- package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-defaults.js +21 -0
- package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-helper.d.ts +29 -0
- package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-helper.js +57 -0
- package/node_modules/@aws-solutions-constructs/core/lib/security-group-helper.d.ts +28 -0
- package/node_modules/@aws-solutions-constructs/core/lib/security-group-helper.js +76 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sns-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sns-defaults.js +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sns-helper.d.ts +73 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sns-helper.js +142 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sqs-defaults.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sqs-defaults.js +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sqs-helper.d.ts +101 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sqs-helper.js +180 -0
- package/node_modules/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.d.ts +24 -0
- package/node_modules/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.js +34 -0
- package/node_modules/@aws-solutions-constructs/core/lib/step-function-defaults.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/step-function-defaults.js +34 -0
- package/node_modules/@aws-solutions-constructs/core/lib/step-function-helper.d.ts +32 -0
- package/node_modules/@aws-solutions-constructs/core/lib/step-function-helper.js +140 -0
- package/node_modules/@aws-solutions-constructs/core/lib/utils.d.ts +95 -0
- package/node_modules/@aws-solutions-constructs/core/lib/utils.js +233 -0
- package/node_modules/@aws-solutions-constructs/core/lib/vpc-defaults.d.ts +25 -0
- package/node_modules/@aws-solutions-constructs/core/lib/vpc-defaults.js +65 -0
- package/node_modules/@aws-solutions-constructs/core/lib/vpc-helper.d.ts +67 -0
- package/node_modules/@aws-solutions-constructs/core/lib/vpc-helper.js +228 -0
- package/node_modules/@aws-solutions-constructs/core/lib/waf-defaults.d.ts +36 -0
- package/node_modules/@aws-solutions-constructs/core/lib/waf-defaults.js +71 -0
- package/node_modules/@aws-solutions-constructs/core/lib/waf-helper.d.ts +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/waf-helper.js +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/index.js +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/package.json +64 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/readme.md +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/LICENSE +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/README.md +94 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/index.js +105 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/package.json +34 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/CHANGES.md +37 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/LICENSE +5 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/README.md +195 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/index.js +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/package.json +35 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-base.js +11 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-group.js +107 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-stream.js +36 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker.js +30 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/index.js +32 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/package.json +38 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/readme.md +32 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/LICENSE +13 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/README.md +145 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/index.js +125 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/package.json +27 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/README.md +3 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/package.json +38 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.circleci/config.yml +76 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.eslintrc +72 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.vscode/launch.json +30 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.vscode/tasks.json +12 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/ChangeLog.md +63 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/LICENSE +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/Readme.md +239 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/dist/deep-diff.min.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/dist/deep-diff.min.js.map +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/apply-diff-from-any.js +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/array-change.js +45 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/capture_change_apply_elsewhere.js +53 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/diff-ignoring-fun.js +88 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/diff-scenarios.js +49 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/example1.js +41 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-111.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-113-1.js +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-113-2.js +11 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-115.js +17 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-124.js +8 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-125.js +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-126.js +33 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-35.js +11 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-47.js +17 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-48.js +48 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-62.js +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-70.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-71.js +15 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-72.js +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-74.js +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-78.js +24 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-83.js +11 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-88.js +26 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/performance.js +64 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/practice-data.json +2501 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/index.js +526 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/package.json +74 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/.eslintrc +10 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/tests.html +34 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/tests.js +759 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/.editorconfig +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/.eslintcache +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/changelog.md +167 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/dist/cjs.js +133 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/dist/umd.js +139 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/index.d.ts +20 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/index.js +106 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/license.txt +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/package.json +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/readme.md +264 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/rollup.config.js +22 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/.npmignore +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/History.md +22 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/License +20 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/Makefile +8 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/Readme.md +94 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/index.js +121 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/package.json +13 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/test/index.js +94 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/CHANGELOG.md +160 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/LICENSE +13 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/README.md +399 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/base-theme.js +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/error.js +24 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/has-color.js +12 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/index.js +233 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/package.json +63 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/plumbing.js +48 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/process.js +3 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/progress-bar.js +35 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/render-template.js +181 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/set-immediate.js +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/set-interval.js +3 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/spin.js +5 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/template-item.js +73 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/theme-set.js +115 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/themes.js +54 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/wide-truncate.js +25 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/LICENSE +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/README.md +43 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/index.js +16 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/package.json +30 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/LICENSE +16 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/README.md +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/inherits.js +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/package.json +29 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/.npmignore +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/Makefile +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/README.md +60 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/component.json +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/index.js +5 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/package.json +45 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/test.js +20 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/LICENSE +15 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/README.md +216 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/log.js +309 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/package.json +28 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/index.js +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/package.json +35 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/readme.md +28 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/index.js +90 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/package.json +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/readme.md +61 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/index.js +45 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/package.json +25 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/.travis.yml +34 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/README.md +58 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_writable.js +685 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/BufferList.js +78 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/destroy.js +84 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/package.json +52 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/README.md +31 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/index.js +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/package.json +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/README.md +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/index.js +202 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/package.json +38 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/index.js +37 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/package.json +56 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/readme.md +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/README.md +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/package.json +31 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/index.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/package.json +57 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/readme.md +33 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/package.json +27 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/LICENSE +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/README.md +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/align.js +65 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/license +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/package.json +55 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/index.js +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/license +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/package.json +56 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/readme.md +50 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/license +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/package.json +33 -0
- package/node_modules/@aws-solutions-constructs/core/package.json +91 -0
- package/node_modules/@aws-solutions-constructs/core/test/alb-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/alb-helper.test.js +475 -0
- package/node_modules/@aws-solutions-constructs/core/test/apigateway-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/apigateway-helper.test.js +739 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.js +497 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.js +606 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.js +416 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.js +59 -0
- package/node_modules/@aws-solutions-constructs/core/test/congnito-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/congnito-helper.test.js +171 -0
- package/node_modules/@aws-solutions-constructs/core/test/dynamo-table.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/dynamo-table.test.js +383 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticache-defaults.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticache-defaults.test.js +31 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticache-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticache-helper.test.js +94 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticsearch-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticsearch-helper.test.js +454 -0
- package/node_modules/@aws-solutions-constructs/core/test/eventbridge-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/eventbridge-helper.test.js +77 -0
- package/node_modules/@aws-solutions-constructs/core/test/events-rule.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/events-rule.test.js +85 -0
- package/node_modules/@aws-solutions-constructs/core/test/fargate-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/fargate-helper.test.js +355 -0
- package/node_modules/@aws-solutions-constructs/core/test/glue-job-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/glue-job-helper.test.js +595 -0
- package/node_modules/@aws-solutions-constructs/core/test/glue-table-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/glue-table-helper.test.js +188 -0
- package/node_modules/@aws-solutions-constructs/core/test/iot-rule.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/iot-rule.test.js +84 -0
- package/node_modules/@aws-solutions-constructs/core/test/kendra-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kendra-helper.test.js +489 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-analytics.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-analytics.test.js +154 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.js +76 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.js +32 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.js +99 -0
- package/node_modules/@aws-solutions-constructs/core/test/kms-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kms-helper.test.js +51 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda/index.js +10 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-event-source.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-event-source.test.js +131 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-helper.test.js +486 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-test/index.js +7 -0
- package/node_modules/@aws-solutions-constructs/core/test/mediastore-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/mediastore-helper.test.js +67 -0
- package/node_modules/@aws-solutions-constructs/core/test/opensearch-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/opensearch-helper.test.js +416 -0
- package/node_modules/@aws-solutions-constructs/core/test/override-warning-service.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/override-warning-service.test.js +224 -0
- package/node_modules/@aws-solutions-constructs/core/test/s3-bucket-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/s3-bucket-helper.test.js +430 -0
- package/node_modules/@aws-solutions-constructs/core/test/s3-bucket.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/s3-bucket.test.js +384 -0
- package/node_modules/@aws-solutions-constructs/core/test/sagemaker-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/sagemaker-helper.test.js +244 -0
- package/node_modules/@aws-solutions-constructs/core/test/secretsmanager-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/secretsmanager-helper.test.js +66 -0
- package/node_modules/@aws-solutions-constructs/core/test/security-group-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/security-group-helper.test.js +118 -0
- package/node_modules/@aws-solutions-constructs/core/test/sns-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/sns-helper.test.js +367 -0
- package/node_modules/@aws-solutions-constructs/core/test/sqs-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/sqs-helper.test.js +287 -0
- package/node_modules/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.js +32 -0
- package/node_modules/@aws-solutions-constructs/core/test/step-function-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/step-function-helper.test.js +204 -0
- package/node_modules/@aws-solutions-constructs/core/test/test-helper.d.ts +50 -0
- package/node_modules/@aws-solutions-constructs/core/test/test-helper.js +244 -0
- package/node_modules/@aws-solutions-constructs/core/test/utils.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/utils.test.js +193 -0
- package/node_modules/@aws-solutions-constructs/core/test/vpc-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/vpc-helper.test.js +251 -0
- package/node_modules/@aws-solutions-constructs/core/test/waf-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/waf-helper.test.js +305 -0
- package/node_modules/@gemeentenijmegen/apiclient/.env +9 -0
- package/node_modules/@gemeentenijmegen/apiclient/.gitattributes +23 -0
- package/node_modules/@gemeentenijmegen/apiclient/LICENSE +287 -0
- package/node_modules/@gemeentenijmegen/apiclient/README.md +33 -0
- package/node_modules/@gemeentenijmegen/apiclient/lib/index.d.ts +54 -0
- package/node_modules/@gemeentenijmegen/apiclient/lib/index.js +174 -0
- package/node_modules/@gemeentenijmegen/apiclient/package.json +101 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/.gitattributes +23 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/LICENSE +287 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/README.md +25 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/lib/V2/Response.d.ts +16 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/lib/V2/Response.js +67 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/lib/index.d.ts +1 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/lib/index.js +18 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/package.json +96 -0
- package/node_modules/@gemeentenijmegen/session/.gitattributes +23 -0
- package/node_modules/@gemeentenijmegen/session/LICENSE +287 -0
- package/node_modules/@gemeentenijmegen/session/README.md +45 -0
- package/node_modules/@gemeentenijmegen/session/lib/index.d.ts +60 -0
- package/node_modules/@gemeentenijmegen/session/lib/index.js +178 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/HISTORY.md +142 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/LICENSE +24 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/README.md +302 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/SECURITY.md +25 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/index.js +270 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/package.json +44 -0
- package/node_modules/@gemeentenijmegen/session/package.json +99 -0
- package/node_modules/@gemeentenijmegen/utils/.gitattributes +23 -0
- package/node_modules/@gemeentenijmegen/utils/LICENSE +287 -0
- package/node_modules/@gemeentenijmegen/utils/README.md +31 -0
- package/node_modules/@gemeentenijmegen/utils/lib/AWS.d.ts +18 -0
- package/node_modules/@gemeentenijmegen/utils/lib/AWS.js +42 -0
- package/node_modules/@gemeentenijmegen/utils/lib/Bsn.d.ts +25 -0
- package/node_modules/@gemeentenijmegen/utils/lib/Bsn.js +59 -0
- package/node_modules/@gemeentenijmegen/utils/lib/index.d.ts +2 -0
- package/node_modules/@gemeentenijmegen/utils/lib/index.js +8 -0
- package/node_modules/@gemeentenijmegen/utils/package.json +98 -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/AbortController.js +1 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +1 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/index.js +85 -0
- package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +9 -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 +13 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -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 +13 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/abort-controller/package.json +62 -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/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +235 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +1 -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 +11 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -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/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 +25 -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 +29 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +51 -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/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 +10 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +7 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +12 -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 +29 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +51 -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/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 +10 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +7 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +12 -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 +64 -0
- package/node_modules/@smithy/core/LICENSE +201 -0
- package/node_modules/@smithy/core/README.md +12 -0
- package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/index.js +482 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/protocols/requestBuilder.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +1 -0
- package/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@smithy/core/dist-es/index.js +7 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +18 -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 +40 -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-signing/getHttpSigningMiddleware.js +16 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +24 -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 +27 -0
- package/node_modules/@smithy/core/dist-es/protocols/requestBuilder.js +67 -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 +33 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +10 -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 +53 -0
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/index.d.ts +7 -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 +32 -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-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/protocols/requestBuilder.d.ts +51 -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 +7 -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 +32 -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-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/protocols/requestBuilder.d.ts +51 -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/package.json +67 -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/config/Endpoint.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +427 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +1 -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 +9 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +66 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +132 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +12 -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 +24 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +18 -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 +7 -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 +24 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +18 -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/eventstream-codec/LICENSE +201 -0
- package/node_modules/@smithy/eventstream-codec/README.md +4 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/EventStreamCodec.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/HeaderMarshaller.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/Int64.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/Message.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageDecoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageEncoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageDecoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageEncoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/TestVectors.fixture.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +468 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/splitMessage.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/vectorTypes.fixture.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +62 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +182 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +43 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/Message.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/MessageDecoderStream.js +14 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/MessageEncoderStream.js +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageDecoderStream.js +16 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageEncoderStream.js +14 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/TestVectors.fixture.js +690 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/index.js +8 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/splitMessage.js +30 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/vectorTypes.fixture.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +31 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/HeaderMarshaller.d.ts +12 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/Int64.d.ts +20 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/Message.d.ts +26 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/MessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/MessageEncoderStream.d.ts +18 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageEncoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +2 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/splitMessage.d.ts +11 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +31 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +12 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Int64.d.ts +20 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Message.d.ts +26 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageEncoderStream.d.ts +18 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageEncoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +2 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +11 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +12 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +12 -0
- package/node_modules/@smithy/eventstream-codec/package.json +61 -0
- package/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/fetch-http-handler/README.md +4 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +220 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +111 -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 +45 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -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/fetch-http-handler.d.ts +33 -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 +79 -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 +66 -0
- package/node_modules/@smithy/hash-node/dist-es/index.js +34 -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 +64 -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 +41 -0
- package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +1 -0
- package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +1 -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 +57 -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 +32 -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 +60 -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 +71 -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 +63 -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/createConfigValueProvider.js +1 -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/getEndpointFromInstructions.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +254 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +32 -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 +45 -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 +32 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +16 -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 +1 -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 +17 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +93 -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 +1 -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 +17 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +93 -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 +34 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +34 -0
- package/node_modules/@smithy/middleware-endpoint/package.json +73 -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/AdaptiveRetryStrategy.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +424 -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-cjs/omitRetryHeadersMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
- package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +52 -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 +111 -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 +20 -0
- package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +40 -0
- package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
- package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +4 -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 +4 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +20 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +30 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +40 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +18 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -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 +4 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +53 -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 +53 -0
- package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/package.json +78 -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/deserializerMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +97 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +1 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +20 -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 +13 -0
- package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +2 -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 +8 -0
- package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +2 -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 +8 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/package.json +62 -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/MiddlewareStack.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +318 -0
- package/node_modules/@smithy/middleware-stack/dist-cjs/types.js +1 -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 +2 -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 +2 -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 +63 -0
- package/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/node_modules/@smithy/node-config-provider/README.md +4 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +87 -0
- package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +5 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +13 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +22 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -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 +22 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +7 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +3 -0
- package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +22 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +15 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/node-config-provider/package.json +65 -0
- package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/node-http-handler/README.md +4 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +626 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +1 -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 +146 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -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 +159 -0
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +19 -0
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +51 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +11 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +40 -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 +25 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +10 -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-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 +7 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -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 +25 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -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 +10 -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-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 +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -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/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/package.json +67 -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/CredentialsProviderError.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/chain.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +150 -0
- package/node_modules/@smithy/property-provider/dist-cjs/memoize.js +1 -0
- package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +9 -0
- package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +11 -0
- package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +9 -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 +17 -0
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +17 -0
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +17 -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 +17 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +17 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +17 -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 +60 -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/Field.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +237 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-es/Field.js +23 -0
- package/node_modules/@smithy/protocol-http/dist-es/Fields.js +19 -0
- package/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +22 -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 +48 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +14 -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 +49 -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 +37 -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 +18 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +23 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +16 -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 +49 -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 +37 -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 +18 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +23 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +16 -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 +61 -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 +52 -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 +53 -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 +60 -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/constants.js +1 -0
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +92 -0
- package/node_modules/@smithy/service-error-classification/dist-es/constants.js +27 -0
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +19 -0
- package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +26 -0
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +26 -0
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/service-error-classification/package.json +59 -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/getConfigData.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +1 -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/getProfileName.js +1 -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 +12 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +190 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +13 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +1 -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 +8 -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 +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +27 -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/slurpFile.js +9 -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/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 +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +44 -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 +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +10 -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 +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +5 -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 +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +44 -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 +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +10 -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 +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +13 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +13 -0
- package/node_modules/@smithy/shared-ini-file-loader/package.json +72 -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/SignatureV4.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/cloneRequest.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/credentialDerivation.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalHeaders.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalQuery.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/getPayloadHash.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/headerUtil.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +467 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/moveHeadersToQuery.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/prepareRequest.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/suite.fixture.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/utilDate.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +190 -0
- package/node_modules/@smithy/signature-v4/dist-es/cloneRequest.js +12 -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 +27 -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 +7 -0
- package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +16 -0
- package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -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/SignatureV4.d.ts +67 -0
- package/node_modules/@smithy/signature-v4/dist-types/cloneRequest.d.ts +6 -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 +26 -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 +7 -0
- package/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
- package/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -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/SignatureV4.d.ts +67 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +6 -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 +26 -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 +7 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -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/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/NoOpLogger.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/client.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/command.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +1256 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/node_modules/@smithy/smithy-client/dist-es/client.js +24 -0
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +11 -0
- package/node_modules/@smithy/smithy-client/dist-es/command.js +114 -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/date-utils.js +187 -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 +22 -0
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +31 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +15 -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 +16 -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 +22 -0
- package/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +33 -0
- package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +230 -0
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +19 -0
- package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +13 -0
- package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/node_modules/@smithy/smithy-client/dist-es/split-every.js +27 -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 +29 -0
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +112 -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 +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +73 -0
- package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +13 -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 +34 -0
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +25 -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 +15 -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 +23 -0
- package/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +24 -0
- package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +270 -0
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +10 -0
- package/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +11 -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 +29 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +112 -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 +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +73 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +13 -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 +34 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +25 -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 +15 -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 +23 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +24 -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/parse-utils.d.ts +270 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +10 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/package.json +66 -0
- package/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@smithy/types/README.md +80 -0
- package/node_modules/@smithy/types/dist-cjs/abort.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/auth.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/checksum.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/client.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/command.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/connection/config.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/connection/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/connection/manager.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/connection/pool.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/crypto.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/encode.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoint.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/eventStream.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/retry.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/http.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/identity.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/index.js +149 -0
- package/node_modules/@smithy/types/dist-cjs/logger.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/middleware.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/pagination.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/profile.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/response.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/retry.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/serde.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/shapes.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/signature.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/stream.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transfer.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/exact.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/uri.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/util.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/waiter.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 +39 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +11 -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/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 +36 -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/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/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.d.ts +49 -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 +41 -0
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/client.d.ts +44 -0
- package/node_modules/@smithy/types/dist-types/command.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/connection/config.d.ts +7 -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 +28 -0
- package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +24 -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 +19 -0
- package/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +19 -0
- package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +10 -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 +25 -0
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +108 -0
- package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +55 -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/http/httpHandlerInitialization.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/http.d.ts +105 -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 +27 -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 +36 -0
- package/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +510 -0
- package/node_modules/@smithy/types/dist-types/pagination.d.ts +26 -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 +128 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +104 -0
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +72 -0
- package/node_modules/@smithy/types/dist-types/signature.d.ts +150 -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 +33 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +62 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +53 -0
- package/node_modules/@smithy/types/dist-types/transfer.d.ts +33 -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 +73 -0
- package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +62 -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.d.ts +49 -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 +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +7 -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 +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +24 -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 +19 -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 +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +19 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +10 -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 +25 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +108 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +55 -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/http/httpHandlerInitialization.d.ts +64 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +105 -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 +27 -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 +36 -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 +510 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +26 -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 +128 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +104 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +72 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +150 -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 +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +61 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +52 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +33 -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 +84 -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/no-undefined.d.ts +82 -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 +172 -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 +161 -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 +49 -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 +58 -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 +35 -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 +27 -0
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +24 -0
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +6 -0
- package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +28 -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 +20 -0
- package/node_modules/@smithy/util-base64/dist-es/toBase64.js +2 -0
- package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +6 -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 +8 -0
- package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +6 -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 +8 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/package.json +72 -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/calculateBodyLength.js +1 -0
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +57 -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 +57 -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/calculateBodyLength.js +1 -0
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +53 -0
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +25 -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 +61 -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 +47 -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 +61 -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/booleanSelector.js +1 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +64 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +1 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/types.js +1 -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 +62 -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 +25 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -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 +27 -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/constants.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +109 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +1 -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 +66 -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/debug/debugId.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/index.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/toDebugString.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/getEndpointUrlConfig.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +484 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/booleanEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttr.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttrPathList.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/index.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isIpAddress.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isSet.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isValidHostLabel.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/not.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/parseURL.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/stringEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/substring.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/uriEncode.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/resolveEndpoint.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointError.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/RuleSetObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/index.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/shared.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/callFunction.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/endpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateCondition.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateConditions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateExpression.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateRules.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTemplate.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperties.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperty.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointUrl.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getReferenceValue.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/index.js +1 -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 +5 -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 +37 -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 +11 -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 +16 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +27 -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 +13 -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 +5 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +21 -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/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 +5 -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/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 +5 -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 +2 -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 +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +3 -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 +3 -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 +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +3 -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 +2 -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 +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +3 -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 +3 -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 +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +3 -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 +67 -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 +67 -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 +60 -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/getSmithyContext.js +1 -0
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +45 -0
- package/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +1 -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 +66 -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/AdaptiveRetryStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/config.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +347 -0
- package/node_modules/@smithy/util-retry/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +18 -0
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +99 -0
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +65 -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 +45 -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 +45 -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 +68 -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/blob/Uint8ArrayBlobAdapter.js +1 -0
- package/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +1 -0
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +89 -0
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +69 -0
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +18 -0
- package/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +15 -0
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@smithy/util-stream/dist-es/index.js +3 -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 +45 -0
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +21 -0
- package/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +9 -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 +7 -0
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +3 -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/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +21 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +9 -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 +7 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +3 -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/package.json +95 -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/escape-uri-path.js +1 -0
- package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +1 -0
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +43 -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 +59 -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/fromUtf8.browser.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +57 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -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 +1 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +2 -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 +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +1 -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 +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/package.json +66 -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/createWaiter.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +155 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/poller.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/index.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/sleep.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/validate.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/waiter.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +23 -0
- package/node_modules/@smithy/util-waiter/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +33 -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 +34 -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/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 +44 -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 +44 -0
- package/node_modules/@smithy/util-waiter/package.json +62 -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 +83 -0
- package/node_modules/@types/aws-lambda/common/cloudfront.d.ts +232 -0
- package/node_modules/@types/aws-lambda/handler.d.ts +172 -0
- package/node_modules/@types/aws-lambda/index.d.ts +51 -0
- package/node_modules/@types/aws-lambda/package.json +230 -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 +244 -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 +116 -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 +67 -0
- package/node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts +70 -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 +21 -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 +76 -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 +128 -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.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 +55 -0
- package/node_modules/@types/aws-lambda/trigger/eventbridge.d.ts +19 -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 +57 -0
- package/node_modules/asynckit/LICENSE +21 -0
- package/node_modules/asynckit/README.md +233 -0
- package/node_modules/asynckit/bench.js +76 -0
- package/node_modules/asynckit/index.js +6 -0
- package/node_modules/asynckit/lib/abort.js +29 -0
- package/node_modules/asynckit/lib/async.js +34 -0
- package/node_modules/asynckit/lib/defer.js +26 -0
- package/node_modules/asynckit/lib/iterate.js +75 -0
- package/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/node_modules/asynckit/lib/state.js +37 -0
- package/node_modules/asynckit/lib/streamify.js +141 -0
- package/node_modules/asynckit/lib/terminator.js +29 -0
- package/node_modules/asynckit/package.json +63 -0
- package/node_modules/asynckit/parallel.js +43 -0
- package/node_modules/asynckit/serial.js +17 -0
- package/node_modules/asynckit/serialOrdered.js +75 -0
- package/node_modules/asynckit/stream.js +21 -0
- package/node_modules/axios/CHANGELOG.md +830 -0
- package/node_modules/axios/LICENSE +7 -0
- package/node_modules/axios/MIGRATION_GUIDE.md +3 -0
- package/node_modules/axios/README.md +1647 -0
- package/node_modules/axios/SECURITY.md +6 -0
- package/node_modules/axios/dist/axios.js +3062 -0
- package/node_modules/axios/dist/axios.js.map +1 -0
- package/node_modules/axios/dist/axios.min.js +2 -0
- package/node_modules/axios/dist/axios.min.js.map +1 -0
- package/node_modules/axios/dist/browser/axios.cjs +3237 -0
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -0
- package/node_modules/axios/dist/esm/axios.js +3260 -0
- package/node_modules/axios/dist/esm/axios.js.map +1 -0
- package/node_modules/axios/dist/esm/axios.min.js +2 -0
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -0
- package/node_modules/axios/dist/node/axios.cjs +4334 -0
- package/node_modules/axios/dist/node/axios.cjs.map +1 -0
- package/node_modules/axios/index.d.cts +542 -0
- package/node_modules/axios/index.d.ts +559 -0
- package/node_modules/axios/index.js +43 -0
- package/node_modules/axios/lib/adapters/README.md +37 -0
- package/node_modules/axios/lib/adapters/adapters.js +77 -0
- package/node_modules/axios/lib/adapters/http.js +685 -0
- package/node_modules/axios/lib/adapters/xhr.js +260 -0
- package/node_modules/axios/lib/axios.js +89 -0
- package/node_modules/axios/lib/cancel/CancelToken.js +121 -0
- package/node_modules/axios/lib/cancel/CanceledError.js +25 -0
- package/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/node_modules/axios/lib/core/Axios.js +201 -0
- package/node_modules/axios/lib/core/AxiosError.js +100 -0
- package/node_modules/axios/lib/core/AxiosHeaders.js +298 -0
- package/node_modules/axios/lib/core/InterceptorManager.js +71 -0
- package/node_modules/axios/lib/core/README.md +8 -0
- package/node_modules/axios/lib/core/buildFullPath.js +21 -0
- package/node_modules/axios/lib/core/dispatchRequest.js +81 -0
- package/node_modules/axios/lib/core/mergeConfig.js +106 -0
- package/node_modules/axios/lib/core/settle.js +27 -0
- package/node_modules/axios/lib/core/transformData.js +28 -0
- package/node_modules/axios/lib/defaults/index.js +159 -0
- package/node_modules/axios/lib/defaults/transitional.js +7 -0
- package/node_modules/axios/lib/env/README.md +3 -0
- package/node_modules/axios/lib/env/classes/FormData.js +2 -0
- package/node_modules/axios/lib/env/data.js +1 -0
- package/node_modules/axios/lib/helpers/AxiosTransformStream.js +191 -0
- package/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
- package/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
- package/node_modules/axios/lib/helpers/README.md +7 -0
- package/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
- package/node_modules/axios/lib/helpers/bind.js +7 -0
- package/node_modules/axios/lib/helpers/buildURL.js +63 -0
- package/node_modules/axios/lib/helpers/callbackify.js +16 -0
- package/node_modules/axios/lib/helpers/combineURLs.js +15 -0
- package/node_modules/axios/lib/helpers/cookies.js +42 -0
- package/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
- package/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
- package/node_modules/axios/lib/helpers/formDataToStream.js +111 -0
- package/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
- package/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
- package/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
- package/node_modules/axios/lib/helpers/isURLSameOrigin.js +67 -0
- package/node_modules/axios/lib/helpers/null.js +2 -0
- package/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
- package/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
- package/node_modules/axios/lib/helpers/readBlob.js +15 -0
- package/node_modules/axios/lib/helpers/speedometer.js +55 -0
- package/node_modules/axios/lib/helpers/spread.js +28 -0
- package/node_modules/axios/lib/helpers/throttle.js +33 -0
- package/node_modules/axios/lib/helpers/toFormData.js +219 -0
- package/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
- package/node_modules/axios/lib/helpers/validator.js +91 -0
- package/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
- package/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
- package/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
- package/node_modules/axios/lib/platform/browser/index.js +13 -0
- package/node_modules/axios/lib/platform/common/utils.js +47 -0
- package/node_modules/axios/lib/platform/index.js +7 -0
- package/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
- package/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
- package/node_modules/axios/lib/platform/node/index.js +12 -0
- package/node_modules/axios/lib/utils.js +723 -0
- package/node_modules/axios/package.json +218 -0
- package/node_modules/bowser/CHANGELOG.md +218 -0
- package/node_modules/bowser/LICENSE +39 -0
- package/node_modules/bowser/README.md +179 -0
- package/node_modules/bowser/bundled.js +1 -0
- package/node_modules/bowser/es5.js +1 -0
- package/node_modules/bowser/index.d.ts +250 -0
- package/node_modules/bowser/package.json +83 -0
- package/node_modules/bowser/src/bowser.js +77 -0
- package/node_modules/bowser/src/constants.js +116 -0
- package/node_modules/bowser/src/parser-browsers.js +700 -0
- package/node_modules/bowser/src/parser-engines.js +120 -0
- package/node_modules/bowser/src/parser-os.js +199 -0
- package/node_modules/bowser/src/parser-platforms.js +266 -0
- package/node_modules/bowser/src/parser.js +496 -0
- package/node_modules/bowser/src/utils.js +309 -0
- package/node_modules/cdk-remote-stack/.gitattributes +27 -0
- package/node_modules/cdk-remote-stack/.gitpod.yml +19 -0
- package/node_modules/cdk-remote-stack/.jsii +3139 -0
- package/node_modules/cdk-remote-stack/API.md +149 -0
- package/node_modules/cdk-remote-stack/CHANGELOG.md +290 -0
- package/node_modules/cdk-remote-stack/CONTRIBUTING.md +53 -0
- package/node_modules/cdk-remote-stack/LICENSE +202 -0
- package/node_modules/cdk-remote-stack/README.md +243 -0
- package/node_modules/cdk-remote-stack/custom-resource-handler/remote-outputs.py +62 -0
- package/node_modules/cdk-remote-stack/custom-resource-handler/remote-parameters.py +77 -0
- package/node_modules/cdk-remote-stack/images/remote-param-1.svg +3 -0
- package/node_modules/cdk-remote-stack/images/remote-param-2.svg +3 -0
- package/node_modules/cdk-remote-stack/images/remote-param-3.svg +3 -0
- package/node_modules/cdk-remote-stack/lib/index.d.ts +68 -0
- package/node_modules/cdk-remote-stack/lib/index.js +99 -0
- package/node_modules/cdk-remote-stack/lib/integ.default.d.ts +9 -0
- package/node_modules/cdk-remote-stack/lib/integ.default.js +92 -0
- package/node_modules/cdk-remote-stack/package.json +144 -0
- package/node_modules/cdk-remote-stack/version.json +3 -0
- package/node_modules/combined-stream/License +19 -0
- package/node_modules/combined-stream/Readme.md +138 -0
- package/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/node_modules/combined-stream/package.json +25 -0
- package/node_modules/cookie/HISTORY.md +147 -0
- package/node_modules/cookie/LICENSE +24 -0
- package/node_modules/cookie/README.md +317 -0
- package/node_modules/cookie/SECURITY.md +25 -0
- package/node_modules/cookie/index.js +274 -0
- package/node_modules/cookie/package.json +44 -0
- package/node_modules/delayed-stream/.npmignore +1 -0
- package/node_modules/delayed-stream/License +19 -0
- package/node_modules/delayed-stream/Makefile +7 -0
- package/node_modules/delayed-stream/Readme.md +141 -0
- package/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/node_modules/delayed-stream/package.json +27 -0
- package/node_modules/dotenv/CHANGELOG.md +447 -0
- package/node_modules/dotenv/LICENSE +23 -0
- package/node_modules/dotenv/README-es.md +442 -0
- package/node_modules/dotenv/README.md +669 -0
- package/node_modules/dotenv/config.d.ts +1 -0
- package/node_modules/dotenv/config.js +9 -0
- package/node_modules/dotenv/lib/cli-options.js +11 -0
- package/node_modules/dotenv/lib/env-options.js +24 -0
- package/node_modules/dotenv/lib/main.d.ts +153 -0
- package/node_modules/dotenv/lib/main.js +343 -0
- package/node_modules/dotenv/package.json +64 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +554 -0
- package/node_modules/fast-xml-parser/LICENSE +21 -0
- package/node_modules/fast-xml-parser/README.md +204 -0
- package/node_modules/fast-xml-parser/package.json +71 -0
- package/node_modules/fast-xml-parser/src/cli/cli.js +93 -0
- package/node_modules/fast-xml-parser/src/cli/man.js +12 -0
- package/node_modules/fast-xml-parser/src/cli/read.js +92 -0
- package/node_modules/fast-xml-parser/src/fxp.d.ts +108 -0
- package/node_modules/fast-xml-parser/src/fxp.js +11 -0
- package/node_modules/fast-xml-parser/src/util.js +72 -0
- package/node_modules/fast-xml-parser/src/validator.js +423 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +259 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +131 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +152 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +48 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +588 -0
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +58 -0
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +113 -0
- package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +25 -0
- package/node_modules/follow-redirects/LICENSE +18 -0
- package/node_modules/follow-redirects/README.md +155 -0
- package/node_modules/follow-redirects/debug.js +15 -0
- package/node_modules/follow-redirects/http.js +1 -0
- package/node_modules/follow-redirects/https.js +1 -0
- package/node_modules/follow-redirects/index.js +672 -0
- package/node_modules/follow-redirects/package.json +58 -0
- package/node_modules/form-data/License +19 -0
- package/node_modules/form-data/README.md.bak +358 -0
- package/node_modules/form-data/Readme.md +358 -0
- package/node_modules/form-data/index.d.ts +62 -0
- package/node_modules/form-data/lib/browser.js +2 -0
- package/node_modules/form-data/lib/form_data.js +501 -0
- package/node_modules/form-data/lib/populate.js +10 -0
- package/node_modules/form-data/package.json +68 -0
- package/node_modules/jose/LICENSE.md +21 -0
- package/node_modules/jose/README.md +132 -0
- package/node_modules/jose/dist/browser/index.js +32 -0
- package/node_modules/jose/dist/browser/jwe/compact/decrypt.js +27 -0
- package/node_modules/jose/dist/browser/jwe/compact/encrypt.js +26 -0
- package/node_modules/jose/dist/browser/jwe/flattened/decrypt.js +166 -0
- package/node_modules/jose/dist/browser/jwe/flattened/encrypt.js +175 -0
- package/node_modules/jose/dist/browser/jwe/general/decrypt.js +31 -0
- package/node_modules/jose/dist/browser/jwe/general/encrypt.js +178 -0
- package/node_modules/jose/dist/browser/jwk/embedded.js +17 -0
- package/node_modules/jose/dist/browser/jwk/thumbprint.js +53 -0
- package/node_modules/jose/dist/browser/jwks/local.js +116 -0
- package/node_modules/jose/dist/browser/jwks/remote.js +76 -0
- package/node_modules/jose/dist/browser/jws/compact/sign.js +17 -0
- package/node_modules/jose/dist/browser/jws/compact/verify.js +21 -0
- package/node_modules/jose/dist/browser/jws/flattened/sign.js +81 -0
- package/node_modules/jose/dist/browser/jws/flattened/verify.js +115 -0
- package/node_modules/jose/dist/browser/jws/general/sign.js +67 -0
- package/node_modules/jose/dist/browser/jws/general/verify.js +24 -0
- package/node_modules/jose/dist/browser/jwt/decrypt.js +23 -0
- package/node_modules/jose/dist/browser/jwt/encrypt.js +68 -0
- package/node_modules/jose/dist/browser/jwt/produce.js +54 -0
- package/node_modules/jose/dist/browser/jwt/sign.js +21 -0
- package/node_modules/jose/dist/browser/jwt/unsecured.js +32 -0
- package/node_modules/jose/dist/browser/jwt/verify.js +16 -0
- package/node_modules/jose/dist/browser/key/export.js +12 -0
- package/node_modules/jose/dist/browser/key/generate_key_pair.js +4 -0
- package/node_modules/jose/dist/browser/key/generate_secret.js +4 -0
- package/node_modules/jose/dist/browser/key/import.js +50 -0
- package/node_modules/jose/dist/browser/lib/aesgcmkw.js +14 -0
- package/node_modules/jose/dist/browser/lib/buffer_utils.js +51 -0
- package/node_modules/jose/dist/browser/lib/cek.js +20 -0
- package/node_modules/jose/dist/browser/lib/check_iv_length.js +8 -0
- package/node_modules/jose/dist/browser/lib/check_key_type.js +45 -0
- package/node_modules/jose/dist/browser/lib/check_p2s.js +6 -0
- package/node_modules/jose/dist/browser/lib/crypto_key.js +152 -0
- package/node_modules/jose/dist/browser/lib/decrypt_key_management.js +127 -0
- package/node_modules/jose/dist/browser/lib/encrypt_key_management.js +87 -0
- package/node_modules/jose/dist/browser/lib/epoch.js +1 -0
- package/node_modules/jose/dist/browser/lib/format_pem.js +4 -0
- package/node_modules/jose/dist/browser/lib/invalid_key_input.js +30 -0
- package/node_modules/jose/dist/browser/lib/is_disjoint.js +22 -0
- package/node_modules/jose/dist/browser/lib/is_object.js +16 -0
- package/node_modules/jose/dist/browser/lib/iv.js +20 -0
- package/node_modules/jose/dist/browser/lib/jwt_claims_set.js +102 -0
- package/node_modules/jose/dist/browser/lib/secs.js +44 -0
- package/node_modules/jose/dist/browser/lib/validate_algorithms.js +11 -0
- package/node_modules/jose/dist/browser/lib/validate_crit.js +34 -0
- package/node_modules/jose/dist/browser/package.json +1 -0
- package/node_modules/jose/dist/browser/runtime/aeskw.js +32 -0
- package/node_modules/jose/dist/browser/runtime/asn1.js +202 -0
- package/node_modules/jose/dist/browser/runtime/base64url.js +37 -0
- package/node_modules/jose/dist/browser/runtime/bogus.js +6 -0
- package/node_modules/jose/dist/browser/runtime/check_cek_length.js +8 -0
- package/node_modules/jose/dist/browser/runtime/check_key_length.js +8 -0
- package/node_modules/jose/dist/browser/runtime/decrypt.js +85 -0
- package/node_modules/jose/dist/browser/runtime/digest.js +6 -0
- package/node_modules/jose/dist/browser/runtime/ecdhes.js +46 -0
- package/node_modules/jose/dist/browser/runtime/encrypt.js +68 -0
- package/node_modules/jose/dist/browser/runtime/fetch_jwks.js +34 -0
- package/node_modules/jose/dist/browser/runtime/generate.js +141 -0
- package/node_modules/jose/dist/browser/runtime/get_sign_verify_key.js +17 -0
- package/node_modules/jose/dist/browser/runtime/is_key_like.js +5 -0
- package/node_modules/jose/dist/browser/runtime/jwk_to_key.js +143 -0
- package/node_modules/jose/dist/browser/runtime/key_to_jwk.js +21 -0
- package/node_modules/jose/dist/browser/runtime/pbes2kw.js +51 -0
- package/node_modules/jose/dist/browser/runtime/random.js +2 -0
- package/node_modules/jose/dist/browser/runtime/rsaes.js +37 -0
- package/node_modules/jose/dist/browser/runtime/runtime.js +1 -0
- package/node_modules/jose/dist/browser/runtime/sign.js +11 -0
- package/node_modules/jose/dist/browser/runtime/subtle_dsa.js +26 -0
- package/node_modules/jose/dist/browser/runtime/subtle_rsaes.js +12 -0
- package/node_modules/jose/dist/browser/runtime/timing_safe_equal.js +19 -0
- package/node_modules/jose/dist/browser/runtime/verify.js +16 -0
- package/node_modules/jose/dist/browser/runtime/webcrypto.js +2 -0
- package/node_modules/jose/dist/browser/runtime/zlib.js +7 -0
- package/node_modules/jose/dist/browser/util/base64url.js +3 -0
- package/node_modules/jose/dist/browser/util/decode_jwt.js +32 -0
- package/node_modules/jose/dist/browser/util/decode_protected_header.js +34 -0
- package/node_modules/jose/dist/browser/util/errors.js +148 -0
- package/node_modules/jose/dist/browser/util/runtime.js +2 -0
- package/node_modules/jose/dist/node/cjs/index.js +67 -0
- package/node_modules/jose/dist/node/cjs/jwe/compact/decrypt.js +31 -0
- package/node_modules/jose/dist/node/cjs/jwe/compact/encrypt.js +30 -0
- package/node_modules/jose/dist/node/cjs/jwe/flattened/decrypt.js +170 -0
- package/node_modules/jose/dist/node/cjs/jwe/flattened/encrypt.js +179 -0
- package/node_modules/jose/dist/node/cjs/jwe/general/decrypt.js +35 -0
- package/node_modules/jose/dist/node/cjs/jwe/general/encrypt.js +182 -0
- package/node_modules/jose/dist/node/cjs/jwk/embedded.js +21 -0
- package/node_modules/jose/dist/node/cjs/jwk/thumbprint.js +58 -0
- package/node_modules/jose/dist/node/cjs/jwks/local.js +122 -0
- package/node_modules/jose/dist/node/cjs/jwks/remote.js +80 -0
- package/node_modules/jose/dist/node/cjs/jws/compact/sign.js +21 -0
- package/node_modules/jose/dist/node/cjs/jws/compact/verify.js +25 -0
- package/node_modules/jose/dist/node/cjs/jws/flattened/sign.js +85 -0
- package/node_modules/jose/dist/node/cjs/jws/flattened/verify.js +119 -0
- package/node_modules/jose/dist/node/cjs/jws/general/sign.js +71 -0
- package/node_modules/jose/dist/node/cjs/jws/general/verify.js +28 -0
- package/node_modules/jose/dist/node/cjs/jwt/decrypt.js +27 -0
- package/node_modules/jose/dist/node/cjs/jwt/encrypt.js +72 -0
- package/node_modules/jose/dist/node/cjs/jwt/produce.js +58 -0
- package/node_modules/jose/dist/node/cjs/jwt/sign.js +25 -0
- package/node_modules/jose/dist/node/cjs/jwt/unsecured.js +36 -0
- package/node_modules/jose/dist/node/cjs/jwt/verify.js +20 -0
- package/node_modules/jose/dist/node/cjs/key/export.js +18 -0
- package/node_modules/jose/dist/node/cjs/key/generate_key_pair.js +8 -0
- package/node_modules/jose/dist/node/cjs/key/generate_secret.js +8 -0
- package/node_modules/jose/dist/node/cjs/key/import.js +57 -0
- package/node_modules/jose/dist/node/cjs/lib/aesgcmkw.js +19 -0
- package/node_modules/jose/dist/node/cjs/lib/buffer_utils.js +60 -0
- package/node_modules/jose/dist/node/cjs/lib/cek.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/check_iv_length.js +10 -0
- package/node_modules/jose/dist/node/cjs/lib/check_key_type.js +47 -0
- package/node_modules/jose/dist/node/cjs/lib/check_p2s.js +9 -0
- package/node_modules/jose/dist/node/cjs/lib/crypto_key.js +157 -0
- package/node_modules/jose/dist/node/cjs/lib/decrypt_key_management.js +129 -0
- package/node_modules/jose/dist/node/cjs/lib/encrypt_key_management.js +89 -0
- package/node_modules/jose/dist/node/cjs/lib/epoch.js +3 -0
- package/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js +34 -0
- package/node_modules/jose/dist/node/cjs/lib/is_disjoint.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/is_object.js +19 -0
- package/node_modules/jose/dist/node/cjs/lib/iv.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/jwt_claims_set.js +104 -0
- package/node_modules/jose/dist/node/cjs/lib/secs.js +46 -0
- package/node_modules/jose/dist/node/cjs/lib/validate_algorithms.js +13 -0
- package/node_modules/jose/dist/node/cjs/lib/validate_crit.js +36 -0
- package/node_modules/jose/dist/node/cjs/runtime/aeskw.js +55 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1.js +54 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_decoder.js +47 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_encoder.js +91 -0
- package/node_modules/jose/dist/node/cjs/runtime/base64url.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/cbc_tag.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/check_cek_length.js +37 -0
- package/node_modules/jose/dist/node/cjs/runtime/check_modulus_length.js +52 -0
- package/node_modules/jose/dist/node/cjs/runtime/ciphers.js +8 -0
- package/node_modules/jose/dist/node/cjs/runtime/decrypt.js +97 -0
- package/node_modules/jose/dist/node/cjs/runtime/digest.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/dsa_digest.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/ecdhes.js +70 -0
- package/node_modules/jose/dist/node/cjs/runtime/encrypt.js +74 -0
- package/node_modules/jose/dist/node/cjs/runtime/fetch_jwks.js +45 -0
- package/node_modules/jose/dist/node/cjs/runtime/flags.js +8 -0
- package/node_modules/jose/dist/node/cjs/runtime/generate.js +105 -0
- package/node_modules/jose/dist/node/cjs/runtime/get_named_curve.js +95 -0
- package/node_modules/jose/dist/node/cjs/runtime/get_sign_verify_key.js +24 -0
- package/node_modules/jose/dist/node/cjs/runtime/hmac_digest.js +16 -0
- package/node_modules/jose/dist/node/cjs/runtime/is_key_like.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/is_key_object.js +7 -0
- package/node_modules/jose/dist/node/cjs/runtime/jwk_to_key.js +118 -0
- package/node_modules/jose/dist/node/cjs/runtime/key_to_jwk.js +160 -0
- package/node_modules/jose/dist/node/cjs/runtime/node_key.js +78 -0
- package/node_modules/jose/dist/node/cjs/runtime/pbes2kw.js +48 -0
- package/node_modules/jose/dist/node/cjs/runtime/random.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/rsaes.js +69 -0
- package/node_modules/jose/dist/node/cjs/runtime/runtime.js +3 -0
- package/node_modules/jose/dist/node/cjs/runtime/sign.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/timing_safe_equal.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/verify.js +38 -0
- package/node_modules/jose/dist/node/cjs/runtime/webcrypto.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/zlib.js +11 -0
- package/node_modules/jose/dist/node/cjs/util/base64url.js +6 -0
- package/node_modules/jose/dist/node/cjs/util/decode_jwt.js +36 -0
- package/node_modules/jose/dist/node/cjs/util/decode_protected_header.js +38 -0
- package/node_modules/jose/dist/node/cjs/util/errors.js +166 -0
- package/node_modules/jose/dist/node/cjs/util/runtime.js +4 -0
- package/node_modules/jose/dist/node/esm/index.js +30 -0
- package/node_modules/jose/dist/node/esm/jwe/compact/decrypt.js +27 -0
- package/node_modules/jose/dist/node/esm/jwe/compact/encrypt.js +26 -0
- package/node_modules/jose/dist/node/esm/jwe/flattened/decrypt.js +166 -0
- package/node_modules/jose/dist/node/esm/jwe/flattened/encrypt.js +175 -0
- package/node_modules/jose/dist/node/esm/jwe/general/decrypt.js +31 -0
- package/node_modules/jose/dist/node/esm/jwe/general/encrypt.js +178 -0
- package/node_modules/jose/dist/node/esm/jwk/embedded.js +17 -0
- package/node_modules/jose/dist/node/esm/jwk/thumbprint.js +53 -0
- package/node_modules/jose/dist/node/esm/jwks/local.js +116 -0
- package/node_modules/jose/dist/node/esm/jwks/remote.js +76 -0
- package/node_modules/jose/dist/node/esm/jws/compact/sign.js +17 -0
- package/node_modules/jose/dist/node/esm/jws/compact/verify.js +21 -0
- package/node_modules/jose/dist/node/esm/jws/flattened/sign.js +81 -0
- package/node_modules/jose/dist/node/esm/jws/flattened/verify.js +115 -0
- package/node_modules/jose/dist/node/esm/jws/general/sign.js +67 -0
- package/node_modules/jose/dist/node/esm/jws/general/verify.js +24 -0
- package/node_modules/jose/dist/node/esm/jwt/decrypt.js +23 -0
- package/node_modules/jose/dist/node/esm/jwt/encrypt.js +68 -0
- package/node_modules/jose/dist/node/esm/jwt/produce.js +54 -0
- package/node_modules/jose/dist/node/esm/jwt/sign.js +21 -0
- package/node_modules/jose/dist/node/esm/jwt/unsecured.js +32 -0
- package/node_modules/jose/dist/node/esm/jwt/verify.js +16 -0
- package/node_modules/jose/dist/node/esm/key/export.js +12 -0
- package/node_modules/jose/dist/node/esm/key/generate_key_pair.js +4 -0
- package/node_modules/jose/dist/node/esm/key/generate_secret.js +4 -0
- package/node_modules/jose/dist/node/esm/key/import.js +50 -0
- package/node_modules/jose/dist/node/esm/lib/aesgcmkw.js +14 -0
- package/node_modules/jose/dist/node/esm/lib/buffer_utils.js +51 -0
- package/node_modules/jose/dist/node/esm/lib/cek.js +20 -0
- package/node_modules/jose/dist/node/esm/lib/check_iv_length.js +8 -0
- package/node_modules/jose/dist/node/esm/lib/check_key_type.js +45 -0
- package/node_modules/jose/dist/node/esm/lib/check_p2s.js +6 -0
- package/node_modules/jose/dist/node/esm/lib/crypto_key.js +152 -0
- package/node_modules/jose/dist/node/esm/lib/decrypt_key_management.js +127 -0
- package/node_modules/jose/dist/node/esm/lib/encrypt_key_management.js +87 -0
- package/node_modules/jose/dist/node/esm/lib/epoch.js +1 -0
- package/node_modules/jose/dist/node/esm/lib/invalid_key_input.js +30 -0
- package/node_modules/jose/dist/node/esm/lib/is_disjoint.js +22 -0
- package/node_modules/jose/dist/node/esm/lib/is_object.js +16 -0
- package/node_modules/jose/dist/node/esm/lib/iv.js +20 -0
- package/node_modules/jose/dist/node/esm/lib/jwt_claims_set.js +102 -0
- package/node_modules/jose/dist/node/esm/lib/secs.js +44 -0
- package/node_modules/jose/dist/node/esm/lib/validate_algorithms.js +11 -0
- package/node_modules/jose/dist/node/esm/lib/validate_crit.js +34 -0
- package/node_modules/jose/dist/node/esm/package.json +1 -0
- package/node_modules/jose/dist/node/esm/runtime/aeskw.js +50 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1.js +46 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_decoder.js +44 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_encoder.js +88 -0
- package/node_modules/jose/dist/node/esm/runtime/base64url.js +20 -0
- package/node_modules/jose/dist/node/esm/runtime/cbc_tag.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/check_cek_length.js +35 -0
- package/node_modules/jose/dist/node/esm/runtime/check_modulus_length.js +48 -0
- package/node_modules/jose/dist/node/esm/runtime/ciphers.js +6 -0
- package/node_modules/jose/dist/node/esm/runtime/decrypt.js +95 -0
- package/node_modules/jose/dist/node/esm/runtime/digest.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/dsa_digest.js +22 -0
- package/node_modules/jose/dist/node/esm/runtime/ecdhes.js +64 -0
- package/node_modules/jose/dist/node/esm/runtime/encrypt.js +72 -0
- package/node_modules/jose/dist/node/esm/runtime/fetch_jwks.js +43 -0
- package/node_modules/jose/dist/node/esm/runtime/flags.js +5 -0
- package/node_modules/jose/dist/node/esm/runtime/generate.js +100 -0
- package/node_modules/jose/dist/node/esm/runtime/get_named_curve.js +91 -0
- package/node_modules/jose/dist/node/esm/runtime/get_sign_verify_key.js +21 -0
- package/node_modules/jose/dist/node/esm/runtime/hmac_digest.js +13 -0
- package/node_modules/jose/dist/node/esm/runtime/is_key_like.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/is_key_object.js +5 -0
- package/node_modules/jose/dist/node/esm/runtime/jwk_to_key.js +116 -0
- package/node_modules/jose/dist/node/esm/runtime/key_to_jwk.js +158 -0
- package/node_modules/jose/dist/node/esm/runtime/node_key.js +75 -0
- package/node_modules/jose/dist/node/esm/runtime/pbes2kw.js +43 -0
- package/node_modules/jose/dist/node/esm/runtime/random.js +1 -0
- package/node_modules/jose/dist/node/esm/runtime/rsaes.js +64 -0
- package/node_modules/jose/dist/node/esm/runtime/runtime.js +1 -0
- package/node_modules/jose/dist/node/esm/runtime/sign.js +23 -0
- package/node_modules/jose/dist/node/esm/runtime/timing_safe_equal.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/verify.js +36 -0
- package/node_modules/jose/dist/node/esm/runtime/webcrypto.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/zlib.js +6 -0
- package/node_modules/jose/dist/node/esm/util/base64url.js +3 -0
- package/node_modules/jose/dist/node/esm/util/decode_jwt.js +32 -0
- package/node_modules/jose/dist/node/esm/util/decode_protected_header.js +34 -0
- package/node_modules/jose/dist/node/esm/util/errors.js +148 -0
- package/node_modules/jose/dist/node/esm/util/runtime.js +2 -0
- package/node_modules/jose/dist/types/index.d.ts +48 -0
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +23 -0
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +52 -0
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +23 -0
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +80 -0
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +23 -0
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +60 -0
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +9 -0
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +21 -0
- package/node_modules/jose/dist/types/jwks/local.d.ts +26 -0
- package/node_modules/jose/dist/types/jwks/remote.d.ts +49 -0
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +24 -0
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +25 -0
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +32 -0
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +25 -0
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +41 -0
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +25 -0
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +27 -0
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +77 -0
- package/node_modules/jose/dist/types/jwt/produce.d.ts +54 -0
- package/node_modules/jose/dist/types/jwt/sign.d.ts +23 -0
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +21 -0
- package/node_modules/jose/dist/types/jwt/verify.d.ts +29 -0
- package/node_modules/jose/dist/types/key/export.d.ts +21 -0
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +36 -0
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +19 -0
- package/node_modules/jose/dist/types/key/import.d.ts +54 -0
- package/node_modules/jose/dist/types/types.d.ts +610 -0
- package/node_modules/jose/dist/types/util/base64url.d.ts +19 -0
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +10 -0
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +8 -0
- package/node_modules/jose/dist/types/util/errors.d.ts +142 -0
- package/node_modules/jose/dist/types/util/runtime.d.ts +3 -0
- package/node_modules/jose/package.json +89 -0
- package/node_modules/lodash.merge/LICENSE +47 -0
- package/node_modules/lodash.merge/README.md +18 -0
- package/node_modules/lodash.merge/index.js +1977 -0
- package/node_modules/lodash.merge/package.json +16 -0
- package/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/lru-cache/README.md +166 -0
- package/node_modules/lru-cache/index.js +334 -0
- package/node_modules/lru-cache/package.json +34 -0
- package/node_modules/mime-db/HISTORY.md +507 -0
- package/node_modules/mime-db/LICENSE +23 -0
- package/node_modules/mime-db/README.md +100 -0
- package/node_modules/mime-db/db.json +8519 -0
- package/node_modules/mime-db/index.js +12 -0
- package/node_modules/mime-db/package.json +60 -0
- package/node_modules/mime-types/HISTORY.md +397 -0
- package/node_modules/mime-types/LICENSE +23 -0
- package/node_modules/mime-types/README.md +113 -0
- package/node_modules/mime-types/index.js +188 -0
- package/node_modules/mime-types/package.json +44 -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/mustache/LICENSE +11 -0
- package/node_modules/mustache/README.md +621 -0
- package/node_modules/mustache/bin/mustache +150 -0
- package/node_modules/mustache/mustache.js +772 -0
- package/node_modules/mustache/mustache.min.js +1 -0
- package/node_modules/mustache/mustache.mjs +764 -0
- package/node_modules/mustache/package.json +67 -0
- package/node_modules/mustache/wrappers/dojo/mustache.js.post +4 -0
- package/node_modules/mustache/wrappers/dojo/mustache.js.pre +9 -0
- package/node_modules/mustache/wrappers/jquery/mustache.js.post +13 -0
- package/node_modules/mustache/wrappers/jquery/mustache.js.pre +9 -0
- package/node_modules/mustache/wrappers/mootools/mustache.js.post +5 -0
- package/node_modules/mustache/wrappers/mootools/mustache.js.pre +2 -0
- package/node_modules/mustache/wrappers/qooxdoo/mustache.js.post +9 -0
- package/node_modules/mustache/wrappers/qooxdoo/mustache.js.pre +172 -0
- package/node_modules/mustache/wrappers/yui3/mustache.js.post +4 -0
- package/node_modules/mustache/wrappers/yui3/mustache.js.pre +1 -0
- package/node_modules/object-hash/LICENSE +22 -0
- package/node_modules/object-hash/dist/object_hash.js +1 -0
- package/node_modules/object-hash/index.js +453 -0
- package/node_modules/object-hash/package.json +53 -0
- package/node_modules/object-hash/readme.markdown +184 -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/oidc-token-hash/LICENSE.md +21 -0
- package/node_modules/oidc-token-hash/README.md +54 -0
- package/node_modules/oidc-token-hash/lib/index.js +106 -0
- package/node_modules/oidc-token-hash/lib/shake256.js +7 -0
- package/node_modules/oidc-token-hash/package.json +36 -0
- package/node_modules/openid-client/LICENSE.md +21 -0
- package/node_modules/openid-client/README.md +323 -0
- package/node_modules/openid-client/lib/client.js +1849 -0
- package/node_modules/openid-client/lib/device_flow_handle.js +125 -0
- package/node_modules/openid-client/lib/errors.js +55 -0
- package/node_modules/openid-client/lib/helpers/assert.js +24 -0
- package/node_modules/openid-client/lib/helpers/base64url.js +13 -0
- package/node_modules/openid-client/lib/helpers/client.js +209 -0
- package/node_modules/openid-client/lib/helpers/consts.js +7 -0
- package/node_modules/openid-client/lib/helpers/decode_jwt.js +27 -0
- package/node_modules/openid-client/lib/helpers/deep_clone.js +1 -0
- package/node_modules/openid-client/lib/helpers/defaults.js +27 -0
- package/node_modules/openid-client/lib/helpers/generators.js +14 -0
- package/node_modules/openid-client/lib/helpers/is_key_object.js +4 -0
- package/node_modules/openid-client/lib/helpers/is_plain_object.js +1 -0
- package/node_modules/openid-client/lib/helpers/issuer.js +110 -0
- package/node_modules/openid-client/lib/helpers/keystore.js +313 -0
- package/node_modules/openid-client/lib/helpers/merge.js +24 -0
- package/node_modules/openid-client/lib/helpers/pick.js +9 -0
- package/node_modules/openid-client/lib/helpers/process_response.js +71 -0
- package/node_modules/openid-client/lib/helpers/request.js +200 -0
- package/node_modules/openid-client/lib/helpers/unix_timestamp.js +1 -0
- package/node_modules/openid-client/lib/helpers/weak_cache.js +1 -0
- package/node_modules/openid-client/lib/helpers/webfinger_normalize.js +71 -0
- package/node_modules/openid-client/lib/helpers/www_authenticate_parser.js +14 -0
- package/node_modules/openid-client/lib/index.js +23 -0
- package/node_modules/openid-client/lib/index.mjs +9 -0
- package/node_modules/openid-client/lib/issuer.js +191 -0
- package/node_modules/openid-client/lib/issuer_registry.js +3 -0
- package/node_modules/openid-client/lib/passport_strategy.js +205 -0
- package/node_modules/openid-client/lib/token_set.js +35 -0
- package/node_modules/openid-client/package.json +106 -0
- package/node_modules/openid-client/types/index.d.ts +622 -0
- package/node_modules/proxy-from-env/.eslintrc +29 -0
- package/node_modules/proxy-from-env/.travis.yml +10 -0
- package/node_modules/proxy-from-env/LICENSE +20 -0
- package/node_modules/proxy-from-env/README.md +131 -0
- package/node_modules/proxy-from-env/index.js +108 -0
- package/node_modules/proxy-from-env/package.json +34 -0
- package/node_modules/proxy-from-env/test.js +483 -0
- package/node_modules/strnum/.vscode/launch.json +25 -0
- package/node_modules/strnum/LICENSE +21 -0
- package/node_modules/strnum/README.md +86 -0
- package/node_modules/strnum/package.json +24 -0
- package/node_modules/strnum/strnum.js +124 -0
- package/node_modules/strnum/strnum.test.js +150 -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 +37 -0
- package/node_modules/tslib/modules/index.js +68 -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 +453 -0
- package/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/tslib/tslib.es6.js +370 -0
- package/node_modules/tslib/tslib.es6.mjs +370 -0
- package/node_modules/tslib/tslib.html +1 -0
- package/node_modules/tslib/tslib.js +421 -0
- package/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/uuid/README.md +505 -0
- package/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/uuid/package.json +135 -0
- package/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +8 -0
- package/node_modules/yallist/package.json +29 -0
- package/node_modules/yallist/yallist.js +426 -0
- package/package.json +200 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LoginFunction = void 0;
|
|
4
|
+
// ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
|
|
5
|
+
const path = require("path");
|
|
6
|
+
const lambda = require("aws-cdk-lib/aws-lambda");
|
|
7
|
+
/**
|
|
8
|
+
* An AWS Lambda function which executes src/webapp/login/login.
|
|
9
|
+
*/
|
|
10
|
+
class LoginFunction extends lambda.Function {
|
|
11
|
+
constructor(scope, id, props) {
|
|
12
|
+
super(scope, id, {
|
|
13
|
+
description: 'src/webapp/login/login.lambda.ts',
|
|
14
|
+
...props,
|
|
15
|
+
runtime: new lambda.Runtime('nodejs18.x', lambda.RuntimeFamily.NODEJS),
|
|
16
|
+
handler: 'index.handler',
|
|
17
|
+
code: lambda.Code.fromAsset(path.join(__dirname, '../../../assets/webapp/login/login.lambda')),
|
|
18
|
+
});
|
|
19
|
+
this.addEnvironment('AWS_NODEJS_CONNECTION_REUSE_ENABLED', '1', { removeInEdge: true });
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.LoginFunction = LoginFunction;
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9naW4tZnVuY3Rpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvd2ViYXBwL2xvZ2luL2xvZ2luLWZ1bmN0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDZFQUE2RTtBQUM3RSw2QkFBNkI7QUFDN0IsaURBQWlEO0FBU2pEOztHQUVHO0FBQ0gsTUFBYSxhQUFjLFNBQVEsTUFBTSxDQUFDLFFBQVE7SUFDaEQsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUEwQjtRQUNsRSxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsRUFBRTtZQUNmLFdBQVcsRUFBRSxrQ0FBa0M7WUFDL0MsR0FBRyxLQUFLO1lBQ1IsT0FBTyxFQUFFLElBQUksTUFBTSxDQUFDLE9BQU8sQ0FBQyxZQUFZLEVBQUUsTUFBTSxDQUFDLGFBQWEsQ0FBQyxNQUFNLENBQUM7WUFDdEUsT0FBTyxFQUFFLGVBQWU7WUFDeEIsSUFBSSxFQUFFLE1BQU0sQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLDJDQUEyQyxDQUFDLENBQUM7U0FDL0YsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLGNBQWMsQ0FBQyxxQ0FBcUMsRUFBRSxHQUFHLEVBQUUsRUFBRSxZQUFZLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUMxRixDQUFDO0NBQ0Y7QUFYRCxzQ0FXQyIsInNvdXJjZXNDb250ZW50IjpbIi8vIH5+IEdlbmVyYXRlZCBieSBwcm9qZW4uIFRvIG1vZGlmeSwgZWRpdCAucHJvamVucmMuanMgYW5kIHJ1biBcIm5weCBwcm9qZW5cIi5cbmltcG9ydCAqIGFzIHBhdGggZnJvbSAncGF0aCc7XG5pbXBvcnQgKiBhcyBsYW1iZGEgZnJvbSAnYXdzLWNkay1saWIvYXdzLWxhbWJkYSc7XG5pbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcblxuLyoqXG4gKiBQcm9wcyBmb3IgTG9naW5GdW5jdGlvblxuICovXG5leHBvcnQgaW50ZXJmYWNlIExvZ2luRnVuY3Rpb25Qcm9wcyBleHRlbmRzIGxhbWJkYS5GdW5jdGlvbk9wdGlvbnMge1xufVxuXG4vKipcbiAqIEFuIEFXUyBMYW1iZGEgZnVuY3Rpb24gd2hpY2ggZXhlY3V0ZXMgc3JjL3dlYmFwcC9sb2dpbi9sb2dpbi5cbiAqL1xuZXhwb3J0IGNsYXNzIExvZ2luRnVuY3Rpb24gZXh0ZW5kcyBsYW1iZGEuRnVuY3Rpb24ge1xuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wcz86IExvZ2luRnVuY3Rpb25Qcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCwge1xuICAgICAgZGVzY3JpcHRpb246ICdzcmMvd2ViYXBwL2xvZ2luL2xvZ2luLmxhbWJkYS50cycsXG4gICAgICAuLi5wcm9wcyxcbiAgICAgIHJ1bnRpbWU6IG5ldyBsYW1iZGEuUnVudGltZSgnbm9kZWpzMTgueCcsIGxhbWJkYS5SdW50aW1lRmFtaWx5Lk5PREVKUyksXG4gICAgICBoYW5kbGVyOiAnaW5kZXguaGFuZGxlcicsXG4gICAgICBjb2RlOiBsYW1iZGEuQ29kZS5mcm9tQXNzZXQocGF0aC5qb2luKF9fZGlybmFtZSwgJy4uLy4uLy4uL2Fzc2V0cy93ZWJhcHAvbG9naW4vbG9naW4ubGFtYmRhJykpLFxuICAgIH0pO1xuICAgIHRoaXMuYWRkRW52aXJvbm1lbnQoJ0FXU19OT0RFSlNfQ09OTkVDVElPTl9SRVVTRV9FTkFCTEVEJywgJzEnLCB7IHJlbW92ZUluRWRnZTogdHJ1ZSB9KTtcbiAgfVxufSJdfQ==
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.handler = void 0;
|
|
4
|
+
const client_dynamodb_1 = require("@aws-sdk/client-dynamodb");
|
|
5
|
+
const Response_1 = require("@gemeentenijmegen/apigateway-http/lib/V2/Response");
|
|
6
|
+
const loginRequestHandler_1 = require("./loginRequestHandler");
|
|
7
|
+
const Files_1 = require("../util/Files");
|
|
8
|
+
const dynamoDBClient = new client_dynamodb_1.DynamoDBClient({ region: process.env.AWS_REGION });
|
|
9
|
+
const loginRequestHandler = new loginRequestHandler_1.LoginRequestHandler({
|
|
10
|
+
oidcProfiles: Files_1.Files.getAuthenticationProfiles(),
|
|
11
|
+
templateOverwrite: Files_1.Files.getTemplateOverwrite('/opt/login.mustache'),
|
|
12
|
+
});
|
|
13
|
+
function parseEvent(event) {
|
|
14
|
+
return { cookies: event?.cookies?.join(';') };
|
|
15
|
+
}
|
|
16
|
+
async function handler(event, _context) {
|
|
17
|
+
try {
|
|
18
|
+
const params = parseEvent(event);
|
|
19
|
+
const response = await loginRequestHandler.handleRequest(params.cookies, dynamoDBClient);
|
|
20
|
+
return response;
|
|
21
|
+
}
|
|
22
|
+
catch (err) {
|
|
23
|
+
console.error(err);
|
|
24
|
+
return Response_1.Response.error(500);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
exports.handler = handler;
|
|
28
|
+
;
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9naW4ubGFtYmRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3dlYmFwcC9sb2dpbi9sb2dpbi5sYW1iZGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsOERBQTBEO0FBQzFELGdGQUFtRztBQUNuRywrREFBNEQ7QUFDNUQseUNBQXNDO0FBRXRDLE1BQU0sY0FBYyxHQUFHLElBQUksZ0NBQWMsQ0FBQyxFQUFFLE1BQU0sRUFBRSxPQUFPLENBQUMsR0FBRyxDQUFDLFVBQVUsRUFBRSxDQUFDLENBQUM7QUFFOUUsTUFBTSxtQkFBbUIsR0FBRyxJQUFJLHlDQUFtQixDQUFDO0lBQ2xELFlBQVksRUFBRSxhQUFLLENBQUMseUJBQXlCLEVBQUU7SUFDL0MsaUJBQWlCLEVBQUUsYUFBSyxDQUFDLG9CQUFvQixDQUFDLHFCQUFxQixDQUFDO0NBQ3JFLENBQUMsQ0FBQztBQUVILFNBQVMsVUFBVSxDQUFDLEtBQVU7SUFDNUIsT0FBTyxFQUFFLE9BQU8sRUFBRSxLQUFLLEVBQUUsT0FBTyxFQUFFLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDO0FBQ2hELENBQUM7QUFFTSxLQUFLLFVBQVUsT0FBTyxDQUFFLEtBQVUsRUFBRSxRQUFhO0lBQ3RELElBQUk7UUFDRixNQUFNLE1BQU0sR0FBRyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDakMsTUFBTSxRQUFRLEdBQUcsTUFBTSxtQkFBbUIsQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLE9BQU8sRUFBRSxjQUFjLENBQUMsQ0FBQztRQUN6RixPQUFPLFFBQVEsQ0FBQztLQUNqQjtJQUFDLE9BQU8sR0FBRyxFQUFFO1FBQ1osT0FBTyxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQztRQUNuQixPQUFPLG1CQUFRLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0tBQzVCO0FBQ0gsQ0FBQztBQVRELDBCQVNDO0FBQUEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IER5bmFtb0RCQ2xpZW50IH0gZnJvbSAnQGF3cy1zZGsvY2xpZW50LWR5bmFtb2RiJztcbmltcG9ydCB7IEFwaUdhdGV3YXlWMlJlc3BvbnNlLCBSZXNwb25zZSB9IGZyb20gJ0BnZW1lZW50ZW5pam1lZ2VuL2FwaWdhdGV3YXktaHR0cC9saWIvVjIvUmVzcG9uc2UnO1xuaW1wb3J0IHsgTG9naW5SZXF1ZXN0SGFuZGxlciB9IGZyb20gJy4vbG9naW5SZXF1ZXN0SGFuZGxlcic7XG5pbXBvcnQgeyBGaWxlcyB9IGZyb20gJy4uL3V0aWwvRmlsZXMnO1xuXG5jb25zdCBkeW5hbW9EQkNsaWVudCA9IG5ldyBEeW5hbW9EQkNsaWVudCh7IHJlZ2lvbjogcHJvY2Vzcy5lbnYuQVdTX1JFR0lPTiB9KTtcblxuY29uc3QgbG9naW5SZXF1ZXN0SGFuZGxlciA9IG5ldyBMb2dpblJlcXVlc3RIYW5kbGVyKHtcbiAgb2lkY1Byb2ZpbGVzOiBGaWxlcy5nZXRBdXRoZW50aWNhdGlvblByb2ZpbGVzKCksXG4gIHRlbXBsYXRlT3ZlcndyaXRlOiBGaWxlcy5nZXRUZW1wbGF0ZU92ZXJ3cml0ZSgnL29wdC9sb2dpbi5tdXN0YWNoZScpLFxufSk7XG5cbmZ1bmN0aW9uIHBhcnNlRXZlbnQoZXZlbnQ6IGFueSkge1xuICByZXR1cm4geyBjb29raWVzOiBldmVudD8uY29va2llcz8uam9pbignOycpIH07XG59XG5cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBoYW5kbGVyIChldmVudDogYW55LCBfY29udGV4dDogYW55KTpQcm9taXNlPEFwaUdhdGV3YXlWMlJlc3BvbnNlPiB7XG4gIHRyeSB7XG4gICAgY29uc3QgcGFyYW1zID0gcGFyc2VFdmVudChldmVudCk7XG4gICAgY29uc3QgcmVzcG9uc2UgPSBhd2FpdCBsb2dpblJlcXVlc3RIYW5kbGVyLmhhbmRsZVJlcXVlc3QocGFyYW1zLmNvb2tpZXMsIGR5bmFtb0RCQ2xpZW50KTtcbiAgICByZXR1cm4gcmVzcG9uc2U7XG4gIH0gY2F0Y2ggKGVycikge1xuICAgIGNvbnNvbGUuZXJyb3IoZXJyKTtcbiAgICByZXR1cm4gUmVzcG9uc2UuZXJyb3IoNTAwKTtcbiAgfVxufTsiXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { DynamoDBClient } from '@aws-sdk/client-dynamodb';
|
|
2
|
+
import { ApiGatewayV2Response } from '@gemeentenijmegen/apigateway-http/lib/V2/Response';
|
|
3
|
+
interface LoginRequestHandlerProps {
|
|
4
|
+
/**
|
|
5
|
+
* Provide an object that is used to create the authentication urls
|
|
6
|
+
* and render the buttons
|
|
7
|
+
*/
|
|
8
|
+
oidcProfiles: any[];
|
|
9
|
+
/**
|
|
10
|
+
* Optionally overwrite the packaged default template
|
|
11
|
+
*/
|
|
12
|
+
templateOverwrite?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare class LoginRequestHandler {
|
|
15
|
+
private config;
|
|
16
|
+
constructor(props: LoginRequestHandlerProps);
|
|
17
|
+
handleRequest(cookies: string, dynamoDBClient: DynamoDBClient): Promise<ApiGatewayV2Response>;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LoginRequestHandler = void 0;
|
|
4
|
+
const Response_1 = require("@gemeentenijmegen/apigateway-http/lib/V2/Response");
|
|
5
|
+
const session_1 = require("@gemeentenijmegen/session");
|
|
6
|
+
const loginTemplate = require("./templates/login.mustache");
|
|
7
|
+
const OpenIDConnect_1 = require("../util/OpenIDConnect");
|
|
8
|
+
const render_1 = require("../util/render");
|
|
9
|
+
class LoginRequestHandler {
|
|
10
|
+
constructor(props) {
|
|
11
|
+
this.config = props;
|
|
12
|
+
}
|
|
13
|
+
async handleRequest(cookies, dynamoDBClient) {
|
|
14
|
+
// Check if loggedin
|
|
15
|
+
let session = new session_1.Session(cookies, dynamoDBClient, {
|
|
16
|
+
ttlInMinutes: parseInt(process.env.SESSION_TTL_MIN ?? '15'),
|
|
17
|
+
});
|
|
18
|
+
await session.init();
|
|
19
|
+
if (session.isLoggedIn() === true) {
|
|
20
|
+
console.debug('redirect to default page');
|
|
21
|
+
return Response_1.Response.redirect('/');
|
|
22
|
+
}
|
|
23
|
+
// Construct new sesssion and redirect urls
|
|
24
|
+
const states = {};
|
|
25
|
+
const authenticationOptions = [];
|
|
26
|
+
for (const profile of this.config.oidcProfiles) {
|
|
27
|
+
let OIDC = new OpenIDConnect_1.OpenIDConnect({
|
|
28
|
+
clientId: profile.clientId,
|
|
29
|
+
clientSecretArn: '',
|
|
30
|
+
applicationBaseUrl: profile.applicationBaseUrl,
|
|
31
|
+
authenticationBaseUrl: profile.authenticationBaseUrl,
|
|
32
|
+
});
|
|
33
|
+
// Create a state & store it in the session store
|
|
34
|
+
const state = OpenIDConnect_1.OpenIDConnect.generateState();
|
|
35
|
+
states[state] = profile.name;
|
|
36
|
+
const authUrl = OIDC.getLoginUrl(state, profile.scope);
|
|
37
|
+
if (profile.immediateRedirect) {
|
|
38
|
+
const newCookies = [session.getCookie()];
|
|
39
|
+
return Response_1.Response.redirect(authUrl, 302, newCookies);
|
|
40
|
+
}
|
|
41
|
+
authenticationOptions.push({
|
|
42
|
+
title: profile.title,
|
|
43
|
+
class: profile.cssClass,
|
|
44
|
+
authUrl: authUrl,
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
await session.createSession({
|
|
48
|
+
loggedin: { BOOL: false },
|
|
49
|
+
states: { S: JSON.stringify(states) },
|
|
50
|
+
});
|
|
51
|
+
// Show the page
|
|
52
|
+
const data = {
|
|
53
|
+
title: 'Inloggen',
|
|
54
|
+
authenticationOptions: authenticationOptions,
|
|
55
|
+
};
|
|
56
|
+
const template = this.config.templateOverwrite ?? loginTemplate.default;
|
|
57
|
+
const html = await render_1.render(data, template);
|
|
58
|
+
const newCookies = [session.getCookie()];
|
|
59
|
+
return Response_1.Response.html(html, 200, newCookies);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.LoginRequestHandler = LoginRequestHandler;
|
|
63
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9naW5SZXF1ZXN0SGFuZGxlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy93ZWJhcHAvbG9naW4vbG9naW5SZXF1ZXN0SGFuZGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFDQSxnRkFBbUc7QUFDbkcsdURBQW9EO0FBQ3BELDREQUE0RDtBQUM1RCx5REFBc0Q7QUFDdEQsMkNBQXdDO0FBY3hDLE1BQWEsbUJBQW1CO0lBRTlCLFlBQVksS0FBK0I7UUFDekMsSUFBSSxDQUFDLE1BQU0sR0FBRyxLQUFLLENBQUM7SUFDdEIsQ0FBQztJQUVELEtBQUssQ0FBQyxhQUFhLENBQUMsT0FBZSxFQUFFLGNBQThCO1FBRWpFLG9CQUFvQjtRQUNwQixJQUFJLE9BQU8sR0FBRyxJQUFJLGlCQUFPLENBQUMsT0FBTyxFQUFFLGNBQWMsRUFBRTtZQUNqRCxZQUFZLEVBQUUsUUFBUSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsZUFBZSxJQUFJLElBQUksQ0FBQztTQUM1RCxDQUFDLENBQUM7UUFDSCxNQUFNLE9BQU8sQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNyQixJQUFJLE9BQU8sQ0FBQyxVQUFVLEVBQUUsS0FBSyxJQUFJLEVBQUU7WUFDakMsT0FBTyxDQUFDLEtBQUssQ0FBQywwQkFBMEIsQ0FBQyxDQUFDO1lBQzFDLE9BQU8sbUJBQVEsQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLENBQUM7U0FDL0I7UUFFRCwyQ0FBMkM7UUFDM0MsTUFBTSxNQUFNLEdBQTRCLEVBQUUsQ0FBQztRQUMzQyxNQUFNLHFCQUFxQixHQUFVLEVBQUUsQ0FBQztRQUN4QyxLQUFLLE1BQU0sT0FBTyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsWUFBWSxFQUFFO1lBQzlDLElBQUksSUFBSSxHQUFHLElBQUksNkJBQWEsQ0FBQztnQkFDM0IsUUFBUSxFQUFFLE9BQU8sQ0FBQyxRQUFRO2dCQUMxQixlQUFlLEVBQUUsRUFBRTtnQkFDbkIsa0JBQWtCLEVBQUUsT0FBTyxDQUFDLGtCQUFrQjtnQkFDOUMscUJBQXFCLEVBQUUsT0FBTyxDQUFDLHFCQUFxQjthQUNyRCxDQUFDLENBQUM7WUFFSCxpREFBaUQ7WUFDakQsTUFBTSxLQUFLLEdBQUcsNkJBQWEsQ0FBQyxhQUFhLEVBQUUsQ0FBQztZQUM1QyxNQUFNLENBQUMsS0FBSyxDQUFDLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQztZQUU3QixNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssRUFBRSxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUM7WUFFdkQsSUFBSSxPQUFPLENBQUMsaUJBQWlCLEVBQUU7Z0JBQzdCLE1BQU0sVUFBVSxHQUFHLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUM7Z0JBQ3pDLE9BQU8sbUJBQVEsQ0FBQyxRQUFRLENBQUMsT0FBTyxFQUFFLEdBQUcsRUFBRSxVQUFVLENBQUMsQ0FBQzthQUNwRDtZQUVELHFCQUFxQixDQUFDLElBQUksQ0FBQztnQkFDekIsS0FBSyxFQUFFLE9BQU8sQ0FBQyxLQUFLO2dCQUNwQixLQUFLLEVBQUUsT0FBTyxDQUFDLFFBQVE7Z0JBQ3ZCLE9BQU8sRUFBRSxPQUFPO2FBQ2pCLENBQUMsQ0FBQztTQUNKO1FBRUQsTUFBTSxPQUFPLENBQUMsYUFBYSxDQUFDO1lBQzFCLFFBQVEsRUFBRSxFQUFFLElBQUksRUFBRSxLQUFLLEVBQUU7WUFDekIsTUFBTSxFQUFFLEVBQUUsQ0FBQyxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLEVBQUU7U0FDdEMsQ0FBQyxDQUFDO1FBRUgsZ0JBQWdCO1FBQ2hCLE1BQU0sSUFBSSxHQUFHO1lBQ1gsS0FBSyxFQUFFLFVBQVU7WUFDakIscUJBQXFCLEVBQUUscUJBQXFCO1NBQzdDLENBQUM7UUFFRixNQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLGlCQUFpQixJQUFJLGFBQWEsQ0FBQyxPQUFPLENBQUM7UUFDeEUsTUFBTSxJQUFJLEdBQUcsTUFBTSxlQUFNLENBQUMsSUFBSSxFQUFFLFFBQVEsQ0FBQyxDQUFDO1FBQzFDLE1BQU0sVUFBVSxHQUFHLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUM7UUFDekMsT0FBTyxtQkFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLEVBQUUsR0FBRyxFQUFFLFVBQVUsQ0FBQyxDQUFDO0lBQzlDLENBQUM7Q0FDRjtBQS9ERCxrREErREMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEeW5hbW9EQkNsaWVudCB9IGZyb20gJ0Bhd3Mtc2RrL2NsaWVudC1keW5hbW9kYic7XG5pbXBvcnQgeyBBcGlHYXRld2F5VjJSZXNwb25zZSwgUmVzcG9uc2UgfSBmcm9tICdAZ2VtZWVudGVuaWptZWdlbi9hcGlnYXRld2F5LWh0dHAvbGliL1YyL1Jlc3BvbnNlJztcbmltcG9ydCB7IFNlc3Npb24gfSBmcm9tICdAZ2VtZWVudGVuaWptZWdlbi9zZXNzaW9uJztcbmltcG9ydCAqIGFzIGxvZ2luVGVtcGxhdGUgZnJvbSAnLi90ZW1wbGF0ZXMvbG9naW4ubXVzdGFjaGUnO1xuaW1wb3J0IHsgT3BlbklEQ29ubmVjdCB9IGZyb20gJy4uL3V0aWwvT3BlbklEQ29ubmVjdCc7XG5pbXBvcnQgeyByZW5kZXIgfSBmcm9tICcuLi91dGlsL3JlbmRlcic7XG5cbmludGVyZmFjZSBMb2dpblJlcXVlc3RIYW5kbGVyUHJvcHMge1xuICAvKipcbiAgICogUHJvdmlkZSBhbiBvYmplY3QgdGhhdCBpcyB1c2VkIHRvIGNyZWF0ZSB0aGUgYXV0aGVudGljYXRpb24gdXJsc1xuICAgKiBhbmQgcmVuZGVyIHRoZSBidXR0b25zXG4gICAqL1xuICBvaWRjUHJvZmlsZXM6IGFueVtdO1xuICAvKipcbiAgICogT3B0aW9uYWxseSBvdmVyd3JpdGUgdGhlIHBhY2thZ2VkIGRlZmF1bHQgdGVtcGxhdGVcbiAgICovXG4gIHRlbXBsYXRlT3ZlcndyaXRlPzogc3RyaW5nO1xufVxuXG5leHBvcnQgY2xhc3MgTG9naW5SZXF1ZXN0SGFuZGxlciB7XG4gIHByaXZhdGUgY29uZmlnOiBMb2dpblJlcXVlc3RIYW5kbGVyUHJvcHM7XG4gIGNvbnN0cnVjdG9yKHByb3BzOiBMb2dpblJlcXVlc3RIYW5kbGVyUHJvcHMpIHtcbiAgICB0aGlzLmNvbmZpZyA9IHByb3BzO1xuICB9XG5cbiAgYXN5bmMgaGFuZGxlUmVxdWVzdChjb29raWVzOiBzdHJpbmcsIGR5bmFtb0RCQ2xpZW50OiBEeW5hbW9EQkNsaWVudCk6UHJvbWlzZTxBcGlHYXRld2F5VjJSZXNwb25zZT4ge1xuXG4gICAgLy8gQ2hlY2sgaWYgbG9nZ2VkaW5cbiAgICBsZXQgc2Vzc2lvbiA9IG5ldyBTZXNzaW9uKGNvb2tpZXMsIGR5bmFtb0RCQ2xpZW50LCB7XG4gICAgICB0dGxJbk1pbnV0ZXM6IHBhcnNlSW50KHByb2Nlc3MuZW52LlNFU1NJT05fVFRMX01JTiA/PyAnMTUnKSxcbiAgICB9KTtcbiAgICBhd2FpdCBzZXNzaW9uLmluaXQoKTtcbiAgICBpZiAoc2Vzc2lvbi5pc0xvZ2dlZEluKCkgPT09IHRydWUpIHtcbiAgICAgIGNvbnNvbGUuZGVidWcoJ3JlZGlyZWN0IHRvIGRlZmF1bHQgcGFnZScpO1xuICAgICAgcmV0dXJuIFJlc3BvbnNlLnJlZGlyZWN0KCcvJyk7XG4gICAgfVxuXG4gICAgLy8gQ29uc3RydWN0IG5ldyBzZXNzc2lvbiBhbmQgcmVkaXJlY3QgdXJsc1xuICAgIGNvbnN0IHN0YXRlczoge1trZXk6IHN0cmluZ106IHN0cmluZ30gPSB7fTtcbiAgICBjb25zdCBhdXRoZW50aWNhdGlvbk9wdGlvbnM6IGFueVtdID0gW107XG4gICAgZm9yIChjb25zdCBwcm9maWxlIG9mIHRoaXMuY29uZmlnLm9pZGNQcm9maWxlcykge1xuICAgICAgbGV0IE9JREMgPSBuZXcgT3BlbklEQ29ubmVjdCh7XG4gICAgICAgIGNsaWVudElkOiBwcm9maWxlLmNsaWVudElkLFxuICAgICAgICBjbGllbnRTZWNyZXRBcm46ICcnLCAvLyBOb3QgdXNlZCBmb3IgZ2VuZXJhdGluZyB1cmxzXG4gICAgICAgIGFwcGxpY2F0aW9uQmFzZVVybDogcHJvZmlsZS5hcHBsaWNhdGlvbkJhc2VVcmwsXG4gICAgICAgIGF1dGhlbnRpY2F0aW9uQmFzZVVybDogcHJvZmlsZS5hdXRoZW50aWNhdGlvbkJhc2VVcmwsXG4gICAgICB9KTtcblxuICAgICAgLy8gQ3JlYXRlIGEgc3RhdGUgJiBzdG9yZSBpdCBpbiB0aGUgc2Vzc2lvbiBzdG9yZVxuICAgICAgY29uc3Qgc3RhdGUgPSBPcGVuSURDb25uZWN0LmdlbmVyYXRlU3RhdGUoKTtcbiAgICAgIHN0YXRlc1tzdGF0ZV0gPSBwcm9maWxlLm5hbWU7XG5cbiAgICAgIGNvbnN0IGF1dGhVcmwgPSBPSURDLmdldExvZ2luVXJsKHN0YXRlLCBwcm9maWxlLnNjb3BlKTtcblxuICAgICAgaWYgKHByb2ZpbGUuaW1tZWRpYXRlUmVkaXJlY3QpIHtcbiAgICAgICAgY29uc3QgbmV3Q29va2llcyA9IFtzZXNzaW9uLmdldENvb2tpZSgpXTtcbiAgICAgICAgcmV0dXJuIFJlc3BvbnNlLnJlZGlyZWN0KGF1dGhVcmwsIDMwMiwgbmV3Q29va2llcyk7XG4gICAgICB9XG5cbiAgICAgIGF1dGhlbnRpY2F0aW9uT3B0aW9ucy5wdXNoKHtcbiAgICAgICAgdGl0bGU6IHByb2ZpbGUudGl0bGUsXG4gICAgICAgIGNsYXNzOiBwcm9maWxlLmNzc0NsYXNzLFxuICAgICAgICBhdXRoVXJsOiBhdXRoVXJsLFxuICAgICAgfSk7XG4gICAgfVxuXG4gICAgYXdhaXQgc2Vzc2lvbi5jcmVhdGVTZXNzaW9uKHtcbiAgICAgIGxvZ2dlZGluOiB7IEJPT0w6IGZhbHNlIH0sXG4gICAgICBzdGF0ZXM6IHsgUzogSlNPTi5zdHJpbmdpZnkoc3RhdGVzKSB9LFxuICAgIH0pO1xuXG4gICAgLy8gU2hvdyB0aGUgcGFnZVxuICAgIGNvbnN0IGRhdGEgPSB7XG4gICAgICB0aXRsZTogJ0lubG9nZ2VuJyxcbiAgICAgIGF1dGhlbnRpY2F0aW9uT3B0aW9uczogYXV0aGVudGljYXRpb25PcHRpb25zLFxuICAgIH07XG5cbiAgICBjb25zdCB0ZW1wbGF0ZSA9IHRoaXMuY29uZmlnLnRlbXBsYXRlT3ZlcndyaXRlID8/IGxvZ2luVGVtcGxhdGUuZGVmYXVsdDtcbiAgICBjb25zdCBodG1sID0gYXdhaXQgcmVuZGVyKGRhdGEsIHRlbXBsYXRlKTtcbiAgICBjb25zdCBuZXdDb29raWVzID0gW3Nlc3Npb24uZ2V0Q29va2llKCldO1xuICAgIHJldHVybiBSZXNwb25zZS5odG1sKGh0bWwsIDIwMCwgbmV3Q29va2llcyk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.handleLogoutRequest = void 0;
|
|
4
|
+
const Response_1 = require("@gemeentenijmegen/apigateway-http/lib/V2/Response");
|
|
5
|
+
const session_1 = require("@gemeentenijmegen/session");
|
|
6
|
+
const cookie_1 = require("cookie");
|
|
7
|
+
const logoutTemplate = require("./templates/logout.mustache");
|
|
8
|
+
const render_1 = require("../util/render");
|
|
9
|
+
async function handleLogoutRequest(cookies, dynamoDBClient, templateOverwrite) {
|
|
10
|
+
let session = new session_1.Session(cookies, dynamoDBClient, {
|
|
11
|
+
ttlInMinutes: parseInt(process.env.SESSION_TTL_MIN ?? '15'),
|
|
12
|
+
});
|
|
13
|
+
if (await session.init()) {
|
|
14
|
+
await session.updateSession({
|
|
15
|
+
loggedin: { BOOL: false },
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
const template = templateOverwrite ?? logoutTemplate.default;
|
|
19
|
+
const html = await render_1.render({ title: 'Uitgelogd' }, template);
|
|
20
|
+
const emptyCookie = cookie_1.default.serialize('session', '', {
|
|
21
|
+
httpOnly: true,
|
|
22
|
+
secure: true,
|
|
23
|
+
});
|
|
24
|
+
return Response_1.Response.html(html, 200, [emptyCookie]);
|
|
25
|
+
}
|
|
26
|
+
exports.handleLogoutRequest = handleLogoutRequest;
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGFuZGxlTG9nb3V0UmVxdWVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy93ZWJhcHAvbG9nb3V0L2hhbmRsZUxvZ291dFJlcXVlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQ0EsZ0ZBQTZFO0FBQzdFLHVEQUFvRDtBQUNwRCxtQ0FBNEI7QUFDNUIsOERBQThEO0FBQzlELDJDQUF3QztBQUVqQyxLQUFLLFVBQVUsbUJBQW1CLENBQUMsT0FBZSxFQUFFLGNBQThCLEVBQUUsaUJBQTBCO0lBQ25ILElBQUksT0FBTyxHQUFHLElBQUksaUJBQU8sQ0FBQyxPQUFPLEVBQUUsY0FBYyxFQUFFO1FBQ2pELFlBQVksRUFBRSxRQUFRLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxlQUFlLElBQUksSUFBSSxDQUFDO0tBQzVELENBQUMsQ0FBQztJQUNILElBQUksTUFBTSxPQUFPLENBQUMsSUFBSSxFQUFFLEVBQUU7UUFDeEIsTUFBTSxPQUFPLENBQUMsYUFBYSxDQUFDO1lBQzFCLFFBQVEsRUFBRSxFQUFFLElBQUksRUFBRSxLQUFLLEVBQUU7U0FDMUIsQ0FBQyxDQUFDO0tBQ0o7SUFFRCxNQUFNLFFBQVEsR0FBRyxpQkFBaUIsSUFBSSxjQUFjLENBQUMsT0FBTyxDQUFDO0lBQzdELE1BQU0sSUFBSSxHQUFHLE1BQU0sZUFBTSxDQUFDLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxFQUFFLFFBQVEsQ0FBQyxDQUFDO0lBQzVELE1BQU0sV0FBVyxHQUFHLGdCQUFNLENBQUMsU0FBUyxDQUFDLFNBQVMsRUFBRSxFQUFFLEVBQUU7UUFDbEQsUUFBUSxFQUFFLElBQUk7UUFDZCxNQUFNLEVBQUUsSUFBSTtLQUNiLENBQUMsQ0FBQztJQUNILE9BQU8sbUJBQVEsQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLEdBQUcsRUFBRSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUM7QUFDakQsQ0FBQztBQWpCRCxrREFpQkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEeW5hbW9EQkNsaWVudCB9IGZyb20gJ0Bhd3Mtc2RrL2NsaWVudC1keW5hbW9kYic7XG5pbXBvcnQgeyBSZXNwb25zZSB9IGZyb20gJ0BnZW1lZW50ZW5pam1lZ2VuL2FwaWdhdGV3YXktaHR0cC9saWIvVjIvUmVzcG9uc2UnO1xuaW1wb3J0IHsgU2Vzc2lvbiB9IGZyb20gJ0BnZW1lZW50ZW5pam1lZ2VuL3Nlc3Npb24nO1xuaW1wb3J0IGNvb2tpZSBmcm9tICdjb29raWUnO1xuaW1wb3J0ICogYXMgbG9nb3V0VGVtcGxhdGUgZnJvbSAnLi90ZW1wbGF0ZXMvbG9nb3V0Lm11c3RhY2hlJztcbmltcG9ydCB7IHJlbmRlciB9IGZyb20gJy4uL3V0aWwvcmVuZGVyJztcblxuZXhwb3J0IGFzeW5jIGZ1bmN0aW9uIGhhbmRsZUxvZ291dFJlcXVlc3QoY29va2llczogc3RyaW5nLCBkeW5hbW9EQkNsaWVudDogRHluYW1vREJDbGllbnQsIHRlbXBsYXRlT3ZlcndyaXRlPzogc3RyaW5nKSB7XG4gIGxldCBzZXNzaW9uID0gbmV3IFNlc3Npb24oY29va2llcywgZHluYW1vREJDbGllbnQsIHtcbiAgICB0dGxJbk1pbnV0ZXM6IHBhcnNlSW50KHByb2Nlc3MuZW52LlNFU1NJT05fVFRMX01JTiA/PyAnMTUnKSxcbiAgfSk7XG4gIGlmIChhd2FpdCBzZXNzaW9uLmluaXQoKSkge1xuICAgIGF3YWl0IHNlc3Npb24udXBkYXRlU2Vzc2lvbih7XG4gICAgICBsb2dnZWRpbjogeyBCT09MOiBmYWxzZSB9LFxuICAgIH0pO1xuICB9XG5cbiAgY29uc3QgdGVtcGxhdGUgPSB0ZW1wbGF0ZU92ZXJ3cml0ZSA/PyBsb2dvdXRUZW1wbGF0ZS5kZWZhdWx0O1xuICBjb25zdCBodG1sID0gYXdhaXQgcmVuZGVyKHsgdGl0bGU6ICdVaXRnZWxvZ2QnIH0sIHRlbXBsYXRlKTtcbiAgY29uc3QgZW1wdHlDb29raWUgPSBjb29raWUuc2VyaWFsaXplKCdzZXNzaW9uJywgJycsIHtcbiAgICBodHRwT25seTogdHJ1ZSxcbiAgICBzZWN1cmU6IHRydWUsXG4gIH0pO1xuICByZXR1cm4gUmVzcG9uc2UuaHRtbChodG1sLCAyMDAsIFtlbXB0eUNvb2tpZV0pO1xufVxuIl19
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
2
|
+
import { Construct } from 'constructs';
|
|
3
|
+
/**
|
|
4
|
+
* Props for LogoutFunction
|
|
5
|
+
*/
|
|
6
|
+
export interface LogoutFunctionProps extends lambda.FunctionOptions {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* An AWS Lambda function which executes src/webapp/logout/logout.
|
|
10
|
+
*/
|
|
11
|
+
export declare class LogoutFunction extends lambda.Function {
|
|
12
|
+
constructor(scope: Construct, id: string, props?: LogoutFunctionProps);
|
|
13
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LogoutFunction = void 0;
|
|
4
|
+
// ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
|
|
5
|
+
const path = require("path");
|
|
6
|
+
const lambda = require("aws-cdk-lib/aws-lambda");
|
|
7
|
+
/**
|
|
8
|
+
* An AWS Lambda function which executes src/webapp/logout/logout.
|
|
9
|
+
*/
|
|
10
|
+
class LogoutFunction extends lambda.Function {
|
|
11
|
+
constructor(scope, id, props) {
|
|
12
|
+
super(scope, id, {
|
|
13
|
+
description: 'src/webapp/logout/logout.lambda.ts',
|
|
14
|
+
...props,
|
|
15
|
+
runtime: new lambda.Runtime('nodejs18.x', lambda.RuntimeFamily.NODEJS),
|
|
16
|
+
handler: 'index.handler',
|
|
17
|
+
code: lambda.Code.fromAsset(path.join(__dirname, '../../../assets/webapp/logout/logout.lambda')),
|
|
18
|
+
});
|
|
19
|
+
this.addEnvironment('AWS_NODEJS_CONNECTION_REUSE_ENABLED', '1', { removeInEdge: true });
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.LogoutFunction = LogoutFunction;
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nb3V0LWZ1bmN0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3dlYmFwcC9sb2dvdXQvbG9nb3V0LWZ1bmN0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDZFQUE2RTtBQUM3RSw2QkFBNkI7QUFDN0IsaURBQWlEO0FBU2pEOztHQUVHO0FBQ0gsTUFBYSxjQUFlLFNBQVEsTUFBTSxDQUFDLFFBQVE7SUFDakQsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUEyQjtRQUNuRSxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsRUFBRTtZQUNmLFdBQVcsRUFBRSxvQ0FBb0M7WUFDakQsR0FBRyxLQUFLO1lBQ1IsT0FBTyxFQUFFLElBQUksTUFBTSxDQUFDLE9BQU8sQ0FBQyxZQUFZLEVBQUUsTUFBTSxDQUFDLGFBQWEsQ0FBQyxNQUFNLENBQUM7WUFDdEUsT0FBTyxFQUFFLGVBQWU7WUFDeEIsSUFBSSxFQUFFLE1BQU0sQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLDZDQUE2QyxDQUFDLENBQUM7U0FDakcsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLGNBQWMsQ0FBQyxxQ0FBcUMsRUFBRSxHQUFHLEVBQUUsRUFBRSxZQUFZLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUMxRixDQUFDO0NBQ0Y7QUFYRCx3Q0FXQyIsInNvdXJjZXNDb250ZW50IjpbIi8vIH5+IEdlbmVyYXRlZCBieSBwcm9qZW4uIFRvIG1vZGlmeSwgZWRpdCAucHJvamVucmMuanMgYW5kIHJ1biBcIm5weCBwcm9qZW5cIi5cbmltcG9ydCAqIGFzIHBhdGggZnJvbSAncGF0aCc7XG5pbXBvcnQgKiBhcyBsYW1iZGEgZnJvbSAnYXdzLWNkay1saWIvYXdzLWxhbWJkYSc7XG5pbXBvcnQgeyBDb25zdHJ1Y3QgfSBmcm9tICdjb25zdHJ1Y3RzJztcblxuLyoqXG4gKiBQcm9wcyBmb3IgTG9nb3V0RnVuY3Rpb25cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBMb2dvdXRGdW5jdGlvblByb3BzIGV4dGVuZHMgbGFtYmRhLkZ1bmN0aW9uT3B0aW9ucyB7XG59XG5cbi8qKlxuICogQW4gQVdTIExhbWJkYSBmdW5jdGlvbiB3aGljaCBleGVjdXRlcyBzcmMvd2ViYXBwL2xvZ291dC9sb2dvdXQuXG4gKi9cbmV4cG9ydCBjbGFzcyBMb2dvdXRGdW5jdGlvbiBleHRlbmRzIGxhbWJkYS5GdW5jdGlvbiB7XG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzPzogTG9nb3V0RnVuY3Rpb25Qcm9wcykge1xuICAgIHN1cGVyKHNjb3BlLCBpZCwge1xuICAgICAgZGVzY3JpcHRpb246ICdzcmMvd2ViYXBwL2xvZ291dC9sb2dvdXQubGFtYmRhLnRzJyxcbiAgICAgIC4uLnByb3BzLFxuICAgICAgcnVudGltZTogbmV3IGxhbWJkYS5SdW50aW1lKCdub2RlanMxOC54JywgbGFtYmRhLlJ1bnRpbWVGYW1pbHkuTk9ERUpTKSxcbiAgICAgIGhhbmRsZXI6ICdpbmRleC5oYW5kbGVyJyxcbiAgICAgIGNvZGU6IGxhbWJkYS5Db2RlLmZyb21Bc3NldChwYXRoLmpvaW4oX19kaXJuYW1lLCAnLi4vLi4vLi4vYXNzZXRzL3dlYmFwcC9sb2dvdXQvbG9nb3V0LmxhbWJkYScpKSxcbiAgICB9KTtcbiAgICB0aGlzLmFkZEVudmlyb25tZW50KCdBV1NfTk9ERUpTX0NPTk5FQ1RJT05fUkVVU0VfRU5BQkxFRCcsICcxJywgeyByZW1vdmVJbkVkZ2U6IHRydWUgfSk7XG4gIH1cbn0iXX0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const client_dynamodb_1 = require("@aws-sdk/client-dynamodb");
|
|
4
|
+
const Response_1 = require("@gemeentenijmegen/apigateway-http/lib/V2/Response");
|
|
5
|
+
const handleLogoutRequest_1 = require("./handleLogoutRequest");
|
|
6
|
+
const Files_1 = require("../util/Files");
|
|
7
|
+
const dynamoDBClient = new client_dynamodb_1.DynamoDBClient({ region: process.env.AWS_REGION });
|
|
8
|
+
const templateOverwrite = Files_1.Files.getTemplateOverwrite('/opt/logout.mustache');
|
|
9
|
+
function parseEvent(event) {
|
|
10
|
+
return {
|
|
11
|
+
cookies: event?.cookies?.join(';'),
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
exports.handler = async (event, _context) => {
|
|
15
|
+
try {
|
|
16
|
+
const params = parseEvent(event);
|
|
17
|
+
return await handleLogoutRequest_1.handleLogoutRequest(params.cookies, dynamoDBClient, templateOverwrite);
|
|
18
|
+
}
|
|
19
|
+
catch (err) {
|
|
20
|
+
console.error(err);
|
|
21
|
+
return Response_1.Response.error(500);
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nb3V0LmxhbWJkYS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy93ZWJhcHAvbG9nb3V0L2xvZ291dC5sYW1iZGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSw4REFBMEQ7QUFDMUQsZ0ZBQTZFO0FBQzdFLCtEQUE0RDtBQUM1RCx5Q0FBc0M7QUFFdEMsTUFBTSxjQUFjLEdBQUcsSUFBSSxnQ0FBYyxDQUFDLEVBQUUsTUFBTSxFQUFFLE9BQU8sQ0FBQyxHQUFHLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQztBQUM5RSxNQUFNLGlCQUFpQixHQUFHLGFBQUssQ0FBQyxvQkFBb0IsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBRTdFLFNBQVMsVUFBVSxDQUFDLEtBQVU7SUFDNUIsT0FBTztRQUNMLE9BQU8sRUFBRSxLQUFLLEVBQUUsT0FBTyxFQUFFLElBQUksQ0FBQyxHQUFHLENBQUM7S0FDbkMsQ0FBQztBQUNKLENBQUM7QUFFRCxPQUFPLENBQUMsT0FBTyxHQUFHLEtBQUssRUFBRSxLQUFVLEVBQUUsUUFBYSxFQUFFLEVBQUU7SUFDcEQsSUFBSTtRQUNGLE1BQU0sTUFBTSxHQUFHLFVBQVUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNqQyxPQUFPLE1BQU0seUNBQW1CLENBQUMsTUFBTSxDQUFDLE9BQU8sRUFBRSxjQUFjLEVBQUUsaUJBQWlCLENBQUMsQ0FBQztLQUNyRjtJQUFDLE9BQU8sR0FBRyxFQUFFO1FBQ1osT0FBTyxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQztRQUNuQixPQUFPLG1CQUFRLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0tBQzVCO0FBQ0gsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRHluYW1vREJDbGllbnQgfSBmcm9tICdAYXdzLXNkay9jbGllbnQtZHluYW1vZGInO1xuaW1wb3J0IHsgUmVzcG9uc2UgfSBmcm9tICdAZ2VtZWVudGVuaWptZWdlbi9hcGlnYXRld2F5LWh0dHAvbGliL1YyL1Jlc3BvbnNlJztcbmltcG9ydCB7IGhhbmRsZUxvZ291dFJlcXVlc3QgfSBmcm9tICcuL2hhbmRsZUxvZ291dFJlcXVlc3QnO1xuaW1wb3J0IHsgRmlsZXMgfSBmcm9tICcuLi91dGlsL0ZpbGVzJztcblxuY29uc3QgZHluYW1vREJDbGllbnQgPSBuZXcgRHluYW1vREJDbGllbnQoeyByZWdpb246IHByb2Nlc3MuZW52LkFXU19SRUdJT04gfSk7XG5jb25zdCB0ZW1wbGF0ZU92ZXJ3cml0ZSA9IEZpbGVzLmdldFRlbXBsYXRlT3ZlcndyaXRlKCcvb3B0L2xvZ291dC5tdXN0YWNoZScpO1xuXG5mdW5jdGlvbiBwYXJzZUV2ZW50KGV2ZW50OiBhbnkpIHtcbiAgcmV0dXJuIHtcbiAgICBjb29raWVzOiBldmVudD8uY29va2llcz8uam9pbignOycpLFxuICB9O1xufVxuXG5leHBvcnRzLmhhbmRsZXIgPSBhc3luYyAoZXZlbnQ6IGFueSwgX2NvbnRleHQ6IGFueSkgPT4ge1xuICB0cnkge1xuICAgIGNvbnN0IHBhcmFtcyA9IHBhcnNlRXZlbnQoZXZlbnQpO1xuICAgIHJldHVybiBhd2FpdCBoYW5kbGVMb2dvdXRSZXF1ZXN0KHBhcmFtcy5jb29raWVzLCBkeW5hbW9EQkNsaWVudCwgdGVtcGxhdGVPdmVyd3JpdGUpO1xuICB9IGNhdGNoIChlcnIpIHtcbiAgICBjb25zb2xlLmVycm9yKGVycik7XG4gICAgcmV0dXJuIFJlc3BvbnNlLmVycm9yKDUwMCk7XG4gIH1cbn07Il19
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare class Files {
|
|
2
|
+
/**
|
|
3
|
+
* Check if the template is found in the file system
|
|
4
|
+
* @param path to template should start with /opt/
|
|
5
|
+
* @returns template as string or undefined
|
|
6
|
+
*/
|
|
7
|
+
static getTemplateOverwrite(path: string): undefined | string;
|
|
8
|
+
/**
|
|
9
|
+
* Get the authentication JSON file and parse it
|
|
10
|
+
* @returns the list of profiles
|
|
11
|
+
*/
|
|
12
|
+
static getAuthenticationProfiles(): any;
|
|
13
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Files = void 0;
|
|
4
|
+
const fs = require("fs");
|
|
5
|
+
class Files {
|
|
6
|
+
/**
|
|
7
|
+
* Check if the template is found in the file system
|
|
8
|
+
* @param path to template should start with /opt/
|
|
9
|
+
* @returns template as string or undefined
|
|
10
|
+
*/
|
|
11
|
+
static getTemplateOverwrite(path) {
|
|
12
|
+
if (fs.existsSync(path)) {
|
|
13
|
+
console.info(`${path} template overwrite found!`);
|
|
14
|
+
return fs.readFileSync(path).toString('utf8');
|
|
15
|
+
}
|
|
16
|
+
return undefined;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Get the authentication JSON file and parse it
|
|
20
|
+
* @returns the list of profiles
|
|
21
|
+
*/
|
|
22
|
+
static getAuthenticationProfiles() {
|
|
23
|
+
const profiles = JSON.parse(fs.readFileSync('/opt/authentication.json').toString('utf8'));
|
|
24
|
+
console.info('Initializing authentication profiles', profiles);
|
|
25
|
+
return profiles;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
exports.Files = Files;
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRmlsZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvd2ViYXBwL3V0aWwvRmlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUJBQXlCO0FBRXpCLE1BQWEsS0FBSztJQUVoQjs7OztPQUlHO0lBQ0gsTUFBTSxDQUFDLG9CQUFvQixDQUFDLElBQVk7UUFDdEMsSUFBSSxFQUFFLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxFQUFFO1lBQ3ZCLE9BQU8sQ0FBQyxJQUFJLENBQUMsR0FBRyxJQUFJLDRCQUE0QixDQUFDLENBQUM7WUFDbEQsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUMvQztRQUNELE9BQU8sU0FBUyxDQUFDO0lBQ25CLENBQUM7SUFFRDs7O09BR0c7SUFDSCxNQUFNLENBQUMseUJBQXlCO1FBQzlCLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQywwQkFBMEIsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO1FBQzFGLE9BQU8sQ0FBQyxJQUFJLENBQUMsc0NBQXNDLEVBQUUsUUFBUSxDQUFDLENBQUM7UUFDL0QsT0FBTyxRQUFRLENBQUM7SUFDbEIsQ0FBQztDQUNGO0FBeEJELHNCQXdCQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIGZzIGZyb20gJ2ZzJztcblxuZXhwb3J0IGNsYXNzIEZpbGVzIHtcblxuICAvKipcbiAgICogQ2hlY2sgaWYgdGhlIHRlbXBsYXRlIGlzIGZvdW5kIGluIHRoZSBmaWxlIHN5c3RlbVxuICAgKiBAcGFyYW0gcGF0aCB0byB0ZW1wbGF0ZSBzaG91bGQgc3RhcnQgd2l0aCAvb3B0L1xuICAgKiBAcmV0dXJucyB0ZW1wbGF0ZSBhcyBzdHJpbmcgb3IgdW5kZWZpbmVkXG4gICAqL1xuICBzdGF0aWMgZ2V0VGVtcGxhdGVPdmVyd3JpdGUocGF0aDogc3RyaW5nKSA6IHVuZGVmaW5lZCB8IHN0cmluZyB7XG4gICAgaWYgKGZzLmV4aXN0c1N5bmMocGF0aCkpIHtcbiAgICAgIGNvbnNvbGUuaW5mbyhgJHtwYXRofSB0ZW1wbGF0ZSBvdmVyd3JpdGUgZm91bmQhYCk7XG4gICAgICByZXR1cm4gZnMucmVhZEZpbGVTeW5jKHBhdGgpLnRvU3RyaW5nKCd1dGY4Jyk7XG4gICAgfVxuICAgIHJldHVybiB1bmRlZmluZWQ7XG4gIH1cblxuICAvKipcbiAgICogR2V0IHRoZSBhdXRoZW50aWNhdGlvbiBKU09OIGZpbGUgYW5kIHBhcnNlIGl0XG4gICAqIEByZXR1cm5zIHRoZSBsaXN0IG9mIHByb2ZpbGVzXG4gICAqL1xuICBzdGF0aWMgZ2V0QXV0aGVudGljYXRpb25Qcm9maWxlcygpIDogYW55IHtcbiAgICBjb25zdCBwcm9maWxlcyA9IEpTT04ucGFyc2UoZnMucmVhZEZpbGVTeW5jKCcvb3B0L2F1dGhlbnRpY2F0aW9uLmpzb24nKS50b1N0cmluZygndXRmOCcpKTtcbiAgICBjb25zb2xlLmluZm8oJ0luaXRpYWxpemluZyBhdXRoZW50aWNhdGlvbiBwcm9maWxlcycsIHByb2ZpbGVzKTtcbiAgICByZXR1cm4gcHJvZmlsZXM7XG4gIH1cbn0iXX0=
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { IdTokenClaims, Issuer } from 'openid-client';
|
|
2
|
+
export interface OpenIDConnectOptions {
|
|
3
|
+
readonly clientId: string;
|
|
4
|
+
readonly clientSecretArn: string;
|
|
5
|
+
readonly authenticationBaseUrl: string;
|
|
6
|
+
readonly applicationBaseUrl: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class OpenIDConnect {
|
|
9
|
+
static generateState(): string;
|
|
10
|
+
issuer: Issuer;
|
|
11
|
+
clientSecret?: string;
|
|
12
|
+
private options;
|
|
13
|
+
/**
|
|
14
|
+
* Helper class for our OIDC auth flow
|
|
15
|
+
*/
|
|
16
|
+
constructor(options: OpenIDConnectOptions);
|
|
17
|
+
/**
|
|
18
|
+
* Retrieve client secret from secrets manager
|
|
19
|
+
* @returns string the client secret
|
|
20
|
+
*/
|
|
21
|
+
getOidcClientSecret(): Promise<string | undefined>;
|
|
22
|
+
/**
|
|
23
|
+
* setup the oidc issuer. For now using env. parameters & hardcoded urls
|
|
24
|
+
* Issuer could also be discovered based on file in .well-known, this
|
|
25
|
+
* should be cached somehow.
|
|
26
|
+
*
|
|
27
|
+
* @returns openid-client Issuer
|
|
28
|
+
*/
|
|
29
|
+
getIssuer(authenticationBaseUrl: string): Issuer;
|
|
30
|
+
/**
|
|
31
|
+
* Get the login url for the OIDC-provider.
|
|
32
|
+
* @param {string} state A string parameter that gets returned in the auth callback.
|
|
33
|
+
* This should be checked before accepting the login response.
|
|
34
|
+
* @returns {string} the login url
|
|
35
|
+
*/
|
|
36
|
+
getLoginUrl(state: string, scope?: string): string;
|
|
37
|
+
/**
|
|
38
|
+
* Use the returned code from the OIDC-provider and stored state param
|
|
39
|
+
* to complete the login flow.
|
|
40
|
+
*
|
|
41
|
+
* @param {string} code
|
|
42
|
+
* @param {string} states
|
|
43
|
+
* @returns {IdTokenClaims} returns a claims object on succesful auth
|
|
44
|
+
*/
|
|
45
|
+
authorize(code: string, states: string[], returnedState: string): Promise<IdTokenClaims>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OpenIDConnect = void 0;
|
|
4
|
+
const client_secrets_manager_1 = require("@aws-sdk/client-secrets-manager");
|
|
5
|
+
const openid_client_1 = require("openid-client");
|
|
6
|
+
class OpenIDConnect {
|
|
7
|
+
/**
|
|
8
|
+
* Helper class for our OIDC auth flow
|
|
9
|
+
*/
|
|
10
|
+
constructor(options) {
|
|
11
|
+
this.issuer = this.getIssuer(options.authenticationBaseUrl);
|
|
12
|
+
this.options = options;
|
|
13
|
+
}
|
|
14
|
+
static generateState() {
|
|
15
|
+
return openid_client_1.generators.state();
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Retrieve client secret from secrets manager
|
|
19
|
+
* @returns string the client secret
|
|
20
|
+
*/
|
|
21
|
+
async getOidcClientSecret() {
|
|
22
|
+
if (!this.clientSecret) {
|
|
23
|
+
const secretsManagerClient = new client_secrets_manager_1.SecretsManagerClient({});
|
|
24
|
+
const command = new client_secrets_manager_1.GetSecretValueCommand({ SecretId: this.options.clientSecretArn });
|
|
25
|
+
const data = await secretsManagerClient.send(command);
|
|
26
|
+
// Depending on whether the secret is a string or binary, one of these fields will be populated.
|
|
27
|
+
if (data.SecretString) {
|
|
28
|
+
this.clientSecret = data.SecretString;
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
console.error('no secret value found');
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return this.clientSecret;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* setup the oidc issuer. For now using env. parameters & hardcoded urls
|
|
38
|
+
* Issuer could also be discovered based on file in .well-known, this
|
|
39
|
+
* should be cached somehow.
|
|
40
|
+
*
|
|
41
|
+
* @returns openid-client Issuer
|
|
42
|
+
*/
|
|
43
|
+
getIssuer(authenticationBaseUrl) {
|
|
44
|
+
//Issuer.discover('https://authenticatie-accp.nijmegen.nl/broker/sp/oidc'); // TODO check for autodiscovery?
|
|
45
|
+
const issuer = new openid_client_1.Issuer({
|
|
46
|
+
issuer: `${authenticationBaseUrl}/broker/sp/oidc`,
|
|
47
|
+
authorization_endpoint: `${authenticationBaseUrl}/broker/sp/oidc/authenticate`,
|
|
48
|
+
token_endpoint: `${authenticationBaseUrl}/broker/sp/oidc/token`,
|
|
49
|
+
jwks_uri: `${authenticationBaseUrl}/broker/sp/oidc/certs`,
|
|
50
|
+
userinfo_endpoint: `${authenticationBaseUrl}/broker/sp/oidc/userinfo`,
|
|
51
|
+
revocation_endpoint: `${authenticationBaseUrl}/broker/sp/oidc/token/revoke`,
|
|
52
|
+
introspection_endpoint: `${authenticationBaseUrl}/broker/sp/oidc/token/introspect`,
|
|
53
|
+
end_session_endpoint: `${authenticationBaseUrl}/broker/sp/oidc/logout`,
|
|
54
|
+
token_endpoint_auth_methods_supported: ['client_secret_post', 'client_secret_basic'],
|
|
55
|
+
introspection_endpoint_auth_methods_supported: ['client_secret_post', 'client_secret_basic'],
|
|
56
|
+
revocation_endpoint_auth_methods_supported: ['client_secret_post', 'client_secret_basic'],
|
|
57
|
+
revocation_endpoint_auth_signing_alg_values_supported: ['RS256'],
|
|
58
|
+
});
|
|
59
|
+
return issuer;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Get the login url for the OIDC-provider.
|
|
63
|
+
* @param {string} state A string parameter that gets returned in the auth callback.
|
|
64
|
+
* This should be checked before accepting the login response.
|
|
65
|
+
* @returns {string} the login url
|
|
66
|
+
*/
|
|
67
|
+
getLoginUrl(state, scope) {
|
|
68
|
+
const base_url = new URL(this.options.applicationBaseUrl);
|
|
69
|
+
const redirect_uri = new URL('/auth', base_url);
|
|
70
|
+
const client = new this.issuer.Client({
|
|
71
|
+
client_id: this.options.clientId,
|
|
72
|
+
redirect_uris: [redirect_uri.toString()],
|
|
73
|
+
response_types: ['code'],
|
|
74
|
+
});
|
|
75
|
+
const authUrl = client.authorizationUrl({
|
|
76
|
+
scope,
|
|
77
|
+
resource: this.options.authenticationBaseUrl,
|
|
78
|
+
state: state,
|
|
79
|
+
});
|
|
80
|
+
return authUrl;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Use the returned code from the OIDC-provider and stored state param
|
|
84
|
+
* to complete the login flow.
|
|
85
|
+
*
|
|
86
|
+
* @param {string} code
|
|
87
|
+
* @param {string} states
|
|
88
|
+
* @returns {IdTokenClaims} returns a claims object on succesful auth
|
|
89
|
+
*/
|
|
90
|
+
async authorize(code, states, returnedState) {
|
|
91
|
+
const base_url = new URL(this.options.applicationBaseUrl);
|
|
92
|
+
const redirect_uri = new URL('/auth', base_url);
|
|
93
|
+
const client_secret = await this.getOidcClientSecret();
|
|
94
|
+
const client = new this.issuer.Client({
|
|
95
|
+
client_id: this.options.clientId,
|
|
96
|
+
redirect_uris: [redirect_uri.toString()],
|
|
97
|
+
client_secret: client_secret,
|
|
98
|
+
response_types: ['code'],
|
|
99
|
+
});
|
|
100
|
+
const params = client.callbackParams(redirect_uri + '/?code=' + code + '&state=' + returnedState);
|
|
101
|
+
if (!states.includes(returnedState)) {
|
|
102
|
+
throw new Error('state does not match session state');
|
|
103
|
+
}
|
|
104
|
+
let tokenSet;
|
|
105
|
+
try {
|
|
106
|
+
tokenSet = await client.callback(redirect_uri.toString(), params, { state: returnedState });
|
|
107
|
+
}
|
|
108
|
+
catch (err) {
|
|
109
|
+
const error = err;
|
|
110
|
+
throw new Error(`${error.error} ${error.error_description}`);
|
|
111
|
+
}
|
|
112
|
+
const claims = tokenSet.claims();
|
|
113
|
+
if (claims.aud != this.options.clientId) {
|
|
114
|
+
throw new Error('claims aud does not match client id');
|
|
115
|
+
}
|
|
116
|
+
return claims;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
exports.OpenIDConnect = OpenIDConnect;
|
|
120
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiT3BlbklEQ29ubmVjdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy93ZWJhcHAvdXRpbC9PcGVuSURDb25uZWN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDRFQUE4RjtBQUM5RixpREFBa0U7QUFTbEUsTUFBYSxhQUFhO0lBV3hCOztPQUVHO0lBQ0gsWUFBWSxPQUE2QjtRQUN2QyxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLHFCQUFxQixDQUFDLENBQUM7UUFDNUQsSUFBSSxDQUFDLE9BQU8sR0FBRyxPQUFPLENBQUM7SUFDekIsQ0FBQztJQWZELE1BQU0sQ0FBQyxhQUFhO1FBQ2xCLE9BQU8sMEJBQVUsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBZUQ7OztPQUdHO0lBQ0gsS0FBSyxDQUFDLG1CQUFtQjtRQUN2QixJQUFJLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRTtZQUN0QixNQUFNLG9CQUFvQixHQUFHLElBQUksNkNBQW9CLENBQUMsRUFBRSxDQUFDLENBQUM7WUFDMUQsTUFBTSxPQUFPLEdBQUcsSUFBSSw4Q0FBcUIsQ0FBQyxFQUFFLFFBQVEsRUFBRSxJQUFJLENBQUMsT0FBTyxDQUFDLGVBQWUsRUFBRSxDQUFDLENBQUM7WUFDdEYsTUFBTSxJQUFJLEdBQUcsTUFBTSxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDdEQsZ0dBQWdHO1lBQ2hHLElBQUksSUFBSSxDQUFDLFlBQVksRUFBRTtnQkFDckIsSUFBSSxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDO2FBQ3ZDO2lCQUFNO2dCQUNMLE9BQU8sQ0FBQyxLQUFLLENBQUMsdUJBQXVCLENBQUMsQ0FBQzthQUN4QztTQUNGO1FBQ0QsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDO0lBQzNCLENBQUM7SUFFRDs7Ozs7O09BTUc7SUFDSCxTQUFTLENBQUMscUJBQTZCO1FBQ3JDLDRHQUE0RztRQUM1RyxNQUFNLE1BQU0sR0FBRyxJQUFJLHNCQUFNLENBQUM7WUFDeEIsTUFBTSxFQUFFLEdBQUcscUJBQXFCLGlCQUFpQjtZQUNqRCxzQkFBc0IsRUFBRSxHQUFHLHFCQUFxQiw4QkFBOEI7WUFDOUUsY0FBYyxFQUFFLEdBQUcscUJBQXFCLHVCQUF1QjtZQUMvRCxRQUFRLEVBQUUsR0FBRyxxQkFBcUIsdUJBQXVCO1lBQ3pELGlCQUFpQixFQUFFLEdBQUcscUJBQXFCLDBCQUEwQjtZQUNyRSxtQkFBbUIsRUFBRSxHQUFHLHFCQUFxQiw4QkFBOEI7WUFDM0Usc0JBQXNCLEVBQUUsR0FBRyxxQkFBcUIsa0NBQWtDO1lBQ2xGLG9CQUFvQixFQUFFLEdBQUcscUJBQXFCLHdCQUF3QjtZQUN0RSxxQ0FBcUMsRUFBRSxDQUFDLG9CQUFvQixFQUFFLHFCQUFxQixDQUFDO1lBQ3BGLDZDQUE2QyxFQUFFLENBQUMsb0JBQW9CLEVBQUUscUJBQXFCLENBQUM7WUFDNUYsMENBQTBDLEVBQUUsQ0FBQyxvQkFBb0IsRUFBRSxxQkFBcUIsQ0FBQztZQUN6RixxREFBcUQsRUFBRSxDQUFDLE9BQU8sQ0FBQztTQUNqRSxDQUFDLENBQUM7UUFDSCxPQUFPLE1BQU0sQ0FBQztJQUNoQixDQUFDO0lBRUQ7Ozs7O09BS0c7SUFDSCxXQUFXLENBQUMsS0FBYSxFQUFFLEtBQWM7UUFDdkMsTUFBTSxRQUFRLEdBQUcsSUFBSSxHQUFHLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO1FBQzFELE1BQU0sWUFBWSxHQUFHLElBQUksR0FBRyxDQUFDLE9BQU8sRUFBRSxRQUFRLENBQUMsQ0FBQztRQUNoRCxNQUFNLE1BQU0sR0FBRyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDO1lBQ3BDLFNBQVMsRUFBRSxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVE7WUFDaEMsYUFBYSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsRUFBRSxDQUFDO1lBQ3hDLGNBQWMsRUFBRSxDQUFDLE1BQU0sQ0FBQztTQUN6QixDQUFDLENBQUM7UUFDSCxNQUFNLE9BQU8sR0FBRyxNQUFNLENBQUMsZ0JBQWdCLENBQUM7WUFDdEMsS0FBSztZQUNMLFFBQVEsRUFBRSxJQUFJLENBQUMsT0FBTyxDQUFDLHFCQUFxQjtZQUM1QyxLQUFLLEVBQUUsS0FBSztTQUNiLENBQUMsQ0FBQztRQUNILE9BQU8sT0FBTyxDQUFDO0lBQ2pCLENBQUM7SUFFRDs7Ozs7OztTQU9LO0lBQ0wsS0FBSyxDQUFDLFNBQVMsQ0FBQyxJQUFZLEVBQUUsTUFBZ0IsRUFBRSxhQUFxQjtRQUNuRSxNQUFNLFFBQVEsR0FBRyxJQUFJLEdBQUcsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLGtCQUFrQixDQUFDLENBQUM7UUFDMUQsTUFBTSxZQUFZLEdBQUcsSUFBSSxHQUFHLENBQUMsT0FBTyxFQUFFLFFBQVEsQ0FBQyxDQUFDO1FBQ2hELE1BQU0sYUFBYSxHQUFHLE1BQU0sSUFBSSxDQUFDLG1CQUFtQixFQUFFLENBQUM7UUFDdkQsTUFBTSxNQUFNLEdBQUcsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQztZQUNwQyxTQUFTLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRO1lBQ2hDLGFBQWEsRUFBRSxDQUFDLFlBQVksQ0FBQyxRQUFRLEVBQUUsQ0FBQztZQUN4QyxhQUFhLEVBQUUsYUFBYTtZQUM1QixjQUFjLEVBQUUsQ0FBQyxNQUFNLENBQUM7U0FDekIsQ0FBQyxDQUFDO1FBQ0gsTUFBTSxNQUFNLEdBQUcsTUFBTSxDQUFDLGNBQWMsQ0FBQyxZQUFZLEdBQUcsU0FBUyxHQUFHLElBQUksR0FBRyxTQUFTLEdBQUcsYUFBYSxDQUFDLENBQUM7UUFDbEcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDLEVBQUU7WUFDbkMsTUFBTSxJQUFJLEtBQUssQ0FBQyxvQ0FBb0MsQ0FBQyxDQUFDO1NBQ3ZEO1FBQ0QsSUFBSSxRQUFRLENBQUM7UUFDYixJQUFJO1lBQ0YsUUFBUSxHQUFHLE1BQU0sTUFBTSxDQUFDLFFBQVEsQ0FBQyxZQUFZLENBQUMsUUFBUSxFQUFFLEVBQUUsTUFBTSxFQUFFLEVBQUUsS0FBSyxFQUFFLGFBQWEsRUFBRSxDQUFDLENBQUM7U0FDN0Y7UUFBQyxPQUFPLEdBQUcsRUFBRTtZQUNaLE1BQU0sS0FBSyxHQUFJLEdBQVcsQ0FBQztZQUMzQixNQUFNLElBQUksS0FBSyxDQUFDLEdBQUcsS0FBSyxDQUFDLEtBQUssSUFBSSxLQUFLLENBQUMsaUJBQWlCLEVBQUUsQ0FBQyxDQUFDO1NBQzlEO1FBQ0QsTUFBTSxNQUFNLEdBQUcsUUFBUSxDQUFDLE1BQU0sRUFBRSxDQUFDO1FBQ2pDLElBQUksTUFBTSxDQUFDLEdBQUcsSUFBSSxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRTtZQUN2QyxNQUFNLElBQUksS0FBSyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7U0FDeEQ7UUFDRCxPQUFPLE1BQU0sQ0FBQztJQUVoQixDQUFDO0NBR0Y7QUE1SEQsc0NBNEhDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2VjcmV0c01hbmFnZXJDbGllbnQsIEdldFNlY3JldFZhbHVlQ29tbWFuZCB9IGZyb20gJ0Bhd3Mtc2RrL2NsaWVudC1zZWNyZXRzLW1hbmFnZXInO1xuaW1wb3J0IHsgSWRUb2tlbkNsYWltcywgSXNzdWVyLCBnZW5lcmF0b3JzIH0gZnJvbSAnb3BlbmlkLWNsaWVudCc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgT3BlbklEQ29ubmVjdE9wdGlvbnMge1xuICByZWFkb25seSBjbGllbnRJZDogc3RyaW5nO1xuICByZWFkb25seSBjbGllbnRTZWNyZXRBcm46IHN0cmluZztcbiAgcmVhZG9ubHkgYXV0aGVudGljYXRpb25CYXNlVXJsOiBzdHJpbmc7XG4gIHJlYWRvbmx5IGFwcGxpY2F0aW9uQmFzZVVybDogc3RyaW5nO1xufVxuXG5leHBvcnQgY2xhc3MgT3BlbklEQ29ubmVjdCB7XG5cbiAgc3RhdGljIGdlbmVyYXRlU3RhdGUoKSB7XG4gICAgcmV0dXJuIGdlbmVyYXRvcnMuc3RhdGUoKTtcbiAgfVxuXG4gIGlzc3VlcjogSXNzdWVyO1xuICBjbGllbnRTZWNyZXQ/OiBzdHJpbmc7XG5cbiAgcHJpdmF0ZSBvcHRpb25zOiBPcGVuSURDb25uZWN0T3B0aW9ucztcblxuICAvKipcbiAgICogSGVscGVyIGNsYXNzIGZvciBvdXIgT0lEQyBhdXRoIGZsb3dcbiAgICovXG4gIGNvbnN0cnVjdG9yKG9wdGlvbnM6IE9wZW5JRENvbm5lY3RPcHRpb25zKSB7XG4gICAgdGhpcy5pc3N1ZXIgPSB0aGlzLmdldElzc3VlcihvcHRpb25zLmF1dGhlbnRpY2F0aW9uQmFzZVVybCk7XG4gICAgdGhpcy5vcHRpb25zID0gb3B0aW9ucztcbiAgfVxuXG4gIC8qKlxuICAgKiBSZXRyaWV2ZSBjbGllbnQgc2VjcmV0IGZyb20gc2VjcmV0cyBtYW5hZ2VyXG4gICAqIEByZXR1cm5zIHN0cmluZyB0aGUgY2xpZW50IHNlY3JldFxuICAgKi9cbiAgYXN5bmMgZ2V0T2lkY0NsaWVudFNlY3JldCgpIHtcbiAgICBpZiAoIXRoaXMuY2xpZW50U2VjcmV0KSB7XG4gICAgICBjb25zdCBzZWNyZXRzTWFuYWdlckNsaWVudCA9IG5ldyBTZWNyZXRzTWFuYWdlckNsaWVudCh7fSk7XG4gICAgICBjb25zdCBjb21tYW5kID0gbmV3IEdldFNlY3JldFZhbHVlQ29tbWFuZCh7IFNlY3JldElkOiB0aGlzLm9wdGlvbnMuY2xpZW50U2VjcmV0QXJuIH0pO1xuICAgICAgY29uc3QgZGF0YSA9IGF3YWl0IHNlY3JldHNNYW5hZ2VyQ2xpZW50LnNlbmQoY29tbWFuZCk7XG4gICAgICAvLyBEZXBlbmRpbmcgb24gd2hldGhlciB0aGUgc2VjcmV0IGlzIGEgc3RyaW5nIG9yIGJpbmFyeSwgb25lIG9mIHRoZXNlIGZpZWxkcyB3aWxsIGJlIHBvcHVsYXRlZC5cbiAgICAgIGlmIChkYXRhLlNlY3JldFN0cmluZykge1xuICAgICAgICB0aGlzLmNsaWVudFNlY3JldCA9IGRhdGEuU2VjcmV0U3RyaW5nO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgY29uc29sZS5lcnJvcignbm8gc2VjcmV0IHZhbHVlIGZvdW5kJyk7XG4gICAgICB9XG4gICAgfVxuICAgIHJldHVybiB0aGlzLmNsaWVudFNlY3JldDtcbiAgfVxuXG4gIC8qKlxuICAgKiBzZXR1cCB0aGUgb2lkYyBpc3N1ZXIuIEZvciBub3cgdXNpbmcgZW52LiBwYXJhbWV0ZXJzICYgaGFyZGNvZGVkIHVybHNcbiAgICogSXNzdWVyIGNvdWxkIGFsc28gYmUgZGlzY292ZXJlZCBiYXNlZCBvbiBmaWxlIGluIC53ZWxsLWtub3duLCB0aGlzXG4gICAqIHNob3VsZCBiZSBjYWNoZWQgc29tZWhvdy5cbiAgICpcbiAgICogQHJldHVybnMgb3BlbmlkLWNsaWVudCBJc3N1ZXJcbiAgICovXG4gIGdldElzc3VlcihhdXRoZW50aWNhdGlvbkJhc2VVcmw6IHN0cmluZyk6IElzc3VlciB7XG4gICAgLy9Jc3N1ZXIuZGlzY292ZXIoJ2h0dHBzOi8vYXV0aGVudGljYXRpZS1hY2NwLm5pam1lZ2VuLm5sL2Jyb2tlci9zcC9vaWRjJyk7IC8vIFRPRE8gY2hlY2sgZm9yIGF1dG9kaXNjb3Zlcnk/XG4gICAgY29uc3QgaXNzdWVyID0gbmV3IElzc3Vlcih7XG4gICAgICBpc3N1ZXI6IGAke2F1dGhlbnRpY2F0aW9uQmFzZVVybH0vYnJva2VyL3NwL29pZGNgLFxuICAgICAgYXV0aG9yaXphdGlvbl9lbmRwb2ludDogYCR7YXV0aGVudGljYXRpb25CYXNlVXJsfS9icm9rZXIvc3Avb2lkYy9hdXRoZW50aWNhdGVgLFxuICAgICAgdG9rZW5fZW5kcG9pbnQ6IGAke2F1dGhlbnRpY2F0aW9uQmFzZVVybH0vYnJva2VyL3NwL29pZGMvdG9rZW5gLFxuICAgICAgandrc191cmk6IGAke2F1dGhlbnRpY2F0aW9uQmFzZVVybH0vYnJva2VyL3NwL29pZGMvY2VydHNgLFxuICAgICAgdXNlcmluZm9fZW5kcG9pbnQ6IGAke2F1dGhlbnRpY2F0aW9uQmFzZVVybH0vYnJva2VyL3NwL29pZGMvdXNlcmluZm9gLFxuICAgICAgcmV2b2NhdGlvbl9lbmRwb2ludDogYCR7YXV0aGVudGljYXRpb25CYXNlVXJsfS9icm9rZXIvc3Avb2lkYy90b2tlbi9yZXZva2VgLFxuICAgICAgaW50cm9zcGVjdGlvbl9lbmRwb2ludDogYCR7YXV0aGVudGljYXRpb25CYXNlVXJsfS9icm9rZXIvc3Avb2lkYy90b2tlbi9pbnRyb3NwZWN0YCxcbiAgICAgIGVuZF9zZXNzaW9uX2VuZHBvaW50OiBgJHthdXRoZW50aWNhdGlvbkJhc2VVcmx9L2Jyb2tlci9zcC9vaWRjL2xvZ291dGAsXG4gICAgICB0b2tlbl9lbmRwb2ludF9hdXRoX21ldGhvZHNfc3VwcG9ydGVkOiBbJ2NsaWVudF9zZWNyZXRfcG9zdCcsICdjbGllbnRfc2VjcmV0X2Jhc2ljJ10sXG4gICAgICBpbnRyb3NwZWN0aW9uX2VuZHBvaW50X2F1dGhfbWV0aG9kc19zdXBwb3J0ZWQ6IFsnY2xpZW50X3NlY3JldF9wb3N0JywgJ2NsaWVudF9zZWNyZXRfYmFzaWMnXSxcbiAgICAgIHJldm9jYXRpb25fZW5kcG9pbnRfYXV0aF9tZXRob2RzX3N1cHBvcnRlZDogWydjbGllbnRfc2VjcmV0X3Bvc3QnLCAnY2xpZW50X3NlY3JldF9iYXNpYyddLFxuICAgICAgcmV2b2NhdGlvbl9lbmRwb2ludF9hdXRoX3NpZ25pbmdfYWxnX3ZhbHVlc19zdXBwb3J0ZWQ6IFsnUlMyNTYnXSxcbiAgICB9KTtcbiAgICByZXR1cm4gaXNzdWVyO1xuICB9XG5cbiAgLyoqXG4gICAqIEdldCB0aGUgbG9naW4gdXJsIGZvciB0aGUgT0lEQy1wcm92aWRlci5cbiAgICogQHBhcmFtIHtzdHJpbmd9IHN0YXRlIEEgc3RyaW5nIHBhcmFtZXRlciB0aGF0IGdldHMgcmV0dXJuZWQgaW4gdGhlIGF1dGggY2FsbGJhY2suXG4gICAqIFRoaXMgc2hvdWxkIGJlIGNoZWNrZWQgYmVmb3JlIGFjY2VwdGluZyB0aGUgbG9naW4gcmVzcG9uc2UuXG4gICAqIEByZXR1cm5zIHtzdHJpbmd9IHRoZSBsb2dpbiB1cmxcbiAgICovXG4gIGdldExvZ2luVXJsKHN0YXRlOiBzdHJpbmcsIHNjb3BlPzogc3RyaW5nKTogc3RyaW5nIHtcbiAgICBjb25zdCBiYXNlX3VybCA9IG5ldyBVUkwodGhpcy5vcHRpb25zLmFwcGxpY2F0aW9uQmFzZVVybCk7XG4gICAgY29uc3QgcmVkaXJlY3RfdXJpID0gbmV3IFVSTCgnL2F1dGgnLCBiYXNlX3VybCk7XG4gICAgY29uc3QgY2xpZW50ID0gbmV3IHRoaXMuaXNzdWVyLkNsaWVudCh7XG4gICAgICBjbGllbnRfaWQ6IHRoaXMub3B0aW9ucy5jbGllbnRJZCxcbiAgICAgIHJlZGlyZWN0X3VyaXM6IFtyZWRpcmVjdF91cmkudG9TdHJpbmcoKV0sXG4gICAgICByZXNwb25zZV90eXBlczogWydjb2RlJ10sXG4gICAgfSk7XG4gICAgY29uc3QgYXV0aFVybCA9IGNsaWVudC5hdXRob3JpemF0aW9uVXJsKHtcbiAgICAgIHNjb3BlLFxuICAgICAgcmVzb3VyY2U6IHRoaXMub3B0aW9ucy5hdXRoZW50aWNhdGlvbkJhc2VVcmwsXG4gICAgICBzdGF0ZTogc3RhdGUsXG4gICAgfSk7XG4gICAgcmV0dXJuIGF1dGhVcmw7XG4gIH1cblxuICAvKipcbiAgICAgKiBVc2UgdGhlIHJldHVybmVkIGNvZGUgZnJvbSB0aGUgT0lEQy1wcm92aWRlciBhbmQgc3RvcmVkIHN0YXRlIHBhcmFtXG4gICAgICogdG8gY29tcGxldGUgdGhlIGxvZ2luIGZsb3cuXG4gICAgICpcbiAgICAgKiBAcGFyYW0ge3N0cmluZ30gY29kZVxuICAgICAqIEBwYXJhbSB7c3RyaW5nfSBzdGF0ZXNcbiAgICAgKiBAcmV0dXJucyB7SWRUb2tlbkNsYWltc30gcmV0dXJucyBhIGNsYWltcyBvYmplY3Qgb24gc3VjY2VzZnVsIGF1dGhcbiAgICAgKi9cbiAgYXN5bmMgYXV0aG9yaXplKGNvZGU6IHN0cmluZywgc3RhdGVzOiBzdHJpbmdbXSwgcmV0dXJuZWRTdGF0ZTogc3RyaW5nKTogUHJvbWlzZTxJZFRva2VuQ2xhaW1zPiB7XG4gICAgY29uc3QgYmFzZV91cmwgPSBuZXcgVVJMKHRoaXMub3B0aW9ucy5hcHBsaWNhdGlvbkJhc2VVcmwpO1xuICAgIGNvbnN0IHJlZGlyZWN0X3VyaSA9IG5ldyBVUkwoJy9hdXRoJywgYmFzZV91cmwpO1xuICAgIGNvbnN0IGNsaWVudF9zZWNyZXQgPSBhd2FpdCB0aGlzLmdldE9pZGNDbGllbnRTZWNyZXQoKTtcbiAgICBjb25zdCBjbGllbnQgPSBuZXcgdGhpcy5pc3N1ZXIuQ2xpZW50KHtcbiAgICAgIGNsaWVudF9pZDogdGhpcy5vcHRpb25zLmNsaWVudElkLFxuICAgICAgcmVkaXJlY3RfdXJpczogW3JlZGlyZWN0X3VyaS50b1N0cmluZygpXSxcbiAgICAgIGNsaWVudF9zZWNyZXQ6IGNsaWVudF9zZWNyZXQsXG4gICAgICByZXNwb25zZV90eXBlczogWydjb2RlJ10sXG4gICAgfSk7XG4gICAgY29uc3QgcGFyYW1zID0gY2xpZW50LmNhbGxiYWNrUGFyYW1zKHJlZGlyZWN0X3VyaSArICcvP2NvZGU9JyArIGNvZGUgKyAnJnN0YXRlPScgKyByZXR1cm5lZFN0YXRlKTtcbiAgICBpZiAoIXN0YXRlcy5pbmNsdWRlcyhyZXR1cm5lZFN0YXRlKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdzdGF0ZSBkb2VzIG5vdCBtYXRjaCBzZXNzaW9uIHN0YXRlJyk7XG4gICAgfVxuICAgIGxldCB0b2tlblNldDtcbiAgICB0cnkge1xuICAgICAgdG9rZW5TZXQgPSBhd2FpdCBjbGllbnQuY2FsbGJhY2socmVkaXJlY3RfdXJpLnRvU3RyaW5nKCksIHBhcmFtcywgeyBzdGF0ZTogcmV0dXJuZWRTdGF0ZSB9KTtcbiAgICB9IGNhdGNoIChlcnIpIHtcbiAgICAgIGNvbnN0IGVycm9yID0gKGVyciBhcyBhbnkpO1xuICAgICAgdGhyb3cgbmV3IEVycm9yKGAke2Vycm9yLmVycm9yfSAke2Vycm9yLmVycm9yX2Rlc2NyaXB0aW9ufWApO1xuICAgIH1cbiAgICBjb25zdCBjbGFpbXMgPSB0b2tlblNldC5jbGFpbXMoKTtcbiAgICBpZiAoY2xhaW1zLmF1ZCAhPSB0aGlzLm9wdGlvbnMuY2xpZW50SWQpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcignY2xhaW1zIGF1ZCBkb2VzIG5vdCBtYXRjaCBjbGllbnQgaWQnKTtcbiAgICB9XG4gICAgcmV0dXJuIGNsYWltcztcblxuICB9XG5cblxufSJdfQ==
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Render data in a mustache template
|
|
3
|
+
*
|
|
4
|
+
* @param {object} data An object of data to use in the template
|
|
5
|
+
* @param {string} template the main mustache template as a string
|
|
6
|
+
* @param {{[key:string] : string} | undefined} partials name and template string
|
|
7
|
+
* @returns string
|
|
8
|
+
*/
|
|
9
|
+
export declare function render(data: any, template: string, partials?: {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
}): Promise<string>;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.render = void 0;
|
|
4
|
+
const Mustache = require("mustache");
|
|
5
|
+
const Files_1 = require("./Files");
|
|
6
|
+
const footer = require("./footer.mustache");
|
|
7
|
+
const header = require("./header.mustache");
|
|
8
|
+
// Load from lambda layer
|
|
9
|
+
const overwriteHeader = Files_1.Files.getTemplateOverwrite('/opt/header.mustache');
|
|
10
|
+
const overwriteFooter = Files_1.Files.getTemplateOverwrite('/opt/footer.mustache');
|
|
11
|
+
/**
|
|
12
|
+
* Render data in a mustache template
|
|
13
|
+
*
|
|
14
|
+
* @param {object} data An object of data to use in the template
|
|
15
|
+
* @param {string} template the main mustache template as a string
|
|
16
|
+
* @param {{[key:string] : string} | undefined} partials name and template string
|
|
17
|
+
* @returns string
|
|
18
|
+
*/
|
|
19
|
+
async function render(data, template, partials) {
|
|
20
|
+
const fullPartials = {
|
|
21
|
+
header: overwriteHeader ?? header.default,
|
|
22
|
+
footer: overwriteFooter ?? footer.default,
|
|
23
|
+
...partials,
|
|
24
|
+
};
|
|
25
|
+
data = {
|
|
26
|
+
logos: false,
|
|
27
|
+
...data,
|
|
28
|
+
};
|
|
29
|
+
return Mustache.render(template, data, fullPartials);
|
|
30
|
+
}
|
|
31
|
+
exports.render = render;
|
|
32
|
+
;
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVuZGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3dlYmFwcC91dGlsL3JlbmRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxxQ0FBcUM7QUFDckMsbUNBQWdDO0FBQ2hDLDRDQUE0QztBQUM1Qyw0Q0FBNEM7QUFFNUMseUJBQXlCO0FBQ3pCLE1BQU0sZUFBZSxHQUFHLGFBQUssQ0FBQyxvQkFBb0IsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBQzNFLE1BQU0sZUFBZSxHQUFHLGFBQUssQ0FBQyxvQkFBb0IsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBRTNFOzs7Ozs7O0dBT0c7QUFDSSxLQUFLLFVBQVUsTUFBTSxDQUFDLElBQVMsRUFBRSxRQUFnQixFQUFFLFFBQW1DO0lBQzNGLE1BQU0sWUFBWSxHQUFHO1FBQ25CLE1BQU0sRUFBRSxlQUFlLElBQUksTUFBTSxDQUFDLE9BQU87UUFDekMsTUFBTSxFQUFFLGVBQWUsSUFBSSxNQUFNLENBQUMsT0FBTztRQUN6QyxHQUFHLFFBQVE7S0FDWixDQUFDO0lBRUYsSUFBSSxHQUFHO1FBQ0wsS0FBSyxFQUFFLEtBQUs7UUFDWixHQUFHLElBQUk7S0FDUixDQUFDO0lBRUYsT0FBTyxRQUFRLENBQUMsTUFBTSxDQUFDLFFBQVEsRUFBRSxJQUFJLEVBQUUsWUFBWSxDQUFDLENBQUM7QUFDdkQsQ0FBQztBQWJELHdCQWFDO0FBQUEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIE11c3RhY2hlIGZyb20gJ211c3RhY2hlJztcbmltcG9ydCB7IEZpbGVzIH0gZnJvbSAnLi9GaWxlcyc7XG5pbXBvcnQgKiBhcyBmb290ZXIgZnJvbSAnLi9mb290ZXIubXVzdGFjaGUnO1xuaW1wb3J0ICogYXMgaGVhZGVyIGZyb20gJy4vaGVhZGVyLm11c3RhY2hlJztcblxuLy8gTG9hZCBmcm9tIGxhbWJkYSBsYXllclxuY29uc3Qgb3ZlcndyaXRlSGVhZGVyID0gRmlsZXMuZ2V0VGVtcGxhdGVPdmVyd3JpdGUoJy9vcHQvaGVhZGVyLm11c3RhY2hlJyk7XG5jb25zdCBvdmVyd3JpdGVGb290ZXIgPSBGaWxlcy5nZXRUZW1wbGF0ZU92ZXJ3cml0ZSgnL29wdC9mb290ZXIubXVzdGFjaGUnKTtcblxuLyoqXG4gKiBSZW5kZXIgZGF0YSBpbiBhIG11c3RhY2hlIHRlbXBsYXRlXG4gKlxuICogQHBhcmFtIHtvYmplY3R9IGRhdGEgQW4gb2JqZWN0IG9mIGRhdGEgdG8gdXNlIGluIHRoZSB0ZW1wbGF0ZVxuICogQHBhcmFtIHtzdHJpbmd9IHRlbXBsYXRlIHRoZSBtYWluIG11c3RhY2hlIHRlbXBsYXRlIGFzIGEgc3RyaW5nXG4gKiBAcGFyYW0ge3tba2V5OnN0cmluZ10gOiBzdHJpbmd9IHwgdW5kZWZpbmVkfSBwYXJ0aWFscyBuYW1lIGFuZCB0ZW1wbGF0ZSBzdHJpbmdcbiAqIEByZXR1cm5zIHN0cmluZ1xuICovXG5leHBvcnQgYXN5bmMgZnVuY3Rpb24gcmVuZGVyKGRhdGE6IGFueSwgdGVtcGxhdGU6IHN0cmluZywgcGFydGlhbHM/OiB7W2tleTogc3RyaW5nXTogc3RyaW5nIH0pIHtcbiAgY29uc3QgZnVsbFBhcnRpYWxzID0ge1xuICAgIGhlYWRlcjogb3ZlcndyaXRlSGVhZGVyID8/IGhlYWRlci5kZWZhdWx0LFxuICAgIGZvb3Rlcjogb3ZlcndyaXRlRm9vdGVyID8/IGZvb3Rlci5kZWZhdWx0LFxuICAgIC4uLnBhcnRpYWxzLFxuICB9O1xuXG4gIGRhdGEgPSB7XG4gICAgbG9nb3M6IGZhbHNlLFxuICAgIC4uLmRhdGEsXG4gIH07XG5cbiAgcmV0dXJuIE11c3RhY2hlLnJlbmRlcih0ZW1wbGF0ZSwgZGF0YSwgZnVsbFBhcnRpYWxzKTtcbn07XG4iXX0=
|