@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,4334 @@
|
|
|
1
|
+
// Axios v1.6.5 Copyright (c) 2024 Matt Zabriskie and contributors
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
const FormData$1 = require('form-data');
|
|
5
|
+
const url = require('url');
|
|
6
|
+
const proxyFromEnv = require('proxy-from-env');
|
|
7
|
+
const http = require('http');
|
|
8
|
+
const https = require('https');
|
|
9
|
+
const util = require('util');
|
|
10
|
+
const followRedirects = require('follow-redirects');
|
|
11
|
+
const zlib = require('zlib');
|
|
12
|
+
const stream = require('stream');
|
|
13
|
+
const EventEmitter = require('events');
|
|
14
|
+
|
|
15
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
16
|
+
|
|
17
|
+
const FormData__default = /*#__PURE__*/_interopDefaultLegacy(FormData$1);
|
|
18
|
+
const url__default = /*#__PURE__*/_interopDefaultLegacy(url);
|
|
19
|
+
const http__default = /*#__PURE__*/_interopDefaultLegacy(http);
|
|
20
|
+
const https__default = /*#__PURE__*/_interopDefaultLegacy(https);
|
|
21
|
+
const util__default = /*#__PURE__*/_interopDefaultLegacy(util);
|
|
22
|
+
const followRedirects__default = /*#__PURE__*/_interopDefaultLegacy(followRedirects);
|
|
23
|
+
const zlib__default = /*#__PURE__*/_interopDefaultLegacy(zlib);
|
|
24
|
+
const stream__default = /*#__PURE__*/_interopDefaultLegacy(stream);
|
|
25
|
+
const EventEmitter__default = /*#__PURE__*/_interopDefaultLegacy(EventEmitter);
|
|
26
|
+
|
|
27
|
+
function bind(fn, thisArg) {
|
|
28
|
+
return function wrap() {
|
|
29
|
+
return fn.apply(thisArg, arguments);
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// utils is a library of generic helper functions non-specific to axios
|
|
34
|
+
|
|
35
|
+
const {toString} = Object.prototype;
|
|
36
|
+
const {getPrototypeOf} = Object;
|
|
37
|
+
|
|
38
|
+
const kindOf = (cache => thing => {
|
|
39
|
+
const str = toString.call(thing);
|
|
40
|
+
return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
|
|
41
|
+
})(Object.create(null));
|
|
42
|
+
|
|
43
|
+
const kindOfTest = (type) => {
|
|
44
|
+
type = type.toLowerCase();
|
|
45
|
+
return (thing) => kindOf(thing) === type
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const typeOfTest = type => thing => typeof thing === type;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Determine if a value is an Array
|
|
52
|
+
*
|
|
53
|
+
* @param {Object} val The value to test
|
|
54
|
+
*
|
|
55
|
+
* @returns {boolean} True if value is an Array, otherwise false
|
|
56
|
+
*/
|
|
57
|
+
const {isArray} = Array;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Determine if a value is undefined
|
|
61
|
+
*
|
|
62
|
+
* @param {*} val The value to test
|
|
63
|
+
*
|
|
64
|
+
* @returns {boolean} True if the value is undefined, otherwise false
|
|
65
|
+
*/
|
|
66
|
+
const isUndefined = typeOfTest('undefined');
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Determine if a value is a Buffer
|
|
70
|
+
*
|
|
71
|
+
* @param {*} val The value to test
|
|
72
|
+
*
|
|
73
|
+
* @returns {boolean} True if value is a Buffer, otherwise false
|
|
74
|
+
*/
|
|
75
|
+
function isBuffer(val) {
|
|
76
|
+
return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)
|
|
77
|
+
&& isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Determine if a value is an ArrayBuffer
|
|
82
|
+
*
|
|
83
|
+
* @param {*} val The value to test
|
|
84
|
+
*
|
|
85
|
+
* @returns {boolean} True if value is an ArrayBuffer, otherwise false
|
|
86
|
+
*/
|
|
87
|
+
const isArrayBuffer = kindOfTest('ArrayBuffer');
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Determine if a value is a view on an ArrayBuffer
|
|
92
|
+
*
|
|
93
|
+
* @param {*} val The value to test
|
|
94
|
+
*
|
|
95
|
+
* @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false
|
|
96
|
+
*/
|
|
97
|
+
function isArrayBufferView(val) {
|
|
98
|
+
let result;
|
|
99
|
+
if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {
|
|
100
|
+
result = ArrayBuffer.isView(val);
|
|
101
|
+
} else {
|
|
102
|
+
result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));
|
|
103
|
+
}
|
|
104
|
+
return result;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Determine if a value is a String
|
|
109
|
+
*
|
|
110
|
+
* @param {*} val The value to test
|
|
111
|
+
*
|
|
112
|
+
* @returns {boolean} True if value is a String, otherwise false
|
|
113
|
+
*/
|
|
114
|
+
const isString = typeOfTest('string');
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Determine if a value is a Function
|
|
118
|
+
*
|
|
119
|
+
* @param {*} val The value to test
|
|
120
|
+
* @returns {boolean} True if value is a Function, otherwise false
|
|
121
|
+
*/
|
|
122
|
+
const isFunction = typeOfTest('function');
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Determine if a value is a Number
|
|
126
|
+
*
|
|
127
|
+
* @param {*} val The value to test
|
|
128
|
+
*
|
|
129
|
+
* @returns {boolean} True if value is a Number, otherwise false
|
|
130
|
+
*/
|
|
131
|
+
const isNumber = typeOfTest('number');
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Determine if a value is an Object
|
|
135
|
+
*
|
|
136
|
+
* @param {*} thing The value to test
|
|
137
|
+
*
|
|
138
|
+
* @returns {boolean} True if value is an Object, otherwise false
|
|
139
|
+
*/
|
|
140
|
+
const isObject = (thing) => thing !== null && typeof thing === 'object';
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Determine if a value is a Boolean
|
|
144
|
+
*
|
|
145
|
+
* @param {*} thing The value to test
|
|
146
|
+
* @returns {boolean} True if value is a Boolean, otherwise false
|
|
147
|
+
*/
|
|
148
|
+
const isBoolean = thing => thing === true || thing === false;
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Determine if a value is a plain Object
|
|
152
|
+
*
|
|
153
|
+
* @param {*} val The value to test
|
|
154
|
+
*
|
|
155
|
+
* @returns {boolean} True if value is a plain Object, otherwise false
|
|
156
|
+
*/
|
|
157
|
+
const isPlainObject = (val) => {
|
|
158
|
+
if (kindOf(val) !== 'object') {
|
|
159
|
+
return false;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
const prototype = getPrototypeOf(val);
|
|
163
|
+
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in val) && !(Symbol.iterator in val);
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Determine if a value is a Date
|
|
168
|
+
*
|
|
169
|
+
* @param {*} val The value to test
|
|
170
|
+
*
|
|
171
|
+
* @returns {boolean} True if value is a Date, otherwise false
|
|
172
|
+
*/
|
|
173
|
+
const isDate = kindOfTest('Date');
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Determine if a value is a File
|
|
177
|
+
*
|
|
178
|
+
* @param {*} val The value to test
|
|
179
|
+
*
|
|
180
|
+
* @returns {boolean} True if value is a File, otherwise false
|
|
181
|
+
*/
|
|
182
|
+
const isFile = kindOfTest('File');
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* Determine if a value is a Blob
|
|
186
|
+
*
|
|
187
|
+
* @param {*} val The value to test
|
|
188
|
+
*
|
|
189
|
+
* @returns {boolean} True if value is a Blob, otherwise false
|
|
190
|
+
*/
|
|
191
|
+
const isBlob = kindOfTest('Blob');
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Determine if a value is a FileList
|
|
195
|
+
*
|
|
196
|
+
* @param {*} val The value to test
|
|
197
|
+
*
|
|
198
|
+
* @returns {boolean} True if value is a File, otherwise false
|
|
199
|
+
*/
|
|
200
|
+
const isFileList = kindOfTest('FileList');
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Determine if a value is a Stream
|
|
204
|
+
*
|
|
205
|
+
* @param {*} val The value to test
|
|
206
|
+
*
|
|
207
|
+
* @returns {boolean} True if value is a Stream, otherwise false
|
|
208
|
+
*/
|
|
209
|
+
const isStream = (val) => isObject(val) && isFunction(val.pipe);
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* Determine if a value is a FormData
|
|
213
|
+
*
|
|
214
|
+
* @param {*} thing The value to test
|
|
215
|
+
*
|
|
216
|
+
* @returns {boolean} True if value is an FormData, otherwise false
|
|
217
|
+
*/
|
|
218
|
+
const isFormData = (thing) => {
|
|
219
|
+
let kind;
|
|
220
|
+
return thing && (
|
|
221
|
+
(typeof FormData === 'function' && thing instanceof FormData) || (
|
|
222
|
+
isFunction(thing.append) && (
|
|
223
|
+
(kind = kindOf(thing)) === 'formdata' ||
|
|
224
|
+
// detect form-data instance
|
|
225
|
+
(kind === 'object' && isFunction(thing.toString) && thing.toString() === '[object FormData]')
|
|
226
|
+
)
|
|
227
|
+
)
|
|
228
|
+
)
|
|
229
|
+
};
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Determine if a value is a URLSearchParams object
|
|
233
|
+
*
|
|
234
|
+
* @param {*} val The value to test
|
|
235
|
+
*
|
|
236
|
+
* @returns {boolean} True if value is a URLSearchParams object, otherwise false
|
|
237
|
+
*/
|
|
238
|
+
const isURLSearchParams = kindOfTest('URLSearchParams');
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Trim excess whitespace off the beginning and end of a string
|
|
242
|
+
*
|
|
243
|
+
* @param {String} str The String to trim
|
|
244
|
+
*
|
|
245
|
+
* @returns {String} The String freed of excess whitespace
|
|
246
|
+
*/
|
|
247
|
+
const trim = (str) => str.trim ?
|
|
248
|
+
str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Iterate over an Array or an Object invoking a function for each item.
|
|
252
|
+
*
|
|
253
|
+
* If `obj` is an Array callback will be called passing
|
|
254
|
+
* the value, index, and complete array for each item.
|
|
255
|
+
*
|
|
256
|
+
* If 'obj' is an Object callback will be called passing
|
|
257
|
+
* the value, key, and complete object for each property.
|
|
258
|
+
*
|
|
259
|
+
* @param {Object|Array} obj The object to iterate
|
|
260
|
+
* @param {Function} fn The callback to invoke for each item
|
|
261
|
+
*
|
|
262
|
+
* @param {Boolean} [allOwnKeys = false]
|
|
263
|
+
* @returns {any}
|
|
264
|
+
*/
|
|
265
|
+
function forEach(obj, fn, {allOwnKeys = false} = {}) {
|
|
266
|
+
// Don't bother if no value provided
|
|
267
|
+
if (obj === null || typeof obj === 'undefined') {
|
|
268
|
+
return;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
let i;
|
|
272
|
+
let l;
|
|
273
|
+
|
|
274
|
+
// Force an array if not already something iterable
|
|
275
|
+
if (typeof obj !== 'object') {
|
|
276
|
+
/*eslint no-param-reassign:0*/
|
|
277
|
+
obj = [obj];
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
if (isArray(obj)) {
|
|
281
|
+
// Iterate over array values
|
|
282
|
+
for (i = 0, l = obj.length; i < l; i++) {
|
|
283
|
+
fn.call(null, obj[i], i, obj);
|
|
284
|
+
}
|
|
285
|
+
} else {
|
|
286
|
+
// Iterate over object keys
|
|
287
|
+
const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
|
|
288
|
+
const len = keys.length;
|
|
289
|
+
let key;
|
|
290
|
+
|
|
291
|
+
for (i = 0; i < len; i++) {
|
|
292
|
+
key = keys[i];
|
|
293
|
+
fn.call(null, obj[key], key, obj);
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
function findKey(obj, key) {
|
|
299
|
+
key = key.toLowerCase();
|
|
300
|
+
const keys = Object.keys(obj);
|
|
301
|
+
let i = keys.length;
|
|
302
|
+
let _key;
|
|
303
|
+
while (i-- > 0) {
|
|
304
|
+
_key = keys[i];
|
|
305
|
+
if (key === _key.toLowerCase()) {
|
|
306
|
+
return _key;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
return null;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
const _global = (() => {
|
|
313
|
+
/*eslint no-undef:0*/
|
|
314
|
+
if (typeof globalThis !== "undefined") return globalThis;
|
|
315
|
+
return typeof self !== "undefined" ? self : (typeof window !== 'undefined' ? window : global)
|
|
316
|
+
})();
|
|
317
|
+
|
|
318
|
+
const isContextDefined = (context) => !isUndefined(context) && context !== _global;
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* Accepts varargs expecting each argument to be an object, then
|
|
322
|
+
* immutably merges the properties of each object and returns result.
|
|
323
|
+
*
|
|
324
|
+
* When multiple objects contain the same key the later object in
|
|
325
|
+
* the arguments list will take precedence.
|
|
326
|
+
*
|
|
327
|
+
* Example:
|
|
328
|
+
*
|
|
329
|
+
* ```js
|
|
330
|
+
* var result = merge({foo: 123}, {foo: 456});
|
|
331
|
+
* console.log(result.foo); // outputs 456
|
|
332
|
+
* ```
|
|
333
|
+
*
|
|
334
|
+
* @param {Object} obj1 Object to merge
|
|
335
|
+
*
|
|
336
|
+
* @returns {Object} Result of all merge properties
|
|
337
|
+
*/
|
|
338
|
+
function merge(/* obj1, obj2, obj3, ... */) {
|
|
339
|
+
const {caseless} = isContextDefined(this) && this || {};
|
|
340
|
+
const result = {};
|
|
341
|
+
const assignValue = (val, key) => {
|
|
342
|
+
const targetKey = caseless && findKey(result, key) || key;
|
|
343
|
+
if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
|
|
344
|
+
result[targetKey] = merge(result[targetKey], val);
|
|
345
|
+
} else if (isPlainObject(val)) {
|
|
346
|
+
result[targetKey] = merge({}, val);
|
|
347
|
+
} else if (isArray(val)) {
|
|
348
|
+
result[targetKey] = val.slice();
|
|
349
|
+
} else {
|
|
350
|
+
result[targetKey] = val;
|
|
351
|
+
}
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
for (let i = 0, l = arguments.length; i < l; i++) {
|
|
355
|
+
arguments[i] && forEach(arguments[i], assignValue);
|
|
356
|
+
}
|
|
357
|
+
return result;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* Extends object a by mutably adding to it the properties of object b.
|
|
362
|
+
*
|
|
363
|
+
* @param {Object} a The object to be extended
|
|
364
|
+
* @param {Object} b The object to copy properties from
|
|
365
|
+
* @param {Object} thisArg The object to bind function to
|
|
366
|
+
*
|
|
367
|
+
* @param {Boolean} [allOwnKeys]
|
|
368
|
+
* @returns {Object} The resulting value of object a
|
|
369
|
+
*/
|
|
370
|
+
const extend = (a, b, thisArg, {allOwnKeys}= {}) => {
|
|
371
|
+
forEach(b, (val, key) => {
|
|
372
|
+
if (thisArg && isFunction(val)) {
|
|
373
|
+
a[key] = bind(val, thisArg);
|
|
374
|
+
} else {
|
|
375
|
+
a[key] = val;
|
|
376
|
+
}
|
|
377
|
+
}, {allOwnKeys});
|
|
378
|
+
return a;
|
|
379
|
+
};
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
|
|
383
|
+
*
|
|
384
|
+
* @param {string} content with BOM
|
|
385
|
+
*
|
|
386
|
+
* @returns {string} content value without BOM
|
|
387
|
+
*/
|
|
388
|
+
const stripBOM = (content) => {
|
|
389
|
+
if (content.charCodeAt(0) === 0xFEFF) {
|
|
390
|
+
content = content.slice(1);
|
|
391
|
+
}
|
|
392
|
+
return content;
|
|
393
|
+
};
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* Inherit the prototype methods from one constructor into another
|
|
397
|
+
* @param {function} constructor
|
|
398
|
+
* @param {function} superConstructor
|
|
399
|
+
* @param {object} [props]
|
|
400
|
+
* @param {object} [descriptors]
|
|
401
|
+
*
|
|
402
|
+
* @returns {void}
|
|
403
|
+
*/
|
|
404
|
+
const inherits = (constructor, superConstructor, props, descriptors) => {
|
|
405
|
+
constructor.prototype = Object.create(superConstructor.prototype, descriptors);
|
|
406
|
+
constructor.prototype.constructor = constructor;
|
|
407
|
+
Object.defineProperty(constructor, 'super', {
|
|
408
|
+
value: superConstructor.prototype
|
|
409
|
+
});
|
|
410
|
+
props && Object.assign(constructor.prototype, props);
|
|
411
|
+
};
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* Resolve object with deep prototype chain to a flat object
|
|
415
|
+
* @param {Object} sourceObj source object
|
|
416
|
+
* @param {Object} [destObj]
|
|
417
|
+
* @param {Function|Boolean} [filter]
|
|
418
|
+
* @param {Function} [propFilter]
|
|
419
|
+
*
|
|
420
|
+
* @returns {Object}
|
|
421
|
+
*/
|
|
422
|
+
const toFlatObject = (sourceObj, destObj, filter, propFilter) => {
|
|
423
|
+
let props;
|
|
424
|
+
let i;
|
|
425
|
+
let prop;
|
|
426
|
+
const merged = {};
|
|
427
|
+
|
|
428
|
+
destObj = destObj || {};
|
|
429
|
+
// eslint-disable-next-line no-eq-null,eqeqeq
|
|
430
|
+
if (sourceObj == null) return destObj;
|
|
431
|
+
|
|
432
|
+
do {
|
|
433
|
+
props = Object.getOwnPropertyNames(sourceObj);
|
|
434
|
+
i = props.length;
|
|
435
|
+
while (i-- > 0) {
|
|
436
|
+
prop = props[i];
|
|
437
|
+
if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {
|
|
438
|
+
destObj[prop] = sourceObj[prop];
|
|
439
|
+
merged[prop] = true;
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
sourceObj = filter !== false && getPrototypeOf(sourceObj);
|
|
443
|
+
} while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);
|
|
444
|
+
|
|
445
|
+
return destObj;
|
|
446
|
+
};
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* Determines whether a string ends with the characters of a specified string
|
|
450
|
+
*
|
|
451
|
+
* @param {String} str
|
|
452
|
+
* @param {String} searchString
|
|
453
|
+
* @param {Number} [position= 0]
|
|
454
|
+
*
|
|
455
|
+
* @returns {boolean}
|
|
456
|
+
*/
|
|
457
|
+
const endsWith = (str, searchString, position) => {
|
|
458
|
+
str = String(str);
|
|
459
|
+
if (position === undefined || position > str.length) {
|
|
460
|
+
position = str.length;
|
|
461
|
+
}
|
|
462
|
+
position -= searchString.length;
|
|
463
|
+
const lastIndex = str.indexOf(searchString, position);
|
|
464
|
+
return lastIndex !== -1 && lastIndex === position;
|
|
465
|
+
};
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* Returns new array from array like object or null if failed
|
|
470
|
+
*
|
|
471
|
+
* @param {*} [thing]
|
|
472
|
+
*
|
|
473
|
+
* @returns {?Array}
|
|
474
|
+
*/
|
|
475
|
+
const toArray = (thing) => {
|
|
476
|
+
if (!thing) return null;
|
|
477
|
+
if (isArray(thing)) return thing;
|
|
478
|
+
let i = thing.length;
|
|
479
|
+
if (!isNumber(i)) return null;
|
|
480
|
+
const arr = new Array(i);
|
|
481
|
+
while (i-- > 0) {
|
|
482
|
+
arr[i] = thing[i];
|
|
483
|
+
}
|
|
484
|
+
return arr;
|
|
485
|
+
};
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* Checking if the Uint8Array exists and if it does, it returns a function that checks if the
|
|
489
|
+
* thing passed in is an instance of Uint8Array
|
|
490
|
+
*
|
|
491
|
+
* @param {TypedArray}
|
|
492
|
+
*
|
|
493
|
+
* @returns {Array}
|
|
494
|
+
*/
|
|
495
|
+
// eslint-disable-next-line func-names
|
|
496
|
+
const isTypedArray = (TypedArray => {
|
|
497
|
+
// eslint-disable-next-line func-names
|
|
498
|
+
return thing => {
|
|
499
|
+
return TypedArray && thing instanceof TypedArray;
|
|
500
|
+
};
|
|
501
|
+
})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* For each entry in the object, call the function with the key and value.
|
|
505
|
+
*
|
|
506
|
+
* @param {Object<any, any>} obj - The object to iterate over.
|
|
507
|
+
* @param {Function} fn - The function to call for each entry.
|
|
508
|
+
*
|
|
509
|
+
* @returns {void}
|
|
510
|
+
*/
|
|
511
|
+
const forEachEntry = (obj, fn) => {
|
|
512
|
+
const generator = obj && obj[Symbol.iterator];
|
|
513
|
+
|
|
514
|
+
const iterator = generator.call(obj);
|
|
515
|
+
|
|
516
|
+
let result;
|
|
517
|
+
|
|
518
|
+
while ((result = iterator.next()) && !result.done) {
|
|
519
|
+
const pair = result.value;
|
|
520
|
+
fn.call(obj, pair[0], pair[1]);
|
|
521
|
+
}
|
|
522
|
+
};
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* It takes a regular expression and a string, and returns an array of all the matches
|
|
526
|
+
*
|
|
527
|
+
* @param {string} regExp - The regular expression to match against.
|
|
528
|
+
* @param {string} str - The string to search.
|
|
529
|
+
*
|
|
530
|
+
* @returns {Array<boolean>}
|
|
531
|
+
*/
|
|
532
|
+
const matchAll = (regExp, str) => {
|
|
533
|
+
let matches;
|
|
534
|
+
const arr = [];
|
|
535
|
+
|
|
536
|
+
while ((matches = regExp.exec(str)) !== null) {
|
|
537
|
+
arr.push(matches);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
return arr;
|
|
541
|
+
};
|
|
542
|
+
|
|
543
|
+
/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */
|
|
544
|
+
const isHTMLForm = kindOfTest('HTMLFormElement');
|
|
545
|
+
|
|
546
|
+
const toCamelCase = str => {
|
|
547
|
+
return str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,
|
|
548
|
+
function replacer(m, p1, p2) {
|
|
549
|
+
return p1.toUpperCase() + p2;
|
|
550
|
+
}
|
|
551
|
+
);
|
|
552
|
+
};
|
|
553
|
+
|
|
554
|
+
/* Creating a function that will check if an object has a property. */
|
|
555
|
+
const hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* Determine if a value is a RegExp object
|
|
559
|
+
*
|
|
560
|
+
* @param {*} val The value to test
|
|
561
|
+
*
|
|
562
|
+
* @returns {boolean} True if value is a RegExp object, otherwise false
|
|
563
|
+
*/
|
|
564
|
+
const isRegExp = kindOfTest('RegExp');
|
|
565
|
+
|
|
566
|
+
const reduceDescriptors = (obj, reducer) => {
|
|
567
|
+
const descriptors = Object.getOwnPropertyDescriptors(obj);
|
|
568
|
+
const reducedDescriptors = {};
|
|
569
|
+
|
|
570
|
+
forEach(descriptors, (descriptor, name) => {
|
|
571
|
+
let ret;
|
|
572
|
+
if ((ret = reducer(descriptor, name, obj)) !== false) {
|
|
573
|
+
reducedDescriptors[name] = ret || descriptor;
|
|
574
|
+
}
|
|
575
|
+
});
|
|
576
|
+
|
|
577
|
+
Object.defineProperties(obj, reducedDescriptors);
|
|
578
|
+
};
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* Makes all methods read-only
|
|
582
|
+
* @param {Object} obj
|
|
583
|
+
*/
|
|
584
|
+
|
|
585
|
+
const freezeMethods = (obj) => {
|
|
586
|
+
reduceDescriptors(obj, (descriptor, name) => {
|
|
587
|
+
// skip restricted props in strict mode
|
|
588
|
+
if (isFunction(obj) && ['arguments', 'caller', 'callee'].indexOf(name) !== -1) {
|
|
589
|
+
return false;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
const value = obj[name];
|
|
593
|
+
|
|
594
|
+
if (!isFunction(value)) return;
|
|
595
|
+
|
|
596
|
+
descriptor.enumerable = false;
|
|
597
|
+
|
|
598
|
+
if ('writable' in descriptor) {
|
|
599
|
+
descriptor.writable = false;
|
|
600
|
+
return;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
if (!descriptor.set) {
|
|
604
|
+
descriptor.set = () => {
|
|
605
|
+
throw Error('Can not rewrite read-only method \'' + name + '\'');
|
|
606
|
+
};
|
|
607
|
+
}
|
|
608
|
+
});
|
|
609
|
+
};
|
|
610
|
+
|
|
611
|
+
const toObjectSet = (arrayOrString, delimiter) => {
|
|
612
|
+
const obj = {};
|
|
613
|
+
|
|
614
|
+
const define = (arr) => {
|
|
615
|
+
arr.forEach(value => {
|
|
616
|
+
obj[value] = true;
|
|
617
|
+
});
|
|
618
|
+
};
|
|
619
|
+
|
|
620
|
+
isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));
|
|
621
|
+
|
|
622
|
+
return obj;
|
|
623
|
+
};
|
|
624
|
+
|
|
625
|
+
const noop = () => {};
|
|
626
|
+
|
|
627
|
+
const toFiniteNumber = (value, defaultValue) => {
|
|
628
|
+
value = +value;
|
|
629
|
+
return Number.isFinite(value) ? value : defaultValue;
|
|
630
|
+
};
|
|
631
|
+
|
|
632
|
+
const ALPHA = 'abcdefghijklmnopqrstuvwxyz';
|
|
633
|
+
|
|
634
|
+
const DIGIT = '0123456789';
|
|
635
|
+
|
|
636
|
+
const ALPHABET = {
|
|
637
|
+
DIGIT,
|
|
638
|
+
ALPHA,
|
|
639
|
+
ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
|
|
640
|
+
};
|
|
641
|
+
|
|
642
|
+
const generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
|
|
643
|
+
let str = '';
|
|
644
|
+
const {length} = alphabet;
|
|
645
|
+
while (size--) {
|
|
646
|
+
str += alphabet[Math.random() * length|0];
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
return str;
|
|
650
|
+
};
|
|
651
|
+
|
|
652
|
+
/**
|
|
653
|
+
* If the thing is a FormData object, return true, otherwise return false.
|
|
654
|
+
*
|
|
655
|
+
* @param {unknown} thing - The thing to check.
|
|
656
|
+
*
|
|
657
|
+
* @returns {boolean}
|
|
658
|
+
*/
|
|
659
|
+
function isSpecCompliantForm(thing) {
|
|
660
|
+
return !!(thing && isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator]);
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
const toJSONObject = (obj) => {
|
|
664
|
+
const stack = new Array(10);
|
|
665
|
+
|
|
666
|
+
const visit = (source, i) => {
|
|
667
|
+
|
|
668
|
+
if (isObject(source)) {
|
|
669
|
+
if (stack.indexOf(source) >= 0) {
|
|
670
|
+
return;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
if(!('toJSON' in source)) {
|
|
674
|
+
stack[i] = source;
|
|
675
|
+
const target = isArray(source) ? [] : {};
|
|
676
|
+
|
|
677
|
+
forEach(source, (value, key) => {
|
|
678
|
+
const reducedValue = visit(value, i + 1);
|
|
679
|
+
!isUndefined(reducedValue) && (target[key] = reducedValue);
|
|
680
|
+
});
|
|
681
|
+
|
|
682
|
+
stack[i] = undefined;
|
|
683
|
+
|
|
684
|
+
return target;
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
return source;
|
|
689
|
+
};
|
|
690
|
+
|
|
691
|
+
return visit(obj, 0);
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
const isAsyncFn = kindOfTest('AsyncFunction');
|
|
695
|
+
|
|
696
|
+
const isThenable = (thing) =>
|
|
697
|
+
thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);
|
|
698
|
+
|
|
699
|
+
const utils$1 = {
|
|
700
|
+
isArray,
|
|
701
|
+
isArrayBuffer,
|
|
702
|
+
isBuffer,
|
|
703
|
+
isFormData,
|
|
704
|
+
isArrayBufferView,
|
|
705
|
+
isString,
|
|
706
|
+
isNumber,
|
|
707
|
+
isBoolean,
|
|
708
|
+
isObject,
|
|
709
|
+
isPlainObject,
|
|
710
|
+
isUndefined,
|
|
711
|
+
isDate,
|
|
712
|
+
isFile,
|
|
713
|
+
isBlob,
|
|
714
|
+
isRegExp,
|
|
715
|
+
isFunction,
|
|
716
|
+
isStream,
|
|
717
|
+
isURLSearchParams,
|
|
718
|
+
isTypedArray,
|
|
719
|
+
isFileList,
|
|
720
|
+
forEach,
|
|
721
|
+
merge,
|
|
722
|
+
extend,
|
|
723
|
+
trim,
|
|
724
|
+
stripBOM,
|
|
725
|
+
inherits,
|
|
726
|
+
toFlatObject,
|
|
727
|
+
kindOf,
|
|
728
|
+
kindOfTest,
|
|
729
|
+
endsWith,
|
|
730
|
+
toArray,
|
|
731
|
+
forEachEntry,
|
|
732
|
+
matchAll,
|
|
733
|
+
isHTMLForm,
|
|
734
|
+
hasOwnProperty,
|
|
735
|
+
hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection
|
|
736
|
+
reduceDescriptors,
|
|
737
|
+
freezeMethods,
|
|
738
|
+
toObjectSet,
|
|
739
|
+
toCamelCase,
|
|
740
|
+
noop,
|
|
741
|
+
toFiniteNumber,
|
|
742
|
+
findKey,
|
|
743
|
+
global: _global,
|
|
744
|
+
isContextDefined,
|
|
745
|
+
ALPHABET,
|
|
746
|
+
generateString,
|
|
747
|
+
isSpecCompliantForm,
|
|
748
|
+
toJSONObject,
|
|
749
|
+
isAsyncFn,
|
|
750
|
+
isThenable
|
|
751
|
+
};
|
|
752
|
+
|
|
753
|
+
/**
|
|
754
|
+
* Create an Error with the specified message, config, error code, request and response.
|
|
755
|
+
*
|
|
756
|
+
* @param {string} message The error message.
|
|
757
|
+
* @param {string} [code] The error code (for example, 'ECONNABORTED').
|
|
758
|
+
* @param {Object} [config] The config.
|
|
759
|
+
* @param {Object} [request] The request.
|
|
760
|
+
* @param {Object} [response] The response.
|
|
761
|
+
*
|
|
762
|
+
* @returns {Error} The created error.
|
|
763
|
+
*/
|
|
764
|
+
function AxiosError(message, code, config, request, response) {
|
|
765
|
+
Error.call(this);
|
|
766
|
+
|
|
767
|
+
if (Error.captureStackTrace) {
|
|
768
|
+
Error.captureStackTrace(this, this.constructor);
|
|
769
|
+
} else {
|
|
770
|
+
this.stack = (new Error()).stack;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
this.message = message;
|
|
774
|
+
this.name = 'AxiosError';
|
|
775
|
+
code && (this.code = code);
|
|
776
|
+
config && (this.config = config);
|
|
777
|
+
request && (this.request = request);
|
|
778
|
+
response && (this.response = response);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
utils$1.inherits(AxiosError, Error, {
|
|
782
|
+
toJSON: function toJSON() {
|
|
783
|
+
return {
|
|
784
|
+
// Standard
|
|
785
|
+
message: this.message,
|
|
786
|
+
name: this.name,
|
|
787
|
+
// Microsoft
|
|
788
|
+
description: this.description,
|
|
789
|
+
number: this.number,
|
|
790
|
+
// Mozilla
|
|
791
|
+
fileName: this.fileName,
|
|
792
|
+
lineNumber: this.lineNumber,
|
|
793
|
+
columnNumber: this.columnNumber,
|
|
794
|
+
stack: this.stack,
|
|
795
|
+
// Axios
|
|
796
|
+
config: utils$1.toJSONObject(this.config),
|
|
797
|
+
code: this.code,
|
|
798
|
+
status: this.response && this.response.status ? this.response.status : null
|
|
799
|
+
};
|
|
800
|
+
}
|
|
801
|
+
});
|
|
802
|
+
|
|
803
|
+
const prototype$1 = AxiosError.prototype;
|
|
804
|
+
const descriptors = {};
|
|
805
|
+
|
|
806
|
+
[
|
|
807
|
+
'ERR_BAD_OPTION_VALUE',
|
|
808
|
+
'ERR_BAD_OPTION',
|
|
809
|
+
'ECONNABORTED',
|
|
810
|
+
'ETIMEDOUT',
|
|
811
|
+
'ERR_NETWORK',
|
|
812
|
+
'ERR_FR_TOO_MANY_REDIRECTS',
|
|
813
|
+
'ERR_DEPRECATED',
|
|
814
|
+
'ERR_BAD_RESPONSE',
|
|
815
|
+
'ERR_BAD_REQUEST',
|
|
816
|
+
'ERR_CANCELED',
|
|
817
|
+
'ERR_NOT_SUPPORT',
|
|
818
|
+
'ERR_INVALID_URL'
|
|
819
|
+
// eslint-disable-next-line func-names
|
|
820
|
+
].forEach(code => {
|
|
821
|
+
descriptors[code] = {value: code};
|
|
822
|
+
});
|
|
823
|
+
|
|
824
|
+
Object.defineProperties(AxiosError, descriptors);
|
|
825
|
+
Object.defineProperty(prototype$1, 'isAxiosError', {value: true});
|
|
826
|
+
|
|
827
|
+
// eslint-disable-next-line func-names
|
|
828
|
+
AxiosError.from = (error, code, config, request, response, customProps) => {
|
|
829
|
+
const axiosError = Object.create(prototype$1);
|
|
830
|
+
|
|
831
|
+
utils$1.toFlatObject(error, axiosError, function filter(obj) {
|
|
832
|
+
return obj !== Error.prototype;
|
|
833
|
+
}, prop => {
|
|
834
|
+
return prop !== 'isAxiosError';
|
|
835
|
+
});
|
|
836
|
+
|
|
837
|
+
AxiosError.call(axiosError, error.message, code, config, request, response);
|
|
838
|
+
|
|
839
|
+
axiosError.cause = error;
|
|
840
|
+
|
|
841
|
+
axiosError.name = error.name;
|
|
842
|
+
|
|
843
|
+
customProps && Object.assign(axiosError, customProps);
|
|
844
|
+
|
|
845
|
+
return axiosError;
|
|
846
|
+
};
|
|
847
|
+
|
|
848
|
+
/**
|
|
849
|
+
* Determines if the given thing is a array or js object.
|
|
850
|
+
*
|
|
851
|
+
* @param {string} thing - The object or array to be visited.
|
|
852
|
+
*
|
|
853
|
+
* @returns {boolean}
|
|
854
|
+
*/
|
|
855
|
+
function isVisitable(thing) {
|
|
856
|
+
return utils$1.isPlainObject(thing) || utils$1.isArray(thing);
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
/**
|
|
860
|
+
* It removes the brackets from the end of a string
|
|
861
|
+
*
|
|
862
|
+
* @param {string} key - The key of the parameter.
|
|
863
|
+
*
|
|
864
|
+
* @returns {string} the key without the brackets.
|
|
865
|
+
*/
|
|
866
|
+
function removeBrackets(key) {
|
|
867
|
+
return utils$1.endsWith(key, '[]') ? key.slice(0, -2) : key;
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
/**
|
|
871
|
+
* It takes a path, a key, and a boolean, and returns a string
|
|
872
|
+
*
|
|
873
|
+
* @param {string} path - The path to the current key.
|
|
874
|
+
* @param {string} key - The key of the current object being iterated over.
|
|
875
|
+
* @param {string} dots - If true, the key will be rendered with dots instead of brackets.
|
|
876
|
+
*
|
|
877
|
+
* @returns {string} The path to the current key.
|
|
878
|
+
*/
|
|
879
|
+
function renderKey(path, key, dots) {
|
|
880
|
+
if (!path) return key;
|
|
881
|
+
return path.concat(key).map(function each(token, i) {
|
|
882
|
+
// eslint-disable-next-line no-param-reassign
|
|
883
|
+
token = removeBrackets(token);
|
|
884
|
+
return !dots && i ? '[' + token + ']' : token;
|
|
885
|
+
}).join(dots ? '.' : '');
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
/**
|
|
889
|
+
* If the array is an array and none of its elements are visitable, then it's a flat array.
|
|
890
|
+
*
|
|
891
|
+
* @param {Array<any>} arr - The array to check
|
|
892
|
+
*
|
|
893
|
+
* @returns {boolean}
|
|
894
|
+
*/
|
|
895
|
+
function isFlatArray(arr) {
|
|
896
|
+
return utils$1.isArray(arr) && !arr.some(isVisitable);
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
const predicates = utils$1.toFlatObject(utils$1, {}, null, function filter(prop) {
|
|
900
|
+
return /^is[A-Z]/.test(prop);
|
|
901
|
+
});
|
|
902
|
+
|
|
903
|
+
/**
|
|
904
|
+
* Convert a data object to FormData
|
|
905
|
+
*
|
|
906
|
+
* @param {Object} obj
|
|
907
|
+
* @param {?Object} [formData]
|
|
908
|
+
* @param {?Object} [options]
|
|
909
|
+
* @param {Function} [options.visitor]
|
|
910
|
+
* @param {Boolean} [options.metaTokens = true]
|
|
911
|
+
* @param {Boolean} [options.dots = false]
|
|
912
|
+
* @param {?Boolean} [options.indexes = false]
|
|
913
|
+
*
|
|
914
|
+
* @returns {Object}
|
|
915
|
+
**/
|
|
916
|
+
|
|
917
|
+
/**
|
|
918
|
+
* It converts an object into a FormData object
|
|
919
|
+
*
|
|
920
|
+
* @param {Object<any, any>} obj - The object to convert to form data.
|
|
921
|
+
* @param {string} formData - The FormData object to append to.
|
|
922
|
+
* @param {Object<string, any>} options
|
|
923
|
+
*
|
|
924
|
+
* @returns
|
|
925
|
+
*/
|
|
926
|
+
function toFormData(obj, formData, options) {
|
|
927
|
+
if (!utils$1.isObject(obj)) {
|
|
928
|
+
throw new TypeError('target must be an object');
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
// eslint-disable-next-line no-param-reassign
|
|
932
|
+
formData = formData || new (FormData__default["default"] || FormData)();
|
|
933
|
+
|
|
934
|
+
// eslint-disable-next-line no-param-reassign
|
|
935
|
+
options = utils$1.toFlatObject(options, {
|
|
936
|
+
metaTokens: true,
|
|
937
|
+
dots: false,
|
|
938
|
+
indexes: false
|
|
939
|
+
}, false, function defined(option, source) {
|
|
940
|
+
// eslint-disable-next-line no-eq-null,eqeqeq
|
|
941
|
+
return !utils$1.isUndefined(source[option]);
|
|
942
|
+
});
|
|
943
|
+
|
|
944
|
+
const metaTokens = options.metaTokens;
|
|
945
|
+
// eslint-disable-next-line no-use-before-define
|
|
946
|
+
const visitor = options.visitor || defaultVisitor;
|
|
947
|
+
const dots = options.dots;
|
|
948
|
+
const indexes = options.indexes;
|
|
949
|
+
const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;
|
|
950
|
+
const useBlob = _Blob && utils$1.isSpecCompliantForm(formData);
|
|
951
|
+
|
|
952
|
+
if (!utils$1.isFunction(visitor)) {
|
|
953
|
+
throw new TypeError('visitor must be a function');
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
function convertValue(value) {
|
|
957
|
+
if (value === null) return '';
|
|
958
|
+
|
|
959
|
+
if (utils$1.isDate(value)) {
|
|
960
|
+
return value.toISOString();
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
if (!useBlob && utils$1.isBlob(value)) {
|
|
964
|
+
throw new AxiosError('Blob is not supported. Use a Buffer instead.');
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
if (utils$1.isArrayBuffer(value) || utils$1.isTypedArray(value)) {
|
|
968
|
+
return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
return value;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* Default visitor.
|
|
976
|
+
*
|
|
977
|
+
* @param {*} value
|
|
978
|
+
* @param {String|Number} key
|
|
979
|
+
* @param {Array<String|Number>} path
|
|
980
|
+
* @this {FormData}
|
|
981
|
+
*
|
|
982
|
+
* @returns {boolean} return true to visit the each prop of the value recursively
|
|
983
|
+
*/
|
|
984
|
+
function defaultVisitor(value, key, path) {
|
|
985
|
+
let arr = value;
|
|
986
|
+
|
|
987
|
+
if (value && !path && typeof value === 'object') {
|
|
988
|
+
if (utils$1.endsWith(key, '{}')) {
|
|
989
|
+
// eslint-disable-next-line no-param-reassign
|
|
990
|
+
key = metaTokens ? key : key.slice(0, -2);
|
|
991
|
+
// eslint-disable-next-line no-param-reassign
|
|
992
|
+
value = JSON.stringify(value);
|
|
993
|
+
} else if (
|
|
994
|
+
(utils$1.isArray(value) && isFlatArray(value)) ||
|
|
995
|
+
((utils$1.isFileList(value) || utils$1.endsWith(key, '[]')) && (arr = utils$1.toArray(value))
|
|
996
|
+
)) {
|
|
997
|
+
// eslint-disable-next-line no-param-reassign
|
|
998
|
+
key = removeBrackets(key);
|
|
999
|
+
|
|
1000
|
+
arr.forEach(function each(el, index) {
|
|
1001
|
+
!(utils$1.isUndefined(el) || el === null) && formData.append(
|
|
1002
|
+
// eslint-disable-next-line no-nested-ternary
|
|
1003
|
+
indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),
|
|
1004
|
+
convertValue(el)
|
|
1005
|
+
);
|
|
1006
|
+
});
|
|
1007
|
+
return false;
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
if (isVisitable(value)) {
|
|
1012
|
+
return true;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
formData.append(renderKey(path, key, dots), convertValue(value));
|
|
1016
|
+
|
|
1017
|
+
return false;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
const stack = [];
|
|
1021
|
+
|
|
1022
|
+
const exposedHelpers = Object.assign(predicates, {
|
|
1023
|
+
defaultVisitor,
|
|
1024
|
+
convertValue,
|
|
1025
|
+
isVisitable
|
|
1026
|
+
});
|
|
1027
|
+
|
|
1028
|
+
function build(value, path) {
|
|
1029
|
+
if (utils$1.isUndefined(value)) return;
|
|
1030
|
+
|
|
1031
|
+
if (stack.indexOf(value) !== -1) {
|
|
1032
|
+
throw Error('Circular reference detected in ' + path.join('.'));
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
stack.push(value);
|
|
1036
|
+
|
|
1037
|
+
utils$1.forEach(value, function each(el, key) {
|
|
1038
|
+
const result = !(utils$1.isUndefined(el) || el === null) && visitor.call(
|
|
1039
|
+
formData, el, utils$1.isString(key) ? key.trim() : key, path, exposedHelpers
|
|
1040
|
+
);
|
|
1041
|
+
|
|
1042
|
+
if (result === true) {
|
|
1043
|
+
build(el, path ? path.concat(key) : [key]);
|
|
1044
|
+
}
|
|
1045
|
+
});
|
|
1046
|
+
|
|
1047
|
+
stack.pop();
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
if (!utils$1.isObject(obj)) {
|
|
1051
|
+
throw new TypeError('data must be an object');
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
build(obj);
|
|
1055
|
+
|
|
1056
|
+
return formData;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
/**
|
|
1060
|
+
* It encodes a string by replacing all characters that are not in the unreserved set with
|
|
1061
|
+
* their percent-encoded equivalents
|
|
1062
|
+
*
|
|
1063
|
+
* @param {string} str - The string to encode.
|
|
1064
|
+
*
|
|
1065
|
+
* @returns {string} The encoded string.
|
|
1066
|
+
*/
|
|
1067
|
+
function encode$1(str) {
|
|
1068
|
+
const charMap = {
|
|
1069
|
+
'!': '%21',
|
|
1070
|
+
"'": '%27',
|
|
1071
|
+
'(': '%28',
|
|
1072
|
+
')': '%29',
|
|
1073
|
+
'~': '%7E',
|
|
1074
|
+
'%20': '+',
|
|
1075
|
+
'%00': '\x00'
|
|
1076
|
+
};
|
|
1077
|
+
return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {
|
|
1078
|
+
return charMap[match];
|
|
1079
|
+
});
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
/**
|
|
1083
|
+
* It takes a params object and converts it to a FormData object
|
|
1084
|
+
*
|
|
1085
|
+
* @param {Object<string, any>} params - The parameters to be converted to a FormData object.
|
|
1086
|
+
* @param {Object<string, any>} options - The options object passed to the Axios constructor.
|
|
1087
|
+
*
|
|
1088
|
+
* @returns {void}
|
|
1089
|
+
*/
|
|
1090
|
+
function AxiosURLSearchParams(params, options) {
|
|
1091
|
+
this._pairs = [];
|
|
1092
|
+
|
|
1093
|
+
params && toFormData(params, this, options);
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
const prototype = AxiosURLSearchParams.prototype;
|
|
1097
|
+
|
|
1098
|
+
prototype.append = function append(name, value) {
|
|
1099
|
+
this._pairs.push([name, value]);
|
|
1100
|
+
};
|
|
1101
|
+
|
|
1102
|
+
prototype.toString = function toString(encoder) {
|
|
1103
|
+
const _encode = encoder ? function(value) {
|
|
1104
|
+
return encoder.call(this, value, encode$1);
|
|
1105
|
+
} : encode$1;
|
|
1106
|
+
|
|
1107
|
+
return this._pairs.map(function each(pair) {
|
|
1108
|
+
return _encode(pair[0]) + '=' + _encode(pair[1]);
|
|
1109
|
+
}, '').join('&');
|
|
1110
|
+
};
|
|
1111
|
+
|
|
1112
|
+
/**
|
|
1113
|
+
* It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their
|
|
1114
|
+
* URI encoded counterparts
|
|
1115
|
+
*
|
|
1116
|
+
* @param {string} val The value to be encoded.
|
|
1117
|
+
*
|
|
1118
|
+
* @returns {string} The encoded value.
|
|
1119
|
+
*/
|
|
1120
|
+
function encode(val) {
|
|
1121
|
+
return encodeURIComponent(val).
|
|
1122
|
+
replace(/%3A/gi, ':').
|
|
1123
|
+
replace(/%24/g, '$').
|
|
1124
|
+
replace(/%2C/gi, ',').
|
|
1125
|
+
replace(/%20/g, '+').
|
|
1126
|
+
replace(/%5B/gi, '[').
|
|
1127
|
+
replace(/%5D/gi, ']');
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
/**
|
|
1131
|
+
* Build a URL by appending params to the end
|
|
1132
|
+
*
|
|
1133
|
+
* @param {string} url The base of the url (e.g., http://www.google.com)
|
|
1134
|
+
* @param {object} [params] The params to be appended
|
|
1135
|
+
* @param {?object} options
|
|
1136
|
+
*
|
|
1137
|
+
* @returns {string} The formatted url
|
|
1138
|
+
*/
|
|
1139
|
+
function buildURL(url, params, options) {
|
|
1140
|
+
/*eslint no-param-reassign:0*/
|
|
1141
|
+
if (!params) {
|
|
1142
|
+
return url;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
const _encode = options && options.encode || encode;
|
|
1146
|
+
|
|
1147
|
+
const serializeFn = options && options.serialize;
|
|
1148
|
+
|
|
1149
|
+
let serializedParams;
|
|
1150
|
+
|
|
1151
|
+
if (serializeFn) {
|
|
1152
|
+
serializedParams = serializeFn(params, options);
|
|
1153
|
+
} else {
|
|
1154
|
+
serializedParams = utils$1.isURLSearchParams(params) ?
|
|
1155
|
+
params.toString() :
|
|
1156
|
+
new AxiosURLSearchParams(params, options).toString(_encode);
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
if (serializedParams) {
|
|
1160
|
+
const hashmarkIndex = url.indexOf("#");
|
|
1161
|
+
|
|
1162
|
+
if (hashmarkIndex !== -1) {
|
|
1163
|
+
url = url.slice(0, hashmarkIndex);
|
|
1164
|
+
}
|
|
1165
|
+
url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
return url;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
class InterceptorManager {
|
|
1172
|
+
constructor() {
|
|
1173
|
+
this.handlers = [];
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
/**
|
|
1177
|
+
* Add a new interceptor to the stack
|
|
1178
|
+
*
|
|
1179
|
+
* @param {Function} fulfilled The function to handle `then` for a `Promise`
|
|
1180
|
+
* @param {Function} rejected The function to handle `reject` for a `Promise`
|
|
1181
|
+
*
|
|
1182
|
+
* @return {Number} An ID used to remove interceptor later
|
|
1183
|
+
*/
|
|
1184
|
+
use(fulfilled, rejected, options) {
|
|
1185
|
+
this.handlers.push({
|
|
1186
|
+
fulfilled,
|
|
1187
|
+
rejected,
|
|
1188
|
+
synchronous: options ? options.synchronous : false,
|
|
1189
|
+
runWhen: options ? options.runWhen : null
|
|
1190
|
+
});
|
|
1191
|
+
return this.handlers.length - 1;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
/**
|
|
1195
|
+
* Remove an interceptor from the stack
|
|
1196
|
+
*
|
|
1197
|
+
* @param {Number} id The ID that was returned by `use`
|
|
1198
|
+
*
|
|
1199
|
+
* @returns {Boolean} `true` if the interceptor was removed, `false` otherwise
|
|
1200
|
+
*/
|
|
1201
|
+
eject(id) {
|
|
1202
|
+
if (this.handlers[id]) {
|
|
1203
|
+
this.handlers[id] = null;
|
|
1204
|
+
}
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
/**
|
|
1208
|
+
* Clear all interceptors from the stack
|
|
1209
|
+
*
|
|
1210
|
+
* @returns {void}
|
|
1211
|
+
*/
|
|
1212
|
+
clear() {
|
|
1213
|
+
if (this.handlers) {
|
|
1214
|
+
this.handlers = [];
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
/**
|
|
1219
|
+
* Iterate over all the registered interceptors
|
|
1220
|
+
*
|
|
1221
|
+
* This method is particularly useful for skipping over any
|
|
1222
|
+
* interceptors that may have become `null` calling `eject`.
|
|
1223
|
+
*
|
|
1224
|
+
* @param {Function} fn The function to call for each interceptor
|
|
1225
|
+
*
|
|
1226
|
+
* @returns {void}
|
|
1227
|
+
*/
|
|
1228
|
+
forEach(fn) {
|
|
1229
|
+
utils$1.forEach(this.handlers, function forEachHandler(h) {
|
|
1230
|
+
if (h !== null) {
|
|
1231
|
+
fn(h);
|
|
1232
|
+
}
|
|
1233
|
+
});
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
const InterceptorManager$1 = InterceptorManager;
|
|
1238
|
+
|
|
1239
|
+
const transitionalDefaults = {
|
|
1240
|
+
silentJSONParsing: true,
|
|
1241
|
+
forcedJSONParsing: true,
|
|
1242
|
+
clarifyTimeoutError: false
|
|
1243
|
+
};
|
|
1244
|
+
|
|
1245
|
+
const URLSearchParams = url__default["default"].URLSearchParams;
|
|
1246
|
+
|
|
1247
|
+
const platform$1 = {
|
|
1248
|
+
isNode: true,
|
|
1249
|
+
classes: {
|
|
1250
|
+
URLSearchParams,
|
|
1251
|
+
FormData: FormData__default["default"],
|
|
1252
|
+
Blob: typeof Blob !== 'undefined' && Blob || null
|
|
1253
|
+
},
|
|
1254
|
+
protocols: [ 'http', 'https', 'file', 'data' ]
|
|
1255
|
+
};
|
|
1256
|
+
|
|
1257
|
+
const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined';
|
|
1258
|
+
|
|
1259
|
+
/**
|
|
1260
|
+
* Determine if we're running in a standard browser environment
|
|
1261
|
+
*
|
|
1262
|
+
* This allows axios to run in a web worker, and react-native.
|
|
1263
|
+
* Both environments support XMLHttpRequest, but not fully standard globals.
|
|
1264
|
+
*
|
|
1265
|
+
* web workers:
|
|
1266
|
+
* typeof window -> undefined
|
|
1267
|
+
* typeof document -> undefined
|
|
1268
|
+
*
|
|
1269
|
+
* react-native:
|
|
1270
|
+
* navigator.product -> 'ReactNative'
|
|
1271
|
+
* nativescript
|
|
1272
|
+
* navigator.product -> 'NativeScript' or 'NS'
|
|
1273
|
+
*
|
|
1274
|
+
* @returns {boolean}
|
|
1275
|
+
*/
|
|
1276
|
+
const hasStandardBrowserEnv = (
|
|
1277
|
+
(product) => {
|
|
1278
|
+
return hasBrowserEnv && ['ReactNative', 'NativeScript', 'NS'].indexOf(product) < 0
|
|
1279
|
+
})(typeof navigator !== 'undefined' && navigator.product);
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Determine if we're running in a standard browser webWorker environment
|
|
1283
|
+
*
|
|
1284
|
+
* Although the `isStandardBrowserEnv` method indicates that
|
|
1285
|
+
* `allows axios to run in a web worker`, the WebWorker will still be
|
|
1286
|
+
* filtered out due to its judgment standard
|
|
1287
|
+
* `typeof window !== 'undefined' && typeof document !== 'undefined'`.
|
|
1288
|
+
* This leads to a problem when axios post `FormData` in webWorker
|
|
1289
|
+
*/
|
|
1290
|
+
const hasStandardBrowserWebWorkerEnv = (() => {
|
|
1291
|
+
return (
|
|
1292
|
+
typeof WorkerGlobalScope !== 'undefined' &&
|
|
1293
|
+
// eslint-disable-next-line no-undef
|
|
1294
|
+
self instanceof WorkerGlobalScope &&
|
|
1295
|
+
typeof self.importScripts === 'function'
|
|
1296
|
+
);
|
|
1297
|
+
})();
|
|
1298
|
+
|
|
1299
|
+
const utils = /*#__PURE__*/Object.freeze({
|
|
1300
|
+
__proto__: null,
|
|
1301
|
+
hasBrowserEnv: hasBrowserEnv,
|
|
1302
|
+
hasStandardBrowserWebWorkerEnv: hasStandardBrowserWebWorkerEnv,
|
|
1303
|
+
hasStandardBrowserEnv: hasStandardBrowserEnv
|
|
1304
|
+
});
|
|
1305
|
+
|
|
1306
|
+
const platform = {
|
|
1307
|
+
...utils,
|
|
1308
|
+
...platform$1
|
|
1309
|
+
};
|
|
1310
|
+
|
|
1311
|
+
function toURLEncodedForm(data, options) {
|
|
1312
|
+
return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({
|
|
1313
|
+
visitor: function(value, key, path, helpers) {
|
|
1314
|
+
if (platform.isNode && utils$1.isBuffer(value)) {
|
|
1315
|
+
this.append(key, value.toString('base64'));
|
|
1316
|
+
return false;
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
return helpers.defaultVisitor.apply(this, arguments);
|
|
1320
|
+
}
|
|
1321
|
+
}, options));
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
/**
|
|
1325
|
+
* It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']
|
|
1326
|
+
*
|
|
1327
|
+
* @param {string} name - The name of the property to get.
|
|
1328
|
+
*
|
|
1329
|
+
* @returns An array of strings.
|
|
1330
|
+
*/
|
|
1331
|
+
function parsePropPath(name) {
|
|
1332
|
+
// foo[x][y][z]
|
|
1333
|
+
// foo.x.y.z
|
|
1334
|
+
// foo-x-y-z
|
|
1335
|
+
// foo x y z
|
|
1336
|
+
return utils$1.matchAll(/\w+|\[(\w*)]/g, name).map(match => {
|
|
1337
|
+
return match[0] === '[]' ? '' : match[1] || match[0];
|
|
1338
|
+
});
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
/**
|
|
1342
|
+
* Convert an array to an object.
|
|
1343
|
+
*
|
|
1344
|
+
* @param {Array<any>} arr - The array to convert to an object.
|
|
1345
|
+
*
|
|
1346
|
+
* @returns An object with the same keys and values as the array.
|
|
1347
|
+
*/
|
|
1348
|
+
function arrayToObject(arr) {
|
|
1349
|
+
const obj = {};
|
|
1350
|
+
const keys = Object.keys(arr);
|
|
1351
|
+
let i;
|
|
1352
|
+
const len = keys.length;
|
|
1353
|
+
let key;
|
|
1354
|
+
for (i = 0; i < len; i++) {
|
|
1355
|
+
key = keys[i];
|
|
1356
|
+
obj[key] = arr[key];
|
|
1357
|
+
}
|
|
1358
|
+
return obj;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
/**
|
|
1362
|
+
* It takes a FormData object and returns a JavaScript object
|
|
1363
|
+
*
|
|
1364
|
+
* @param {string} formData The FormData object to convert to JSON.
|
|
1365
|
+
*
|
|
1366
|
+
* @returns {Object<string, any> | null} The converted object.
|
|
1367
|
+
*/
|
|
1368
|
+
function formDataToJSON(formData) {
|
|
1369
|
+
function buildPath(path, value, target, index) {
|
|
1370
|
+
let name = path[index++];
|
|
1371
|
+
|
|
1372
|
+
if (name === '__proto__') return true;
|
|
1373
|
+
|
|
1374
|
+
const isNumericKey = Number.isFinite(+name);
|
|
1375
|
+
const isLast = index >= path.length;
|
|
1376
|
+
name = !name && utils$1.isArray(target) ? target.length : name;
|
|
1377
|
+
|
|
1378
|
+
if (isLast) {
|
|
1379
|
+
if (utils$1.hasOwnProp(target, name)) {
|
|
1380
|
+
target[name] = [target[name], value];
|
|
1381
|
+
} else {
|
|
1382
|
+
target[name] = value;
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
return !isNumericKey;
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
if (!target[name] || !utils$1.isObject(target[name])) {
|
|
1389
|
+
target[name] = [];
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
const result = buildPath(path, value, target[name], index);
|
|
1393
|
+
|
|
1394
|
+
if (result && utils$1.isArray(target[name])) {
|
|
1395
|
+
target[name] = arrayToObject(target[name]);
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
return !isNumericKey;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
if (utils$1.isFormData(formData) && utils$1.isFunction(formData.entries)) {
|
|
1402
|
+
const obj = {};
|
|
1403
|
+
|
|
1404
|
+
utils$1.forEachEntry(formData, (name, value) => {
|
|
1405
|
+
buildPath(parsePropPath(name), value, obj, 0);
|
|
1406
|
+
});
|
|
1407
|
+
|
|
1408
|
+
return obj;
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
return null;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
/**
|
|
1415
|
+
* It takes a string, tries to parse it, and if it fails, it returns the stringified version
|
|
1416
|
+
* of the input
|
|
1417
|
+
*
|
|
1418
|
+
* @param {any} rawValue - The value to be stringified.
|
|
1419
|
+
* @param {Function} parser - A function that parses a string into a JavaScript object.
|
|
1420
|
+
* @param {Function} encoder - A function that takes a value and returns a string.
|
|
1421
|
+
*
|
|
1422
|
+
* @returns {string} A stringified version of the rawValue.
|
|
1423
|
+
*/
|
|
1424
|
+
function stringifySafely(rawValue, parser, encoder) {
|
|
1425
|
+
if (utils$1.isString(rawValue)) {
|
|
1426
|
+
try {
|
|
1427
|
+
(parser || JSON.parse)(rawValue);
|
|
1428
|
+
return utils$1.trim(rawValue);
|
|
1429
|
+
} catch (e) {
|
|
1430
|
+
if (e.name !== 'SyntaxError') {
|
|
1431
|
+
throw e;
|
|
1432
|
+
}
|
|
1433
|
+
}
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
return (encoder || JSON.stringify)(rawValue);
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
const defaults = {
|
|
1440
|
+
|
|
1441
|
+
transitional: transitionalDefaults,
|
|
1442
|
+
|
|
1443
|
+
adapter: ['xhr', 'http'],
|
|
1444
|
+
|
|
1445
|
+
transformRequest: [function transformRequest(data, headers) {
|
|
1446
|
+
const contentType = headers.getContentType() || '';
|
|
1447
|
+
const hasJSONContentType = contentType.indexOf('application/json') > -1;
|
|
1448
|
+
const isObjectPayload = utils$1.isObject(data);
|
|
1449
|
+
|
|
1450
|
+
if (isObjectPayload && utils$1.isHTMLForm(data)) {
|
|
1451
|
+
data = new FormData(data);
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
const isFormData = utils$1.isFormData(data);
|
|
1455
|
+
|
|
1456
|
+
if (isFormData) {
|
|
1457
|
+
if (!hasJSONContentType) {
|
|
1458
|
+
return data;
|
|
1459
|
+
}
|
|
1460
|
+
return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
if (utils$1.isArrayBuffer(data) ||
|
|
1464
|
+
utils$1.isBuffer(data) ||
|
|
1465
|
+
utils$1.isStream(data) ||
|
|
1466
|
+
utils$1.isFile(data) ||
|
|
1467
|
+
utils$1.isBlob(data)
|
|
1468
|
+
) {
|
|
1469
|
+
return data;
|
|
1470
|
+
}
|
|
1471
|
+
if (utils$1.isArrayBufferView(data)) {
|
|
1472
|
+
return data.buffer;
|
|
1473
|
+
}
|
|
1474
|
+
if (utils$1.isURLSearchParams(data)) {
|
|
1475
|
+
headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);
|
|
1476
|
+
return data.toString();
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
let isFileList;
|
|
1480
|
+
|
|
1481
|
+
if (isObjectPayload) {
|
|
1482
|
+
if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {
|
|
1483
|
+
return toURLEncodedForm(data, this.formSerializer).toString();
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
if ((isFileList = utils$1.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {
|
|
1487
|
+
const _FormData = this.env && this.env.FormData;
|
|
1488
|
+
|
|
1489
|
+
return toFormData(
|
|
1490
|
+
isFileList ? {'files[]': data} : data,
|
|
1491
|
+
_FormData && new _FormData(),
|
|
1492
|
+
this.formSerializer
|
|
1493
|
+
);
|
|
1494
|
+
}
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
if (isObjectPayload || hasJSONContentType ) {
|
|
1498
|
+
headers.setContentType('application/json', false);
|
|
1499
|
+
return stringifySafely(data);
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
return data;
|
|
1503
|
+
}],
|
|
1504
|
+
|
|
1505
|
+
transformResponse: [function transformResponse(data) {
|
|
1506
|
+
const transitional = this.transitional || defaults.transitional;
|
|
1507
|
+
const forcedJSONParsing = transitional && transitional.forcedJSONParsing;
|
|
1508
|
+
const JSONRequested = this.responseType === 'json';
|
|
1509
|
+
|
|
1510
|
+
if (data && utils$1.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {
|
|
1511
|
+
const silentJSONParsing = transitional && transitional.silentJSONParsing;
|
|
1512
|
+
const strictJSONParsing = !silentJSONParsing && JSONRequested;
|
|
1513
|
+
|
|
1514
|
+
try {
|
|
1515
|
+
return JSON.parse(data);
|
|
1516
|
+
} catch (e) {
|
|
1517
|
+
if (strictJSONParsing) {
|
|
1518
|
+
if (e.name === 'SyntaxError') {
|
|
1519
|
+
throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);
|
|
1520
|
+
}
|
|
1521
|
+
throw e;
|
|
1522
|
+
}
|
|
1523
|
+
}
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
return data;
|
|
1527
|
+
}],
|
|
1528
|
+
|
|
1529
|
+
/**
|
|
1530
|
+
* A timeout in milliseconds to abort a request. If set to 0 (default) a
|
|
1531
|
+
* timeout is not created.
|
|
1532
|
+
*/
|
|
1533
|
+
timeout: 0,
|
|
1534
|
+
|
|
1535
|
+
xsrfCookieName: 'XSRF-TOKEN',
|
|
1536
|
+
xsrfHeaderName: 'X-XSRF-TOKEN',
|
|
1537
|
+
|
|
1538
|
+
maxContentLength: -1,
|
|
1539
|
+
maxBodyLength: -1,
|
|
1540
|
+
|
|
1541
|
+
env: {
|
|
1542
|
+
FormData: platform.classes.FormData,
|
|
1543
|
+
Blob: platform.classes.Blob
|
|
1544
|
+
},
|
|
1545
|
+
|
|
1546
|
+
validateStatus: function validateStatus(status) {
|
|
1547
|
+
return status >= 200 && status < 300;
|
|
1548
|
+
},
|
|
1549
|
+
|
|
1550
|
+
headers: {
|
|
1551
|
+
common: {
|
|
1552
|
+
'Accept': 'application/json, text/plain, */*',
|
|
1553
|
+
'Content-Type': undefined
|
|
1554
|
+
}
|
|
1555
|
+
}
|
|
1556
|
+
};
|
|
1557
|
+
|
|
1558
|
+
utils$1.forEach(['delete', 'get', 'head', 'post', 'put', 'patch'], (method) => {
|
|
1559
|
+
defaults.headers[method] = {};
|
|
1560
|
+
});
|
|
1561
|
+
|
|
1562
|
+
const defaults$1 = defaults;
|
|
1563
|
+
|
|
1564
|
+
// RawAxiosHeaders whose duplicates are ignored by node
|
|
1565
|
+
// c.f. https://nodejs.org/api/http.html#http_message_headers
|
|
1566
|
+
const ignoreDuplicateOf = utils$1.toObjectSet([
|
|
1567
|
+
'age', 'authorization', 'content-length', 'content-type', 'etag',
|
|
1568
|
+
'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',
|
|
1569
|
+
'last-modified', 'location', 'max-forwards', 'proxy-authorization',
|
|
1570
|
+
'referer', 'retry-after', 'user-agent'
|
|
1571
|
+
]);
|
|
1572
|
+
|
|
1573
|
+
/**
|
|
1574
|
+
* Parse headers into an object
|
|
1575
|
+
*
|
|
1576
|
+
* ```
|
|
1577
|
+
* Date: Wed, 27 Aug 2014 08:58:49 GMT
|
|
1578
|
+
* Content-Type: application/json
|
|
1579
|
+
* Connection: keep-alive
|
|
1580
|
+
* Transfer-Encoding: chunked
|
|
1581
|
+
* ```
|
|
1582
|
+
*
|
|
1583
|
+
* @param {String} rawHeaders Headers needing to be parsed
|
|
1584
|
+
*
|
|
1585
|
+
* @returns {Object} Headers parsed into an object
|
|
1586
|
+
*/
|
|
1587
|
+
const parseHeaders = rawHeaders => {
|
|
1588
|
+
const parsed = {};
|
|
1589
|
+
let key;
|
|
1590
|
+
let val;
|
|
1591
|
+
let i;
|
|
1592
|
+
|
|
1593
|
+
rawHeaders && rawHeaders.split('\n').forEach(function parser(line) {
|
|
1594
|
+
i = line.indexOf(':');
|
|
1595
|
+
key = line.substring(0, i).trim().toLowerCase();
|
|
1596
|
+
val = line.substring(i + 1).trim();
|
|
1597
|
+
|
|
1598
|
+
if (!key || (parsed[key] && ignoreDuplicateOf[key])) {
|
|
1599
|
+
return;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
if (key === 'set-cookie') {
|
|
1603
|
+
if (parsed[key]) {
|
|
1604
|
+
parsed[key].push(val);
|
|
1605
|
+
} else {
|
|
1606
|
+
parsed[key] = [val];
|
|
1607
|
+
}
|
|
1608
|
+
} else {
|
|
1609
|
+
parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;
|
|
1610
|
+
}
|
|
1611
|
+
});
|
|
1612
|
+
|
|
1613
|
+
return parsed;
|
|
1614
|
+
};
|
|
1615
|
+
|
|
1616
|
+
const $internals = Symbol('internals');
|
|
1617
|
+
|
|
1618
|
+
function normalizeHeader(header) {
|
|
1619
|
+
return header && String(header).trim().toLowerCase();
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
function normalizeValue(value) {
|
|
1623
|
+
if (value === false || value == null) {
|
|
1624
|
+
return value;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
return utils$1.isArray(value) ? value.map(normalizeValue) : String(value);
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
function parseTokens(str) {
|
|
1631
|
+
const tokens = Object.create(null);
|
|
1632
|
+
const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
|
|
1633
|
+
let match;
|
|
1634
|
+
|
|
1635
|
+
while ((match = tokensRE.exec(str))) {
|
|
1636
|
+
tokens[match[1]] = match[2];
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
return tokens;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
const isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
|
|
1643
|
+
|
|
1644
|
+
function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
|
|
1645
|
+
if (utils$1.isFunction(filter)) {
|
|
1646
|
+
return filter.call(this, value, header);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
if (isHeaderNameFilter) {
|
|
1650
|
+
value = header;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
if (!utils$1.isString(value)) return;
|
|
1654
|
+
|
|
1655
|
+
if (utils$1.isString(filter)) {
|
|
1656
|
+
return value.indexOf(filter) !== -1;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
if (utils$1.isRegExp(filter)) {
|
|
1660
|
+
return filter.test(value);
|
|
1661
|
+
}
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
function formatHeader(header) {
|
|
1665
|
+
return header.trim()
|
|
1666
|
+
.toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str) => {
|
|
1667
|
+
return char.toUpperCase() + str;
|
|
1668
|
+
});
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
function buildAccessors(obj, header) {
|
|
1672
|
+
const accessorName = utils$1.toCamelCase(' ' + header);
|
|
1673
|
+
|
|
1674
|
+
['get', 'set', 'has'].forEach(methodName => {
|
|
1675
|
+
Object.defineProperty(obj, methodName + accessorName, {
|
|
1676
|
+
value: function(arg1, arg2, arg3) {
|
|
1677
|
+
return this[methodName].call(this, header, arg1, arg2, arg3);
|
|
1678
|
+
},
|
|
1679
|
+
configurable: true
|
|
1680
|
+
});
|
|
1681
|
+
});
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
class AxiosHeaders {
|
|
1685
|
+
constructor(headers) {
|
|
1686
|
+
headers && this.set(headers);
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
set(header, valueOrRewrite, rewrite) {
|
|
1690
|
+
const self = this;
|
|
1691
|
+
|
|
1692
|
+
function setHeader(_value, _header, _rewrite) {
|
|
1693
|
+
const lHeader = normalizeHeader(_header);
|
|
1694
|
+
|
|
1695
|
+
if (!lHeader) {
|
|
1696
|
+
throw new Error('header name must be a non-empty string');
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
const key = utils$1.findKey(self, lHeader);
|
|
1700
|
+
|
|
1701
|
+
if(!key || self[key] === undefined || _rewrite === true || (_rewrite === undefined && self[key] !== false)) {
|
|
1702
|
+
self[key || _header] = normalizeValue(_value);
|
|
1703
|
+
}
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
const setHeaders = (headers, _rewrite) =>
|
|
1707
|
+
utils$1.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite));
|
|
1708
|
+
|
|
1709
|
+
if (utils$1.isPlainObject(header) || header instanceof this.constructor) {
|
|
1710
|
+
setHeaders(header, valueOrRewrite);
|
|
1711
|
+
} else if(utils$1.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
|
|
1712
|
+
setHeaders(parseHeaders(header), valueOrRewrite);
|
|
1713
|
+
} else {
|
|
1714
|
+
header != null && setHeader(valueOrRewrite, header, rewrite);
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
return this;
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
get(header, parser) {
|
|
1721
|
+
header = normalizeHeader(header);
|
|
1722
|
+
|
|
1723
|
+
if (header) {
|
|
1724
|
+
const key = utils$1.findKey(this, header);
|
|
1725
|
+
|
|
1726
|
+
if (key) {
|
|
1727
|
+
const value = this[key];
|
|
1728
|
+
|
|
1729
|
+
if (!parser) {
|
|
1730
|
+
return value;
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
if (parser === true) {
|
|
1734
|
+
return parseTokens(value);
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
if (utils$1.isFunction(parser)) {
|
|
1738
|
+
return parser.call(this, value, key);
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
if (utils$1.isRegExp(parser)) {
|
|
1742
|
+
return parser.exec(value);
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
throw new TypeError('parser must be boolean|regexp|function');
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
has(header, matcher) {
|
|
1751
|
+
header = normalizeHeader(header);
|
|
1752
|
+
|
|
1753
|
+
if (header) {
|
|
1754
|
+
const key = utils$1.findKey(this, header);
|
|
1755
|
+
|
|
1756
|
+
return !!(key && this[key] !== undefined && (!matcher || matchHeaderValue(this, this[key], key, matcher)));
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
return false;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
delete(header, matcher) {
|
|
1763
|
+
const self = this;
|
|
1764
|
+
let deleted = false;
|
|
1765
|
+
|
|
1766
|
+
function deleteHeader(_header) {
|
|
1767
|
+
_header = normalizeHeader(_header);
|
|
1768
|
+
|
|
1769
|
+
if (_header) {
|
|
1770
|
+
const key = utils$1.findKey(self, _header);
|
|
1771
|
+
|
|
1772
|
+
if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {
|
|
1773
|
+
delete self[key];
|
|
1774
|
+
|
|
1775
|
+
deleted = true;
|
|
1776
|
+
}
|
|
1777
|
+
}
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
if (utils$1.isArray(header)) {
|
|
1781
|
+
header.forEach(deleteHeader);
|
|
1782
|
+
} else {
|
|
1783
|
+
deleteHeader(header);
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
return deleted;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
clear(matcher) {
|
|
1790
|
+
const keys = Object.keys(this);
|
|
1791
|
+
let i = keys.length;
|
|
1792
|
+
let deleted = false;
|
|
1793
|
+
|
|
1794
|
+
while (i--) {
|
|
1795
|
+
const key = keys[i];
|
|
1796
|
+
if(!matcher || matchHeaderValue(this, this[key], key, matcher, true)) {
|
|
1797
|
+
delete this[key];
|
|
1798
|
+
deleted = true;
|
|
1799
|
+
}
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
return deleted;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
normalize(format) {
|
|
1806
|
+
const self = this;
|
|
1807
|
+
const headers = {};
|
|
1808
|
+
|
|
1809
|
+
utils$1.forEach(this, (value, header) => {
|
|
1810
|
+
const key = utils$1.findKey(headers, header);
|
|
1811
|
+
|
|
1812
|
+
if (key) {
|
|
1813
|
+
self[key] = normalizeValue(value);
|
|
1814
|
+
delete self[header];
|
|
1815
|
+
return;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
const normalized = format ? formatHeader(header) : String(header).trim();
|
|
1819
|
+
|
|
1820
|
+
if (normalized !== header) {
|
|
1821
|
+
delete self[header];
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
self[normalized] = normalizeValue(value);
|
|
1825
|
+
|
|
1826
|
+
headers[normalized] = true;
|
|
1827
|
+
});
|
|
1828
|
+
|
|
1829
|
+
return this;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
concat(...targets) {
|
|
1833
|
+
return this.constructor.concat(this, ...targets);
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
toJSON(asStrings) {
|
|
1837
|
+
const obj = Object.create(null);
|
|
1838
|
+
|
|
1839
|
+
utils$1.forEach(this, (value, header) => {
|
|
1840
|
+
value != null && value !== false && (obj[header] = asStrings && utils$1.isArray(value) ? value.join(', ') : value);
|
|
1841
|
+
});
|
|
1842
|
+
|
|
1843
|
+
return obj;
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
[Symbol.iterator]() {
|
|
1847
|
+
return Object.entries(this.toJSON())[Symbol.iterator]();
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
toString() {
|
|
1851
|
+
return Object.entries(this.toJSON()).map(([header, value]) => header + ': ' + value).join('\n');
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
get [Symbol.toStringTag]() {
|
|
1855
|
+
return 'AxiosHeaders';
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
static from(thing) {
|
|
1859
|
+
return thing instanceof this ? thing : new this(thing);
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
static concat(first, ...targets) {
|
|
1863
|
+
const computed = new this(first);
|
|
1864
|
+
|
|
1865
|
+
targets.forEach((target) => computed.set(target));
|
|
1866
|
+
|
|
1867
|
+
return computed;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
static accessor(header) {
|
|
1871
|
+
const internals = this[$internals] = (this[$internals] = {
|
|
1872
|
+
accessors: {}
|
|
1873
|
+
});
|
|
1874
|
+
|
|
1875
|
+
const accessors = internals.accessors;
|
|
1876
|
+
const prototype = this.prototype;
|
|
1877
|
+
|
|
1878
|
+
function defineAccessor(_header) {
|
|
1879
|
+
const lHeader = normalizeHeader(_header);
|
|
1880
|
+
|
|
1881
|
+
if (!accessors[lHeader]) {
|
|
1882
|
+
buildAccessors(prototype, _header);
|
|
1883
|
+
accessors[lHeader] = true;
|
|
1884
|
+
}
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
utils$1.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
|
|
1888
|
+
|
|
1889
|
+
return this;
|
|
1890
|
+
}
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
AxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent', 'Authorization']);
|
|
1894
|
+
|
|
1895
|
+
// reserved names hotfix
|
|
1896
|
+
utils$1.reduceDescriptors(AxiosHeaders.prototype, ({value}, key) => {
|
|
1897
|
+
let mapped = key[0].toUpperCase() + key.slice(1); // map `set` => `Set`
|
|
1898
|
+
return {
|
|
1899
|
+
get: () => value,
|
|
1900
|
+
set(headerValue) {
|
|
1901
|
+
this[mapped] = headerValue;
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
});
|
|
1905
|
+
|
|
1906
|
+
utils$1.freezeMethods(AxiosHeaders);
|
|
1907
|
+
|
|
1908
|
+
const AxiosHeaders$1 = AxiosHeaders;
|
|
1909
|
+
|
|
1910
|
+
/**
|
|
1911
|
+
* Transform the data for a request or a response
|
|
1912
|
+
*
|
|
1913
|
+
* @param {Array|Function} fns A single function or Array of functions
|
|
1914
|
+
* @param {?Object} response The response object
|
|
1915
|
+
*
|
|
1916
|
+
* @returns {*} The resulting transformed data
|
|
1917
|
+
*/
|
|
1918
|
+
function transformData(fns, response) {
|
|
1919
|
+
const config = this || defaults$1;
|
|
1920
|
+
const context = response || config;
|
|
1921
|
+
const headers = AxiosHeaders$1.from(context.headers);
|
|
1922
|
+
let data = context.data;
|
|
1923
|
+
|
|
1924
|
+
utils$1.forEach(fns, function transform(fn) {
|
|
1925
|
+
data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);
|
|
1926
|
+
});
|
|
1927
|
+
|
|
1928
|
+
headers.normalize();
|
|
1929
|
+
|
|
1930
|
+
return data;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
function isCancel(value) {
|
|
1934
|
+
return !!(value && value.__CANCEL__);
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
/**
|
|
1938
|
+
* A `CanceledError` is an object that is thrown when an operation is canceled.
|
|
1939
|
+
*
|
|
1940
|
+
* @param {string=} message The message.
|
|
1941
|
+
* @param {Object=} config The config.
|
|
1942
|
+
* @param {Object=} request The request.
|
|
1943
|
+
*
|
|
1944
|
+
* @returns {CanceledError} The created error.
|
|
1945
|
+
*/
|
|
1946
|
+
function CanceledError(message, config, request) {
|
|
1947
|
+
// eslint-disable-next-line no-eq-null,eqeqeq
|
|
1948
|
+
AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);
|
|
1949
|
+
this.name = 'CanceledError';
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
utils$1.inherits(CanceledError, AxiosError, {
|
|
1953
|
+
__CANCEL__: true
|
|
1954
|
+
});
|
|
1955
|
+
|
|
1956
|
+
/**
|
|
1957
|
+
* Resolve or reject a Promise based on response status.
|
|
1958
|
+
*
|
|
1959
|
+
* @param {Function} resolve A function that resolves the promise.
|
|
1960
|
+
* @param {Function} reject A function that rejects the promise.
|
|
1961
|
+
* @param {object} response The response.
|
|
1962
|
+
*
|
|
1963
|
+
* @returns {object} The response.
|
|
1964
|
+
*/
|
|
1965
|
+
function settle(resolve, reject, response) {
|
|
1966
|
+
const validateStatus = response.config.validateStatus;
|
|
1967
|
+
if (!response.status || !validateStatus || validateStatus(response.status)) {
|
|
1968
|
+
resolve(response);
|
|
1969
|
+
} else {
|
|
1970
|
+
reject(new AxiosError(
|
|
1971
|
+
'Request failed with status code ' + response.status,
|
|
1972
|
+
[AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],
|
|
1973
|
+
response.config,
|
|
1974
|
+
response.request,
|
|
1975
|
+
response
|
|
1976
|
+
));
|
|
1977
|
+
}
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
/**
|
|
1981
|
+
* Determines whether the specified URL is absolute
|
|
1982
|
+
*
|
|
1983
|
+
* @param {string} url The URL to test
|
|
1984
|
+
*
|
|
1985
|
+
* @returns {boolean} True if the specified URL is absolute, otherwise false
|
|
1986
|
+
*/
|
|
1987
|
+
function isAbsoluteURL(url) {
|
|
1988
|
+
// A URL is considered absolute if it begins with "<scheme>://" or "//" (protocol-relative URL).
|
|
1989
|
+
// RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed
|
|
1990
|
+
// by any combination of letters, digits, plus, period, or hyphen.
|
|
1991
|
+
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
/**
|
|
1995
|
+
* Creates a new URL by combining the specified URLs
|
|
1996
|
+
*
|
|
1997
|
+
* @param {string} baseURL The base URL
|
|
1998
|
+
* @param {string} relativeURL The relative URL
|
|
1999
|
+
*
|
|
2000
|
+
* @returns {string} The combined URL
|
|
2001
|
+
*/
|
|
2002
|
+
function combineURLs(baseURL, relativeURL) {
|
|
2003
|
+
return relativeURL
|
|
2004
|
+
? baseURL.replace(/\/?\/$/, '') + '/' + relativeURL.replace(/^\/+/, '')
|
|
2005
|
+
: baseURL;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
/**
|
|
2009
|
+
* Creates a new URL by combining the baseURL with the requestedURL,
|
|
2010
|
+
* only when the requestedURL is not already an absolute URL.
|
|
2011
|
+
* If the requestURL is absolute, this function returns the requestedURL untouched.
|
|
2012
|
+
*
|
|
2013
|
+
* @param {string} baseURL The base URL
|
|
2014
|
+
* @param {string} requestedURL Absolute or relative URL to combine
|
|
2015
|
+
*
|
|
2016
|
+
* @returns {string} The combined full path
|
|
2017
|
+
*/
|
|
2018
|
+
function buildFullPath(baseURL, requestedURL) {
|
|
2019
|
+
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
|
2020
|
+
return combineURLs(baseURL, requestedURL);
|
|
2021
|
+
}
|
|
2022
|
+
return requestedURL;
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
const VERSION = "1.6.5";
|
|
2026
|
+
|
|
2027
|
+
function parseProtocol(url) {
|
|
2028
|
+
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
|
|
2029
|
+
return match && match[1] || '';
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
const DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
|
|
2033
|
+
|
|
2034
|
+
/**
|
|
2035
|
+
* Parse data uri to a Buffer or Blob
|
|
2036
|
+
*
|
|
2037
|
+
* @param {String} uri
|
|
2038
|
+
* @param {?Boolean} asBlob
|
|
2039
|
+
* @param {?Object} options
|
|
2040
|
+
* @param {?Function} options.Blob
|
|
2041
|
+
*
|
|
2042
|
+
* @returns {Buffer|Blob}
|
|
2043
|
+
*/
|
|
2044
|
+
function fromDataURI(uri, asBlob, options) {
|
|
2045
|
+
const _Blob = options && options.Blob || platform.classes.Blob;
|
|
2046
|
+
const protocol = parseProtocol(uri);
|
|
2047
|
+
|
|
2048
|
+
if (asBlob === undefined && _Blob) {
|
|
2049
|
+
asBlob = true;
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
if (protocol === 'data') {
|
|
2053
|
+
uri = protocol.length ? uri.slice(protocol.length + 1) : uri;
|
|
2054
|
+
|
|
2055
|
+
const match = DATA_URL_PATTERN.exec(uri);
|
|
2056
|
+
|
|
2057
|
+
if (!match) {
|
|
2058
|
+
throw new AxiosError('Invalid URL', AxiosError.ERR_INVALID_URL);
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
const mime = match[1];
|
|
2062
|
+
const isBase64 = match[2];
|
|
2063
|
+
const body = match[3];
|
|
2064
|
+
const buffer = Buffer.from(decodeURIComponent(body), isBase64 ? 'base64' : 'utf8');
|
|
2065
|
+
|
|
2066
|
+
if (asBlob) {
|
|
2067
|
+
if (!_Blob) {
|
|
2068
|
+
throw new AxiosError('Blob is not supported', AxiosError.ERR_NOT_SUPPORT);
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
return new _Blob([buffer], {type: mime});
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
return buffer;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
throw new AxiosError('Unsupported protocol ' + protocol, AxiosError.ERR_NOT_SUPPORT);
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
/**
|
|
2081
|
+
* Throttle decorator
|
|
2082
|
+
* @param {Function} fn
|
|
2083
|
+
* @param {Number} freq
|
|
2084
|
+
* @return {Function}
|
|
2085
|
+
*/
|
|
2086
|
+
function throttle(fn, freq) {
|
|
2087
|
+
let timestamp = 0;
|
|
2088
|
+
const threshold = 1000 / freq;
|
|
2089
|
+
let timer = null;
|
|
2090
|
+
return function throttled(force, args) {
|
|
2091
|
+
const now = Date.now();
|
|
2092
|
+
if (force || now - timestamp > threshold) {
|
|
2093
|
+
if (timer) {
|
|
2094
|
+
clearTimeout(timer);
|
|
2095
|
+
timer = null;
|
|
2096
|
+
}
|
|
2097
|
+
timestamp = now;
|
|
2098
|
+
return fn.apply(null, args);
|
|
2099
|
+
}
|
|
2100
|
+
if (!timer) {
|
|
2101
|
+
timer = setTimeout(() => {
|
|
2102
|
+
timer = null;
|
|
2103
|
+
timestamp = Date.now();
|
|
2104
|
+
return fn.apply(null, args);
|
|
2105
|
+
}, threshold - (now - timestamp));
|
|
2106
|
+
}
|
|
2107
|
+
};
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
/**
|
|
2111
|
+
* Calculate data maxRate
|
|
2112
|
+
* @param {Number} [samplesCount= 10]
|
|
2113
|
+
* @param {Number} [min= 1000]
|
|
2114
|
+
* @returns {Function}
|
|
2115
|
+
*/
|
|
2116
|
+
function speedometer(samplesCount, min) {
|
|
2117
|
+
samplesCount = samplesCount || 10;
|
|
2118
|
+
const bytes = new Array(samplesCount);
|
|
2119
|
+
const timestamps = new Array(samplesCount);
|
|
2120
|
+
let head = 0;
|
|
2121
|
+
let tail = 0;
|
|
2122
|
+
let firstSampleTS;
|
|
2123
|
+
|
|
2124
|
+
min = min !== undefined ? min : 1000;
|
|
2125
|
+
|
|
2126
|
+
return function push(chunkLength) {
|
|
2127
|
+
const now = Date.now();
|
|
2128
|
+
|
|
2129
|
+
const startedAt = timestamps[tail];
|
|
2130
|
+
|
|
2131
|
+
if (!firstSampleTS) {
|
|
2132
|
+
firstSampleTS = now;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
bytes[head] = chunkLength;
|
|
2136
|
+
timestamps[head] = now;
|
|
2137
|
+
|
|
2138
|
+
let i = tail;
|
|
2139
|
+
let bytesCount = 0;
|
|
2140
|
+
|
|
2141
|
+
while (i !== head) {
|
|
2142
|
+
bytesCount += bytes[i++];
|
|
2143
|
+
i = i % samplesCount;
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
head = (head + 1) % samplesCount;
|
|
2147
|
+
|
|
2148
|
+
if (head === tail) {
|
|
2149
|
+
tail = (tail + 1) % samplesCount;
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
if (now - firstSampleTS < min) {
|
|
2153
|
+
return;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
const passed = startedAt && now - startedAt;
|
|
2157
|
+
|
|
2158
|
+
return passed ? Math.round(bytesCount * 1000 / passed) : undefined;
|
|
2159
|
+
};
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
const kInternals = Symbol('internals');
|
|
2163
|
+
|
|
2164
|
+
class AxiosTransformStream extends stream__default["default"].Transform{
|
|
2165
|
+
constructor(options) {
|
|
2166
|
+
options = utils$1.toFlatObject(options, {
|
|
2167
|
+
maxRate: 0,
|
|
2168
|
+
chunkSize: 64 * 1024,
|
|
2169
|
+
minChunkSize: 100,
|
|
2170
|
+
timeWindow: 500,
|
|
2171
|
+
ticksRate: 2,
|
|
2172
|
+
samplesCount: 15
|
|
2173
|
+
}, null, (prop, source) => {
|
|
2174
|
+
return !utils$1.isUndefined(source[prop]);
|
|
2175
|
+
});
|
|
2176
|
+
|
|
2177
|
+
super({
|
|
2178
|
+
readableHighWaterMark: options.chunkSize
|
|
2179
|
+
});
|
|
2180
|
+
|
|
2181
|
+
const self = this;
|
|
2182
|
+
|
|
2183
|
+
const internals = this[kInternals] = {
|
|
2184
|
+
length: options.length,
|
|
2185
|
+
timeWindow: options.timeWindow,
|
|
2186
|
+
ticksRate: options.ticksRate,
|
|
2187
|
+
chunkSize: options.chunkSize,
|
|
2188
|
+
maxRate: options.maxRate,
|
|
2189
|
+
minChunkSize: options.minChunkSize,
|
|
2190
|
+
bytesSeen: 0,
|
|
2191
|
+
isCaptured: false,
|
|
2192
|
+
notifiedBytesLoaded: 0,
|
|
2193
|
+
ts: Date.now(),
|
|
2194
|
+
bytes: 0,
|
|
2195
|
+
onReadCallback: null
|
|
2196
|
+
};
|
|
2197
|
+
|
|
2198
|
+
const _speedometer = speedometer(internals.ticksRate * options.samplesCount, internals.timeWindow);
|
|
2199
|
+
|
|
2200
|
+
this.on('newListener', event => {
|
|
2201
|
+
if (event === 'progress') {
|
|
2202
|
+
if (!internals.isCaptured) {
|
|
2203
|
+
internals.isCaptured = true;
|
|
2204
|
+
}
|
|
2205
|
+
}
|
|
2206
|
+
});
|
|
2207
|
+
|
|
2208
|
+
let bytesNotified = 0;
|
|
2209
|
+
|
|
2210
|
+
internals.updateProgress = throttle(function throttledHandler() {
|
|
2211
|
+
const totalBytes = internals.length;
|
|
2212
|
+
const bytesTransferred = internals.bytesSeen;
|
|
2213
|
+
const progressBytes = bytesTransferred - bytesNotified;
|
|
2214
|
+
if (!progressBytes || self.destroyed) return;
|
|
2215
|
+
|
|
2216
|
+
const rate = _speedometer(progressBytes);
|
|
2217
|
+
|
|
2218
|
+
bytesNotified = bytesTransferred;
|
|
2219
|
+
|
|
2220
|
+
process.nextTick(() => {
|
|
2221
|
+
self.emit('progress', {
|
|
2222
|
+
'loaded': bytesTransferred,
|
|
2223
|
+
'total': totalBytes,
|
|
2224
|
+
'progress': totalBytes ? (bytesTransferred / totalBytes) : undefined,
|
|
2225
|
+
'bytes': progressBytes,
|
|
2226
|
+
'rate': rate ? rate : undefined,
|
|
2227
|
+
'estimated': rate && totalBytes && bytesTransferred <= totalBytes ?
|
|
2228
|
+
(totalBytes - bytesTransferred) / rate : undefined
|
|
2229
|
+
});
|
|
2230
|
+
});
|
|
2231
|
+
}, internals.ticksRate);
|
|
2232
|
+
|
|
2233
|
+
const onFinish = () => {
|
|
2234
|
+
internals.updateProgress(true);
|
|
2235
|
+
};
|
|
2236
|
+
|
|
2237
|
+
this.once('end', onFinish);
|
|
2238
|
+
this.once('error', onFinish);
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
_read(size) {
|
|
2242
|
+
const internals = this[kInternals];
|
|
2243
|
+
|
|
2244
|
+
if (internals.onReadCallback) {
|
|
2245
|
+
internals.onReadCallback();
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
return super._read(size);
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
_transform(chunk, encoding, callback) {
|
|
2252
|
+
const self = this;
|
|
2253
|
+
const internals = this[kInternals];
|
|
2254
|
+
const maxRate = internals.maxRate;
|
|
2255
|
+
|
|
2256
|
+
const readableHighWaterMark = this.readableHighWaterMark;
|
|
2257
|
+
|
|
2258
|
+
const timeWindow = internals.timeWindow;
|
|
2259
|
+
|
|
2260
|
+
const divider = 1000 / timeWindow;
|
|
2261
|
+
const bytesThreshold = (maxRate / divider);
|
|
2262
|
+
const minChunkSize = internals.minChunkSize !== false ? Math.max(internals.minChunkSize, bytesThreshold * 0.01) : 0;
|
|
2263
|
+
|
|
2264
|
+
function pushChunk(_chunk, _callback) {
|
|
2265
|
+
const bytes = Buffer.byteLength(_chunk);
|
|
2266
|
+
internals.bytesSeen += bytes;
|
|
2267
|
+
internals.bytes += bytes;
|
|
2268
|
+
|
|
2269
|
+
if (internals.isCaptured) {
|
|
2270
|
+
internals.updateProgress();
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
if (self.push(_chunk)) {
|
|
2274
|
+
process.nextTick(_callback);
|
|
2275
|
+
} else {
|
|
2276
|
+
internals.onReadCallback = () => {
|
|
2277
|
+
internals.onReadCallback = null;
|
|
2278
|
+
process.nextTick(_callback);
|
|
2279
|
+
};
|
|
2280
|
+
}
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
const transformChunk = (_chunk, _callback) => {
|
|
2284
|
+
const chunkSize = Buffer.byteLength(_chunk);
|
|
2285
|
+
let chunkRemainder = null;
|
|
2286
|
+
let maxChunkSize = readableHighWaterMark;
|
|
2287
|
+
let bytesLeft;
|
|
2288
|
+
let passed = 0;
|
|
2289
|
+
|
|
2290
|
+
if (maxRate) {
|
|
2291
|
+
const now = Date.now();
|
|
2292
|
+
|
|
2293
|
+
if (!internals.ts || (passed = (now - internals.ts)) >= timeWindow) {
|
|
2294
|
+
internals.ts = now;
|
|
2295
|
+
bytesLeft = bytesThreshold - internals.bytes;
|
|
2296
|
+
internals.bytes = bytesLeft < 0 ? -bytesLeft : 0;
|
|
2297
|
+
passed = 0;
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
bytesLeft = bytesThreshold - internals.bytes;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
if (maxRate) {
|
|
2304
|
+
if (bytesLeft <= 0) {
|
|
2305
|
+
// next time window
|
|
2306
|
+
return setTimeout(() => {
|
|
2307
|
+
_callback(null, _chunk);
|
|
2308
|
+
}, timeWindow - passed);
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
if (bytesLeft < maxChunkSize) {
|
|
2312
|
+
maxChunkSize = bytesLeft;
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
if (maxChunkSize && chunkSize > maxChunkSize && (chunkSize - maxChunkSize) > minChunkSize) {
|
|
2317
|
+
chunkRemainder = _chunk.subarray(maxChunkSize);
|
|
2318
|
+
_chunk = _chunk.subarray(0, maxChunkSize);
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
pushChunk(_chunk, chunkRemainder ? () => {
|
|
2322
|
+
process.nextTick(_callback, null, chunkRemainder);
|
|
2323
|
+
} : _callback);
|
|
2324
|
+
};
|
|
2325
|
+
|
|
2326
|
+
transformChunk(chunk, function transformNextChunk(err, _chunk) {
|
|
2327
|
+
if (err) {
|
|
2328
|
+
return callback(err);
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
if (_chunk) {
|
|
2332
|
+
transformChunk(_chunk, transformNextChunk);
|
|
2333
|
+
} else {
|
|
2334
|
+
callback(null);
|
|
2335
|
+
}
|
|
2336
|
+
});
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
setLength(length) {
|
|
2340
|
+
this[kInternals].length = +length;
|
|
2341
|
+
return this;
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2345
|
+
const AxiosTransformStream$1 = AxiosTransformStream;
|
|
2346
|
+
|
|
2347
|
+
const {asyncIterator} = Symbol;
|
|
2348
|
+
|
|
2349
|
+
const readBlob = async function* (blob) {
|
|
2350
|
+
if (blob.stream) {
|
|
2351
|
+
yield* blob.stream();
|
|
2352
|
+
} else if (blob.arrayBuffer) {
|
|
2353
|
+
yield await blob.arrayBuffer();
|
|
2354
|
+
} else if (blob[asyncIterator]) {
|
|
2355
|
+
yield* blob[asyncIterator]();
|
|
2356
|
+
} else {
|
|
2357
|
+
yield blob;
|
|
2358
|
+
}
|
|
2359
|
+
};
|
|
2360
|
+
|
|
2361
|
+
const readBlob$1 = readBlob;
|
|
2362
|
+
|
|
2363
|
+
const BOUNDARY_ALPHABET = utils$1.ALPHABET.ALPHA_DIGIT + '-_';
|
|
2364
|
+
|
|
2365
|
+
const textEncoder = new util.TextEncoder();
|
|
2366
|
+
|
|
2367
|
+
const CRLF = '\r\n';
|
|
2368
|
+
const CRLF_BYTES = textEncoder.encode(CRLF);
|
|
2369
|
+
const CRLF_BYTES_COUNT = 2;
|
|
2370
|
+
|
|
2371
|
+
class FormDataPart {
|
|
2372
|
+
constructor(name, value) {
|
|
2373
|
+
const {escapeName} = this.constructor;
|
|
2374
|
+
const isStringValue = utils$1.isString(value);
|
|
2375
|
+
|
|
2376
|
+
let headers = `Content-Disposition: form-data; name="${escapeName(name)}"${
|
|
2377
|
+
!isStringValue && value.name ? `; filename="${escapeName(value.name)}"` : ''
|
|
2378
|
+
}${CRLF}`;
|
|
2379
|
+
|
|
2380
|
+
if (isStringValue) {
|
|
2381
|
+
value = textEncoder.encode(String(value).replace(/\r?\n|\r\n?/g, CRLF));
|
|
2382
|
+
} else {
|
|
2383
|
+
headers += `Content-Type: ${value.type || "application/octet-stream"}${CRLF}`;
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
this.headers = textEncoder.encode(headers + CRLF);
|
|
2387
|
+
|
|
2388
|
+
this.contentLength = isStringValue ? value.byteLength : value.size;
|
|
2389
|
+
|
|
2390
|
+
this.size = this.headers.byteLength + this.contentLength + CRLF_BYTES_COUNT;
|
|
2391
|
+
|
|
2392
|
+
this.name = name;
|
|
2393
|
+
this.value = value;
|
|
2394
|
+
}
|
|
2395
|
+
|
|
2396
|
+
async *encode(){
|
|
2397
|
+
yield this.headers;
|
|
2398
|
+
|
|
2399
|
+
const {value} = this;
|
|
2400
|
+
|
|
2401
|
+
if(utils$1.isTypedArray(value)) {
|
|
2402
|
+
yield value;
|
|
2403
|
+
} else {
|
|
2404
|
+
yield* readBlob$1(value);
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
yield CRLF_BYTES;
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2410
|
+
static escapeName(name) {
|
|
2411
|
+
return String(name).replace(/[\r\n"]/g, (match) => ({
|
|
2412
|
+
'\r' : '%0D',
|
|
2413
|
+
'\n' : '%0A',
|
|
2414
|
+
'"' : '%22',
|
|
2415
|
+
}[match]));
|
|
2416
|
+
}
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
const formDataToStream = (form, headersHandler, options) => {
|
|
2420
|
+
const {
|
|
2421
|
+
tag = 'form-data-boundary',
|
|
2422
|
+
size = 25,
|
|
2423
|
+
boundary = tag + '-' + utils$1.generateString(size, BOUNDARY_ALPHABET)
|
|
2424
|
+
} = options || {};
|
|
2425
|
+
|
|
2426
|
+
if(!utils$1.isFormData(form)) {
|
|
2427
|
+
throw TypeError('FormData instance required');
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
if (boundary.length < 1 || boundary.length > 70) {
|
|
2431
|
+
throw Error('boundary must be 10-70 characters long')
|
|
2432
|
+
}
|
|
2433
|
+
|
|
2434
|
+
const boundaryBytes = textEncoder.encode('--' + boundary + CRLF);
|
|
2435
|
+
const footerBytes = textEncoder.encode('--' + boundary + '--' + CRLF + CRLF);
|
|
2436
|
+
let contentLength = footerBytes.byteLength;
|
|
2437
|
+
|
|
2438
|
+
const parts = Array.from(form.entries()).map(([name, value]) => {
|
|
2439
|
+
const part = new FormDataPart(name, value);
|
|
2440
|
+
contentLength += part.size;
|
|
2441
|
+
return part;
|
|
2442
|
+
});
|
|
2443
|
+
|
|
2444
|
+
contentLength += boundaryBytes.byteLength * parts.length;
|
|
2445
|
+
|
|
2446
|
+
contentLength = utils$1.toFiniteNumber(contentLength);
|
|
2447
|
+
|
|
2448
|
+
const computedHeaders = {
|
|
2449
|
+
'Content-Type': `multipart/form-data; boundary=${boundary}`
|
|
2450
|
+
};
|
|
2451
|
+
|
|
2452
|
+
if (Number.isFinite(contentLength)) {
|
|
2453
|
+
computedHeaders['Content-Length'] = contentLength;
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
headersHandler && headersHandler(computedHeaders);
|
|
2457
|
+
|
|
2458
|
+
return stream.Readable.from((async function *() {
|
|
2459
|
+
for(const part of parts) {
|
|
2460
|
+
yield boundaryBytes;
|
|
2461
|
+
yield* part.encode();
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
yield footerBytes;
|
|
2465
|
+
})());
|
|
2466
|
+
};
|
|
2467
|
+
|
|
2468
|
+
const formDataToStream$1 = formDataToStream;
|
|
2469
|
+
|
|
2470
|
+
class ZlibHeaderTransformStream extends stream__default["default"].Transform {
|
|
2471
|
+
__transform(chunk, encoding, callback) {
|
|
2472
|
+
this.push(chunk);
|
|
2473
|
+
callback();
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
_transform(chunk, encoding, callback) {
|
|
2477
|
+
if (chunk.length !== 0) {
|
|
2478
|
+
this._transform = this.__transform;
|
|
2479
|
+
|
|
2480
|
+
// Add Default Compression headers if no zlib headers are present
|
|
2481
|
+
if (chunk[0] !== 120) { // Hex: 78
|
|
2482
|
+
const header = Buffer.alloc(2);
|
|
2483
|
+
header[0] = 120; // Hex: 78
|
|
2484
|
+
header[1] = 156; // Hex: 9C
|
|
2485
|
+
this.push(header, encoding);
|
|
2486
|
+
}
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
this.__transform(chunk, encoding, callback);
|
|
2490
|
+
}
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
const ZlibHeaderTransformStream$1 = ZlibHeaderTransformStream;
|
|
2494
|
+
|
|
2495
|
+
const callbackify = (fn, reducer) => {
|
|
2496
|
+
return utils$1.isAsyncFn(fn) ? function (...args) {
|
|
2497
|
+
const cb = args.pop();
|
|
2498
|
+
fn.apply(this, args).then((value) => {
|
|
2499
|
+
try {
|
|
2500
|
+
reducer ? cb(null, ...reducer(value)) : cb(null, value);
|
|
2501
|
+
} catch (err) {
|
|
2502
|
+
cb(err);
|
|
2503
|
+
}
|
|
2504
|
+
}, cb);
|
|
2505
|
+
} : fn;
|
|
2506
|
+
};
|
|
2507
|
+
|
|
2508
|
+
const callbackify$1 = callbackify;
|
|
2509
|
+
|
|
2510
|
+
const zlibOptions = {
|
|
2511
|
+
flush: zlib__default["default"].constants.Z_SYNC_FLUSH,
|
|
2512
|
+
finishFlush: zlib__default["default"].constants.Z_SYNC_FLUSH
|
|
2513
|
+
};
|
|
2514
|
+
|
|
2515
|
+
const brotliOptions = {
|
|
2516
|
+
flush: zlib__default["default"].constants.BROTLI_OPERATION_FLUSH,
|
|
2517
|
+
finishFlush: zlib__default["default"].constants.BROTLI_OPERATION_FLUSH
|
|
2518
|
+
};
|
|
2519
|
+
|
|
2520
|
+
const isBrotliSupported = utils$1.isFunction(zlib__default["default"].createBrotliDecompress);
|
|
2521
|
+
|
|
2522
|
+
const {http: httpFollow, https: httpsFollow} = followRedirects__default["default"];
|
|
2523
|
+
|
|
2524
|
+
const isHttps = /https:?/;
|
|
2525
|
+
|
|
2526
|
+
const supportedProtocols = platform.protocols.map(protocol => {
|
|
2527
|
+
return protocol + ':';
|
|
2528
|
+
});
|
|
2529
|
+
|
|
2530
|
+
/**
|
|
2531
|
+
* If the proxy or config beforeRedirects functions are defined, call them with the options
|
|
2532
|
+
* object.
|
|
2533
|
+
*
|
|
2534
|
+
* @param {Object<string, any>} options - The options object that was passed to the request.
|
|
2535
|
+
*
|
|
2536
|
+
* @returns {Object<string, any>}
|
|
2537
|
+
*/
|
|
2538
|
+
function dispatchBeforeRedirect(options) {
|
|
2539
|
+
if (options.beforeRedirects.proxy) {
|
|
2540
|
+
options.beforeRedirects.proxy(options);
|
|
2541
|
+
}
|
|
2542
|
+
if (options.beforeRedirects.config) {
|
|
2543
|
+
options.beforeRedirects.config(options);
|
|
2544
|
+
}
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
/**
|
|
2548
|
+
* If the proxy or config afterRedirects functions are defined, call them with the options
|
|
2549
|
+
*
|
|
2550
|
+
* @param {http.ClientRequestArgs} options
|
|
2551
|
+
* @param {AxiosProxyConfig} configProxy configuration from Axios options object
|
|
2552
|
+
* @param {string} location
|
|
2553
|
+
*
|
|
2554
|
+
* @returns {http.ClientRequestArgs}
|
|
2555
|
+
*/
|
|
2556
|
+
function setProxy(options, configProxy, location) {
|
|
2557
|
+
let proxy = configProxy;
|
|
2558
|
+
if (!proxy && proxy !== false) {
|
|
2559
|
+
const proxyUrl = proxyFromEnv.getProxyForUrl(location);
|
|
2560
|
+
if (proxyUrl) {
|
|
2561
|
+
proxy = new URL(proxyUrl);
|
|
2562
|
+
}
|
|
2563
|
+
}
|
|
2564
|
+
if (proxy) {
|
|
2565
|
+
// Basic proxy authorization
|
|
2566
|
+
if (proxy.username) {
|
|
2567
|
+
proxy.auth = (proxy.username || '') + ':' + (proxy.password || '');
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
if (proxy.auth) {
|
|
2571
|
+
// Support proxy auth object form
|
|
2572
|
+
if (proxy.auth.username || proxy.auth.password) {
|
|
2573
|
+
proxy.auth = (proxy.auth.username || '') + ':' + (proxy.auth.password || '');
|
|
2574
|
+
}
|
|
2575
|
+
const base64 = Buffer
|
|
2576
|
+
.from(proxy.auth, 'utf8')
|
|
2577
|
+
.toString('base64');
|
|
2578
|
+
options.headers['Proxy-Authorization'] = 'Basic ' + base64;
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2581
|
+
options.headers.host = options.hostname + (options.port ? ':' + options.port : '');
|
|
2582
|
+
const proxyHost = proxy.hostname || proxy.host;
|
|
2583
|
+
options.hostname = proxyHost;
|
|
2584
|
+
// Replace 'host' since options is not a URL object
|
|
2585
|
+
options.host = proxyHost;
|
|
2586
|
+
options.port = proxy.port;
|
|
2587
|
+
options.path = location;
|
|
2588
|
+
if (proxy.protocol) {
|
|
2589
|
+
options.protocol = proxy.protocol.includes(':') ? proxy.protocol : `${proxy.protocol}:`;
|
|
2590
|
+
}
|
|
2591
|
+
}
|
|
2592
|
+
|
|
2593
|
+
options.beforeRedirects.proxy = function beforeRedirect(redirectOptions) {
|
|
2594
|
+
// Configure proxy for redirected request, passing the original config proxy to apply
|
|
2595
|
+
// the exact same logic as if the redirected request was performed by axios directly.
|
|
2596
|
+
setProxy(redirectOptions, configProxy, redirectOptions.href);
|
|
2597
|
+
};
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
const isHttpAdapterSupported = typeof process !== 'undefined' && utils$1.kindOf(process) === 'process';
|
|
2601
|
+
|
|
2602
|
+
// temporary hotfix
|
|
2603
|
+
|
|
2604
|
+
const wrapAsync = (asyncExecutor) => {
|
|
2605
|
+
return new Promise((resolve, reject) => {
|
|
2606
|
+
let onDone;
|
|
2607
|
+
let isDone;
|
|
2608
|
+
|
|
2609
|
+
const done = (value, isRejected) => {
|
|
2610
|
+
if (isDone) return;
|
|
2611
|
+
isDone = true;
|
|
2612
|
+
onDone && onDone(value, isRejected);
|
|
2613
|
+
};
|
|
2614
|
+
|
|
2615
|
+
const _resolve = (value) => {
|
|
2616
|
+
done(value);
|
|
2617
|
+
resolve(value);
|
|
2618
|
+
};
|
|
2619
|
+
|
|
2620
|
+
const _reject = (reason) => {
|
|
2621
|
+
done(reason, true);
|
|
2622
|
+
reject(reason);
|
|
2623
|
+
};
|
|
2624
|
+
|
|
2625
|
+
asyncExecutor(_resolve, _reject, (onDoneHandler) => (onDone = onDoneHandler)).catch(_reject);
|
|
2626
|
+
})
|
|
2627
|
+
};
|
|
2628
|
+
|
|
2629
|
+
const resolveFamily = ({address, family}) => {
|
|
2630
|
+
if (!utils$1.isString(address)) {
|
|
2631
|
+
throw TypeError('address must be a string');
|
|
2632
|
+
}
|
|
2633
|
+
return ({
|
|
2634
|
+
address,
|
|
2635
|
+
family: family || (address.indexOf('.') < 0 ? 6 : 4)
|
|
2636
|
+
});
|
|
2637
|
+
};
|
|
2638
|
+
|
|
2639
|
+
const buildAddressEntry = (address, family) => resolveFamily(utils$1.isObject(address) ? address : {address, family});
|
|
2640
|
+
|
|
2641
|
+
/*eslint consistent-return:0*/
|
|
2642
|
+
const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
|
|
2643
|
+
return wrapAsync(async function dispatchHttpRequest(resolve, reject, onDone) {
|
|
2644
|
+
let {data, lookup, family} = config;
|
|
2645
|
+
const {responseType, responseEncoding} = config;
|
|
2646
|
+
const method = config.method.toUpperCase();
|
|
2647
|
+
let isDone;
|
|
2648
|
+
let rejected = false;
|
|
2649
|
+
let req;
|
|
2650
|
+
|
|
2651
|
+
if (lookup) {
|
|
2652
|
+
const _lookup = callbackify$1(lookup, (value) => utils$1.isArray(value) ? value : [value]);
|
|
2653
|
+
// hotfix to support opt.all option which is required for node 20.x
|
|
2654
|
+
lookup = (hostname, opt, cb) => {
|
|
2655
|
+
_lookup(hostname, opt, (err, arg0, arg1) => {
|
|
2656
|
+
if (err) {
|
|
2657
|
+
return cb(err);
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
const addresses = utils$1.isArray(arg0) ? arg0.map(addr => buildAddressEntry(addr)) : [buildAddressEntry(arg0, arg1)];
|
|
2661
|
+
|
|
2662
|
+
opt.all ? cb(err, addresses) : cb(err, addresses[0].address, addresses[0].family);
|
|
2663
|
+
});
|
|
2664
|
+
};
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2667
|
+
// temporary internal emitter until the AxiosRequest class will be implemented
|
|
2668
|
+
const emitter = new EventEmitter__default["default"]();
|
|
2669
|
+
|
|
2670
|
+
const onFinished = () => {
|
|
2671
|
+
if (config.cancelToken) {
|
|
2672
|
+
config.cancelToken.unsubscribe(abort);
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2675
|
+
if (config.signal) {
|
|
2676
|
+
config.signal.removeEventListener('abort', abort);
|
|
2677
|
+
}
|
|
2678
|
+
|
|
2679
|
+
emitter.removeAllListeners();
|
|
2680
|
+
};
|
|
2681
|
+
|
|
2682
|
+
onDone((value, isRejected) => {
|
|
2683
|
+
isDone = true;
|
|
2684
|
+
if (isRejected) {
|
|
2685
|
+
rejected = true;
|
|
2686
|
+
onFinished();
|
|
2687
|
+
}
|
|
2688
|
+
});
|
|
2689
|
+
|
|
2690
|
+
function abort(reason) {
|
|
2691
|
+
emitter.emit('abort', !reason || reason.type ? new CanceledError(null, config, req) : reason);
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
emitter.once('abort', reject);
|
|
2695
|
+
|
|
2696
|
+
if (config.cancelToken || config.signal) {
|
|
2697
|
+
config.cancelToken && config.cancelToken.subscribe(abort);
|
|
2698
|
+
if (config.signal) {
|
|
2699
|
+
config.signal.aborted ? abort() : config.signal.addEventListener('abort', abort);
|
|
2700
|
+
}
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
// Parse url
|
|
2704
|
+
const fullPath = buildFullPath(config.baseURL, config.url);
|
|
2705
|
+
const parsed = new URL(fullPath, 'http://localhost');
|
|
2706
|
+
const protocol = parsed.protocol || supportedProtocols[0];
|
|
2707
|
+
|
|
2708
|
+
if (protocol === 'data:') {
|
|
2709
|
+
let convertedData;
|
|
2710
|
+
|
|
2711
|
+
if (method !== 'GET') {
|
|
2712
|
+
return settle(resolve, reject, {
|
|
2713
|
+
status: 405,
|
|
2714
|
+
statusText: 'method not allowed',
|
|
2715
|
+
headers: {},
|
|
2716
|
+
config
|
|
2717
|
+
});
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
try {
|
|
2721
|
+
convertedData = fromDataURI(config.url, responseType === 'blob', {
|
|
2722
|
+
Blob: config.env && config.env.Blob
|
|
2723
|
+
});
|
|
2724
|
+
} catch (err) {
|
|
2725
|
+
throw AxiosError.from(err, AxiosError.ERR_BAD_REQUEST, config);
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
if (responseType === 'text') {
|
|
2729
|
+
convertedData = convertedData.toString(responseEncoding);
|
|
2730
|
+
|
|
2731
|
+
if (!responseEncoding || responseEncoding === 'utf8') {
|
|
2732
|
+
convertedData = utils$1.stripBOM(convertedData);
|
|
2733
|
+
}
|
|
2734
|
+
} else if (responseType === 'stream') {
|
|
2735
|
+
convertedData = stream__default["default"].Readable.from(convertedData);
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2738
|
+
return settle(resolve, reject, {
|
|
2739
|
+
data: convertedData,
|
|
2740
|
+
status: 200,
|
|
2741
|
+
statusText: 'OK',
|
|
2742
|
+
headers: new AxiosHeaders$1(),
|
|
2743
|
+
config
|
|
2744
|
+
});
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2747
|
+
if (supportedProtocols.indexOf(protocol) === -1) {
|
|
2748
|
+
return reject(new AxiosError(
|
|
2749
|
+
'Unsupported protocol ' + protocol,
|
|
2750
|
+
AxiosError.ERR_BAD_REQUEST,
|
|
2751
|
+
config
|
|
2752
|
+
));
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
const headers = AxiosHeaders$1.from(config.headers).normalize();
|
|
2756
|
+
|
|
2757
|
+
// Set User-Agent (required by some servers)
|
|
2758
|
+
// See https://github.com/axios/axios/issues/69
|
|
2759
|
+
// User-Agent is specified; handle case where no UA header is desired
|
|
2760
|
+
// Only set header if it hasn't been set in config
|
|
2761
|
+
headers.set('User-Agent', 'axios/' + VERSION, false);
|
|
2762
|
+
|
|
2763
|
+
const onDownloadProgress = config.onDownloadProgress;
|
|
2764
|
+
const onUploadProgress = config.onUploadProgress;
|
|
2765
|
+
const maxRate = config.maxRate;
|
|
2766
|
+
let maxUploadRate = undefined;
|
|
2767
|
+
let maxDownloadRate = undefined;
|
|
2768
|
+
|
|
2769
|
+
// support for spec compliant FormData objects
|
|
2770
|
+
if (utils$1.isSpecCompliantForm(data)) {
|
|
2771
|
+
const userBoundary = headers.getContentType(/boundary=([-_\w\d]{10,70})/i);
|
|
2772
|
+
|
|
2773
|
+
data = formDataToStream$1(data, (formHeaders) => {
|
|
2774
|
+
headers.set(formHeaders);
|
|
2775
|
+
}, {
|
|
2776
|
+
tag: `axios-${VERSION}-boundary`,
|
|
2777
|
+
boundary: userBoundary && userBoundary[1] || undefined
|
|
2778
|
+
});
|
|
2779
|
+
// support for https://www.npmjs.com/package/form-data api
|
|
2780
|
+
} else if (utils$1.isFormData(data) && utils$1.isFunction(data.getHeaders)) {
|
|
2781
|
+
headers.set(data.getHeaders());
|
|
2782
|
+
|
|
2783
|
+
if (!headers.hasContentLength()) {
|
|
2784
|
+
try {
|
|
2785
|
+
const knownLength = await util__default["default"].promisify(data.getLength).call(data);
|
|
2786
|
+
Number.isFinite(knownLength) && knownLength >= 0 && headers.setContentLength(knownLength);
|
|
2787
|
+
/*eslint no-empty:0*/
|
|
2788
|
+
} catch (e) {
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2791
|
+
} else if (utils$1.isBlob(data)) {
|
|
2792
|
+
data.size && headers.setContentType(data.type || 'application/octet-stream');
|
|
2793
|
+
headers.setContentLength(data.size || 0);
|
|
2794
|
+
data = stream__default["default"].Readable.from(readBlob$1(data));
|
|
2795
|
+
} else if (data && !utils$1.isStream(data)) {
|
|
2796
|
+
if (Buffer.isBuffer(data)) ; else if (utils$1.isArrayBuffer(data)) {
|
|
2797
|
+
data = Buffer.from(new Uint8Array(data));
|
|
2798
|
+
} else if (utils$1.isString(data)) {
|
|
2799
|
+
data = Buffer.from(data, 'utf-8');
|
|
2800
|
+
} else {
|
|
2801
|
+
return reject(new AxiosError(
|
|
2802
|
+
'Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream',
|
|
2803
|
+
AxiosError.ERR_BAD_REQUEST,
|
|
2804
|
+
config
|
|
2805
|
+
));
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2808
|
+
// Add Content-Length header if data exists
|
|
2809
|
+
headers.setContentLength(data.length, false);
|
|
2810
|
+
|
|
2811
|
+
if (config.maxBodyLength > -1 && data.length > config.maxBodyLength) {
|
|
2812
|
+
return reject(new AxiosError(
|
|
2813
|
+
'Request body larger than maxBodyLength limit',
|
|
2814
|
+
AxiosError.ERR_BAD_REQUEST,
|
|
2815
|
+
config
|
|
2816
|
+
));
|
|
2817
|
+
}
|
|
2818
|
+
}
|
|
2819
|
+
|
|
2820
|
+
const contentLength = utils$1.toFiniteNumber(headers.getContentLength());
|
|
2821
|
+
|
|
2822
|
+
if (utils$1.isArray(maxRate)) {
|
|
2823
|
+
maxUploadRate = maxRate[0];
|
|
2824
|
+
maxDownloadRate = maxRate[1];
|
|
2825
|
+
} else {
|
|
2826
|
+
maxUploadRate = maxDownloadRate = maxRate;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
if (data && (onUploadProgress || maxUploadRate)) {
|
|
2830
|
+
if (!utils$1.isStream(data)) {
|
|
2831
|
+
data = stream__default["default"].Readable.from(data, {objectMode: false});
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
data = stream__default["default"].pipeline([data, new AxiosTransformStream$1({
|
|
2835
|
+
length: contentLength,
|
|
2836
|
+
maxRate: utils$1.toFiniteNumber(maxUploadRate)
|
|
2837
|
+
})], utils$1.noop);
|
|
2838
|
+
|
|
2839
|
+
onUploadProgress && data.on('progress', progress => {
|
|
2840
|
+
onUploadProgress(Object.assign(progress, {
|
|
2841
|
+
upload: true
|
|
2842
|
+
}));
|
|
2843
|
+
});
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
// HTTP basic authentication
|
|
2847
|
+
let auth = undefined;
|
|
2848
|
+
if (config.auth) {
|
|
2849
|
+
const username = config.auth.username || '';
|
|
2850
|
+
const password = config.auth.password || '';
|
|
2851
|
+
auth = username + ':' + password;
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
if (!auth && parsed.username) {
|
|
2855
|
+
const urlUsername = parsed.username;
|
|
2856
|
+
const urlPassword = parsed.password;
|
|
2857
|
+
auth = urlUsername + ':' + urlPassword;
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
auth && headers.delete('authorization');
|
|
2861
|
+
|
|
2862
|
+
let path;
|
|
2863
|
+
|
|
2864
|
+
try {
|
|
2865
|
+
path = buildURL(
|
|
2866
|
+
parsed.pathname + parsed.search,
|
|
2867
|
+
config.params,
|
|
2868
|
+
config.paramsSerializer
|
|
2869
|
+
).replace(/^\?/, '');
|
|
2870
|
+
} catch (err) {
|
|
2871
|
+
const customErr = new Error(err.message);
|
|
2872
|
+
customErr.config = config;
|
|
2873
|
+
customErr.url = config.url;
|
|
2874
|
+
customErr.exists = true;
|
|
2875
|
+
return reject(customErr);
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
headers.set(
|
|
2879
|
+
'Accept-Encoding',
|
|
2880
|
+
'gzip, compress, deflate' + (isBrotliSupported ? ', br' : ''), false
|
|
2881
|
+
);
|
|
2882
|
+
|
|
2883
|
+
const options = {
|
|
2884
|
+
path,
|
|
2885
|
+
method: method,
|
|
2886
|
+
headers: headers.toJSON(),
|
|
2887
|
+
agents: { http: config.httpAgent, https: config.httpsAgent },
|
|
2888
|
+
auth,
|
|
2889
|
+
protocol,
|
|
2890
|
+
family,
|
|
2891
|
+
beforeRedirect: dispatchBeforeRedirect,
|
|
2892
|
+
beforeRedirects: {}
|
|
2893
|
+
};
|
|
2894
|
+
|
|
2895
|
+
// cacheable-lookup integration hotfix
|
|
2896
|
+
!utils$1.isUndefined(lookup) && (options.lookup = lookup);
|
|
2897
|
+
|
|
2898
|
+
if (config.socketPath) {
|
|
2899
|
+
options.socketPath = config.socketPath;
|
|
2900
|
+
} else {
|
|
2901
|
+
options.hostname = parsed.hostname;
|
|
2902
|
+
options.port = parsed.port;
|
|
2903
|
+
setProxy(options, config.proxy, protocol + '//' + parsed.hostname + (parsed.port ? ':' + parsed.port : '') + options.path);
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2906
|
+
let transport;
|
|
2907
|
+
const isHttpsRequest = isHttps.test(options.protocol);
|
|
2908
|
+
options.agent = isHttpsRequest ? config.httpsAgent : config.httpAgent;
|
|
2909
|
+
if (config.transport) {
|
|
2910
|
+
transport = config.transport;
|
|
2911
|
+
} else if (config.maxRedirects === 0) {
|
|
2912
|
+
transport = isHttpsRequest ? https__default["default"] : http__default["default"];
|
|
2913
|
+
} else {
|
|
2914
|
+
if (config.maxRedirects) {
|
|
2915
|
+
options.maxRedirects = config.maxRedirects;
|
|
2916
|
+
}
|
|
2917
|
+
if (config.beforeRedirect) {
|
|
2918
|
+
options.beforeRedirects.config = config.beforeRedirect;
|
|
2919
|
+
}
|
|
2920
|
+
transport = isHttpsRequest ? httpsFollow : httpFollow;
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
if (config.maxBodyLength > -1) {
|
|
2924
|
+
options.maxBodyLength = config.maxBodyLength;
|
|
2925
|
+
} else {
|
|
2926
|
+
// follow-redirects does not skip comparison, so it should always succeed for axios -1 unlimited
|
|
2927
|
+
options.maxBodyLength = Infinity;
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
if (config.insecureHTTPParser) {
|
|
2931
|
+
options.insecureHTTPParser = config.insecureHTTPParser;
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
// Create the request
|
|
2935
|
+
req = transport.request(options, function handleResponse(res) {
|
|
2936
|
+
if (req.destroyed) return;
|
|
2937
|
+
|
|
2938
|
+
const streams = [res];
|
|
2939
|
+
|
|
2940
|
+
const responseLength = +res.headers['content-length'];
|
|
2941
|
+
|
|
2942
|
+
if (onDownloadProgress) {
|
|
2943
|
+
const transformStream = new AxiosTransformStream$1({
|
|
2944
|
+
length: utils$1.toFiniteNumber(responseLength),
|
|
2945
|
+
maxRate: utils$1.toFiniteNumber(maxDownloadRate)
|
|
2946
|
+
});
|
|
2947
|
+
|
|
2948
|
+
onDownloadProgress && transformStream.on('progress', progress => {
|
|
2949
|
+
onDownloadProgress(Object.assign(progress, {
|
|
2950
|
+
download: true
|
|
2951
|
+
}));
|
|
2952
|
+
});
|
|
2953
|
+
|
|
2954
|
+
streams.push(transformStream);
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
// decompress the response body transparently if required
|
|
2958
|
+
let responseStream = res;
|
|
2959
|
+
|
|
2960
|
+
// return the last request in case of redirects
|
|
2961
|
+
const lastRequest = res.req || req;
|
|
2962
|
+
|
|
2963
|
+
// if decompress disabled we should not decompress
|
|
2964
|
+
if (config.decompress !== false && res.headers['content-encoding']) {
|
|
2965
|
+
// if no content, but headers still say that it is encoded,
|
|
2966
|
+
// remove the header not confuse downstream operations
|
|
2967
|
+
if (method === 'HEAD' || res.statusCode === 204) {
|
|
2968
|
+
delete res.headers['content-encoding'];
|
|
2969
|
+
}
|
|
2970
|
+
|
|
2971
|
+
switch ((res.headers['content-encoding'] || '').toLowerCase()) {
|
|
2972
|
+
/*eslint default-case:0*/
|
|
2973
|
+
case 'gzip':
|
|
2974
|
+
case 'x-gzip':
|
|
2975
|
+
case 'compress':
|
|
2976
|
+
case 'x-compress':
|
|
2977
|
+
// add the unzipper to the body stream processing pipeline
|
|
2978
|
+
streams.push(zlib__default["default"].createUnzip(zlibOptions));
|
|
2979
|
+
|
|
2980
|
+
// remove the content-encoding in order to not confuse downstream operations
|
|
2981
|
+
delete res.headers['content-encoding'];
|
|
2982
|
+
break;
|
|
2983
|
+
case 'deflate':
|
|
2984
|
+
streams.push(new ZlibHeaderTransformStream$1());
|
|
2985
|
+
|
|
2986
|
+
// add the unzipper to the body stream processing pipeline
|
|
2987
|
+
streams.push(zlib__default["default"].createUnzip(zlibOptions));
|
|
2988
|
+
|
|
2989
|
+
// remove the content-encoding in order to not confuse downstream operations
|
|
2990
|
+
delete res.headers['content-encoding'];
|
|
2991
|
+
break;
|
|
2992
|
+
case 'br':
|
|
2993
|
+
if (isBrotliSupported) {
|
|
2994
|
+
streams.push(zlib__default["default"].createBrotliDecompress(brotliOptions));
|
|
2995
|
+
delete res.headers['content-encoding'];
|
|
2996
|
+
}
|
|
2997
|
+
}
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
responseStream = streams.length > 1 ? stream__default["default"].pipeline(streams, utils$1.noop) : streams[0];
|
|
3001
|
+
|
|
3002
|
+
const offListeners = stream__default["default"].finished(responseStream, () => {
|
|
3003
|
+
offListeners();
|
|
3004
|
+
onFinished();
|
|
3005
|
+
});
|
|
3006
|
+
|
|
3007
|
+
const response = {
|
|
3008
|
+
status: res.statusCode,
|
|
3009
|
+
statusText: res.statusMessage,
|
|
3010
|
+
headers: new AxiosHeaders$1(res.headers),
|
|
3011
|
+
config,
|
|
3012
|
+
request: lastRequest
|
|
3013
|
+
};
|
|
3014
|
+
|
|
3015
|
+
if (responseType === 'stream') {
|
|
3016
|
+
response.data = responseStream;
|
|
3017
|
+
settle(resolve, reject, response);
|
|
3018
|
+
} else {
|
|
3019
|
+
const responseBuffer = [];
|
|
3020
|
+
let totalResponseBytes = 0;
|
|
3021
|
+
|
|
3022
|
+
responseStream.on('data', function handleStreamData(chunk) {
|
|
3023
|
+
responseBuffer.push(chunk);
|
|
3024
|
+
totalResponseBytes += chunk.length;
|
|
3025
|
+
|
|
3026
|
+
// make sure the content length is not over the maxContentLength if specified
|
|
3027
|
+
if (config.maxContentLength > -1 && totalResponseBytes > config.maxContentLength) {
|
|
3028
|
+
// stream.destroy() emit aborted event before calling reject() on Node.js v16
|
|
3029
|
+
rejected = true;
|
|
3030
|
+
responseStream.destroy();
|
|
3031
|
+
reject(new AxiosError('maxContentLength size of ' + config.maxContentLength + ' exceeded',
|
|
3032
|
+
AxiosError.ERR_BAD_RESPONSE, config, lastRequest));
|
|
3033
|
+
}
|
|
3034
|
+
});
|
|
3035
|
+
|
|
3036
|
+
responseStream.on('aborted', function handlerStreamAborted() {
|
|
3037
|
+
if (rejected) {
|
|
3038
|
+
return;
|
|
3039
|
+
}
|
|
3040
|
+
|
|
3041
|
+
const err = new AxiosError(
|
|
3042
|
+
'maxContentLength size of ' + config.maxContentLength + ' exceeded',
|
|
3043
|
+
AxiosError.ERR_BAD_RESPONSE,
|
|
3044
|
+
config,
|
|
3045
|
+
lastRequest
|
|
3046
|
+
);
|
|
3047
|
+
responseStream.destroy(err);
|
|
3048
|
+
reject(err);
|
|
3049
|
+
});
|
|
3050
|
+
|
|
3051
|
+
responseStream.on('error', function handleStreamError(err) {
|
|
3052
|
+
if (req.destroyed) return;
|
|
3053
|
+
reject(AxiosError.from(err, null, config, lastRequest));
|
|
3054
|
+
});
|
|
3055
|
+
|
|
3056
|
+
responseStream.on('end', function handleStreamEnd() {
|
|
3057
|
+
try {
|
|
3058
|
+
let responseData = responseBuffer.length === 1 ? responseBuffer[0] : Buffer.concat(responseBuffer);
|
|
3059
|
+
if (responseType !== 'arraybuffer') {
|
|
3060
|
+
responseData = responseData.toString(responseEncoding);
|
|
3061
|
+
if (!responseEncoding || responseEncoding === 'utf8') {
|
|
3062
|
+
responseData = utils$1.stripBOM(responseData);
|
|
3063
|
+
}
|
|
3064
|
+
}
|
|
3065
|
+
response.data = responseData;
|
|
3066
|
+
} catch (err) {
|
|
3067
|
+
return reject(AxiosError.from(err, null, config, response.request, response));
|
|
3068
|
+
}
|
|
3069
|
+
settle(resolve, reject, response);
|
|
3070
|
+
});
|
|
3071
|
+
}
|
|
3072
|
+
|
|
3073
|
+
emitter.once('abort', err => {
|
|
3074
|
+
if (!responseStream.destroyed) {
|
|
3075
|
+
responseStream.emit('error', err);
|
|
3076
|
+
responseStream.destroy();
|
|
3077
|
+
}
|
|
3078
|
+
});
|
|
3079
|
+
});
|
|
3080
|
+
|
|
3081
|
+
emitter.once('abort', err => {
|
|
3082
|
+
reject(err);
|
|
3083
|
+
req.destroy(err);
|
|
3084
|
+
});
|
|
3085
|
+
|
|
3086
|
+
// Handle errors
|
|
3087
|
+
req.on('error', function handleRequestError(err) {
|
|
3088
|
+
// @todo remove
|
|
3089
|
+
// if (req.aborted && err.code !== AxiosError.ERR_FR_TOO_MANY_REDIRECTS) return;
|
|
3090
|
+
reject(AxiosError.from(err, null, config, req));
|
|
3091
|
+
});
|
|
3092
|
+
|
|
3093
|
+
// set tcp keep alive to prevent drop connection by peer
|
|
3094
|
+
req.on('socket', function handleRequestSocket(socket) {
|
|
3095
|
+
// default interval of sending ack packet is 1 minute
|
|
3096
|
+
socket.setKeepAlive(true, 1000 * 60);
|
|
3097
|
+
});
|
|
3098
|
+
|
|
3099
|
+
// Handle request timeout
|
|
3100
|
+
if (config.timeout) {
|
|
3101
|
+
// This is forcing a int timeout to avoid problems if the `req` interface doesn't handle other types.
|
|
3102
|
+
const timeout = parseInt(config.timeout, 10);
|
|
3103
|
+
|
|
3104
|
+
if (Number.isNaN(timeout)) {
|
|
3105
|
+
reject(new AxiosError(
|
|
3106
|
+
'error trying to parse `config.timeout` to int',
|
|
3107
|
+
AxiosError.ERR_BAD_OPTION_VALUE,
|
|
3108
|
+
config,
|
|
3109
|
+
req
|
|
3110
|
+
));
|
|
3111
|
+
|
|
3112
|
+
return;
|
|
3113
|
+
}
|
|
3114
|
+
|
|
3115
|
+
// Sometime, the response will be very slow, and does not respond, the connect event will be block by event loop system.
|
|
3116
|
+
// And timer callback will be fired, and abort() will be invoked before connection, then get "socket hang up" and code ECONNRESET.
|
|
3117
|
+
// At this time, if we have a large number of request, nodejs will hang up some socket on background. and the number will up and up.
|
|
3118
|
+
// And then these socket which be hang up will devouring CPU little by little.
|
|
3119
|
+
// ClientRequest.setTimeout will be fired on the specify milliseconds, and can make sure that abort() will be fired after connect.
|
|
3120
|
+
req.setTimeout(timeout, function handleRequestTimeout() {
|
|
3121
|
+
if (isDone) return;
|
|
3122
|
+
let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';
|
|
3123
|
+
const transitional = config.transitional || transitionalDefaults;
|
|
3124
|
+
if (config.timeoutErrorMessage) {
|
|
3125
|
+
timeoutErrorMessage = config.timeoutErrorMessage;
|
|
3126
|
+
}
|
|
3127
|
+
reject(new AxiosError(
|
|
3128
|
+
timeoutErrorMessage,
|
|
3129
|
+
transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,
|
|
3130
|
+
config,
|
|
3131
|
+
req
|
|
3132
|
+
));
|
|
3133
|
+
abort();
|
|
3134
|
+
});
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3137
|
+
|
|
3138
|
+
// Send the request
|
|
3139
|
+
if (utils$1.isStream(data)) {
|
|
3140
|
+
let ended = false;
|
|
3141
|
+
let errored = false;
|
|
3142
|
+
|
|
3143
|
+
data.on('end', () => {
|
|
3144
|
+
ended = true;
|
|
3145
|
+
});
|
|
3146
|
+
|
|
3147
|
+
data.once('error', err => {
|
|
3148
|
+
errored = true;
|
|
3149
|
+
req.destroy(err);
|
|
3150
|
+
});
|
|
3151
|
+
|
|
3152
|
+
data.on('close', () => {
|
|
3153
|
+
if (!ended && !errored) {
|
|
3154
|
+
abort(new CanceledError('Request stream has been aborted', config, req));
|
|
3155
|
+
}
|
|
3156
|
+
});
|
|
3157
|
+
|
|
3158
|
+
data.pipe(req);
|
|
3159
|
+
} else {
|
|
3160
|
+
req.end(data);
|
|
3161
|
+
}
|
|
3162
|
+
});
|
|
3163
|
+
};
|
|
3164
|
+
|
|
3165
|
+
const cookies = platform.hasStandardBrowserEnv ?
|
|
3166
|
+
|
|
3167
|
+
// Standard browser envs support document.cookie
|
|
3168
|
+
{
|
|
3169
|
+
write(name, value, expires, path, domain, secure) {
|
|
3170
|
+
const cookie = [name + '=' + encodeURIComponent(value)];
|
|
3171
|
+
|
|
3172
|
+
utils$1.isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());
|
|
3173
|
+
|
|
3174
|
+
utils$1.isString(path) && cookie.push('path=' + path);
|
|
3175
|
+
|
|
3176
|
+
utils$1.isString(domain) && cookie.push('domain=' + domain);
|
|
3177
|
+
|
|
3178
|
+
secure === true && cookie.push('secure');
|
|
3179
|
+
|
|
3180
|
+
document.cookie = cookie.join('; ');
|
|
3181
|
+
},
|
|
3182
|
+
|
|
3183
|
+
read(name) {
|
|
3184
|
+
const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
|
3185
|
+
return (match ? decodeURIComponent(match[3]) : null);
|
|
3186
|
+
},
|
|
3187
|
+
|
|
3188
|
+
remove(name) {
|
|
3189
|
+
this.write(name, '', Date.now() - 86400000);
|
|
3190
|
+
}
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3193
|
+
:
|
|
3194
|
+
|
|
3195
|
+
// Non-standard browser env (web workers, react-native) lack needed support.
|
|
3196
|
+
{
|
|
3197
|
+
write() {},
|
|
3198
|
+
read() {
|
|
3199
|
+
return null;
|
|
3200
|
+
},
|
|
3201
|
+
remove() {}
|
|
3202
|
+
};
|
|
3203
|
+
|
|
3204
|
+
const isURLSameOrigin = platform.hasStandardBrowserEnv ?
|
|
3205
|
+
|
|
3206
|
+
// Standard browser envs have full support of the APIs needed to test
|
|
3207
|
+
// whether the request URL is of the same origin as current location.
|
|
3208
|
+
(function standardBrowserEnv() {
|
|
3209
|
+
const msie = /(msie|trident)/i.test(navigator.userAgent);
|
|
3210
|
+
const urlParsingNode = document.createElement('a');
|
|
3211
|
+
let originURL;
|
|
3212
|
+
|
|
3213
|
+
/**
|
|
3214
|
+
* Parse a URL to discover its components
|
|
3215
|
+
*
|
|
3216
|
+
* @param {String} url The URL to be parsed
|
|
3217
|
+
* @returns {Object}
|
|
3218
|
+
*/
|
|
3219
|
+
function resolveURL(url) {
|
|
3220
|
+
let href = url;
|
|
3221
|
+
|
|
3222
|
+
if (msie) {
|
|
3223
|
+
// IE needs attribute set twice to normalize properties
|
|
3224
|
+
urlParsingNode.setAttribute('href', href);
|
|
3225
|
+
href = urlParsingNode.href;
|
|
3226
|
+
}
|
|
3227
|
+
|
|
3228
|
+
urlParsingNode.setAttribute('href', href);
|
|
3229
|
+
|
|
3230
|
+
// urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils
|
|
3231
|
+
return {
|
|
3232
|
+
href: urlParsingNode.href,
|
|
3233
|
+
protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',
|
|
3234
|
+
host: urlParsingNode.host,
|
|
3235
|
+
search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '',
|
|
3236
|
+
hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',
|
|
3237
|
+
hostname: urlParsingNode.hostname,
|
|
3238
|
+
port: urlParsingNode.port,
|
|
3239
|
+
pathname: (urlParsingNode.pathname.charAt(0) === '/') ?
|
|
3240
|
+
urlParsingNode.pathname :
|
|
3241
|
+
'/' + urlParsingNode.pathname
|
|
3242
|
+
};
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
originURL = resolveURL(window.location.href);
|
|
3246
|
+
|
|
3247
|
+
/**
|
|
3248
|
+
* Determine if a URL shares the same origin as the current location
|
|
3249
|
+
*
|
|
3250
|
+
* @param {String} requestURL The URL to test
|
|
3251
|
+
* @returns {boolean} True if URL shares the same origin, otherwise false
|
|
3252
|
+
*/
|
|
3253
|
+
return function isURLSameOrigin(requestURL) {
|
|
3254
|
+
const parsed = (utils$1.isString(requestURL)) ? resolveURL(requestURL) : requestURL;
|
|
3255
|
+
return (parsed.protocol === originURL.protocol &&
|
|
3256
|
+
parsed.host === originURL.host);
|
|
3257
|
+
};
|
|
3258
|
+
})() :
|
|
3259
|
+
|
|
3260
|
+
// Non standard browser envs (web workers, react-native) lack needed support.
|
|
3261
|
+
(function nonStandardBrowserEnv() {
|
|
3262
|
+
return function isURLSameOrigin() {
|
|
3263
|
+
return true;
|
|
3264
|
+
};
|
|
3265
|
+
})();
|
|
3266
|
+
|
|
3267
|
+
function progressEventReducer(listener, isDownloadStream) {
|
|
3268
|
+
let bytesNotified = 0;
|
|
3269
|
+
const _speedometer = speedometer(50, 250);
|
|
3270
|
+
|
|
3271
|
+
return e => {
|
|
3272
|
+
const loaded = e.loaded;
|
|
3273
|
+
const total = e.lengthComputable ? e.total : undefined;
|
|
3274
|
+
const progressBytes = loaded - bytesNotified;
|
|
3275
|
+
const rate = _speedometer(progressBytes);
|
|
3276
|
+
const inRange = loaded <= total;
|
|
3277
|
+
|
|
3278
|
+
bytesNotified = loaded;
|
|
3279
|
+
|
|
3280
|
+
const data = {
|
|
3281
|
+
loaded,
|
|
3282
|
+
total,
|
|
3283
|
+
progress: total ? (loaded / total) : undefined,
|
|
3284
|
+
bytes: progressBytes,
|
|
3285
|
+
rate: rate ? rate : undefined,
|
|
3286
|
+
estimated: rate && total && inRange ? (total - loaded) / rate : undefined,
|
|
3287
|
+
event: e
|
|
3288
|
+
};
|
|
3289
|
+
|
|
3290
|
+
data[isDownloadStream ? 'download' : 'upload'] = true;
|
|
3291
|
+
|
|
3292
|
+
listener(data);
|
|
3293
|
+
};
|
|
3294
|
+
}
|
|
3295
|
+
|
|
3296
|
+
const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
3297
|
+
|
|
3298
|
+
const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
3299
|
+
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
3300
|
+
let requestData = config.data;
|
|
3301
|
+
const requestHeaders = AxiosHeaders$1.from(config.headers).normalize();
|
|
3302
|
+
let {responseType, withXSRFToken} = config;
|
|
3303
|
+
let onCanceled;
|
|
3304
|
+
function done() {
|
|
3305
|
+
if (config.cancelToken) {
|
|
3306
|
+
config.cancelToken.unsubscribe(onCanceled);
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
if (config.signal) {
|
|
3310
|
+
config.signal.removeEventListener('abort', onCanceled);
|
|
3311
|
+
}
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3314
|
+
let contentType;
|
|
3315
|
+
|
|
3316
|
+
if (utils$1.isFormData(requestData)) {
|
|
3317
|
+
if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {
|
|
3318
|
+
requestHeaders.setContentType(false); // Let the browser set it
|
|
3319
|
+
} else if ((contentType = requestHeaders.getContentType()) !== false) {
|
|
3320
|
+
// fix semicolon duplication issue for ReactNative FormData implementation
|
|
3321
|
+
const [type, ...tokens] = contentType ? contentType.split(';').map(token => token.trim()).filter(Boolean) : [];
|
|
3322
|
+
requestHeaders.setContentType([type || 'multipart/form-data', ...tokens].join('; '));
|
|
3323
|
+
}
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
let request = new XMLHttpRequest();
|
|
3327
|
+
|
|
3328
|
+
// HTTP basic authentication
|
|
3329
|
+
if (config.auth) {
|
|
3330
|
+
const username = config.auth.username || '';
|
|
3331
|
+
const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';
|
|
3332
|
+
requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
const fullPath = buildFullPath(config.baseURL, config.url);
|
|
3336
|
+
|
|
3337
|
+
request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);
|
|
3338
|
+
|
|
3339
|
+
// Set the request timeout in MS
|
|
3340
|
+
request.timeout = config.timeout;
|
|
3341
|
+
|
|
3342
|
+
function onloadend() {
|
|
3343
|
+
if (!request) {
|
|
3344
|
+
return;
|
|
3345
|
+
}
|
|
3346
|
+
// Prepare the response
|
|
3347
|
+
const responseHeaders = AxiosHeaders$1.from(
|
|
3348
|
+
'getAllResponseHeaders' in request && request.getAllResponseHeaders()
|
|
3349
|
+
);
|
|
3350
|
+
const responseData = !responseType || responseType === 'text' || responseType === 'json' ?
|
|
3351
|
+
request.responseText : request.response;
|
|
3352
|
+
const response = {
|
|
3353
|
+
data: responseData,
|
|
3354
|
+
status: request.status,
|
|
3355
|
+
statusText: request.statusText,
|
|
3356
|
+
headers: responseHeaders,
|
|
3357
|
+
config,
|
|
3358
|
+
request
|
|
3359
|
+
};
|
|
3360
|
+
|
|
3361
|
+
settle(function _resolve(value) {
|
|
3362
|
+
resolve(value);
|
|
3363
|
+
done();
|
|
3364
|
+
}, function _reject(err) {
|
|
3365
|
+
reject(err);
|
|
3366
|
+
done();
|
|
3367
|
+
}, response);
|
|
3368
|
+
|
|
3369
|
+
// Clean up request
|
|
3370
|
+
request = null;
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
if ('onloadend' in request) {
|
|
3374
|
+
// Use onloadend if available
|
|
3375
|
+
request.onloadend = onloadend;
|
|
3376
|
+
} else {
|
|
3377
|
+
// Listen for ready state to emulate onloadend
|
|
3378
|
+
request.onreadystatechange = function handleLoad() {
|
|
3379
|
+
if (!request || request.readyState !== 4) {
|
|
3380
|
+
return;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
// The request errored out and we didn't get a response, this will be
|
|
3384
|
+
// handled by onerror instead
|
|
3385
|
+
// With one exception: request that using file: protocol, most browsers
|
|
3386
|
+
// will return status as 0 even though it's a successful request
|
|
3387
|
+
if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {
|
|
3388
|
+
return;
|
|
3389
|
+
}
|
|
3390
|
+
// readystate handler is calling before onerror or ontimeout handlers,
|
|
3391
|
+
// so we should call onloadend on the next 'tick'
|
|
3392
|
+
setTimeout(onloadend);
|
|
3393
|
+
};
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
// Handle browser request cancellation (as opposed to a manual cancellation)
|
|
3397
|
+
request.onabort = function handleAbort() {
|
|
3398
|
+
if (!request) {
|
|
3399
|
+
return;
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3402
|
+
reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));
|
|
3403
|
+
|
|
3404
|
+
// Clean up request
|
|
3405
|
+
request = null;
|
|
3406
|
+
};
|
|
3407
|
+
|
|
3408
|
+
// Handle low level network errors
|
|
3409
|
+
request.onerror = function handleError() {
|
|
3410
|
+
// Real errors are hidden from us by the browser
|
|
3411
|
+
// onerror should only fire if it's a network error
|
|
3412
|
+
reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request));
|
|
3413
|
+
|
|
3414
|
+
// Clean up request
|
|
3415
|
+
request = null;
|
|
3416
|
+
};
|
|
3417
|
+
|
|
3418
|
+
// Handle timeout
|
|
3419
|
+
request.ontimeout = function handleTimeout() {
|
|
3420
|
+
let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';
|
|
3421
|
+
const transitional = config.transitional || transitionalDefaults;
|
|
3422
|
+
if (config.timeoutErrorMessage) {
|
|
3423
|
+
timeoutErrorMessage = config.timeoutErrorMessage;
|
|
3424
|
+
}
|
|
3425
|
+
reject(new AxiosError(
|
|
3426
|
+
timeoutErrorMessage,
|
|
3427
|
+
transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,
|
|
3428
|
+
config,
|
|
3429
|
+
request));
|
|
3430
|
+
|
|
3431
|
+
// Clean up request
|
|
3432
|
+
request = null;
|
|
3433
|
+
};
|
|
3434
|
+
|
|
3435
|
+
// Add xsrf header
|
|
3436
|
+
// This is only done if running in a standard browser environment.
|
|
3437
|
+
// Specifically not if we're in a web worker, or react-native.
|
|
3438
|
+
if(platform.hasStandardBrowserEnv) {
|
|
3439
|
+
withXSRFToken && utils$1.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(config));
|
|
3440
|
+
|
|
3441
|
+
if (withXSRFToken || (withXSRFToken !== false && isURLSameOrigin(fullPath))) {
|
|
3442
|
+
// Add xsrf header
|
|
3443
|
+
const xsrfValue = config.xsrfHeaderName && config.xsrfCookieName && cookies.read(config.xsrfCookieName);
|
|
3444
|
+
|
|
3445
|
+
if (xsrfValue) {
|
|
3446
|
+
requestHeaders.set(config.xsrfHeaderName, xsrfValue);
|
|
3447
|
+
}
|
|
3448
|
+
}
|
|
3449
|
+
}
|
|
3450
|
+
|
|
3451
|
+
// Remove Content-Type if data is undefined
|
|
3452
|
+
requestData === undefined && requestHeaders.setContentType(null);
|
|
3453
|
+
|
|
3454
|
+
// Add headers to the request
|
|
3455
|
+
if ('setRequestHeader' in request) {
|
|
3456
|
+
utils$1.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {
|
|
3457
|
+
request.setRequestHeader(key, val);
|
|
3458
|
+
});
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
// Add withCredentials to request if needed
|
|
3462
|
+
if (!utils$1.isUndefined(config.withCredentials)) {
|
|
3463
|
+
request.withCredentials = !!config.withCredentials;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
// Add responseType to request if needed
|
|
3467
|
+
if (responseType && responseType !== 'json') {
|
|
3468
|
+
request.responseType = config.responseType;
|
|
3469
|
+
}
|
|
3470
|
+
|
|
3471
|
+
// Handle progress if needed
|
|
3472
|
+
if (typeof config.onDownloadProgress === 'function') {
|
|
3473
|
+
request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true));
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
// Not all browsers support upload events
|
|
3477
|
+
if (typeof config.onUploadProgress === 'function' && request.upload) {
|
|
3478
|
+
request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress));
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
if (config.cancelToken || config.signal) {
|
|
3482
|
+
// Handle cancellation
|
|
3483
|
+
// eslint-disable-next-line func-names
|
|
3484
|
+
onCanceled = cancel => {
|
|
3485
|
+
if (!request) {
|
|
3486
|
+
return;
|
|
3487
|
+
}
|
|
3488
|
+
reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);
|
|
3489
|
+
request.abort();
|
|
3490
|
+
request = null;
|
|
3491
|
+
};
|
|
3492
|
+
|
|
3493
|
+
config.cancelToken && config.cancelToken.subscribe(onCanceled);
|
|
3494
|
+
if (config.signal) {
|
|
3495
|
+
config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);
|
|
3496
|
+
}
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
const protocol = parseProtocol(fullPath);
|
|
3500
|
+
|
|
3501
|
+
if (protocol && platform.protocols.indexOf(protocol) === -1) {
|
|
3502
|
+
reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));
|
|
3503
|
+
return;
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
|
|
3507
|
+
// Send the request
|
|
3508
|
+
request.send(requestData || null);
|
|
3509
|
+
});
|
|
3510
|
+
};
|
|
3511
|
+
|
|
3512
|
+
const knownAdapters = {
|
|
3513
|
+
http: httpAdapter,
|
|
3514
|
+
xhr: xhrAdapter
|
|
3515
|
+
};
|
|
3516
|
+
|
|
3517
|
+
utils$1.forEach(knownAdapters, (fn, value) => {
|
|
3518
|
+
if (fn) {
|
|
3519
|
+
try {
|
|
3520
|
+
Object.defineProperty(fn, 'name', {value});
|
|
3521
|
+
} catch (e) {
|
|
3522
|
+
// eslint-disable-next-line no-empty
|
|
3523
|
+
}
|
|
3524
|
+
Object.defineProperty(fn, 'adapterName', {value});
|
|
3525
|
+
}
|
|
3526
|
+
});
|
|
3527
|
+
|
|
3528
|
+
const renderReason = (reason) => `- ${reason}`;
|
|
3529
|
+
|
|
3530
|
+
const isResolvedHandle = (adapter) => utils$1.isFunction(adapter) || adapter === null || adapter === false;
|
|
3531
|
+
|
|
3532
|
+
const adapters = {
|
|
3533
|
+
getAdapter: (adapters) => {
|
|
3534
|
+
adapters = utils$1.isArray(adapters) ? adapters : [adapters];
|
|
3535
|
+
|
|
3536
|
+
const {length} = adapters;
|
|
3537
|
+
let nameOrAdapter;
|
|
3538
|
+
let adapter;
|
|
3539
|
+
|
|
3540
|
+
const rejectedReasons = {};
|
|
3541
|
+
|
|
3542
|
+
for (let i = 0; i < length; i++) {
|
|
3543
|
+
nameOrAdapter = adapters[i];
|
|
3544
|
+
let id;
|
|
3545
|
+
|
|
3546
|
+
adapter = nameOrAdapter;
|
|
3547
|
+
|
|
3548
|
+
if (!isResolvedHandle(nameOrAdapter)) {
|
|
3549
|
+
adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
|
|
3550
|
+
|
|
3551
|
+
if (adapter === undefined) {
|
|
3552
|
+
throw new AxiosError(`Unknown adapter '${id}'`);
|
|
3553
|
+
}
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
if (adapter) {
|
|
3557
|
+
break;
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
rejectedReasons[id || '#' + i] = adapter;
|
|
3561
|
+
}
|
|
3562
|
+
|
|
3563
|
+
if (!adapter) {
|
|
3564
|
+
|
|
3565
|
+
const reasons = Object.entries(rejectedReasons)
|
|
3566
|
+
.map(([id, state]) => `adapter ${id} ` +
|
|
3567
|
+
(state === false ? 'is not supported by the environment' : 'is not available in the build')
|
|
3568
|
+
);
|
|
3569
|
+
|
|
3570
|
+
let s = length ?
|
|
3571
|
+
(reasons.length > 1 ? 'since :\n' + reasons.map(renderReason).join('\n') : ' ' + renderReason(reasons[0])) :
|
|
3572
|
+
'as no adapter specified';
|
|
3573
|
+
|
|
3574
|
+
throw new AxiosError(
|
|
3575
|
+
`There is no suitable adapter to dispatch the request ` + s,
|
|
3576
|
+
'ERR_NOT_SUPPORT'
|
|
3577
|
+
);
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3580
|
+
return adapter;
|
|
3581
|
+
},
|
|
3582
|
+
adapters: knownAdapters
|
|
3583
|
+
};
|
|
3584
|
+
|
|
3585
|
+
/**
|
|
3586
|
+
* Throws a `CanceledError` if cancellation has been requested.
|
|
3587
|
+
*
|
|
3588
|
+
* @param {Object} config The config that is to be used for the request
|
|
3589
|
+
*
|
|
3590
|
+
* @returns {void}
|
|
3591
|
+
*/
|
|
3592
|
+
function throwIfCancellationRequested(config) {
|
|
3593
|
+
if (config.cancelToken) {
|
|
3594
|
+
config.cancelToken.throwIfRequested();
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3597
|
+
if (config.signal && config.signal.aborted) {
|
|
3598
|
+
throw new CanceledError(null, config);
|
|
3599
|
+
}
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
/**
|
|
3603
|
+
* Dispatch a request to the server using the configured adapter.
|
|
3604
|
+
*
|
|
3605
|
+
* @param {object} config The config that is to be used for the request
|
|
3606
|
+
*
|
|
3607
|
+
* @returns {Promise} The Promise to be fulfilled
|
|
3608
|
+
*/
|
|
3609
|
+
function dispatchRequest(config) {
|
|
3610
|
+
throwIfCancellationRequested(config);
|
|
3611
|
+
|
|
3612
|
+
config.headers = AxiosHeaders$1.from(config.headers);
|
|
3613
|
+
|
|
3614
|
+
// Transform request data
|
|
3615
|
+
config.data = transformData.call(
|
|
3616
|
+
config,
|
|
3617
|
+
config.transformRequest
|
|
3618
|
+
);
|
|
3619
|
+
|
|
3620
|
+
if (['post', 'put', 'patch'].indexOf(config.method) !== -1) {
|
|
3621
|
+
config.headers.setContentType('application/x-www-form-urlencoded', false);
|
|
3622
|
+
}
|
|
3623
|
+
|
|
3624
|
+
const adapter = adapters.getAdapter(config.adapter || defaults$1.adapter);
|
|
3625
|
+
|
|
3626
|
+
return adapter(config).then(function onAdapterResolution(response) {
|
|
3627
|
+
throwIfCancellationRequested(config);
|
|
3628
|
+
|
|
3629
|
+
// Transform response data
|
|
3630
|
+
response.data = transformData.call(
|
|
3631
|
+
config,
|
|
3632
|
+
config.transformResponse,
|
|
3633
|
+
response
|
|
3634
|
+
);
|
|
3635
|
+
|
|
3636
|
+
response.headers = AxiosHeaders$1.from(response.headers);
|
|
3637
|
+
|
|
3638
|
+
return response;
|
|
3639
|
+
}, function onAdapterRejection(reason) {
|
|
3640
|
+
if (!isCancel(reason)) {
|
|
3641
|
+
throwIfCancellationRequested(config);
|
|
3642
|
+
|
|
3643
|
+
// Transform response data
|
|
3644
|
+
if (reason && reason.response) {
|
|
3645
|
+
reason.response.data = transformData.call(
|
|
3646
|
+
config,
|
|
3647
|
+
config.transformResponse,
|
|
3648
|
+
reason.response
|
|
3649
|
+
);
|
|
3650
|
+
reason.response.headers = AxiosHeaders$1.from(reason.response.headers);
|
|
3651
|
+
}
|
|
3652
|
+
}
|
|
3653
|
+
|
|
3654
|
+
return Promise.reject(reason);
|
|
3655
|
+
});
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? thing.toJSON() : thing;
|
|
3659
|
+
|
|
3660
|
+
/**
|
|
3661
|
+
* Config-specific merge-function which creates a new config-object
|
|
3662
|
+
* by merging two configuration objects together.
|
|
3663
|
+
*
|
|
3664
|
+
* @param {Object} config1
|
|
3665
|
+
* @param {Object} config2
|
|
3666
|
+
*
|
|
3667
|
+
* @returns {Object} New object resulting from merging config2 to config1
|
|
3668
|
+
*/
|
|
3669
|
+
function mergeConfig(config1, config2) {
|
|
3670
|
+
// eslint-disable-next-line no-param-reassign
|
|
3671
|
+
config2 = config2 || {};
|
|
3672
|
+
const config = {};
|
|
3673
|
+
|
|
3674
|
+
function getMergedValue(target, source, caseless) {
|
|
3675
|
+
if (utils$1.isPlainObject(target) && utils$1.isPlainObject(source)) {
|
|
3676
|
+
return utils$1.merge.call({caseless}, target, source);
|
|
3677
|
+
} else if (utils$1.isPlainObject(source)) {
|
|
3678
|
+
return utils$1.merge({}, source);
|
|
3679
|
+
} else if (utils$1.isArray(source)) {
|
|
3680
|
+
return source.slice();
|
|
3681
|
+
}
|
|
3682
|
+
return source;
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3685
|
+
// eslint-disable-next-line consistent-return
|
|
3686
|
+
function mergeDeepProperties(a, b, caseless) {
|
|
3687
|
+
if (!utils$1.isUndefined(b)) {
|
|
3688
|
+
return getMergedValue(a, b, caseless);
|
|
3689
|
+
} else if (!utils$1.isUndefined(a)) {
|
|
3690
|
+
return getMergedValue(undefined, a, caseless);
|
|
3691
|
+
}
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
// eslint-disable-next-line consistent-return
|
|
3695
|
+
function valueFromConfig2(a, b) {
|
|
3696
|
+
if (!utils$1.isUndefined(b)) {
|
|
3697
|
+
return getMergedValue(undefined, b);
|
|
3698
|
+
}
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
// eslint-disable-next-line consistent-return
|
|
3702
|
+
function defaultToConfig2(a, b) {
|
|
3703
|
+
if (!utils$1.isUndefined(b)) {
|
|
3704
|
+
return getMergedValue(undefined, b);
|
|
3705
|
+
} else if (!utils$1.isUndefined(a)) {
|
|
3706
|
+
return getMergedValue(undefined, a);
|
|
3707
|
+
}
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3710
|
+
// eslint-disable-next-line consistent-return
|
|
3711
|
+
function mergeDirectKeys(a, b, prop) {
|
|
3712
|
+
if (prop in config2) {
|
|
3713
|
+
return getMergedValue(a, b);
|
|
3714
|
+
} else if (prop in config1) {
|
|
3715
|
+
return getMergedValue(undefined, a);
|
|
3716
|
+
}
|
|
3717
|
+
}
|
|
3718
|
+
|
|
3719
|
+
const mergeMap = {
|
|
3720
|
+
url: valueFromConfig2,
|
|
3721
|
+
method: valueFromConfig2,
|
|
3722
|
+
data: valueFromConfig2,
|
|
3723
|
+
baseURL: defaultToConfig2,
|
|
3724
|
+
transformRequest: defaultToConfig2,
|
|
3725
|
+
transformResponse: defaultToConfig2,
|
|
3726
|
+
paramsSerializer: defaultToConfig2,
|
|
3727
|
+
timeout: defaultToConfig2,
|
|
3728
|
+
timeoutMessage: defaultToConfig2,
|
|
3729
|
+
withCredentials: defaultToConfig2,
|
|
3730
|
+
withXSRFToken: defaultToConfig2,
|
|
3731
|
+
adapter: defaultToConfig2,
|
|
3732
|
+
responseType: defaultToConfig2,
|
|
3733
|
+
xsrfCookieName: defaultToConfig2,
|
|
3734
|
+
xsrfHeaderName: defaultToConfig2,
|
|
3735
|
+
onUploadProgress: defaultToConfig2,
|
|
3736
|
+
onDownloadProgress: defaultToConfig2,
|
|
3737
|
+
decompress: defaultToConfig2,
|
|
3738
|
+
maxContentLength: defaultToConfig2,
|
|
3739
|
+
maxBodyLength: defaultToConfig2,
|
|
3740
|
+
beforeRedirect: defaultToConfig2,
|
|
3741
|
+
transport: defaultToConfig2,
|
|
3742
|
+
httpAgent: defaultToConfig2,
|
|
3743
|
+
httpsAgent: defaultToConfig2,
|
|
3744
|
+
cancelToken: defaultToConfig2,
|
|
3745
|
+
socketPath: defaultToConfig2,
|
|
3746
|
+
responseEncoding: defaultToConfig2,
|
|
3747
|
+
validateStatus: mergeDirectKeys,
|
|
3748
|
+
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
|
3749
|
+
};
|
|
3750
|
+
|
|
3751
|
+
utils$1.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
3752
|
+
const merge = mergeMap[prop] || mergeDeepProperties;
|
|
3753
|
+
const configValue = merge(config1[prop], config2[prop], prop);
|
|
3754
|
+
(utils$1.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
|
|
3755
|
+
});
|
|
3756
|
+
|
|
3757
|
+
return config;
|
|
3758
|
+
}
|
|
3759
|
+
|
|
3760
|
+
const validators$1 = {};
|
|
3761
|
+
|
|
3762
|
+
// eslint-disable-next-line func-names
|
|
3763
|
+
['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => {
|
|
3764
|
+
validators$1[type] = function validator(thing) {
|
|
3765
|
+
return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;
|
|
3766
|
+
};
|
|
3767
|
+
});
|
|
3768
|
+
|
|
3769
|
+
const deprecatedWarnings = {};
|
|
3770
|
+
|
|
3771
|
+
/**
|
|
3772
|
+
* Transitional option validator
|
|
3773
|
+
*
|
|
3774
|
+
* @param {function|boolean?} validator - set to false if the transitional option has been removed
|
|
3775
|
+
* @param {string?} version - deprecated version / removed since version
|
|
3776
|
+
* @param {string?} message - some message with additional info
|
|
3777
|
+
*
|
|
3778
|
+
* @returns {function}
|
|
3779
|
+
*/
|
|
3780
|
+
validators$1.transitional = function transitional(validator, version, message) {
|
|
3781
|
+
function formatMessage(opt, desc) {
|
|
3782
|
+
return '[Axios v' + VERSION + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : '');
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
// eslint-disable-next-line func-names
|
|
3786
|
+
return (value, opt, opts) => {
|
|
3787
|
+
if (validator === false) {
|
|
3788
|
+
throw new AxiosError(
|
|
3789
|
+
formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),
|
|
3790
|
+
AxiosError.ERR_DEPRECATED
|
|
3791
|
+
);
|
|
3792
|
+
}
|
|
3793
|
+
|
|
3794
|
+
if (version && !deprecatedWarnings[opt]) {
|
|
3795
|
+
deprecatedWarnings[opt] = true;
|
|
3796
|
+
// eslint-disable-next-line no-console
|
|
3797
|
+
console.warn(
|
|
3798
|
+
formatMessage(
|
|
3799
|
+
opt,
|
|
3800
|
+
' has been deprecated since v' + version + ' and will be removed in the near future'
|
|
3801
|
+
)
|
|
3802
|
+
);
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
return validator ? validator(value, opt, opts) : true;
|
|
3806
|
+
};
|
|
3807
|
+
};
|
|
3808
|
+
|
|
3809
|
+
/**
|
|
3810
|
+
* Assert object's properties type
|
|
3811
|
+
*
|
|
3812
|
+
* @param {object} options
|
|
3813
|
+
* @param {object} schema
|
|
3814
|
+
* @param {boolean?} allowUnknown
|
|
3815
|
+
*
|
|
3816
|
+
* @returns {object}
|
|
3817
|
+
*/
|
|
3818
|
+
|
|
3819
|
+
function assertOptions(options, schema, allowUnknown) {
|
|
3820
|
+
if (typeof options !== 'object') {
|
|
3821
|
+
throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);
|
|
3822
|
+
}
|
|
3823
|
+
const keys = Object.keys(options);
|
|
3824
|
+
let i = keys.length;
|
|
3825
|
+
while (i-- > 0) {
|
|
3826
|
+
const opt = keys[i];
|
|
3827
|
+
const validator = schema[opt];
|
|
3828
|
+
if (validator) {
|
|
3829
|
+
const value = options[opt];
|
|
3830
|
+
const result = value === undefined || validator(value, opt, options);
|
|
3831
|
+
if (result !== true) {
|
|
3832
|
+
throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);
|
|
3833
|
+
}
|
|
3834
|
+
continue;
|
|
3835
|
+
}
|
|
3836
|
+
if (allowUnknown !== true) {
|
|
3837
|
+
throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);
|
|
3838
|
+
}
|
|
3839
|
+
}
|
|
3840
|
+
}
|
|
3841
|
+
|
|
3842
|
+
const validator = {
|
|
3843
|
+
assertOptions,
|
|
3844
|
+
validators: validators$1
|
|
3845
|
+
};
|
|
3846
|
+
|
|
3847
|
+
const validators = validator.validators;
|
|
3848
|
+
|
|
3849
|
+
/**
|
|
3850
|
+
* Create a new instance of Axios
|
|
3851
|
+
*
|
|
3852
|
+
* @param {Object} instanceConfig The default config for the instance
|
|
3853
|
+
*
|
|
3854
|
+
* @return {Axios} A new instance of Axios
|
|
3855
|
+
*/
|
|
3856
|
+
class Axios {
|
|
3857
|
+
constructor(instanceConfig) {
|
|
3858
|
+
this.defaults = instanceConfig;
|
|
3859
|
+
this.interceptors = {
|
|
3860
|
+
request: new InterceptorManager$1(),
|
|
3861
|
+
response: new InterceptorManager$1()
|
|
3862
|
+
};
|
|
3863
|
+
}
|
|
3864
|
+
|
|
3865
|
+
/**
|
|
3866
|
+
* Dispatch a request
|
|
3867
|
+
*
|
|
3868
|
+
* @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)
|
|
3869
|
+
* @param {?Object} config
|
|
3870
|
+
*
|
|
3871
|
+
* @returns {Promise} The Promise to be fulfilled
|
|
3872
|
+
*/
|
|
3873
|
+
request(configOrUrl, config) {
|
|
3874
|
+
/*eslint no-param-reassign:0*/
|
|
3875
|
+
// Allow for axios('example/url'[, config]) a la fetch API
|
|
3876
|
+
if (typeof configOrUrl === 'string') {
|
|
3877
|
+
config = config || {};
|
|
3878
|
+
config.url = configOrUrl;
|
|
3879
|
+
} else {
|
|
3880
|
+
config = configOrUrl || {};
|
|
3881
|
+
}
|
|
3882
|
+
|
|
3883
|
+
config = mergeConfig(this.defaults, config);
|
|
3884
|
+
|
|
3885
|
+
const {transitional, paramsSerializer, headers} = config;
|
|
3886
|
+
|
|
3887
|
+
if (transitional !== undefined) {
|
|
3888
|
+
validator.assertOptions(transitional, {
|
|
3889
|
+
silentJSONParsing: validators.transitional(validators.boolean),
|
|
3890
|
+
forcedJSONParsing: validators.transitional(validators.boolean),
|
|
3891
|
+
clarifyTimeoutError: validators.transitional(validators.boolean)
|
|
3892
|
+
}, false);
|
|
3893
|
+
}
|
|
3894
|
+
|
|
3895
|
+
if (paramsSerializer != null) {
|
|
3896
|
+
if (utils$1.isFunction(paramsSerializer)) {
|
|
3897
|
+
config.paramsSerializer = {
|
|
3898
|
+
serialize: paramsSerializer
|
|
3899
|
+
};
|
|
3900
|
+
} else {
|
|
3901
|
+
validator.assertOptions(paramsSerializer, {
|
|
3902
|
+
encode: validators.function,
|
|
3903
|
+
serialize: validators.function
|
|
3904
|
+
}, true);
|
|
3905
|
+
}
|
|
3906
|
+
}
|
|
3907
|
+
|
|
3908
|
+
// Set config.method
|
|
3909
|
+
config.method = (config.method || this.defaults.method || 'get').toLowerCase();
|
|
3910
|
+
|
|
3911
|
+
// Flatten headers
|
|
3912
|
+
let contextHeaders = headers && utils$1.merge(
|
|
3913
|
+
headers.common,
|
|
3914
|
+
headers[config.method]
|
|
3915
|
+
);
|
|
3916
|
+
|
|
3917
|
+
headers && utils$1.forEach(
|
|
3918
|
+
['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],
|
|
3919
|
+
(method) => {
|
|
3920
|
+
delete headers[method];
|
|
3921
|
+
}
|
|
3922
|
+
);
|
|
3923
|
+
|
|
3924
|
+
config.headers = AxiosHeaders$1.concat(contextHeaders, headers);
|
|
3925
|
+
|
|
3926
|
+
// filter out skipped interceptors
|
|
3927
|
+
const requestInterceptorChain = [];
|
|
3928
|
+
let synchronousRequestInterceptors = true;
|
|
3929
|
+
this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
|
|
3930
|
+
if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {
|
|
3931
|
+
return;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
|
|
3935
|
+
|
|
3936
|
+
requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
|
|
3937
|
+
});
|
|
3938
|
+
|
|
3939
|
+
const responseInterceptorChain = [];
|
|
3940
|
+
this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
|
|
3941
|
+
responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
|
|
3942
|
+
});
|
|
3943
|
+
|
|
3944
|
+
let promise;
|
|
3945
|
+
let i = 0;
|
|
3946
|
+
let len;
|
|
3947
|
+
|
|
3948
|
+
if (!synchronousRequestInterceptors) {
|
|
3949
|
+
const chain = [dispatchRequest.bind(this), undefined];
|
|
3950
|
+
chain.unshift.apply(chain, requestInterceptorChain);
|
|
3951
|
+
chain.push.apply(chain, responseInterceptorChain);
|
|
3952
|
+
len = chain.length;
|
|
3953
|
+
|
|
3954
|
+
promise = Promise.resolve(config);
|
|
3955
|
+
|
|
3956
|
+
while (i < len) {
|
|
3957
|
+
promise = promise.then(chain[i++], chain[i++]);
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
return promise;
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
len = requestInterceptorChain.length;
|
|
3964
|
+
|
|
3965
|
+
let newConfig = config;
|
|
3966
|
+
|
|
3967
|
+
i = 0;
|
|
3968
|
+
|
|
3969
|
+
while (i < len) {
|
|
3970
|
+
const onFulfilled = requestInterceptorChain[i++];
|
|
3971
|
+
const onRejected = requestInterceptorChain[i++];
|
|
3972
|
+
try {
|
|
3973
|
+
newConfig = onFulfilled(newConfig);
|
|
3974
|
+
} catch (error) {
|
|
3975
|
+
onRejected.call(this, error);
|
|
3976
|
+
break;
|
|
3977
|
+
}
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
try {
|
|
3981
|
+
promise = dispatchRequest.call(this, newConfig);
|
|
3982
|
+
} catch (error) {
|
|
3983
|
+
return Promise.reject(error);
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
i = 0;
|
|
3987
|
+
len = responseInterceptorChain.length;
|
|
3988
|
+
|
|
3989
|
+
while (i < len) {
|
|
3990
|
+
promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
return promise;
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
getUri(config) {
|
|
3997
|
+
config = mergeConfig(this.defaults, config);
|
|
3998
|
+
const fullPath = buildFullPath(config.baseURL, config.url);
|
|
3999
|
+
return buildURL(fullPath, config.params, config.paramsSerializer);
|
|
4000
|
+
}
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
// Provide aliases for supported request methods
|
|
4004
|
+
utils$1.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {
|
|
4005
|
+
/*eslint func-names:0*/
|
|
4006
|
+
Axios.prototype[method] = function(url, config) {
|
|
4007
|
+
return this.request(mergeConfig(config || {}, {
|
|
4008
|
+
method,
|
|
4009
|
+
url,
|
|
4010
|
+
data: (config || {}).data
|
|
4011
|
+
}));
|
|
4012
|
+
};
|
|
4013
|
+
});
|
|
4014
|
+
|
|
4015
|
+
utils$1.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
4016
|
+
/*eslint func-names:0*/
|
|
4017
|
+
|
|
4018
|
+
function generateHTTPMethod(isForm) {
|
|
4019
|
+
return function httpMethod(url, data, config) {
|
|
4020
|
+
return this.request(mergeConfig(config || {}, {
|
|
4021
|
+
method,
|
|
4022
|
+
headers: isForm ? {
|
|
4023
|
+
'Content-Type': 'multipart/form-data'
|
|
4024
|
+
} : {},
|
|
4025
|
+
url,
|
|
4026
|
+
data
|
|
4027
|
+
}));
|
|
4028
|
+
};
|
|
4029
|
+
}
|
|
4030
|
+
|
|
4031
|
+
Axios.prototype[method] = generateHTTPMethod();
|
|
4032
|
+
|
|
4033
|
+
Axios.prototype[method + 'Form'] = generateHTTPMethod(true);
|
|
4034
|
+
});
|
|
4035
|
+
|
|
4036
|
+
const Axios$1 = Axios;
|
|
4037
|
+
|
|
4038
|
+
/**
|
|
4039
|
+
* A `CancelToken` is an object that can be used to request cancellation of an operation.
|
|
4040
|
+
*
|
|
4041
|
+
* @param {Function} executor The executor function.
|
|
4042
|
+
*
|
|
4043
|
+
* @returns {CancelToken}
|
|
4044
|
+
*/
|
|
4045
|
+
class CancelToken {
|
|
4046
|
+
constructor(executor) {
|
|
4047
|
+
if (typeof executor !== 'function') {
|
|
4048
|
+
throw new TypeError('executor must be a function.');
|
|
4049
|
+
}
|
|
4050
|
+
|
|
4051
|
+
let resolvePromise;
|
|
4052
|
+
|
|
4053
|
+
this.promise = new Promise(function promiseExecutor(resolve) {
|
|
4054
|
+
resolvePromise = resolve;
|
|
4055
|
+
});
|
|
4056
|
+
|
|
4057
|
+
const token = this;
|
|
4058
|
+
|
|
4059
|
+
// eslint-disable-next-line func-names
|
|
4060
|
+
this.promise.then(cancel => {
|
|
4061
|
+
if (!token._listeners) return;
|
|
4062
|
+
|
|
4063
|
+
let i = token._listeners.length;
|
|
4064
|
+
|
|
4065
|
+
while (i-- > 0) {
|
|
4066
|
+
token._listeners[i](cancel);
|
|
4067
|
+
}
|
|
4068
|
+
token._listeners = null;
|
|
4069
|
+
});
|
|
4070
|
+
|
|
4071
|
+
// eslint-disable-next-line func-names
|
|
4072
|
+
this.promise.then = onfulfilled => {
|
|
4073
|
+
let _resolve;
|
|
4074
|
+
// eslint-disable-next-line func-names
|
|
4075
|
+
const promise = new Promise(resolve => {
|
|
4076
|
+
token.subscribe(resolve);
|
|
4077
|
+
_resolve = resolve;
|
|
4078
|
+
}).then(onfulfilled);
|
|
4079
|
+
|
|
4080
|
+
promise.cancel = function reject() {
|
|
4081
|
+
token.unsubscribe(_resolve);
|
|
4082
|
+
};
|
|
4083
|
+
|
|
4084
|
+
return promise;
|
|
4085
|
+
};
|
|
4086
|
+
|
|
4087
|
+
executor(function cancel(message, config, request) {
|
|
4088
|
+
if (token.reason) {
|
|
4089
|
+
// Cancellation has already been requested
|
|
4090
|
+
return;
|
|
4091
|
+
}
|
|
4092
|
+
|
|
4093
|
+
token.reason = new CanceledError(message, config, request);
|
|
4094
|
+
resolvePromise(token.reason);
|
|
4095
|
+
});
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4098
|
+
/**
|
|
4099
|
+
* Throws a `CanceledError` if cancellation has been requested.
|
|
4100
|
+
*/
|
|
4101
|
+
throwIfRequested() {
|
|
4102
|
+
if (this.reason) {
|
|
4103
|
+
throw this.reason;
|
|
4104
|
+
}
|
|
4105
|
+
}
|
|
4106
|
+
|
|
4107
|
+
/**
|
|
4108
|
+
* Subscribe to the cancel signal
|
|
4109
|
+
*/
|
|
4110
|
+
|
|
4111
|
+
subscribe(listener) {
|
|
4112
|
+
if (this.reason) {
|
|
4113
|
+
listener(this.reason);
|
|
4114
|
+
return;
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4117
|
+
if (this._listeners) {
|
|
4118
|
+
this._listeners.push(listener);
|
|
4119
|
+
} else {
|
|
4120
|
+
this._listeners = [listener];
|
|
4121
|
+
}
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
/**
|
|
4125
|
+
* Unsubscribe from the cancel signal
|
|
4126
|
+
*/
|
|
4127
|
+
|
|
4128
|
+
unsubscribe(listener) {
|
|
4129
|
+
if (!this._listeners) {
|
|
4130
|
+
return;
|
|
4131
|
+
}
|
|
4132
|
+
const index = this._listeners.indexOf(listener);
|
|
4133
|
+
if (index !== -1) {
|
|
4134
|
+
this._listeners.splice(index, 1);
|
|
4135
|
+
}
|
|
4136
|
+
}
|
|
4137
|
+
|
|
4138
|
+
/**
|
|
4139
|
+
* Returns an object that contains a new `CancelToken` and a function that, when called,
|
|
4140
|
+
* cancels the `CancelToken`.
|
|
4141
|
+
*/
|
|
4142
|
+
static source() {
|
|
4143
|
+
let cancel;
|
|
4144
|
+
const token = new CancelToken(function executor(c) {
|
|
4145
|
+
cancel = c;
|
|
4146
|
+
});
|
|
4147
|
+
return {
|
|
4148
|
+
token,
|
|
4149
|
+
cancel
|
|
4150
|
+
};
|
|
4151
|
+
}
|
|
4152
|
+
}
|
|
4153
|
+
|
|
4154
|
+
const CancelToken$1 = CancelToken;
|
|
4155
|
+
|
|
4156
|
+
/**
|
|
4157
|
+
* Syntactic sugar for invoking a function and expanding an array for arguments.
|
|
4158
|
+
*
|
|
4159
|
+
* Common use case would be to use `Function.prototype.apply`.
|
|
4160
|
+
*
|
|
4161
|
+
* ```js
|
|
4162
|
+
* function f(x, y, z) {}
|
|
4163
|
+
* var args = [1, 2, 3];
|
|
4164
|
+
* f.apply(null, args);
|
|
4165
|
+
* ```
|
|
4166
|
+
*
|
|
4167
|
+
* With `spread` this example can be re-written.
|
|
4168
|
+
*
|
|
4169
|
+
* ```js
|
|
4170
|
+
* spread(function(x, y, z) {})([1, 2, 3]);
|
|
4171
|
+
* ```
|
|
4172
|
+
*
|
|
4173
|
+
* @param {Function} callback
|
|
4174
|
+
*
|
|
4175
|
+
* @returns {Function}
|
|
4176
|
+
*/
|
|
4177
|
+
function spread(callback) {
|
|
4178
|
+
return function wrap(arr) {
|
|
4179
|
+
return callback.apply(null, arr);
|
|
4180
|
+
};
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
/**
|
|
4184
|
+
* Determines whether the payload is an error thrown by Axios
|
|
4185
|
+
*
|
|
4186
|
+
* @param {*} payload The value to test
|
|
4187
|
+
*
|
|
4188
|
+
* @returns {boolean} True if the payload is an error thrown by Axios, otherwise false
|
|
4189
|
+
*/
|
|
4190
|
+
function isAxiosError(payload) {
|
|
4191
|
+
return utils$1.isObject(payload) && (payload.isAxiosError === true);
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
const HttpStatusCode = {
|
|
4195
|
+
Continue: 100,
|
|
4196
|
+
SwitchingProtocols: 101,
|
|
4197
|
+
Processing: 102,
|
|
4198
|
+
EarlyHints: 103,
|
|
4199
|
+
Ok: 200,
|
|
4200
|
+
Created: 201,
|
|
4201
|
+
Accepted: 202,
|
|
4202
|
+
NonAuthoritativeInformation: 203,
|
|
4203
|
+
NoContent: 204,
|
|
4204
|
+
ResetContent: 205,
|
|
4205
|
+
PartialContent: 206,
|
|
4206
|
+
MultiStatus: 207,
|
|
4207
|
+
AlreadyReported: 208,
|
|
4208
|
+
ImUsed: 226,
|
|
4209
|
+
MultipleChoices: 300,
|
|
4210
|
+
MovedPermanently: 301,
|
|
4211
|
+
Found: 302,
|
|
4212
|
+
SeeOther: 303,
|
|
4213
|
+
NotModified: 304,
|
|
4214
|
+
UseProxy: 305,
|
|
4215
|
+
Unused: 306,
|
|
4216
|
+
TemporaryRedirect: 307,
|
|
4217
|
+
PermanentRedirect: 308,
|
|
4218
|
+
BadRequest: 400,
|
|
4219
|
+
Unauthorized: 401,
|
|
4220
|
+
PaymentRequired: 402,
|
|
4221
|
+
Forbidden: 403,
|
|
4222
|
+
NotFound: 404,
|
|
4223
|
+
MethodNotAllowed: 405,
|
|
4224
|
+
NotAcceptable: 406,
|
|
4225
|
+
ProxyAuthenticationRequired: 407,
|
|
4226
|
+
RequestTimeout: 408,
|
|
4227
|
+
Conflict: 409,
|
|
4228
|
+
Gone: 410,
|
|
4229
|
+
LengthRequired: 411,
|
|
4230
|
+
PreconditionFailed: 412,
|
|
4231
|
+
PayloadTooLarge: 413,
|
|
4232
|
+
UriTooLong: 414,
|
|
4233
|
+
UnsupportedMediaType: 415,
|
|
4234
|
+
RangeNotSatisfiable: 416,
|
|
4235
|
+
ExpectationFailed: 417,
|
|
4236
|
+
ImATeapot: 418,
|
|
4237
|
+
MisdirectedRequest: 421,
|
|
4238
|
+
UnprocessableEntity: 422,
|
|
4239
|
+
Locked: 423,
|
|
4240
|
+
FailedDependency: 424,
|
|
4241
|
+
TooEarly: 425,
|
|
4242
|
+
UpgradeRequired: 426,
|
|
4243
|
+
PreconditionRequired: 428,
|
|
4244
|
+
TooManyRequests: 429,
|
|
4245
|
+
RequestHeaderFieldsTooLarge: 431,
|
|
4246
|
+
UnavailableForLegalReasons: 451,
|
|
4247
|
+
InternalServerError: 500,
|
|
4248
|
+
NotImplemented: 501,
|
|
4249
|
+
BadGateway: 502,
|
|
4250
|
+
ServiceUnavailable: 503,
|
|
4251
|
+
GatewayTimeout: 504,
|
|
4252
|
+
HttpVersionNotSupported: 505,
|
|
4253
|
+
VariantAlsoNegotiates: 506,
|
|
4254
|
+
InsufficientStorage: 507,
|
|
4255
|
+
LoopDetected: 508,
|
|
4256
|
+
NotExtended: 510,
|
|
4257
|
+
NetworkAuthenticationRequired: 511,
|
|
4258
|
+
};
|
|
4259
|
+
|
|
4260
|
+
Object.entries(HttpStatusCode).forEach(([key, value]) => {
|
|
4261
|
+
HttpStatusCode[value] = key;
|
|
4262
|
+
});
|
|
4263
|
+
|
|
4264
|
+
const HttpStatusCode$1 = HttpStatusCode;
|
|
4265
|
+
|
|
4266
|
+
/**
|
|
4267
|
+
* Create an instance of Axios
|
|
4268
|
+
*
|
|
4269
|
+
* @param {Object} defaultConfig The default config for the instance
|
|
4270
|
+
*
|
|
4271
|
+
* @returns {Axios} A new instance of Axios
|
|
4272
|
+
*/
|
|
4273
|
+
function createInstance(defaultConfig) {
|
|
4274
|
+
const context = new Axios$1(defaultConfig);
|
|
4275
|
+
const instance = bind(Axios$1.prototype.request, context);
|
|
4276
|
+
|
|
4277
|
+
// Copy axios.prototype to instance
|
|
4278
|
+
utils$1.extend(instance, Axios$1.prototype, context, {allOwnKeys: true});
|
|
4279
|
+
|
|
4280
|
+
// Copy context to instance
|
|
4281
|
+
utils$1.extend(instance, context, null, {allOwnKeys: true});
|
|
4282
|
+
|
|
4283
|
+
// Factory for creating new instances
|
|
4284
|
+
instance.create = function create(instanceConfig) {
|
|
4285
|
+
return createInstance(mergeConfig(defaultConfig, instanceConfig));
|
|
4286
|
+
};
|
|
4287
|
+
|
|
4288
|
+
return instance;
|
|
4289
|
+
}
|
|
4290
|
+
|
|
4291
|
+
// Create the default instance to be exported
|
|
4292
|
+
const axios = createInstance(defaults$1);
|
|
4293
|
+
|
|
4294
|
+
// Expose Axios class to allow class inheritance
|
|
4295
|
+
axios.Axios = Axios$1;
|
|
4296
|
+
|
|
4297
|
+
// Expose Cancel & CancelToken
|
|
4298
|
+
axios.CanceledError = CanceledError;
|
|
4299
|
+
axios.CancelToken = CancelToken$1;
|
|
4300
|
+
axios.isCancel = isCancel;
|
|
4301
|
+
axios.VERSION = VERSION;
|
|
4302
|
+
axios.toFormData = toFormData;
|
|
4303
|
+
|
|
4304
|
+
// Expose AxiosError class
|
|
4305
|
+
axios.AxiosError = AxiosError;
|
|
4306
|
+
|
|
4307
|
+
// alias for CanceledError for backward compatibility
|
|
4308
|
+
axios.Cancel = axios.CanceledError;
|
|
4309
|
+
|
|
4310
|
+
// Expose all/spread
|
|
4311
|
+
axios.all = function all(promises) {
|
|
4312
|
+
return Promise.all(promises);
|
|
4313
|
+
};
|
|
4314
|
+
|
|
4315
|
+
axios.spread = spread;
|
|
4316
|
+
|
|
4317
|
+
// Expose isAxiosError
|
|
4318
|
+
axios.isAxiosError = isAxiosError;
|
|
4319
|
+
|
|
4320
|
+
// Expose mergeConfig
|
|
4321
|
+
axios.mergeConfig = mergeConfig;
|
|
4322
|
+
|
|
4323
|
+
axios.AxiosHeaders = AxiosHeaders$1;
|
|
4324
|
+
|
|
4325
|
+
axios.formToJSON = thing => formDataToJSON(utils$1.isHTMLForm(thing) ? new FormData(thing) : thing);
|
|
4326
|
+
|
|
4327
|
+
axios.getAdapter = adapters.getAdapter;
|
|
4328
|
+
|
|
4329
|
+
axios.HttpStatusCode = HttpStatusCode$1;
|
|
4330
|
+
|
|
4331
|
+
axios.default = axios;
|
|
4332
|
+
|
|
4333
|
+
module.exports = axios;
|
|
4334
|
+
//# sourceMappingURL=axios.cjs.map
|