@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,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mustache",
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"description": "Logic-less {{mustache}} templates with JavaScript",
|
|
5
|
+
"author": "mustache.js Authors <http://github.com/janl/mustache.js>",
|
|
6
|
+
"homepage": "https://github.com/janl/mustache.js",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/janl/mustache.js.git"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"mustache",
|
|
13
|
+
"template",
|
|
14
|
+
"templates",
|
|
15
|
+
"ejs"
|
|
16
|
+
],
|
|
17
|
+
"main": "mustache.js",
|
|
18
|
+
"bin": {
|
|
19
|
+
"mustache": "./bin/mustache"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"bin/",
|
|
23
|
+
"mustache.mjs",
|
|
24
|
+
"mustache.min.js",
|
|
25
|
+
"wrappers/"
|
|
26
|
+
],
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": "./mustache.mjs",
|
|
30
|
+
"require": "./mustache.js"
|
|
31
|
+
},
|
|
32
|
+
"./*": "./*"
|
|
33
|
+
},
|
|
34
|
+
"volo": {
|
|
35
|
+
"url": "https://raw.github.com/janl/mustache.js/{version}/mustache.js"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "cp mustache.js mustache.mjs && rollup mustache.mjs --file mustache.js --format umd --name Mustache && uglifyjs mustache.js > mustache.min.js",
|
|
39
|
+
"test": "npm run test-lint && npm run test-unit",
|
|
40
|
+
"test-lint": "eslint mustache.js bin/mustache test/**/*.js",
|
|
41
|
+
"test-unit": "mocha --reporter spec test/*-test.js",
|
|
42
|
+
"test-render": "mocha --reporter spec test/render-test",
|
|
43
|
+
"pre-test-browser": "node test/create-browser-suite.js",
|
|
44
|
+
"test-browser": "npm run pre-test-browser && zuul -- test/context-test.js test/parse-test.js test/scanner-test.js test/render-test-browser.js",
|
|
45
|
+
"test-browser-local": "npm run pre-test-browser && zuul --local 8080 -- test/context-test.js test/scanner-test.js test/parse-test.js test/render-test-browser.js",
|
|
46
|
+
"postversion": "scripts/bump-version-in-source",
|
|
47
|
+
"prepublishOnly": "npm run build"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"chai": "^3.4.0",
|
|
51
|
+
"eslint": "^6.5.1",
|
|
52
|
+
"esm": "^3.2.25",
|
|
53
|
+
"jshint": "^2.9.5",
|
|
54
|
+
"mocha": "^3.0.2",
|
|
55
|
+
"puppeteer": "^2.0.0",
|
|
56
|
+
"rollup": "^1.26.3",
|
|
57
|
+
"uglify-js": "^3.4.6",
|
|
58
|
+
"zuul": "^3.11.0",
|
|
59
|
+
"zuul-ngrok": "nolanlawson/zuul-ngrok#patch-1"
|
|
60
|
+
},
|
|
61
|
+
"greenkeeper": {
|
|
62
|
+
"ignore": [
|
|
63
|
+
"eslint"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"license": "MIT"
|
|
67
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
$.mustache = function (template, view, partials) {
|
|
2
|
+
return Mustache.render(template, view, partials);
|
|
3
|
+
};
|
|
4
|
+
|
|
5
|
+
$.fn.mustache = function (view, partials) {
|
|
6
|
+
return $(this).map(function (i, elm) {
|
|
7
|
+
var template = $.trim($(elm).html());
|
|
8
|
+
var output = $.mustache(template, view, partials);
|
|
9
|
+
return $(output).get();
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
})(jQuery);
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
/* ************************************************************************
|
|
2
|
+
|
|
3
|
+
qooxdoo - the new era of web development
|
|
4
|
+
|
|
5
|
+
http://qooxdoo.org
|
|
6
|
+
|
|
7
|
+
Copyright:
|
|
8
|
+
2004-2012 1&1 Internet AG, Germany, http://www.1und1.de
|
|
9
|
+
|
|
10
|
+
License:
|
|
11
|
+
LGPL: http://www.gnu.org/licenses/lgpl.html
|
|
12
|
+
EPL: http://www.eclipse.org/org/documents/epl-v10.php
|
|
13
|
+
See the LICENSE file in the project's top-level directory for details.
|
|
14
|
+
|
|
15
|
+
Authors:
|
|
16
|
+
* Martin Wittemann (martinwittemann)
|
|
17
|
+
|
|
18
|
+
======================================================================
|
|
19
|
+
|
|
20
|
+
This class contains code based on the following work:
|
|
21
|
+
|
|
22
|
+
* Mustache.js version 0.8.0
|
|
23
|
+
|
|
24
|
+
Code:
|
|
25
|
+
https://github.com/janl/mustache.js
|
|
26
|
+
|
|
27
|
+
Copyright:
|
|
28
|
+
(c) 2009 Chris Wanstrath (Ruby)
|
|
29
|
+
(c) 2010 Jan Lehnardt (JavaScript)
|
|
30
|
+
|
|
31
|
+
License:
|
|
32
|
+
MIT: http://www.opensource.org/licenses/mit-license.php
|
|
33
|
+
|
|
34
|
+
----------------------------------------------------------------------
|
|
35
|
+
|
|
36
|
+
Copyright (c) 2009 Chris Wanstrath (Ruby)
|
|
37
|
+
Copyright (c) 2010 Jan Lehnardt (JavaScript)
|
|
38
|
+
|
|
39
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
40
|
+
a copy of this software and associated documentation files (the
|
|
41
|
+
"Software"), to deal in the Software without restriction, including
|
|
42
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
43
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
44
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
45
|
+
the following conditions:
|
|
46
|
+
|
|
47
|
+
The above copyright notice and this permission notice shall be
|
|
48
|
+
included in all copies or substantial portions of the Software.
|
|
49
|
+
|
|
50
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
51
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
52
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
53
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
54
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
55
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
56
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
57
|
+
|
|
58
|
+
************************************************************************ */
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* The is a template class which can be used for HTML templating. In fact,
|
|
62
|
+
* this is a wrapper for mustache.js which is a "framework-agnostic way to
|
|
63
|
+
* render logic-free views".
|
|
64
|
+
*
|
|
65
|
+
* Here is a basic example how to use it:
|
|
66
|
+
* Template:
|
|
67
|
+
* <pre class="javascript">
|
|
68
|
+
* var template = "Hi, my name is {{name}}!";
|
|
69
|
+
* var view = {name: "qooxdoo"};
|
|
70
|
+
* qx.bom.Template.render(template, view);
|
|
71
|
+
* // return "Hi, my name is qooxdoo!"
|
|
72
|
+
* </pre>
|
|
73
|
+
*
|
|
74
|
+
* For further details, please visit the mustache.js documentation here:
|
|
75
|
+
* https://github.com/janl/mustache.js/blob/master/README.md
|
|
76
|
+
*
|
|
77
|
+
* @ignore(module)
|
|
78
|
+
*/
|
|
79
|
+
qx.Bootstrap.define("qx.bom.Template", {
|
|
80
|
+
statics : {
|
|
81
|
+
/** Contains the mustache.js version. */
|
|
82
|
+
version: null,
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Original and only template method of mustache.js. For further
|
|
86
|
+
* documentation, please visit https://github.com/janl/mustache.js
|
|
87
|
+
*
|
|
88
|
+
* @signature function(template, view, partials)
|
|
89
|
+
* @param template {String} The String containing the template.
|
|
90
|
+
* @param view {Object} The object holding the data to render.
|
|
91
|
+
* @param partials {Object} Object holding parts of a template.
|
|
92
|
+
* @return {String} The parsed template.
|
|
93
|
+
*/
|
|
94
|
+
render: null,
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Combines {@link #render} and {@link #get}. Input is equal to {@link #render}
|
|
98
|
+
* and output is equal to {@link #get}. The advantage over {@link #get}
|
|
99
|
+
* is that you don't need a HTML template but can use a template
|
|
100
|
+
* string and still get a DOM element. Keep in mind that templates
|
|
101
|
+
* can only have one root element.
|
|
102
|
+
*
|
|
103
|
+
* @param template {String} The String containing the template.
|
|
104
|
+
* @param view {Object} The object holding the data to render.
|
|
105
|
+
* @param partials {Object} Object holding parts of a template.
|
|
106
|
+
* @return {Element} A DOM element holding the parsed template data.
|
|
107
|
+
*/
|
|
108
|
+
renderToNode : function(template, view, partials) {
|
|
109
|
+
var renderedTmpl = this.render(template, view, partials);
|
|
110
|
+
return this._createNodeFromTemplate(renderedTmpl);
|
|
111
|
+
},
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Helper method which provides you with a direct access to templates
|
|
115
|
+
* stored as HTML in the DOM. The DOM node with the given ID will be used
|
|
116
|
+
* as a template, parsed and a new DOM node will be returned containing the
|
|
117
|
+
* parsed data. Keep in mind to have only one root DOM element in the the
|
|
118
|
+
* template.
|
|
119
|
+
* Additionally, you should not put the template into a regular, hidden
|
|
120
|
+
* DOM element because the template may not be valid HTML due to the containing
|
|
121
|
+
* mustache tags. We suggest to put it into a script tag with the type
|
|
122
|
+
* <code>text/template</code>.
|
|
123
|
+
*
|
|
124
|
+
* @param id {String} The id of the HTML template in the DOM.
|
|
125
|
+
* @param view {Object} The object holding the data to render.
|
|
126
|
+
* @param partials {Object} Object holding parts of a template.
|
|
127
|
+
* @return {Element} A DOM element holding the parsed template data.
|
|
128
|
+
*/
|
|
129
|
+
get : function(id, view, partials) {
|
|
130
|
+
// get the content stored in the DOM
|
|
131
|
+
var template = document.getElementById(id);
|
|
132
|
+
return this.renderToNode(template.innerHTML, view, partials);
|
|
133
|
+
},
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Accepts a parsed template and returns a (potentially nested) node.
|
|
137
|
+
*
|
|
138
|
+
* @param template {String} The String containing the template.
|
|
139
|
+
* @return {Element} A DOM element holding the parsed template data.
|
|
140
|
+
*/
|
|
141
|
+
_createNodeFromTemplate : function(template) {
|
|
142
|
+
// template is text only (no html elems) so use text node
|
|
143
|
+
if (template.search(/<|>/) === -1) {
|
|
144
|
+
return document.createTextNode(template);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// template has html elems so convert string into DOM nodes
|
|
148
|
+
var helper = qx.dom.Element.create("div");
|
|
149
|
+
helper.innerHTML = template;
|
|
150
|
+
|
|
151
|
+
return helper.children[0];
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
|
|
156
|
+
(function() {
|
|
157
|
+
// prevent using CommonJS exports object,
|
|
158
|
+
// by shadowing global exports object
|
|
159
|
+
var exports;
|
|
160
|
+
|
|
161
|
+
// prevent using AMD compatible loader,
|
|
162
|
+
// by shadowing global define function
|
|
163
|
+
var define;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Below is the original mustache.js code. Snapshot date is mentioned in
|
|
167
|
+
* the head of this file.
|
|
168
|
+
* @ignore(exports)
|
|
169
|
+
* @ignore(define.*)
|
|
170
|
+
* @ignore(module.*)
|
|
171
|
+
* @lint ignoreNoLoopBlock()
|
|
172
|
+
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
YUI.add("mustache", function(Y) {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014 object-hash contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e){var t;"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):("undefined"!=typeof window?t=window:"undefined"!=typeof global?t=global:"undefined"!=typeof self&&(t=self),t.objectHash=e())}(function(){return function o(i,u,a){function s(n,e){if(!u[n]){if(!i[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(f)return f(n,!0);throw new Error("Cannot find module '"+n+"'")}var r=u[n]={exports:{}};i[n][0].call(r.exports,function(e){var t=i[n][1][e];return s(t||e)},r,r.exports,o,i,u,a)}return u[n].exports}for(var f="function"==typeof require&&require,e=0;e<a.length;e++)s(a[e]);return s}({1:[function(w,b,m){(function(e,t,f,n,r,o,i,u,a){"use strict";var s=w("crypto");function c(e,t){return function(e,t){var n;n="passthrough"!==t.algorithm?s.createHash(t.algorithm):new y;void 0===n.write&&(n.write=n.update,n.end=n.update);g(t,n).dispatch(e),n.update||n.end("");if(n.digest)return n.digest("buffer"===t.encoding?void 0:t.encoding);var r=n.read();return"buffer"!==t.encoding?r.toString(t.encoding):r}(e,t=h(e,t))}(m=b.exports=c).sha1=function(e){return c(e)},m.keys=function(e){return c(e,{excludeValues:!0,algorithm:"sha1",encoding:"hex"})},m.MD5=function(e){return c(e,{algorithm:"md5",encoding:"hex"})},m.keysMD5=function(e){return c(e,{algorithm:"md5",encoding:"hex",excludeValues:!0})};var l=s.getHashes?s.getHashes().slice():["sha1","md5"];l.push("passthrough");var d=["buffer","hex","binary","base64"];function h(e,t){t=t||{};var n={};if(n.algorithm=t.algorithm||"sha1",n.encoding=t.encoding||"hex",n.excludeValues=!!t.excludeValues,n.algorithm=n.algorithm.toLowerCase(),n.encoding=n.encoding.toLowerCase(),n.ignoreUnknown=!0===t.ignoreUnknown,n.respectType=!1!==t.respectType,n.respectFunctionNames=!1!==t.respectFunctionNames,n.respectFunctionProperties=!1!==t.respectFunctionProperties,n.unorderedArrays=!0===t.unorderedArrays,n.unorderedSets=!1!==t.unorderedSets,n.unorderedObjects=!1!==t.unorderedObjects,n.replacer=t.replacer||void 0,n.excludeKeys=t.excludeKeys||void 0,void 0===e)throw new Error("Object argument required.");for(var r=0;r<l.length;++r)l[r].toLowerCase()===n.algorithm.toLowerCase()&&(n.algorithm=l[r]);if(-1===l.indexOf(n.algorithm))throw new Error('Algorithm "'+n.algorithm+'" not supported. supported values: '+l.join(", "));if(-1===d.indexOf(n.encoding)&&"passthrough"!==n.algorithm)throw new Error('Encoding "'+n.encoding+'" not supported. supported values: '+d.join(", "));return n}function p(e){if("function"==typeof e){return null!=/^function\s+\w*\s*\(\s*\)\s*{\s+\[native code\]\s+}$/i.exec(Function.prototype.toString.call(e))}}function g(u,t,a){a=a||[];function s(e){return t.update?t.update(e,"utf8"):t.write(e,"utf8")}return{dispatch:function(e){return u.replacer&&(e=u.replacer(e)),this["_"+(null===e?"null":typeof e)](e)},_object:function(t){var e=Object.prototype.toString.call(t),n=/\[object (.*)\]/i.exec(e);n=(n=n?n[1]:"unknown:["+e+"]").toLowerCase();var r;if(0<=(r=a.indexOf(t)))return this.dispatch("[CIRCULAR:"+r+"]");if(a.push(t),void 0!==f&&f.isBuffer&&f.isBuffer(t))return s("buffer:"),s(t);if("object"===n||"function"===n||"asyncfunction"===n){var o=Object.keys(t);u.unorderedObjects&&(o=o.sort()),!1===u.respectType||p(t)||o.splice(0,0,"prototype","__proto__","constructor"),u.excludeKeys&&(o=o.filter(function(e){return!u.excludeKeys(e)})),s("object:"+o.length+":");var i=this;return o.forEach(function(e){i.dispatch(e),s(":"),u.excludeValues||i.dispatch(t[e]),s(",")})}if(!this["_"+n]){if(u.ignoreUnknown)return s("["+n+"]");throw new Error('Unknown object type "'+n+'"')}this["_"+n](t)},_array:function(e,t){t=void 0!==t?t:!1!==u.unorderedArrays;var n=this;if(s("array:"+e.length+":"),!t||e.length<=1)return e.forEach(function(e){return n.dispatch(e)});var r=[],o=e.map(function(e){var t=new y,n=a.slice();return g(u,t,n).dispatch(e),r=r.concat(n.slice(a.length)),t.read().toString()});return a=a.concat(r),o.sort(),this._array(o,!1)},_date:function(e){return s("date:"+e.toJSON())},_symbol:function(e){return s("symbol:"+e.toString())},_error:function(e){return s("error:"+e.toString())},_boolean:function(e){return s("bool:"+e.toString())},_string:function(e){s("string:"+e.length+":"),s(e.toString())},_function:function(e){s("fn:"),p(e)?this.dispatch("[native]"):this.dispatch(e.toString()),!1!==u.respectFunctionNames&&this.dispatch("function-name:"+String(e.name)),u.respectFunctionProperties&&this._object(e)},_number:function(e){return s("number:"+e.toString())},_xml:function(e){return s("xml:"+e.toString())},_null:function(){return s("Null")},_undefined:function(){return s("Undefined")},_regexp:function(e){return s("regex:"+e.toString())},_uint8array:function(e){return s("uint8array:"),this.dispatch(Array.prototype.slice.call(e))},_uint8clampedarray:function(e){return s("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(e))},_int8array:function(e){return s("uint8array:"),this.dispatch(Array.prototype.slice.call(e))},_uint16array:function(e){return s("uint16array:"),this.dispatch(Array.prototype.slice.call(e))},_int16array:function(e){return s("uint16array:"),this.dispatch(Array.prototype.slice.call(e))},_uint32array:function(e){return s("uint32array:"),this.dispatch(Array.prototype.slice.call(e))},_int32array:function(e){return s("uint32array:"),this.dispatch(Array.prototype.slice.call(e))},_float32array:function(e){return s("float32array:"),this.dispatch(Array.prototype.slice.call(e))},_float64array:function(e){return s("float64array:"),this.dispatch(Array.prototype.slice.call(e))},_arraybuffer:function(e){return s("arraybuffer:"),this.dispatch(new Uint8Array(e))},_url:function(e){return s("url:"+e.toString())},_map:function(e){s("map:");var t=Array.from(e);return this._array(t,!1!==u.unorderedSets)},_set:function(e){s("set:");var t=Array.from(e);return this._array(t,!1!==u.unorderedSets)},_file:function(e){return s("file:"),this.dispatch([e.name,e.size,e.type,e.lastModfied])},_blob:function(){if(u.ignoreUnknown)return s("[blob]");throw Error('Hashing Blob objects is currently not supported\n(see https://github.com/puleos/object-hash/issues/26)\nUse "options.replacer" or "options.ignoreUnknown"\n')},_domwindow:function(){return s("domwindow")},_bigint:function(e){return s("bigint:"+e.toString())},_process:function(){return s("process")},_timer:function(){return s("timer")},_pipe:function(){return s("pipe")},_tcp:function(){return s("tcp")},_udp:function(){return s("udp")},_tty:function(){return s("tty")},_statwatcher:function(){return s("statwatcher")},_securecontext:function(){return s("securecontext")},_connection:function(){return s("connection")},_zlib:function(){return s("zlib")},_context:function(){return s("context")},_nodescript:function(){return s("nodescript")},_httpparser:function(){return s("httpparser")},_dataview:function(){return s("dataview")},_signal:function(){return s("signal")},_fsevent:function(){return s("fsevent")},_tlswrap:function(){return s("tlswrap")}}}function y(){return{buf:"",write:function(e){this.buf+=e},end:function(e){this.buf+=e},read:function(){return this.buf}}}m.writeToStream=function(e,t,n){return void 0===n&&(n=t,t={}),g(t=h(e,t),n).dispatch(e)}}).call(this,w("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},w("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/fake_7eac155c.js","/")},{buffer:3,crypto:5,lYpoI2:10}],2:[function(e,t,f){(function(e,t,n,r,o,i,u,a,s){!function(e){"use strict";var f="undefined"!=typeof Uint8Array?Uint8Array:Array,n="+".charCodeAt(0),r="/".charCodeAt(0),o="0".charCodeAt(0),i="a".charCodeAt(0),u="A".charCodeAt(0),a="-".charCodeAt(0),s="_".charCodeAt(0);function c(e){var t=e.charCodeAt(0);return t===n||t===a?62:t===r||t===s?63:t<o?-1:t<o+10?t-o+26+26:t<u+26?t-u:t<i+26?t-i+26:void 0}e.toByteArray=function(e){var t,n;if(0<e.length%4)throw new Error("Invalid string. Length must be a multiple of 4");var r=e.length,o="="===e.charAt(r-2)?2:"="===e.charAt(r-1)?1:0,i=new f(3*e.length/4-o),u=0<o?e.length-4:e.length,a=0;function s(e){i[a++]=e}for(t=0;t<u;t+=4,0)s((16711680&(n=c(e.charAt(t))<<18|c(e.charAt(t+1))<<12|c(e.charAt(t+2))<<6|c(e.charAt(t+3))))>>16),s((65280&n)>>8),s(255&n);return 2==o?s(255&(n=c(e.charAt(t))<<2|c(e.charAt(t+1))>>4)):1==o&&(s((n=c(e.charAt(t))<<10|c(e.charAt(t+1))<<4|c(e.charAt(t+2))>>2)>>8&255),s(255&n)),i},e.fromByteArray=function(e){var t,n,r,o,i=e.length%3,u="";function a(e){return"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(e)}for(t=0,r=e.length-i;t<r;t+=3)n=(e[t]<<16)+(e[t+1]<<8)+e[t+2],u+=a((o=n)>>18&63)+a(o>>12&63)+a(o>>6&63)+a(63&o);switch(i){case 1:u+=a((n=e[e.length-1])>>2),u+=a(n<<4&63),u+="==";break;case 2:u+=a((n=(e[e.length-2]<<8)+e[e.length-1])>>10),u+=a(n>>4&63),u+=a(n<<2&63),u+="="}return u}}(void 0===f?this.base64js={}:f)}).call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/base64-js/lib/b64.js","/node_modules/gulp-browserify/node_modules/base64-js/lib")},{buffer:3,lYpoI2:10}],3:[function(O,e,H){(function(e,t,g,n,r,o,i,u,a){var s=O("base64-js"),f=O("ieee754");function g(e,t,n){if(!(this instanceof g))return new g(e,t,n);var r,o,i,u,a,s=typeof e;if("base64"===t&&"string"==s)for(e=(r=e).trim?r.trim():r.replace(/^\s+|\s+$/g,"");e.length%4!=0;)e+="=";if("number"==s)o=x(e);else if("string"==s)o=g.byteLength(e,t);else{if("object"!=s)throw new Error("First argument needs to be a number, array or string.");o=x(e.length)}if(g._useTypedArrays?i=g._augment(new Uint8Array(o)):((i=this).length=o,i._isBuffer=!0),g._useTypedArrays&&"number"==typeof e.byteLength)i._set(e);else if(S(a=e)||g.isBuffer(a)||a&&"object"==typeof a&&"number"==typeof a.length)for(u=0;u<o;u++)g.isBuffer(e)?i[u]=e.readUInt8(u):i[u]=e[u];else if("string"==s)i.write(e,0,t);else if("number"==s&&!g._useTypedArrays&&!n)for(u=0;u<o;u++)i[u]=0;return i}function y(e,t,n,r){return g._charsWritten=T(function(e){for(var t=[],n=0;n<e.length;n++)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function w(e,t,n,r){return g._charsWritten=T(function(e){for(var t,n,r,o=[],i=0;i<e.length;i++)t=e.charCodeAt(i),n=t>>8,r=t%256,o.push(r),o.push(n);return o}(t),e,n,r)}function c(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;o<n;o++)r+=String.fromCharCode(e[o]);return r}function l(e,t,n,r){r||(D("boolean"==typeof n,"missing or invalid endian"),D(null!=t,"missing offset"),D(t+1<e.length,"Trying to read beyond buffer length"));var o,i=e.length;if(!(i<=t))return n?(o=e[t],t+1<i&&(o|=e[t+1]<<8)):(o=e[t]<<8,t+1<i&&(o|=e[t+1])),o}function d(e,t,n,r){r||(D("boolean"==typeof n,"missing or invalid endian"),D(null!=t,"missing offset"),D(t+3<e.length,"Trying to read beyond buffer length"));var o,i=e.length;if(!(i<=t))return n?(t+2<i&&(o=e[t+2]<<16),t+1<i&&(o|=e[t+1]<<8),o|=e[t],t+3<i&&(o+=e[t+3]<<24>>>0)):(t+1<i&&(o=e[t+1]<<16),t+2<i&&(o|=e[t+2]<<8),t+3<i&&(o|=e[t+3]),o+=e[t]<<24>>>0),o}function h(e,t,n,r){if(r||(D("boolean"==typeof n,"missing or invalid endian"),D(null!=t,"missing offset"),D(t+1<e.length,"Trying to read beyond buffer length")),!(e.length<=t)){var o=l(e,t,n,!0);return 32768&o?-1*(65535-o+1):o}}function p(e,t,n,r){if(r||(D("boolean"==typeof n,"missing or invalid endian"),D(null!=t,"missing offset"),D(t+3<e.length,"Trying to read beyond buffer length")),!(e.length<=t)){var o=d(e,t,n,!0);return 2147483648&o?-1*(4294967295-o+1):o}}function b(e,t,n,r){return r||(D("boolean"==typeof n,"missing or invalid endian"),D(t+3<e.length,"Trying to read beyond buffer length")),f.read(e,t,n,23,4)}function m(e,t,n,r){return r||(D("boolean"==typeof n,"missing or invalid endian"),D(t+7<e.length,"Trying to read beyond buffer length")),f.read(e,t,n,52,8)}function v(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+1<e.length,"trying to write beyond buffer length"),N(t,65535));var i=e.length;if(!(i<=n))for(var u=0,a=Math.min(i-n,2);u<a;u++)e[n+u]=(t&255<<8*(r?u:1-u))>>>8*(r?u:1-u)}function _(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+3<e.length,"trying to write beyond buffer length"),N(t,4294967295));var i=e.length;if(!(i<=n))for(var u=0,a=Math.min(i-n,4);u<a;u++)e[n+u]=t>>>8*(r?u:3-u)&255}function E(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+1<e.length,"Trying to write beyond buffer length"),Y(t,32767,-32768)),e.length<=n||v(e,0<=t?t:65535+t+1,n,r,o)}function I(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+3<e.length,"Trying to write beyond buffer length"),Y(t,2147483647,-2147483648)),e.length<=n||_(e,0<=t?t:4294967295+t+1,n,r,o)}function A(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+3<e.length,"Trying to write beyond buffer length"),F(t,34028234663852886e22,-34028234663852886e22)),e.length<=n||f.write(e,t,n,r,23,4)}function B(e,t,n,r,o){o||(D(null!=t,"missing value"),D("boolean"==typeof r,"missing or invalid endian"),D(null!=n,"missing offset"),D(n+7<e.length,"Trying to write beyond buffer length"),F(t,17976931348623157e292,-17976931348623157e292)),e.length<=n||f.write(e,t,n,r,52,8)}H.Buffer=g,H.SlowBuffer=g,H.INSPECT_MAX_BYTES=50,g.poolSize=8192,g._useTypedArrays=function(){try{var e=new ArrayBuffer(0),t=new Uint8Array(e);return t.foo=function(){return 42},42===t.foo()&&"function"==typeof t.subarray}catch(e){return!1}}(),g.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"raw":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},g.isBuffer=function(e){return!(null==e||!e._isBuffer)},g.byteLength=function(e,t){var n;switch(e+="",t||"utf8"){case"hex":n=e.length/2;break;case"utf8":case"utf-8":n=C(e).length;break;case"ascii":case"binary":case"raw":n=e.length;break;case"base64":n=k(e).length;break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":n=2*e.length;break;default:throw new Error("Unknown encoding")}return n},g.concat=function(e,t){if(D(S(e),"Usage: Buffer.concat(list, [totalLength])\nlist should be an Array."),0===e.length)return new g(0);if(1===e.length)return e[0];if("number"!=typeof t)for(o=t=0;o<e.length;o++)t+=e[o].length;for(var n=new g(t),r=0,o=0;o<e.length;o++){var i=e[o];i.copy(n,r),r+=i.length}return n},g.prototype.write=function(e,t,n,r){var o;isFinite(t)?isFinite(n)||(r=n,n=void 0):(o=r,r=t,t=n,n=o),t=Number(t)||0;var i,u,a,s,f,c,l,d,h,p=this.length-t;switch((!n||p<(n=Number(n)))&&(n=p),r=String(r||"utf8").toLowerCase()){case"hex":i=function(e,t,n,r){n=Number(n)||0;var o=e.length-n;(!r||o<(r=Number(r)))&&(r=o);var i=t.length;D(i%2==0,"Invalid hex string"),i/2<r&&(r=i/2);for(var u=0;u<r;u++){var a=parseInt(t.substr(2*u,2),16);D(!isNaN(a),"Invalid hex string"),e[n+u]=a}return g._charsWritten=2*u,u}(this,e,t,n);break;case"utf8":case"utf-8":c=this,l=e,d=t,h=n,i=g._charsWritten=T(C(l),c,d,h);break;case"ascii":case"binary":i=y(this,e,t,n);break;case"base64":u=this,a=e,s=t,f=n,i=g._charsWritten=T(k(a),u,s,f);break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":i=w(this,e,t,n);break;default:throw new Error("Unknown encoding")}return i},g.prototype.toString=function(e,t,n){var r,o,i,u,a=this;if(e=String(e||"utf8").toLowerCase(),t=Number(t)||0,(n=void 0!==n?Number(n):n=a.length)===t)return"";switch(e){case"hex":r=function(e,t,n){var r=e.length;(!t||t<0)&&(t=0);(!n||n<0||r<n)&&(n=r);for(var o="",i=t;i<n;i++)o+=j(e[i]);return o}(a,t,n);break;case"utf8":case"utf-8":r=function(e,t,n){var r="",o="";n=Math.min(e.length,n);for(var i=t;i<n;i++)e[i]<=127?(r+=M(o)+String.fromCharCode(e[i]),o=""):o+="%"+e[i].toString(16);return r+M(o)}(a,t,n);break;case"ascii":case"binary":r=c(a,t,n);break;case"base64":o=a,u=n,r=0===(i=t)&&u===o.length?s.fromByteArray(o):s.fromByteArray(o.slice(i,u));break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":r=function(e,t,n){for(var r=e.slice(t,n),o="",i=0;i<r.length;i+=2)o+=String.fromCharCode(r[i]+256*r[i+1]);return o}(a,t,n);break;default:throw new Error("Unknown encoding")}return r},g.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},g.prototype.copy=function(e,t,n,r){if(n=n||0,r||0===r||(r=this.length),t=t||0,r!==n&&0!==e.length&&0!==this.length){D(n<=r,"sourceEnd < sourceStart"),D(0<=t&&t<e.length,"targetStart out of bounds"),D(0<=n&&n<this.length,"sourceStart out of bounds"),D(0<=r&&r<=this.length,"sourceEnd out of bounds"),r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var o=r-n;if(o<100||!g._useTypedArrays)for(var i=0;i<o;i++)e[i+t]=this[i+n];else e._set(this.subarray(n,n+o),t)}},g.prototype.slice=function(e,t){var n=this.length;if(e=U(e,n,0),t=U(t,n,n),g._useTypedArrays)return g._augment(this.subarray(e,t));for(var r=t-e,o=new g(r,void 0,!0),i=0;i<r;i++)o[i]=this[i+e];return o},g.prototype.get=function(e){return console.log(".get() is deprecated. Access using array indexes instead."),this.readUInt8(e)},g.prototype.set=function(e,t){return console.log(".set() is deprecated. Access using array indexes instead."),this.writeUInt8(e,t)},g.prototype.readUInt8=function(e,t){if(t||(D(null!=e,"missing offset"),D(e<this.length,"Trying to read beyond buffer length")),!(e>=this.length))return this[e]},g.prototype.readUInt16LE=function(e,t){return l(this,e,!0,t)},g.prototype.readUInt16BE=function(e,t){return l(this,e,!1,t)},g.prototype.readUInt32LE=function(e,t){return d(this,e,!0,t)},g.prototype.readUInt32BE=function(e,t){return d(this,e,!1,t)},g.prototype.readInt8=function(e,t){if(t||(D(null!=e,"missing offset"),D(e<this.length,"Trying to read beyond buffer length")),!(e>=this.length))return 128&this[e]?-1*(255-this[e]+1):this[e]},g.prototype.readInt16LE=function(e,t){return h(this,e,!0,t)},g.prototype.readInt16BE=function(e,t){return h(this,e,!1,t)},g.prototype.readInt32LE=function(e,t){return p(this,e,!0,t)},g.prototype.readInt32BE=function(e,t){return p(this,e,!1,t)},g.prototype.readFloatLE=function(e,t){return b(this,e,!0,t)},g.prototype.readFloatBE=function(e,t){return b(this,e,!1,t)},g.prototype.readDoubleLE=function(e,t){return m(this,e,!0,t)},g.prototype.readDoubleBE=function(e,t){return m(this,e,!1,t)},g.prototype.writeUInt8=function(e,t,n){n||(D(null!=e,"missing value"),D(null!=t,"missing offset"),D(t<this.length,"trying to write beyond buffer length"),N(e,255)),t>=this.length||(this[t]=e)},g.prototype.writeUInt16LE=function(e,t,n){v(this,e,t,!0,n)},g.prototype.writeUInt16BE=function(e,t,n){v(this,e,t,!1,n)},g.prototype.writeUInt32LE=function(e,t,n){_(this,e,t,!0,n)},g.prototype.writeUInt32BE=function(e,t,n){_(this,e,t,!1,n)},g.prototype.writeInt8=function(e,t,n){n||(D(null!=e,"missing value"),D(null!=t,"missing offset"),D(t<this.length,"Trying to write beyond buffer length"),Y(e,127,-128)),t>=this.length||(0<=e?this.writeUInt8(e,t,n):this.writeUInt8(255+e+1,t,n))},g.prototype.writeInt16LE=function(e,t,n){E(this,e,t,!0,n)},g.prototype.writeInt16BE=function(e,t,n){E(this,e,t,!1,n)},g.prototype.writeInt32LE=function(e,t,n){I(this,e,t,!0,n)},g.prototype.writeInt32BE=function(e,t,n){I(this,e,t,!1,n)},g.prototype.writeFloatLE=function(e,t,n){A(this,e,t,!0,n)},g.prototype.writeFloatBE=function(e,t,n){A(this,e,t,!1,n)},g.prototype.writeDoubleLE=function(e,t,n){B(this,e,t,!0,n)},g.prototype.writeDoubleBE=function(e,t,n){B(this,e,t,!1,n)},g.prototype.fill=function(e,t,n){if(e=e||0,t=t||0,n=n||this.length,"string"==typeof e&&(e=e.charCodeAt(0)),D("number"==typeof e&&!isNaN(e),"value is not a number"),D(t<=n,"end < start"),n!==t&&0!==this.length){D(0<=t&&t<this.length,"start out of bounds"),D(0<=n&&n<=this.length,"end out of bounds");for(var r=t;r<n;r++)this[r]=e}},g.prototype.inspect=function(){for(var e=[],t=this.length,n=0;n<t;n++)if(e[n]=j(this[n]),n===H.INSPECT_MAX_BYTES){e[n+1]="...";break}return"<Buffer "+e.join(" ")+">"},g.prototype.toArrayBuffer=function(){if("undefined"==typeof Uint8Array)throw new Error("Buffer.toArrayBuffer not supported in this browser");if(g._useTypedArrays)return new g(this).buffer;for(var e=new Uint8Array(this.length),t=0,n=e.length;t<n;t+=1)e[t]=this[t];return e.buffer};var L=g.prototype;function U(e,t,n){return"number"!=typeof e?n:t<=(e=~~e)?t:0<=e||0<=(e+=t)?e:0}function x(e){return(e=~~Math.ceil(+e))<0?0:e}function S(e){return(Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)})(e)}function j(e){return e<16?"0"+e.toString(16):e.toString(16)}function C(e){for(var t=[],n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<=127)t.push(e.charCodeAt(n));else{var o=n;55296<=r&&r<=57343&&n++;for(var i=encodeURIComponent(e.slice(o,n+1)).substr(1).split("%"),u=0;u<i.length;u++)t.push(parseInt(i[u],16))}}return t}function k(e){return s.toByteArray(e)}function T(e,t,n,r){for(var o=0;o<r&&!(o+n>=t.length||o>=e.length);o++)t[o+n]=e[o];return o}function M(e){try{return decodeURIComponent(e)}catch(e){return String.fromCharCode(65533)}}function N(e,t){D("number"==typeof e,"cannot write a non-number as a number"),D(0<=e,"specified a negative value for writing an unsigned value"),D(e<=t,"value is larger than maximum value for type"),D(Math.floor(e)===e,"value has a fractional component")}function Y(e,t,n){D("number"==typeof e,"cannot write a non-number as a number"),D(e<=t,"value larger than maximum allowed value"),D(n<=e,"value smaller than minimum allowed value"),D(Math.floor(e)===e,"value has a fractional component")}function F(e,t,n){D("number"==typeof e,"cannot write a non-number as a number"),D(e<=t,"value larger than maximum allowed value"),D(n<=e,"value smaller than minimum allowed value")}function D(e,t){if(!e)throw new Error(t||"Failed assertion")}g._augment=function(e){return e._isBuffer=!0,e._get=e.get,e._set=e.set,e.get=L.get,e.set=L.set,e.write=L.write,e.toString=L.toString,e.toLocaleString=L.toString,e.toJSON=L.toJSON,e.copy=L.copy,e.slice=L.slice,e.readUInt8=L.readUInt8,e.readUInt16LE=L.readUInt16LE,e.readUInt16BE=L.readUInt16BE,e.readUInt32LE=L.readUInt32LE,e.readUInt32BE=L.readUInt32BE,e.readInt8=L.readInt8,e.readInt16LE=L.readInt16LE,e.readInt16BE=L.readInt16BE,e.readInt32LE=L.readInt32LE,e.readInt32BE=L.readInt32BE,e.readFloatLE=L.readFloatLE,e.readFloatBE=L.readFloatBE,e.readDoubleLE=L.readDoubleLE,e.readDoubleBE=L.readDoubleBE,e.writeUInt8=L.writeUInt8,e.writeUInt16LE=L.writeUInt16LE,e.writeUInt16BE=L.writeUInt16BE,e.writeUInt32LE=L.writeUInt32LE,e.writeUInt32BE=L.writeUInt32BE,e.writeInt8=L.writeInt8,e.writeInt16LE=L.writeInt16LE,e.writeInt16BE=L.writeInt16BE,e.writeInt32LE=L.writeInt32LE,e.writeInt32BE=L.writeInt32BE,e.writeFloatLE=L.writeFloatLE,e.writeFloatBE=L.writeFloatBE,e.writeDoubleLE=L.writeDoubleLE,e.writeDoubleBE=L.writeDoubleBE,e.fill=L.fill,e.inspect=L.inspect,e.toArrayBuffer=L.toArrayBuffer,e}}).call(this,O("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},O("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/buffer/index.js","/node_modules/gulp-browserify/node_modules/buffer")},{"base64-js":2,buffer:3,ieee754:11,lYpoI2:10}],4:[function(l,d,e){(function(e,t,u,n,r,o,i,a,s){var u=l("buffer").Buffer,f=4,c=new u(f);c.fill(0);d.exports={hash:function(e,t,n,r){return u.isBuffer(e)||(e=new u(e)),function(e,t,n){for(var r=new u(t),o=n?r.writeInt32BE:r.writeInt32LE,i=0;i<e.length;i++)o.call(r,e[i],4*i,!0);return r}(t(function(e,t){var n;e.length%f!=0&&(n=e.length+(f-e.length%f),e=u.concat([e,c],n));for(var r=[],o=t?e.readInt32BE:e.readInt32LE,i=0;i<e.length;i+=f)r.push(o.call(e,i));return r}(e,r),8*e.length),n,r)}}}).call(this,l("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},l("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/helpers.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{buffer:3,lYpoI2:10}],5:[function(w,e,b){(function(e,t,a,n,r,o,i,u,s){var a=w("buffer").Buffer,f=w("./sha"),c=w("./sha256"),l=w("./rng"),d={sha1:f,sha256:c,md5:w("./md5")},h=64,p=new a(h);function g(e,r){var o=d[e=e||"sha1"],i=[];return o||y("algorithm:",e,"is not yet supported"),{update:function(e){return a.isBuffer(e)||(e=new a(e)),i.push(e),e.length,this},digest:function(e){var t=a.concat(i),n=r?function(e,t,n){a.isBuffer(t)||(t=new a(t)),a.isBuffer(n)||(n=new a(n)),t.length>h?t=e(t):t.length<h&&(t=a.concat([t,p],h));for(var r=new a(h),o=new a(h),i=0;i<h;i++)r[i]=54^t[i],o[i]=92^t[i];var u=e(a.concat([r,n]));return e(a.concat([o,u]))}(o,r,t):o(t);return i=null,e?n.toString(e):n}}}function y(){var e=[].slice.call(arguments).join(" ");throw new Error([e,"we accept pull requests","http://github.com/dominictarr/crypto-browserify"].join("\n"))}p.fill(0),b.createHash=function(e){return g(e)},b.createHmac=g,b.randomBytes=function(e,t){if(!t||!t.call)return new a(l(e));try{t.call(this,void 0,new a(l(e)))}catch(e){t(e)}},function(e,t){for(var n in e)t(e[n],n)}(["createCredentials","createCipher","createCipheriv","createDecipher","createDecipheriv","createSign","createVerify","createDiffieHellman","pbkdf2"],function(e){b[e]=function(){y("sorry,",e,"is not implemented yet")}})}).call(this,w("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},w("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/index.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./md5":6,"./rng":7,"./sha":8,"./sha256":9,buffer:3,lYpoI2:10}],6:[function(w,b,e){(function(e,t,n,r,o,i,u,a,s){var f=w("./helpers");function c(e,t){e[t>>5]|=128<<t%32,e[14+(t+64>>>9<<4)]=t;for(var n=1732584193,r=-271733879,o=-1732584194,i=271733878,u=0;u<e.length;u+=16){var a=n,s=r,f=o,c=i,n=d(n,r,o,i,e[u+0],7,-680876936),i=d(i,n,r,o,e[u+1],12,-389564586),o=d(o,i,n,r,e[u+2],17,606105819),r=d(r,o,i,n,e[u+3],22,-1044525330);n=d(n,r,o,i,e[u+4],7,-176418897),i=d(i,n,r,o,e[u+5],12,1200080426),o=d(o,i,n,r,e[u+6],17,-1473231341),r=d(r,o,i,n,e[u+7],22,-45705983),n=d(n,r,o,i,e[u+8],7,1770035416),i=d(i,n,r,o,e[u+9],12,-1958414417),o=d(o,i,n,r,e[u+10],17,-42063),r=d(r,o,i,n,e[u+11],22,-1990404162),n=d(n,r,o,i,e[u+12],7,1804603682),i=d(i,n,r,o,e[u+13],12,-40341101),o=d(o,i,n,r,e[u+14],17,-1502002290),n=h(n,r=d(r,o,i,n,e[u+15],22,1236535329),o,i,e[u+1],5,-165796510),i=h(i,n,r,o,e[u+6],9,-1069501632),o=h(o,i,n,r,e[u+11],14,643717713),r=h(r,o,i,n,e[u+0],20,-373897302),n=h(n,r,o,i,e[u+5],5,-701558691),i=h(i,n,r,o,e[u+10],9,38016083),o=h(o,i,n,r,e[u+15],14,-660478335),r=h(r,o,i,n,e[u+4],20,-405537848),n=h(n,r,o,i,e[u+9],5,568446438),i=h(i,n,r,o,e[u+14],9,-1019803690),o=h(o,i,n,r,e[u+3],14,-187363961),r=h(r,o,i,n,e[u+8],20,1163531501),n=h(n,r,o,i,e[u+13],5,-1444681467),i=h(i,n,r,o,e[u+2],9,-51403784),o=h(o,i,n,r,e[u+7],14,1735328473),n=p(n,r=h(r,o,i,n,e[u+12],20,-1926607734),o,i,e[u+5],4,-378558),i=p(i,n,r,o,e[u+8],11,-2022574463),o=p(o,i,n,r,e[u+11],16,1839030562),r=p(r,o,i,n,e[u+14],23,-35309556),n=p(n,r,o,i,e[u+1],4,-1530992060),i=p(i,n,r,o,e[u+4],11,1272893353),o=p(o,i,n,r,e[u+7],16,-155497632),r=p(r,o,i,n,e[u+10],23,-1094730640),n=p(n,r,o,i,e[u+13],4,681279174),i=p(i,n,r,o,e[u+0],11,-358537222),o=p(o,i,n,r,e[u+3],16,-722521979),r=p(r,o,i,n,e[u+6],23,76029189),n=p(n,r,o,i,e[u+9],4,-640364487),i=p(i,n,r,o,e[u+12],11,-421815835),o=p(o,i,n,r,e[u+15],16,530742520),n=g(n,r=p(r,o,i,n,e[u+2],23,-995338651),o,i,e[u+0],6,-198630844),i=g(i,n,r,o,e[u+7],10,1126891415),o=g(o,i,n,r,e[u+14],15,-1416354905),r=g(r,o,i,n,e[u+5],21,-57434055),n=g(n,r,o,i,e[u+12],6,1700485571),i=g(i,n,r,o,e[u+3],10,-1894986606),o=g(o,i,n,r,e[u+10],15,-1051523),r=g(r,o,i,n,e[u+1],21,-2054922799),n=g(n,r,o,i,e[u+8],6,1873313359),i=g(i,n,r,o,e[u+15],10,-30611744),o=g(o,i,n,r,e[u+6],15,-1560198380),r=g(r,o,i,n,e[u+13],21,1309151649),n=g(n,r,o,i,e[u+4],6,-145523070),i=g(i,n,r,o,e[u+11],10,-1120210379),o=g(o,i,n,r,e[u+2],15,718787259),r=g(r,o,i,n,e[u+9],21,-343485551),n=y(n,a),r=y(r,s),o=y(o,f),i=y(i,c)}return Array(n,r,o,i)}function l(e,t,n,r,o,i){return y((u=y(y(t,e),y(r,i)))<<(a=o)|u>>>32-a,n);var u,a}function d(e,t,n,r,o,i,u){return l(t&n|~t&r,e,t,o,i,u)}function h(e,t,n,r,o,i,u){return l(t&r|n&~r,e,t,o,i,u)}function p(e,t,n,r,o,i,u){return l(t^n^r,e,t,o,i,u)}function g(e,t,n,r,o,i,u){return l(n^(t|~r),e,t,o,i,u)}function y(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}b.exports=function(e){return f.hash(e,c,16)}}).call(this,w("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},w("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/md5.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:10}],7:[function(e,l,t){(function(e,t,n,r,o,i,u,a,s){var f,c;c=function(e){for(var t,n=new Array(e),r=0;r<e;r++)0==(3&r)&&(t=4294967296*Math.random()),n[r]=t>>>((3&r)<<3)&255;return n},l.exports=f||c}).call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/rng.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{buffer:3,lYpoI2:10}],8:[function(l,d,e){(function(e,t,n,r,o,i,u,a,s){var f=l("./helpers");function c(e,t){e[t>>5]|=128<<24-t%32,e[15+(t+64>>9<<4)]=t;for(var n,r,o,i,u,a=Array(80),s=1732584193,f=-271733879,c=-1732584194,l=271733878,d=-1009589776,h=0;h<e.length;h+=16){for(var p=s,g=f,y=c,w=l,b=d,m=0;m<80;m++){a[m]=m<16?e[h+m]:E(a[m-3]^a[m-8]^a[m-14]^a[m-16],1);var v=_(_(E(s,5),(o=f,i=c,u=l,(r=m)<20?o&i|~o&u:!(r<40)&&r<60?o&i|o&u|i&u:o^i^u)),_(_(d,a[m]),(n=m)<20?1518500249:n<40?1859775393:n<60?-1894007588:-899497514)),d=l,l=c,c=E(f,30),f=s,s=v}s=_(s,p),f=_(f,g),c=_(c,y),l=_(l,w),d=_(d,b)}return Array(s,f,c,l,d)}function _(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function E(e,t){return e<<t|e>>>32-t}d.exports=function(e){return f.hash(e,c,20,!0)}}).call(this,l("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},l("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/sha.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:10}],9:[function(l,d,e){(function(e,t,n,r,o,i,u,a,s){function B(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function L(e,t){return e>>>t|e<<32-t}function f(e,t){var n,r,o,i,u,a,s,f,c,l,d=new Array(1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298),h=new Array(1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225),p=new Array(64);e[t>>5]|=128<<24-t%32,e[15+(t+64>>9<<4)]=t;for(var g,y,w,b,m,v,_,E,I=0;I<e.length;I+=16){n=h[0],r=h[1],o=h[2],i=h[3],u=h[4],a=h[5],s=h[6],f=h[7];for(var A=0;A<64;A++)p[A]=A<16?e[A+I]:B(B(B((E=p[A-2],L(E,17)^L(E,19)^E>>>10),p[A-7]),(_=p[A-15],L(_,7)^L(_,18)^_>>>3)),p[A-16]),c=B(B(B(B(f,L(v=u,6)^L(v,11)^L(v,25)),(m=u)&a^~m&s),d[A]),p[A]),l=B(L(b=n,2)^L(b,13)^L(b,22),(g=n)&(y=r)^g&(w=o)^y&w),f=s,s=a,a=u,u=B(i,c),i=o,o=r,r=n,n=B(c,l);h[0]=B(n,h[0]),h[1]=B(r,h[1]),h[2]=B(o,h[2]),h[3]=B(i,h[3]),h[4]=B(u,h[4]),h[5]=B(a,h[5]),h[6]=B(s,h[6]),h[7]=B(f,h[7])}return h}var c=l("./helpers");d.exports=function(e){return c.hash(e,f,32,!0)}}).call(this,l("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},l("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/sha256.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:10}],10:[function(e,c,t){(function(e,t,n,r,o,i,u,a,s){function f(){}(e=c.exports={}).nextTick=function(){var e="undefined"!=typeof window&&window.setImmediate,t="undefined"!=typeof window&&window.postMessage&&window.addEventListener;if(e)return function(e){return window.setImmediate(e)};if(t){var n=[];return window.addEventListener("message",function(e){var t=e.source;t!==window&&null!==t||"process-tick"!==e.data||(e.stopPropagation(),0<n.length&&n.shift()())},!0),function(e){n.push(e),window.postMessage("process-tick","*")}}return function(e){setTimeout(e,0)}}(),e.title="browser",e.browser=!0,e.env={},e.argv=[],e.on=f,e.addListener=f,e.once=f,e.off=f,e.removeListener=f,e.removeAllListeners=f,e.emit=f,e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")}}).call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/process/browser.js","/node_modules/gulp-browserify/node_modules/process")},{buffer:3,lYpoI2:10}],11:[function(e,t,f){(function(e,t,n,r,o,i,u,a,s){f.read=function(e,t,n,r,o){var i,u,a=8*o-r-1,s=(1<<a)-1,f=s>>1,c=-7,l=n?o-1:0,d=n?-1:1,h=e[t+l];for(l+=d,i=h&(1<<-c)-1,h>>=-c,c+=a;0<c;i=256*i+e[t+l],l+=d,c-=8);for(u=i&(1<<-c)-1,i>>=-c,c+=r;0<c;u=256*u+e[t+l],l+=d,c-=8);if(0===i)i=1-f;else{if(i===s)return u?NaN:1/0*(h?-1:1);u+=Math.pow(2,r),i-=f}return(h?-1:1)*u*Math.pow(2,i-r)},f.write=function(e,t,n,r,o,i){var u,a,s,f=8*i-o-1,c=(1<<f)-1,l=c>>1,d=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:i-1,p=r?1:-1,g=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(a=isNaN(t)?1:0,u=c):(u=Math.floor(Math.log(t)/Math.LN2),t*(s=Math.pow(2,-u))<1&&(u--,s*=2),2<=(t+=1<=u+l?d/s:d*Math.pow(2,1-l))*s&&(u++,s/=2),c<=u+l?(a=0,u=c):1<=u+l?(a=(t*s-1)*Math.pow(2,o),u+=l):(a=t*Math.pow(2,l-1)*Math.pow(2,o),u=0));8<=o;e[n+h]=255&a,h+=p,a/=256,o-=8);for(u=u<<o|a,f+=o;0<f;e[n+h]=255&u,h+=p,u/=256,f-=8);e[n+h-p]|=128*g}}).call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/ieee754/index.js","/node_modules/ieee754")},{buffer:3,lYpoI2:10}]},{},[1])(1)});
|