@bifravst/http-api-mock 1.1.0
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/LICENSE +29 -0
- package/README.md +40 -0
- package/cdk/App.ts +26 -0
- package/cdk/Stack.ts +65 -0
- package/cdk/http-api-mock.ts +27 -0
- package/cdk/resources/HttpApiMock.ts +104 -0
- package/cdk/resources/checkMatchingQueryParams.spec.ts +67 -0
- package/cdk/resources/checkMatchingQueryParams.ts +40 -0
- package/cdk/resources/http-api-mock-lambda.ts +158 -0
- package/cdk/resources/splitMockResponse.spec.ts +17 -0
- package/cdk/resources/splitMockResponse.ts +25 -0
- package/cli.js +5 -0
- package/dist/cdk/App.d.ts +11 -0
- package/dist/cdk/App.js +12 -0
- package/dist/cdk/Stack.d.ts +19 -0
- package/dist/cdk/Stack.js +40 -0
- package/dist/cdk/http-api-mock.d.ts +1 -0
- package/dist/cdk/http-api-mock.js +20 -0
- package/dist/cdk/resources/HttpApiMock.d.ts +14 -0
- package/dist/cdk/resources/HttpApiMock.js +72 -0
- package/dist/cdk/resources/checkMatchingQueryParams.d.ts +5 -0
- package/dist/cdk/resources/checkMatchingQueryParams.js +33 -0
- package/dist/cdk/resources/checkMatchingQueryParams.spec.d.ts +1 -0
- package/dist/cdk/resources/checkMatchingQueryParams.spec.js +57 -0
- package/dist/cdk/resources/http-api-mock-lambda.d.ts +2 -0
- package/dist/cdk/resources/http-api-mock-lambda.js +110 -0
- package/dist/cdk/resources/splitMockResponse.d.ts +4 -0
- package/dist/cdk/resources/splitMockResponse.js +20 -0
- package/dist/cdk/resources/splitMockResponse.spec.d.ts +1 -0
- package/dist/cdk/resources/splitMockResponse.spec.js +13 -0
- package/dist/e2e.spec.d.ts +1 -0
- package/dist/e2e.spec.js +51 -0
- package/dist/lambdas/httpApiMock.zip +0 -0
- package/dist/layers/testResources/nodejs/node_modules/.package-lock.json +1539 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/LICENSE +202 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/README.md +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/Key.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/Key.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/Key.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/MsWindow.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/index.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/build/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +142 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/index.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js +218 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.js +284 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/package.json +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/src/Key.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +88 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/src/index.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/ie11-detection/tsconfig.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +88 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/constants.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/constants.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/constants.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js +80 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/index.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +142 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/index.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js +218 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.js +284 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +108 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/src/index.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-browser/tsconfig.json +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +86 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/README.md +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/RawSha256.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/RawSha256.js +124 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/RawSha256.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/constants.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/constants.js +98 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/constants.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/jsSha256.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/jsSha256.js +85 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/jsSha256.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js +322 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +142 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/index.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js +218 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.js +284 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/package.json +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/sha256-js/tsconfig.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/build/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/build/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +142 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/index.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js +218 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.js +284 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/package.json +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/README.md +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/convertToBuffer.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/convertToBuffer.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/index.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/isEmptyData.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/isEmptyData.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/numToUint8.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/numToUint8.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js +218 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/node_modules/tslib/tslib.js +284 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/package.json +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-crypto/util/tsconfig.json +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/LICENSE +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/README.md +124 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.js +89 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.js +107 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.d.ts +50 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.js +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/package.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.js +166 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.d.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.js +85 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.js +74 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.js +104 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.d.ts +50 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.js +68 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/package.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.js +155 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.d.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/lib/esm/version.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/commons/package.json +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/LICENSE +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/README.md +120 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/Metrics.d.ts +400 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/Metrics.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/Metrics.js +617 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/config/EnvironmentVariablesService.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/config/EnvironmentVariablesService.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/constants.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/constants.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/constants.js +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/index.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/index.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/middleware/middy.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/middleware/middy.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/middleware/middy.js +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/package.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/ConfigServiceInterface.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/ConfigServiceInterface.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/ConfigServiceInterface.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/Metrics.d.ts +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/Metrics.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/Metrics.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/MetricsInterface.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/MetricsInterface.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/MetricsInterface.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/index.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/cjs/types/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/Metrics.d.ts +400 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/Metrics.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/Metrics.js +614 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/config/EnvironmentVariablesService.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/config/EnvironmentVariablesService.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/constants.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/constants.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/constants.js +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/index.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/middleware/middy.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/middleware/middy.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/middleware/middy.js +70 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/package.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/ConfigServiceInterface.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/ConfigServiceInterface.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/ConfigServiceInterface.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/Metrics.d.ts +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/Metrics.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/Metrics.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/MetricsInterface.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/MetricsInterface.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/MetricsInterface.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/index.d.ts.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/lib/esm/types/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-lambda-powertools/metrics/package.json +75 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/README.md +678 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-cjs/index.js +5426 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.browser.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDB.js +121 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDBClient.js +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchExecuteStatementCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchGetItemCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchWriteItemCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateBackupCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateGlobalTableCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateTableCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteBackupCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteItemCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteResourcePolicyCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteTableCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeBackupCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContinuousBackupsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContributorInsightsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeEndpointsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeExportCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableSettingsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeImportCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeLimitsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTimeToLiveCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteStatementCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteTransactionCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExportTableToPointInTimeCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetItemCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetResourcePolicyCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ImportTableCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListBackupsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListContributorInsightsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListExportsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListGlobalTablesCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListImportsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTablesCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTagsOfResourceCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutItemCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutResourcePolicyCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/QueryCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableFromBackupCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableToPointInTimeCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ScanCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TagResourceCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactGetItemsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactWriteItemsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContinuousBackupsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContributorInsightsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableSettingsCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateItemCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTimeToLiveCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/index.js +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/ruleset.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/extensionConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/models/DynamoDBServiceException.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/models/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/models/models_0.js +652 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/Interfaces.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListContributorInsightsPaginator.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListExportsPaginator.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListImportsPaginator.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListTablesPaginator.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/QueryPaginator.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ScanPaginator.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/protocols/Aws_json1_0.js +3072 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.browser.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.js +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.native.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.shared.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeExtensions.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableExists.js +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableNotExists.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDB.d.ts +433 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDBClient.d.ts +251 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +214 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchGetItemCommand.d.ts +340 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchWriteItemCommand.d.ts +378 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateBackupCommand.d.ts +133 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateGlobalTableCommand.d.ts +184 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateTableCommand.d.ts +374 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteBackupCommand.d.ts +172 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteItemCommand.d.ts +271 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteResourcePolicyCommand.d.ts +104 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteTableCommand.d.ts +271 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeBackupCommand.d.ts +152 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +86 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContributorInsightsCommand.d.ts +78 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeEndpointsCommand.d.ts +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeExportCommand.d.ts +107 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableCommand.d.ts +109 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +171 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeImportCommand.d.ts +140 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeLimitsCommand.d.ts +151 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableCommand.d.ts +263 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +153 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTimeToLiveCommand.d.ts +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +99 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +101 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +229 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +520 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +134 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetItemCommand.d.ts +243 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetResourcePolicyCommand.d.ts +90 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ImportTableCommand.d.ts +224 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListBackupsCommand.d.ts +92 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListContributorInsightsCommand.d.ts +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListExportsCommand.d.ts +87 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListGlobalTablesCommand.d.ts +88 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListImportsCommand.d.ts +93 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand.d.ts +89 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTagsOfResourceCommand.d.ts +78 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutItemCommand.d.ts +286 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutResourcePolicyCommand.d.ts +104 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/QueryCommand.d.ts +317 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableFromBackupCommand.d.ts +301 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +333 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ScanCommand.d.ts +315 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TagResourceCommand.d.ts +98 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +476 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +645 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UntagResourceCommand.d.ts +93 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +92 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContributorInsightsCommand.d.ts +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableCommand.d.ts +159 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +265 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateItemCommand.d.ts +298 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +98 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableCommand.d.ts +395 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +222 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTimeToLiveCommand.d.ts +120 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/index.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/index.d.ts +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/models/DynamoDBServiceException.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/models/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +10550 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListContributorInsightsPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListImportsPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/QueryPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ScanPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/protocols/Aws_json1_0.d.ts +515 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +1000 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +463 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/index.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +1889 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +686 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +84 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableExists.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableNotExists.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-dynamodb/package.json +105 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/README.md +252 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +68 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +630 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/index.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +75 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +215 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +184 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +82 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +83 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +85 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +82 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +266 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +139 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +93 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +107 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +107 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso/package.json +99 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/README.md +274 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js +64 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/credentialDefaultProvider.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +1024 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/auth/httpAuthSchemeProvider.js +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/credentialDefaultProvider.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/extensionConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +217 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +409 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeExtensions.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +75 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +212 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +162 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenWithIAMCommand.d.ts +244 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +108 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +111 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/credentialDefaultProvider.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +50 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +734 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +144 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +110 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +108 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sso-oidc/package.json +103 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/README.md +273 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/credentialDefaultProvider.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1457 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/STS.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/credentialDefaultProvider.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/extensionConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/index.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +130 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +885 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +182 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthSchemeProvider.d.ts +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +257 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +282 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +291 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +115 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +75 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +116 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +230 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +154 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/credentialDefaultProvider.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1213 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +74 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +54 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +143 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +165 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +54 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +206 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +116 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +117 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +110 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/client-sts/package.json +104 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/CHANGELOG.md +269 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/README.md +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/api-extractor.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/client/emitWarningIfUnsupportedVersion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/client/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getDateHeader.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/isClockSkewed.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/index.js +446 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/protocols/coercing-serializers.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/protocols/common.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/protocols/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/protocols/json/awsExpectUnion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/protocols/json/parseJsonBody.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-cjs/protocols/xml/parseXmlBody.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/client/emitWarningIfUnsupportedVersion.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/client/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +82 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/protocols/coercing-serializers.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/protocols/common.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/protocols/index.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/protocols/json/awsExpectUnion.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/protocols/json/parseJsonBody.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-es/protocols/xml/parseXmlBody.js +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/client/emitWarningIfUnsupportedVersion.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/client/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +95 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/protocols/coercing-serializers.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/protocols/common.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/protocols/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/protocols/json/awsExpectUnion.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/protocols/json/parseJsonBody.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/protocols/xml/parseXmlBody.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/client/emitWarningIfUnsupportedVersion.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/client/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +55 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/coercing-serializers.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/common.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/json/awsExpectUnion.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/json/parseJsonBody.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/xml/parseXmlBody.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/integ/request-handlers/request-handlers.integ.spec.ts +158 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/jest.config.integ.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/jest.config.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/package.json +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/scripts/lint.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/client/emitWarningIfUnsupportedVersion.spec.ts +70 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/client/emitWarningIfUnsupportedVersion.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/client/index.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.spec.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.ts +134 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/index.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.ts +244 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/index.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getDateHeader.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.spec.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.spec.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/index.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.spec.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/index.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/protocols/coercing-serializers.spec.ts +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/protocols/coercing-serializers.ts +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/protocols/common.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/protocols/index.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/protocols/json/awsExpectUnion.spec.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/protocols/json/awsExpectUnion.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/protocols/json/parseJsonBody.ts +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/src/protocols/xml/parseXmlBody.ts +64 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/tsconfig.cjs.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/tsconfig.cjs.tsbuildinfo +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/tsconfig.es.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/tsconfig.es.tsbuildinfo +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/tsconfig.types.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/core/tsconfig.types.tsbuildinfo +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/dist-cjs/fromEnv.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +68 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-env/package.json +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +65 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-http/package.json +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/fromIni.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +211 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/loadSts.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveAssumeRoleCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveCredentialSource.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProcessCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProfileData.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveSsoCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveStaticCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveWebIdentityCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/loadSts.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/loadSts.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/loadSts.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-ini/package.json +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-cjs/defaultProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +125 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-cjs/remoteProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-node/package.json +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-cjs/ProcessCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-cjs/fromProcess.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-cjs/getValidatedProcessCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +98 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-cjs/resolveProcessCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-process/package.json +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/fromSSO.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/isSsoProfile.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/resolveSSOCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/validateSsoProfile.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-sso/package.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +50 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/loadSts.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/loadSts.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/loadSts.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/loadSts.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/credential-provider-web-identity/package.json +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/README.md +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-cjs/Endpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-cjs/EndpointCache.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-cjs/index.js +137 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-es/Endpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-es/EndpointCache.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-types/Endpoint.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-types/EndpointCache.d.ts +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-types/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/Endpoint.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/EndpointCache.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/endpoint-cache/package.json +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/configurations.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/endpointDiscoveryMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/getCacheKey.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/getEndpointDiscoveryPlugin.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/index.js +227 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/resolveEndpointDiscoveryConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/updateDiscoveredEndpointInCache.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/configurations.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/endpointDiscoveryMiddleware.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getCacheKey.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getEndpointDiscoveryPlugin.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/resolveEndpointDiscoveryConfig.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/updateDiscoveredEndpointInCache.js +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/configurations.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/endpointDiscoveryMiddleware.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getCacheKey.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getEndpointDiscoveryPlugin.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/resolveEndpointDiscoveryConfig.d.ts +54 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/configurations.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/endpointDiscoveryMiddleware.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getCacheKey.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getEndpointDiscoveryPlugin.d.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/resolveEndpointDiscoveryConfig.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/updateDiscoveredEndpointInCache.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/updateDiscoveredEndpointInCache.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +70 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-host-header/package.json +55 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-logger/package.json +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-recursion-detection/package.json +55 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +122 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/middleware-user-agent/package.json +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-cjs/extensions/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +115 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/config.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/region-config-resolver/package.json +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/README.md +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +214 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/loadSsoOidc.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/loadSsoOidc.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/loadSsoOidc.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/loadSsoOidc.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/token-providers/package.json +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/abort.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/auth.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/blob/blob-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/checksum.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/client.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/command.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/connection.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/credentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/crypto.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/dns.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/encode.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/extensions/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/http.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/index.js +298 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/logger.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/middleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/pagination.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/profile.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/request.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/response.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/retry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/serde.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/shapes.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/signature.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/stream.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/token.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/transfer.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/uri.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/util.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-cjs/waiter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/index.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/index.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/types/package.json +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/aws.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +406 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/isVirtualHostableS3Bucket.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/parseArn.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partition.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +216 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isIpAddress.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointError.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +216 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-endpoints/package.json +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-locate-window/package.json +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-browser/package.json +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/crt-availability.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +94 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-user-agent-node/package.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/README.md +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/index.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/pureJs.js +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/whatwgEncodingApi.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-types/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-types/pureJs.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/dist-types/whatwgEncodingApi.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@aws-sdk/util-utf8-browser/package.json +50 -0
- package/dist/layers/testResources/nodejs/node_modules/@datastream/core/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@datastream/core/index.node.mjs +250 -0
- package/dist/layers/testResources/nodejs/node_modules/@datastream/core/index.node.mjs.map +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@datastream/core/index.web.mjs +255 -0
- package/dist/layers/testResources/nodejs/node_modules/@datastream/core/index.web.mjs.map +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@datastream/core/package.json +75 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/LICENSE +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/README.md +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/aProblem.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/aProblem.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/aProblem.spec.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/aProblem.spec.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/aResponse.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/aResponse.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/aResponse.spec.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/aResponse.spec.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/addVersionHeader.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/addVersionHeader.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/corsHeaders.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/corsHeaders.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/corsHeaders.spec.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/corsHeaders.spec.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/corsOPTIONS.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/corsOPTIONS.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/corsResponse.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/corsResponse.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/logger.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/logger.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/metrics.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/dist/metrics.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/lambda-helpers/package.json +93 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/LICENSE +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/README.md +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/fingerprint/export.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/fingerprint/fingerprintGenerator.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/fingerprint/fingerprintGenerator.spec.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/fingerprint/generateCode.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/fingerprint/index.d.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/fingerprint/isFingerprint.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/fingerprint/isFingerprint.spec.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/schema/NRFCloudMessage.schema.js +54 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/schema/messages.js +296 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/types/NRFCloudApplicationSchema.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/types/addDocBlock.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/types/createTypeFromSchema.js +266 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/types/createUnionType.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/types/generateExports.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/types/printNode.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/generate/types/schema-to-type.js +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/ConfigureDevice.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/ConfigureDevice.spec.js +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/Context.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/Context.spec.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/DeviceIdentity.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/IsoDateType.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/IsoDateType.spec.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/SingleCellGeoLocation.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/convert.js +436 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/convert.spec.js +435 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/deviceId.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/errors/ProblemDetail.js +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/errors/StatusCode.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/errors/examples.spec.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/export.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/history/HistoricalData.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/history/HistoricalDataRequest.js +116 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/history/HistoricalDataResponse.js +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/history/TimeSpan.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/history/examples.spec.js +119 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/history/export.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/history/index.d.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/incomingMessageValidator.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/incomingMessageValidator.spec.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/index.d.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/map/DeviceId.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/map/Devices.js +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/map/ShareDeviceOwnershipConfirmed.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/map/ShareDeviceRequest.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/map/export.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/map/index.d.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/Model.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/Battery.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/Gain.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/Location.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/context.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/examples/examples.spec.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/export.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/index.d.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/message.js +317 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/proto.js +332 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/model/PCA20035+solar/proto.spec.js +584 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/hello/ts.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/examples.spec.js +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/export.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/getShadowUpdateTime.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/getShadowUpdateTime.spec.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/index.d.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/shadow-type-test.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/NRFCloudMessage.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/AGPS.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/AIR_PRESS.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/AIR_QUAL.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/BUTTON.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/CELL_POS.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/DEVICE.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/FLIP.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/GNSS.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/GROUND_FIX.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/GROUND_FIX_C2D.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/HUMID.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/LIGHT.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/PGPS.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/RSRP.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/SCELL.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/TEMP.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/WIFI.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/generated/ipShadow.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/nrfCloud/NRFCloud.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/solarThingy/BATTERY.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/solarThingy/SOLAR.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/types/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/validateShadow.spec.js +177 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfCloud/validator.js +76 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/agps/agps-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/agps/agps.json +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/air_quality/air_quality-config-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/air_quality/air_quality.json +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/cell_position/cell-position-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/cell_position/cell-position-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/cell_position/cell-position.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/device/device-example.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/device/device.json +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/env/env-example.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/env/env.json +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/gps/gps-config-example.json +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/gps/gps.json +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/ground_fix/ground-fix-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/ground_fix/ground-fix-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/ground_fix/ground-fix.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/led/led-example.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/led/led.json +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/light/light-config-example.json +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/light/light.json +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/modem/modem-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/modem/modem.json +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/pgps/pgps-config-example.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/pgps/pgps.json +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/pgps-error/pgps-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/pgps-error/pgps.json +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/single_cell/single-cell-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/single_cell/single-cell-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/single_cell/single-cell.json +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/temp/temp-config-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/temp/temp.json +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/wifi/wifi-position-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/wifi/wifi-position-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/cloudToDevice/wifi/wifi-position.json +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceShadow/gatewayShadow/gatewayShadow-example.json +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceShadow/gatewayShadow/gatewayShadow.json +130 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceShadow/gatewayShadow/lteGatewayShadowExample.json +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceShadow/ipShadow/config.json +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceShadow/ipShadow/ipShadow-example.json +68 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceShadow/ipShadow/ipShadow.json +349 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/agps/agps-default-example.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/agps/agps-example.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/agps/agps.json +97 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/air_press/air_press-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/air_press/air_press.json +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/air_quality/air_quality-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/air_quality/air_quality.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/alert/alert-example.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/alert/alert.json +75 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/battery/battery-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/battery/battery.json +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/button/button-pressed-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/button/button-released-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/button/button.json +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/cell_position/cell-position-example.json +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/cell_position/cell-position-with-neighbors-example.json +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/cell_position/cell-position.json +140 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/device/device-example.json +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/device/device.json +178 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/flip/flip-normal-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/flip/flip-upside-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/flip/flip.json +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/GPGGA-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/GPGLL-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/GPRMC-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/PVT-example-with-extra.json +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/PVT-example.json +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/gnss.json +101 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/ground_fix/ground-fix-example.json +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/ground_fix/ground-fix-lte-only-example.json +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/ground_fix/ground-fix-wifi-only-example.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/ground_fix/ground-fix.json +212 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/humid/humid.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/humid/humidity-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/light/light-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/light/light-one-channel-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/light/light.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/log/log.example.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/log/log.json +65 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/pgps/pgps-default-example.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/pgps/pgps-example.json +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/pgps/pgps.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/rsrp/rsrp-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/rsrp/rsrp.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/single_cell/single-cell-example.json +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/single_cell/single-cell-with-format-example.json +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/single_cell/single-cell.json +90 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp-negative-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp-positive-example-time.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp-positive-example.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp-zero-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp.json +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/wifi/wifi-position-example.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/wifi/wifi-position-with-doReply-example.json +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/nrfcloud-application-protocols/schemas/deviceToCloud/wifi/wifi-position.json +86 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/schemas/NRFCloudMessage.schema.json +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/validator/formatTypeBoxErrors.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/validator/formatTypeBoxErrors.spec.js +144 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/validator/validateWithJSONSchema.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/validator/validateWithJSONSchema.spec.js +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/validator/validateWithTypeBox.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/dist/validator/validateWithTypeBox.spec.js +150 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/example.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/export.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/fingerprint/export.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/fingerprint/fingerprintGenerator.spec.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/fingerprint/fingerprintGenerator.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/fingerprint/generateCode.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/fingerprint/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/fingerprint/isFingerprint.spec.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/fingerprint/isFingerprint.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/schema/NRFCloudMessage.schema.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/schema/messages.ts +223 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/types/NRFCloudApplicationSchema.ts +85 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/types/addDocBlock.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/types/createTypeFromSchema.ts +215 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/types/createUnionType.ts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/types/generateExports.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/types/printNode.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/generate/types/schema-to-type.ts +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/ConfigureDevice.spec.ts +50 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/ConfigureDevice.ts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/Context.spec.ts +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/Context.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/DeviceIdentity.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/IsoDateType.spec.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/IsoDateType.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/SingleCellGeoLocation.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/convert.spec.ts +234 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/convert.ts +174 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/deviceId.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/errors/ProblemDetail.ts +85 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/errors/StatusCode.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/errors/examples/BAD_REQUEST.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/errors/examples/INTERNAL_ERROR.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/errors/examples.spec.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/export.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/README.md +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/cloudToDevice/config.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/cloudToDevice/config.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/cloudToDevice/led.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/cloudToDevice/led.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/cloudToDevice.cddl +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/air-pressure.cbor +0 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/air-pressure.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/air-quality.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/air-quality.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/battery.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/battery.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/button.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/button.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/gnss.cbor +0 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/gnss.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/humidity.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/humidity.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/many.cbor +0 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/many.json +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/rsrp.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/rsrp.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/solar-gain.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/solar-gain.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/temperature.cbor +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud/temperature.json +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/deviceToCloud.cddl +80 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/firmware/validate.sh +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/HistoricalData.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/HistoricalDataRequest.ts +138 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/HistoricalDataResponse.ts +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/TimeSpan.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples/request/BATTERY.json +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples/request/GAIN.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples/request/LOCATION.json +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples/request/locationTrail.json +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples/response/BATTERY.json +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples/response/GAIN.json +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples/response/LOCATION.json +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples/response/locationTrail.json +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/examples.spec.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/export.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/history/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/incomingMessageValidator.spec.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/incomingMessageValidator.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/map/DeviceId.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/map/Devices.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/map/ShareDeviceOwnershipConfirmed.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/map/ShareDeviceRequest.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/map/export.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/map/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/Model.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/Battery.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/Gain.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/Location.ts +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/context.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/examples/BATTERY.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/examples/DEVICE-networkInfo-with-eest.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/examples/GROUND_FIX.json +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/examples/GROUND_FIX_with_timeDiff.json +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/examples/README.md +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/examples/SOLAR.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/examples/desiredConfig.json +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/examples/examples.spec.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/export.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/message.ts +349 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/proto.spec.ts +331 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/model/PCA20035+solar/proto.ts +176 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/hello/ts.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/cloudToDevice/GROUND_FIX.json +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/AIR_PRESS.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/AIR_QUAL.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/BUTTON.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/DEVICE-deviceInfo.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/DEVICE-networkInfo.json +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/GNSS.json +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/GROUND_FIX.json +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/HUMID.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/RSRP.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/deviceToCloud/TEMP.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/shadow-no-networkInfo.json +247 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples/shadow.json +257 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/examples.spec.ts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/export.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/getShadowUpdateTime.spec.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/getShadowUpdateTime.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/shadow-type-test.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/NRFCloudMessage.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/AGPS.ts +55 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/AIR_PRESS.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/AIR_QUAL.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/BUTTON.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/CELL_POS.ts +65 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/DEVICE.ts +88 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/FLIP.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/GNSS.ts +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/GROUND_FIX.ts +101 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/GROUND_FIX_C2D.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/HUMID.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/LIGHT.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/PGPS.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/RSRP.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/SCELL.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/TEMP.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/WIFI.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/generated/ipShadow.ts +190 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/nrfCloud/NRFCloud.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/solarThingy/BATTERY.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/solarThingy/SOLAR.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/types/types.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/validateShadow.spec.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfCloud/validator.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/LICENSE +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/README.md +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/package-lock.json +5759 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/agps/agps-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/agps/agps.json +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/air_quality/air_quality-config-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/air_quality/air_quality.json +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/cell_position/cell-position-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/cell_position/cell-position-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/cell_position/cell-position.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/device/device-example.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/device/device.json +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/env/env-example.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/env/env.json +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/gps/gps-config-example.json +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/gps/gps.json +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/ground_fix/ground-fix-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/ground_fix/ground-fix-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/ground_fix/ground-fix.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/led/led-example.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/led/led.json +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/light/light-config-example.json +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/light/light.json +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/modem/modem-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/modem/modem.json +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/pgps/pgps-config-example.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/pgps/pgps.json +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/pgps-error/pgps-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/pgps-error/pgps.json +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/single_cell/single-cell-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/single_cell/single-cell-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/single_cell/single-cell.json +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/temp/temp-config-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/temp/temp.json +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/wifi/wifi-position-err-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/wifi/wifi-position-example.json +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/cloudToDevice/wifi/wifi-position.json +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceShadow/gatewayShadow/gatewayShadow-example.json +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceShadow/gatewayShadow/gatewayShadow.json +130 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceShadow/gatewayShadow/lteGatewayShadowExample.json +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceShadow/ipShadow/config.json +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceShadow/ipShadow/ipShadow-example.json +68 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceShadow/ipShadow/ipShadow.json +349 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/agps/agps-default-example.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/agps/agps-example.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/agps/agps.json +97 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/air_press/air_press-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/air_press/air_press.json +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/air_quality/air_quality-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/air_quality/air_quality.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/alert/alert-example.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/alert/alert.json +75 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/battery/battery-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/battery/battery.json +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/button/button-pressed-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/button/button-released-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/button/button.json +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/cell_position/cell-position-example.json +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/cell_position/cell-position-with-neighbors-example.json +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/cell_position/cell-position.json +140 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/device/device-example.json +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/device/device.json +178 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/flip/flip-normal-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/flip/flip-upside-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/flip/flip.json +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/GPGGA-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/GPGLL-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/GPRMC-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/PVT-example-with-extra.json +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/PVT-example.json +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/gnss/gnss.json +101 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/ground_fix/ground-fix-example.json +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/ground_fix/ground-fix-lte-only-example.json +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/ground_fix/ground-fix-wifi-only-example.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/ground_fix/ground-fix.json +212 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/humid/humid.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/humid/humidity-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/light/light-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/light/light-one-channel-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/light/light.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/log/log.example.json +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/log/log.json +65 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/pgps/pgps-default-example.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/pgps/pgps-example.json +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/pgps/pgps.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/rsrp/rsrp-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/rsrp/rsrp.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/single_cell/single-cell-example.json +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/single_cell/single-cell-with-format-example.json +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/single_cell/single-cell.json +90 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp-negative-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp-positive-example-time.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp-positive-example.json +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp-zero-example.json +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/temp/temp.json +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/wifi/wifi-position-example.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/wifi/wifi-position-with-doReply-example.json +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/nrfcloud-application-protocols/schemas/deviceToCloud/wifi/wifi-position.json +86 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/package.json +140 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/schemas/NRFCloudMessage.schema.json +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/validator/formatTypeBoxErrors.spec.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/validator/formatTypeBoxErrors.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/validator/validateWithJSONSchema.spec.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/validator/validateWithJSONSchema.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/validator/validateWithTypeBox.spec.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto/validator/validateWithTypeBox.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/LICENSE +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/README.md +122 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/addDocBlock.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/generateLwM2MDefinitions.js +82 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/generateLwM2MDefinitions.spec.js +91 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/generateLwm2mTimestampResources.js +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/generateModels.js +142 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/generateType.js +90 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/generateValidator.js +132 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/generateValidators.js +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/isDir.js +163 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/isDir.spec.js +212 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/lwm2m.js +106 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/models.js +306 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/printNode.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/tokenizeName.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/tokenizeName.spec.js +98 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/generator/types.js +140 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/LWM2MObjectDefinition.js +88 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/LWM2MObjectInfo.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/LwM2MObject.d.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/LwM2MObjectID.js +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/ParsedLwM2MObjectDefinition.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/check-lwm2m-rules.js +480 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/definitions.js +603 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/fromXML2JSON.js +194 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/instanceTs.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/instanceTs.spec.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/isRegisteredLwM2MObject.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/isRegisteredLwM2MObject.spec.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/14201.d.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/14202.d.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/14203.d.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/14204.d.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/14205.d.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/14210.d.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/14220.d.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/14230.d.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/validate14201.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/validate14202.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/validate14203.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/validate14204.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/validate14205.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/validate14210.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/validate14220.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/object/validate14230.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/objects.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/parseRangeEnumeration.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/parseRangeEnumeration.spec.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/resourceType.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/timestampResources.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/unwrapNestedArray.js +114 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/unwrapNestedArray.spec.js +374 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/validate.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/validation.js +146 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/lwm2m/validators.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/markdown/getCodeBlock.js +74 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/markdown/getFrontMatter.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/markdown/parseREADME.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/models/asset_tracker_v2+AWS/examples/examples.spec.js +489 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/models/check-model-rules.js +137 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/models/models.js +137 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/models/types.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/SenMLSchema.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/SenMLSchema.spec.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/hasValue.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/hasValue.spec.js +103 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/lwm2mToSenML.js +137 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/lwm2mToSenML.spec.js +104 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/parseResourceId.js +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/parseResourceId.spec.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/senMLtoLwM2M.js +126 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/senMLtoLwM2M.spec.js +226 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/validateSenML.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/dist/senml/validateSenML.spec.js +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/export.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/index.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/14201.xml +94 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/14202.xml +84 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/14203.xml +104 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/14204.xml +84 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/14205.xml +64 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/14210.xml +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/14220.xml +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/14230.xml +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/LWM2M-v1_1.xsd +168 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/LWM2MObjectDefinition.ts +84 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/LWM2MObjectInfo.ts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/LwM2MObject.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/LwM2MObjectID.ts +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/ParsedLwM2MObjectDefinition.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/check-lwm2m-rules.ts +160 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/definitions.ts +281 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/format.sh +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/fromXML2JSON.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/instanceTs.spec.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/instanceTs.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/isRegisteredLwM2MObject.spec.ts +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/isRegisteredLwM2MObject.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/14201.d.ts +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/14202.d.ts +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/14203.d.ts +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/14204.d.ts +55 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/14205.d.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/14210.d.ts +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/14220.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/14230.d.ts +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/validate14201.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/validate14202.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/validate14203.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/validate14204.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/validate14205.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/validate14210.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/validate14220.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/object/validate14230.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/objects.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/parseRangeEnumeration.spec.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/parseRangeEnumeration.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/resourceType.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/timestampResources.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/unwrapNestedArray.spec.ts +241 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/unwrapNestedArray.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/validate.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/validation.ts +120 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/lwm2m/validators.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/airQuality.md +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/battery.md +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/button.md +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/deviceInfo.md +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/gain.md +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/geolocationFromGroundfix.md +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/geolocationFromMessage.md +80 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/humidity.md +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/networkInfo.md +84 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/pressure.md +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/PCA20035+solar/transforms/temperature.md +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/README.md +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/examples/examples.spec.ts +229 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/examples/shadow/example-1.json +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/examples/shadow/example-2.json +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/examples/shadow/example-3.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/examples/shadow/example-4.json +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/examples/shadow/example-5.json +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/transforms/GNSS.md +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/transforms/battery-voltage.md +50 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/transforms/device-info.md +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/transforms/env.md +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/transforms/fuel-gauge.md +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/transforms/roam.md +100 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/asset_tracker_v2+AWS/transforms/solar.md +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/check-model-rules.ts +125 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/kartverket-vasstandsdata/README.md +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/models.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/models/types.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/package.json +112 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/SenMLSchema.spec.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/SenMLSchema.ts +74 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/hasValue.spec.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/hasValue.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/lwm2mToSenML.spec.ts +74 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/lwm2mToSenML.ts +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/parseResourceId.spec.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/parseResourceId.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/senMLtoLwM2M.spec.ts +181 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/senMLtoLwM2M.ts +121 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/validateSenML.spec.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@hello.nrfcloud.com/proto-map/senml/validateSenML.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@middy/core/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@middy/core/README.md +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@middy/core/index.d.ts +188 -0
- package/dist/layers/testResources/nodejs/node_modules/@middy/core/index.js +240 -0
- package/dist/layers/testResources/nodejs/node_modules/@middy/core/package.json +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/LICENSE +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/README.md +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/dist/fromEnv.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/dist/fromEnv.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/dist/fromEnv.spec.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/dist/fromEnv.spec.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/dist/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/dist/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@nordicsemiconductor/from-env/package.json +83 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/compiler/compiler.d.mts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/compiler/compiler.mjs +643 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/compiler/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/compiler/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/errors/errors.d.mts +90 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/errors/errors.mjs +579 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/errors/function.d.mts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/errors/function.mjs +147 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/errors/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/errors/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/index.d.mts +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/index.mjs +78 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/system/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/system/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/system/policy.d.mts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/system/policy.mjs +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/system/system.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/system/system.mjs +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/any/any.d.mts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/any/any.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/any/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/any/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/array/array.d.mts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/array/array.mjs +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/array/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/array/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/async-iterator/async-iterator.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/async-iterator/async-iterator.mjs +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/async-iterator/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/async-iterator/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/awaited/awaited.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/awaited/awaited.mjs +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/awaited/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/awaited/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/bigint/bigint.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/bigint/bigint.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/bigint/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/bigint/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/boolean/boolean.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/boolean/boolean.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/boolean/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/boolean/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/clone/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/clone/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/clone/type.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/clone/type.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/clone/value.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/clone/value.mjs +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/composite/composite.d.mts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/composite/composite.mjs +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/composite/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/composite/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/const/const.d.mts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/const/const.mjs +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/const/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/const/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/constructor/constructor.d.mts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/constructor/constructor.mjs +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/constructor/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/constructor/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/constructor-parameters/constructor-parameters.d.mts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/constructor-parameters/constructor-parameters.mjs +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/constructor-parameters/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/constructor-parameters/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/date/date.d.mts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/date/date.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/date/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/date/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/deref/deref.d.mts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/deref/deref.mjs +100 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/deref/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/deref/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/discard/discard.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/discard/discard.mjs +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/discard/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/discard/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/enum/enum.d.mts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/enum/enum.mjs +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/enum/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/enum/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/error/error.d.mts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/error/error.mjs +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/error/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/error/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/exclude/exclude-from-mapped-result.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/exclude/exclude-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/exclude/exclude-from-template-literal.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/exclude/exclude-from-template-literal.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/exclude/exclude.d.mts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/exclude/exclude.mjs +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/exclude/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/exclude/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends-check.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends-check.mjs +635 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends-from-mapped-key.d.mts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends-from-mapped-key.mjs +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends-from-mapped-result.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends-undefined.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends-undefined.mjs +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/extends.mjs +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/index.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extends/index.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extract/extract-from-mapped-result.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extract/extract-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extract/extract-from-template-literal.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extract/extract-from-template-literal.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extract/extract.d.mts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extract/extract.mjs +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extract/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/extract/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/function/function.d.mts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/function/function.mjs +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/function/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/function/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/guard/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/guard/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/guard/type.d.mts +143 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/guard/type.mjs +479 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/guard/value.d.mts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/guard/value.mjs +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/helpers/helpers.d.mts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/helpers/helpers.mjs +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/helpers/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/helpers/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/index.d.mts +70 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/index.mjs +70 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/index.d.mts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/index.mjs +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/indexed-from-mapped-key.d.mts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/indexed-from-mapped-key.mjs +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/indexed-from-mapped-result.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/indexed-from-mapped-result.mjs +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/indexed-property-keys.d.mts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/indexed-property-keys.mjs +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/indexed.d.mts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/indexed/indexed.mjs +74 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/instance-type/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/instance-type/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/instance-type/instance-type.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/instance-type/instance-type.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/integer/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/integer/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/integer/integer.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/integer/integer.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/intersect-create.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/intersect-create.mjs +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/intersect-evaluated.d.mts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/intersect-evaluated.mjs +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/intersect-type.d.mts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/intersect-type.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/intersect.d.mts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intersect/intersect.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/capitalize.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/capitalize.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/index.d.mts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/index.mjs +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/intrinsic-from-mapped-key.d.mts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/intrinsic-from-mapped-key.mjs +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/intrinsic.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/intrinsic.mjs +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/lowercase.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/lowercase.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/uncapitalize.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/uncapitalize.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/uppercase.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/intrinsic/uppercase.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/iterator/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/iterator/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/iterator/iterator.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/iterator/iterator.mjs +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/keyof/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/keyof/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/keyof/keyof-from-mapped-result.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/keyof/keyof-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/keyof/keyof-property-keys.d.mts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/keyof/keyof-property-keys.mjs +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/keyof/keyof.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/keyof/keyof.mjs +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/literal/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/literal/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/literal/literal.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/literal/literal.mjs +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/mapped/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/mapped/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/mapped/mapped-key.d.mts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/mapped/mapped-key.mjs +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/mapped/mapped-result.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/mapped/mapped-result.mjs +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/mapped/mapped.d.mts +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/mapped/mapped.mjs +99 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/never/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/never/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/never/never.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/never/never.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/not/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/not/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/not/not.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/not/not.mjs +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/null/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/null/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/null/null.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/null/null.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/number/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/number/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/number/number.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/number/number.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/object/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/object/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/object/object.d.mts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/object/object.mjs +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/omit/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/omit/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/omit/omit-from-mapped-key.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/omit/omit-from-mapped-key.mjs +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/omit/omit-from-mapped-result.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/omit/omit-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/omit/omit.d.mts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/omit/omit.mjs +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/optional/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/optional/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/optional/optional-from-mapped-result.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/optional/optional-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/optional/optional.d.mts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/optional/optional.mjs +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/parameters/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/parameters/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/parameters/parameters.d.mts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/parameters/parameters.mjs +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/partial/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/partial/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/partial/partial-from-mapped-result.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/partial/partial-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/partial/partial.d.mts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/partial/partial.mjs +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/patterns/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/patterns/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/patterns/patterns.d.mts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/patterns/patterns.mjs +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/pick/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/pick/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/pick/pick-from-mapped-key.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/pick/pick-from-mapped-key.mjs +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/pick/pick-from-mapped-result.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/pick/pick-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/pick/pick.d.mts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/pick/pick.mjs +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/promise/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/promise/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/promise/promise.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/promise/promise.mjs +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly/readonly-from-mapped-result.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly/readonly-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly/readonly.d.mts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly/readonly.mjs +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly-optional/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly-optional/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly-optional/readonly-optional.d.mts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/readonly-optional/readonly-optional.mjs +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/record/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/record/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/record/record.d.mts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/record/record.mjs +82 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/recursive/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/recursive/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/recursive/recursive.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/recursive/recursive.mjs +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/ref/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/ref/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/ref/ref.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/ref/ref.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/regexp/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/regexp/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/regexp/regexp.d.mts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/regexp/regexp.mjs +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/registry/format.d.mts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/registry/format.mjs +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/registry/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/registry/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/registry/type.d.mts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/registry/type.mjs +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/required/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/required/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/required/required-from-mapped-result.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/required/required-from-mapped-result.mjs +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/required/required.d.mts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/required/required.mjs +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/rest/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/rest/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/rest/rest.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/rest/rest.mjs +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/return-type/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/return-type/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/return-type/return-type.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/return-type/return-type.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/schema/anyschema.d.mts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/schema/anyschema.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/schema/index.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/schema/index.mjs +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/schema/schema.d.mts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/schema/schema.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/sets/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/sets/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/sets/set.d.mts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/sets/set.mjs +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/static/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/static/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/static/static.d.mts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/static/static.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/strict/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/strict/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/strict/strict.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/strict/strict.mjs +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/string/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/string/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/string/string.d.mts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/string/string.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/symbol/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/symbol/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/symbol/symbol.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/symbol/symbol.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/symbols/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/symbols/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/symbols/symbols.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/symbols/symbols.mjs +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/finite.d.mts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/finite.mjs +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/generate.d.mts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/generate.mjs +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/index.d.mts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/index.mjs +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/parse.d.mts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/parse.mjs +167 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/pattern.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/pattern.mjs +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/syntax.d.mts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/syntax.mjs +55 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/template-literal.d.mts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/template-literal.mjs +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/union.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/template-literal/union.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/transform/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/transform/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/transform/transform.d.mts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/transform/transform.mjs +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/tuple/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/tuple/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/tuple/tuple.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/tuple/tuple.mjs +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/type/index.d.mts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/type/index.mjs +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/type/javascript.d.mts +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/type/javascript.mjs +89 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/type/json.d.mts +187 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/type/json.mjs +229 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/type/type.d.mts +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/type/type.mjs +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/uint8array/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/uint8array/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/uint8array/uint8array.d.mts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/uint8array/uint8array.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/undefined/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/undefined/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/undefined/undefined.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/undefined/undefined.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/union-create.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/union-create.mjs +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/union-evaluated.d.mts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/union-evaluated.mjs +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/union-type.d.mts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/union-type.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/union.d.mts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/union/union.mjs +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/unknown/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/unknown/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/unknown/unknown.d.mts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/unknown/unknown.mjs +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/unsafe/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/unsafe/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/unsafe/unsafe.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/unsafe/unsafe.mjs +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/void/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/void/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/void/void.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/type/void/void.mjs +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/cast/cast.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/cast/cast.mjs +207 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/cast/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/cast/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/check/check.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/check/check.mjs +458 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/check/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/check/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/clean/clean.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/clean/clean.mjs +138 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/clean/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/clean/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/clone/clone.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/clone/clone.mjs +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/clone/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/clone/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/convert/convert.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/convert/convert.mjs +247 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/convert/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/convert/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/create/create.d.mts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/create/create.mjs +461 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/create/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/create/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/default/default.d.mts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/default/default.mjs +151 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/default/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/default/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/delta/delta.d.mts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/delta/delta.mjs +168 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/delta/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/delta/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/deref/deref.d.mts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/deref/deref.mjs +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/deref/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/deref/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/equal/equal.d.mts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/equal/equal.mjs +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/equal/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/equal/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/guard/guard.d.mts +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/guard/guard.mjs +155 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/guard/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/guard/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/hash/hash.d.mts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/hash/hash.mjs +147 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/hash/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/hash/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/index.d.mts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/index.mjs +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/mutate/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/mutate/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/mutate/mutate.d.mts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/mutate/mutate.mjs +92 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/pointer/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/pointer/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/pointer/pointer.d.mts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/pointer/pointer.mjs +120 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/transform/decode.d.mts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/transform/decode.mjs +196 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/transform/encode.d.mts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/transform/encode.mjs +204 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/transform/has.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/transform/has.mjs +121 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/transform/index.d.mts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/transform/index.mjs +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/value/index.d.mts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/value/index.mjs +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/value/value.d.mts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/import/value/value/value.mjs +80 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/compiler/compiler.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/compiler/compiler.js +643 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/compiler/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/compiler/index.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/errors/errors.d.ts +90 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/errors/errors.js +584 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/errors/function.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/errors/function.js +154 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/errors/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/errors/index.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/index.d.ts +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/index.js +95 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/system/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/system/index.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/system/policy.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/system/policy.js +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/system/system.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/system/system.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/any/any.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/any/any.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/any/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/any/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/array/array.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/array/array.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/array/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/array/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/async-iterator/async-iterator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/async-iterator/async-iterator.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/async-iterator/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/async-iterator/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/awaited/awaited.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/awaited/awaited.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/awaited/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/awaited/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/bigint/bigint.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/bigint/bigint.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/bigint/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/bigint/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/boolean/boolean.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/boolean/boolean.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/boolean/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/boolean/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/clone/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/clone/index.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/clone/type.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/clone/type.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/clone/value.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/clone/value.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/composite/composite.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/composite/composite.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/composite/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/composite/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/const/const.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/const/const.js +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/const/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/const/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/constructor/constructor.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/constructor/constructor.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/constructor/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/constructor/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/constructor-parameters/constructor-parameters.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/constructor-parameters/constructor-parameters.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/constructor-parameters/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/constructor-parameters/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/date/date.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/date/date.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/date/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/date/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/deref/deref.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/deref/deref.js +105 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/deref/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/deref/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/discard/discard.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/discard/discard.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/discard/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/discard/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/enum/enum.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/enum/enum.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/enum/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/enum/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/error/error.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/error/error.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/error/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/error/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/exclude/exclude-from-mapped-result.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/exclude/exclude-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/exclude/exclude-from-template-literal.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/exclude/exclude-from-template-literal.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/exclude/exclude.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/exclude/exclude.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/exclude/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/exclude/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends-check.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends-check.js +641 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends-from-mapped-key.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends-from-mapped-key.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends-from-mapped-result.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends-undefined.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends-undefined.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/extends.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extends/index.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extract/extract-from-mapped-result.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extract/extract-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extract/extract-from-template-literal.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extract/extract-from-template-literal.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extract/extract.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extract/extract.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extract/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/extract/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/function/function.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/function/function.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/function/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/function/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/guard/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/guard/index.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/guard/type.d.ts +143 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/guard/type.js +531 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/guard/value.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/guard/value.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/helpers/helpers.d.ts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/helpers/helpers.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/helpers/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/helpers/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/index.d.ts +70 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/index.js +87 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/index.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/indexed-from-mapped-key.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/indexed-from-mapped-key.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/indexed-from-mapped-result.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/indexed-from-mapped-result.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/indexed-property-keys.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/indexed-property-keys.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/indexed.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/indexed/indexed.js +81 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/instance-type/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/instance-type/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/instance-type/instance-type.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/instance-type/instance-type.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/integer/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/integer/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/integer/integer.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/integer/integer.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/intersect-create.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/intersect-create.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/intersect-evaluated.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/intersect-evaluated.js +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/intersect-type.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/intersect-type.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/intersect.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intersect/intersect.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/capitalize.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/capitalize.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/index.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/intrinsic-from-mapped-key.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/intrinsic-from-mapped-key.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/intrinsic.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/intrinsic.js +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/lowercase.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/lowercase.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/uncapitalize.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/uncapitalize.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/uppercase.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/intrinsic/uppercase.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/iterator/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/iterator/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/iterator/iterator.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/iterator/iterator.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/keyof/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/keyof/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/keyof/keyof-from-mapped-result.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/keyof/keyof-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/keyof/keyof-property-keys.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/keyof/keyof-property-keys.js +78 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/keyof/keyof.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/keyof/keyof.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/literal/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/literal/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/literal/literal.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/literal/literal.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/mapped/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/mapped/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/mapped/mapped-key.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/mapped/mapped-key.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/mapped/mapped-result.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/mapped/mapped-result.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/mapped/mapped.d.ts +46 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/mapped/mapped.js +105 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/never/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/never/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/never/never.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/never/never.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/not/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/not/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/not/not.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/not/not.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/null/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/null/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/null/null.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/null/null.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/number/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/number/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/number/number.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/number/number.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/object/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/object/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/object/object.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/object/object.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/omit/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/omit/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/omit/omit-from-mapped-key.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/omit/omit-from-mapped-key.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/omit/omit-from-mapped-result.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/omit/omit-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/omit/omit.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/omit/omit.js +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/optional/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/optional/index.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/optional/optional-from-mapped-result.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/optional/optional-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/optional/optional.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/optional/optional.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/parameters/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/parameters/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/parameters/parameters.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/parameters/parameters.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/partial/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/partial/index.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/partial/partial-from-mapped-result.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/partial/partial-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/partial/partial.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/partial/partial.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/patterns/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/patterns/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/patterns/patterns.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/patterns/patterns.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/pick/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/pick/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/pick/pick-from-mapped-key.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/pick/pick-from-mapped-key.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/pick/pick-from-mapped-result.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/pick/pick-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/pick/pick.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/pick/pick.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/promise/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/promise/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/promise/promise.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/promise/promise.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly/index.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly/readonly-from-mapped-result.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly/readonly-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly/readonly.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly/readonly.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly-optional/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly-optional/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly-optional/readonly-optional.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/readonly-optional/readonly-optional.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/record/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/record/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/record/record.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/record/record.js +87 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/recursive/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/recursive/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/recursive/recursive.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/recursive/recursive.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/ref/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/ref/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/ref/ref.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/ref/ref.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/regexp/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/regexp/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/regexp/regexp.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/regexp/regexp.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/registry/format.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/registry/format.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/registry/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/registry/index.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/registry/type.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/registry/type.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/required/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/required/index.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/required/required-from-mapped-result.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/required/required-from-mapped-result.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/required/required.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/required/required.js +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/rest/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/rest/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/rest/rest.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/rest/rest.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/return-type/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/return-type/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/return-type/return-type.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/return-type/return-type.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/schema/anyschema.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/schema/anyschema.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/schema/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/schema/index.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/schema/schema.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/schema/schema.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/sets/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/sets/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/sets/set.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/sets/set.js +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/static/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/static/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/static/static.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/static/static.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/strict/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/strict/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/strict/strict.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/strict/strict.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/string/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/string/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/string/string.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/string/string.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/symbol/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/symbol/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/symbol/symbol.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/symbol/symbol.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/symbols/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/symbols/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/symbols/symbols.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/symbols/symbols.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/finite.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/finite.js +56 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/generate.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/generate.js +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/index.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/parse.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/parse.js +174 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/pattern.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/pattern.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/syntax.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/syntax.js +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/template-literal.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/template-literal.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/union.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/template-literal/union.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/transform/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/transform/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/transform/transform.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/transform/transform.js +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/tuple/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/tuple/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/tuple/tuple.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/tuple/tuple.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/type/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/type/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/type/javascript.d.ts +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/type/javascript.js +94 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/type/json.d.ts +187 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/type/json.js +234 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/type/type.d.ts +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/type/type.js +127 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/uint8array/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/uint8array/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/uint8array/uint8array.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/uint8array/uint8array.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/undefined/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/undefined/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/undefined/undefined.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/undefined/undefined.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/union-create.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/union-create.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/union-evaluated.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/union-evaluated.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/union-type.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/union-type.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/union.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/union/union.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/unknown/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/unknown/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/unknown/unknown.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/unknown/unknown.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/unsafe/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/unsafe/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/unsafe/unsafe.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/unsafe/unsafe.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/void/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/void/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/void/void.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/type/void/void.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/cast/cast.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/cast/cast.js +212 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/cast/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/cast/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/check/check.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/check/check.js +463 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/check/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/check/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/clean/clean.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/clean/clean.js +143 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/clean/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/clean/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/clone/clone.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/clone/clone.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/clone/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/clone/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/convert/convert.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/convert/convert.js +252 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/convert/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/convert/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/create/create.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/create/create.js +466 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/create/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/create/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/default/default.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/default/default.js +156 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/default/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/default/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/delta/delta.d.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/delta/delta.js +174 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/delta/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/delta/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/deref/deref.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/deref/deref.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/deref/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/deref/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/equal/equal.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/equal/equal.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/equal/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/equal/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/guard/guard.d.ts +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/guard/guard.js +193 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/guard/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/guard/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/hash/hash.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/hash/hash.js +152 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/hash/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/hash/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/index.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/index.js +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/mutate/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/mutate/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/mutate/mutate.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/mutate/mutate.js +98 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/pointer/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/pointer/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/pointer/pointer.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/pointer/pointer.js +126 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/transform/decode.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/transform/decode.js +196 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/transform/encode.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/transform/encode.js +204 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/transform/has.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/transform/has.js +126 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/transform/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/transform/index.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/value/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/value/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/value/value.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/build/require/value/value/value.js +99 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/compiler/package.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/errors/package.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/license +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/package.json +85 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/readme.md +1818 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/system/package.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/type/package.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@sinclair/typebox/value/package.json +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-cjs/index.js +82 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-es/AbortController.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/abort-controller/package.json +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/index.js +235 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/config-resolver/package.json +64 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/README.md +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/index.js +493 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/protocols/requestBuilder.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/protocols/requestBuilder.js +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/protocols/requestBuilder.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/protocols/requestBuilder.d.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/core/package.json +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/config/Endpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +437 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +132 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +220 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +111 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/fetch-http-handler/package.json +79 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/hash-node/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/hash-node/dist-cjs/index.js +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/hash-node/dist-es/index.js +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/hash-node/package.json +64 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/invalid-dependency/package.json +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/is-array-buffer/package.json +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +71 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-content-length/package.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +254 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +93 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +93 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-endpoint/package.json +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/index.js +425 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-cjs/util.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/configurations.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-retry/package.json +78 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-cjs/index.js +102 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-serde/package.json +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-cjs/MiddlewareStack.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-cjs/index.js +318 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/middleware-stack/package.json +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-cjs/index.js +87 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-config-provider/package.json +65 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/index.js +687 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +184 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +81 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/node-http-handler/package.json +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-cjs/CredentialsProviderError.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-cjs/chain.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-cjs/index.js +150 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-cjs/memoize.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-es/ProviderError.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/property-provider/package.json +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/Field.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/index.js +237 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/Field.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/Fields.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +48 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/protocol-http/package.json +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-builder/dist-cjs/index.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-parser/dist-cjs/index.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/querystring-parser/package.json +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/dist-cjs/index.js +98 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/dist-es/constants.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/dist-es/index.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/service-error-classification/package.json +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigData.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getProfileName.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +190 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/shared-ini-file-loader/package.json +72 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/README.md +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/HeaderFormatter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/cloneRequest.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/credentialDerivation.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalHeaders.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalQuery.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/getPayloadHash.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/headerUtil.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/index.js +588 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/moveHeadersToQuery.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/prepareRequest.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/suite.fixture.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-cjs/utilDate.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +125 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +190 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/cloneRequest.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/cloneRequest.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/signature-v4/package.json +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/client.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/command.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/index.js +1256 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/client.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/command.js +114 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/date-utils.js +187 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/exceptions.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/index.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +230 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-es/split-every.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/client.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/command.d.ts +113 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/index.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +270 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +113 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/parse-utils.d.ts +270 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/smithy-client/package.json +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/README.md +80 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/abort.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/auth/auth.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/auth/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/checksum.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/client.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/command.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/connection/config.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/connection/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/connection/manager.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/connection/pool.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/crypto.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/encode.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/endpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/endpoints/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/eventStream.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/extensions/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/extensions/retry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/http.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/identity/identity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/identity/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/index.js +149 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/logger.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/middleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/pagination.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/profile.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/response.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/retry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/serde.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/shapes.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/signature.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/stream.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/transfer.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/transform/exact.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/uri.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/util.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-cjs/waiter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/extensions/checksum.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/index.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/abort.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/client.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/command.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/connection/config.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/connection/manager.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/connection/pool.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/encode.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/eventStream.d.ts +108 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +55 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +79 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/http.d.ts +105 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/index.d.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/middleware.d.ts +510 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/pagination.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/serde.d.ts +111 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/shapes.d.ts +81 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/signature.d.ts +150 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/transfer.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +108 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +55 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +78 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +105 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +510 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +111 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +81 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +150 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +84 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +82 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/types/package.json +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/url-parser/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/url-parser/dist-cjs/index.js +49 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/url-parser/package.json +58 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-cjs/index.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-es/constants.browser.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-es/toBase64.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-base64/package.json +73 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/README.md +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-browser/package.json +57 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/README.md +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-body-length-node/package.json +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-buffer-from/package.json +61 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-cjs/booleanSelector.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-cjs/index.js +64 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-es/booleanSelector.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-es/numberSelector.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-es/types.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/dist-types/types.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-config-provider/package.json +62 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +119 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-defaults-mode-node/package.json +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/debug/debugId.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/debug/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/debug/toDebugString.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/getEndpointUrlConfig.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/index.js +484 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/booleanEquals.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttr.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttrPathList.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/isIpAddress.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/isSet.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/isValidHostLabel.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/not.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/parseURL.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/stringEquals.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/substring.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/lib/uriEncode.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/resolveEndpoint.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointError.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointFunctions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/types/ErrorRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/types/RuleSetObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/types/TreeRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/types/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/types/shared.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/callFunction.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/customEndpointFunctions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/endpointFunctions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateCondition.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateConditions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateExpression.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateRules.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTemplate.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperties.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperty.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointUrl.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/getReferenceValue.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-cjs/utils/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/index.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +37 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-endpoints/package.json +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-hex-encoding/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-hex-encoding/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +67 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-hex-encoding/dist-es/index.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-hex-encoding/package.json +60 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/README.md +12 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-cjs/getSmithyContext.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-cjs/index.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-middleware/package.json +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/README.md +78 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/config.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/constants.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/index.js +347 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-cjs/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +99 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +65 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-retry/package.json +68 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/README.md +6 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-cjs/blob/Uint8ArrayBlobAdapter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-cjs/index.js +89 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +69 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +50 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-stream/package.json +95 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-uri-escape/package.json +59 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/README.md +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-utf8/package.json +66 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/LICENSE +201 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/README.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-cjs/createWaiter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-cjs/index.js +155 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-cjs/poller.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-cjs/utils/index.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-cjs/utils/sleep.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-cjs/utils/validate.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-cjs/waiter.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-es/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-es/poller.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-es/utils/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-es/utils/sleep.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-es/utils/validate.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-es/waiter.js +34 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/ts3.4/createWaiter.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/ts3.4/poller.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/validate.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/ts3.4/waiter.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/utils/sleep.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +44 -0
- package/dist/layers/testResources/nodejs/node_modules/@smithy/util-waiter/package.json +62 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/README.md +98 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/browser.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/browser.mjs +11 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/dist/abort-controller.d.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/dist/abort-controller.js +127 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/dist/abort-controller.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/dist/abort-controller.mjs +118 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/dist/abort-controller.mjs.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/dist/abort-controller.umd.js +5 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/dist/abort-controller.umd.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/package.json +97 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/polyfill.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/abort-controller/polyfill.mjs +19 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/.runkit_example.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/LICENSE +22 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/README.md +207 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/2019.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/2019.js +59 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/2019.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/2020.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/2020.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/2020.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/ajv.js +48 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/ajv.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/code.js +155 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/errors.js +123 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/index.js +242 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/names.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/rules.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/util.js +178 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/dataType.js +202 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/core.d.ts +173 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/core.js +617 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/core.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/jtd.js +70 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/jtd.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/data.json +13 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/parseJson.js +184 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/standalone/index.js +90 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/index.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/discriminator/index.js +100 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/2019.ts +80 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/2020.ts +74 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/ajv.ts +69 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/codegen/code.ts +168 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/codegen/index.ts +832 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/index.ts +324 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/names.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/util.ts +213 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/validate/dataType.ts +229 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/core.ts +887 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/jtd.ts +131 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/data.json +13 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/runtime/parseJson.ts +176 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/types/index.ts +240 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/discriminator/index.ts +110 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/dist/layers/testResources/nodejs/node_modules/ajv/package.json +126 -0
- package/dist/layers/testResources/nodejs/node_modules/base64-js/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/base64-js/README.md +34 -0
- package/dist/layers/testResources/nodejs/node_modules/base64-js/base64js.min.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/base64-js/index.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/base64-js/index.js +150 -0
- package/dist/layers/testResources/nodejs/node_modules/base64-js/package.json +47 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/CHANGELOG.md +218 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/LICENSE +39 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/README.md +179 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/bundled.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/es5.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/index.d.ts +250 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/package.json +83 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/src/bowser.js +77 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/src/constants.js +116 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/src/parser-browsers.js +700 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/src/parser-engines.js +120 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/src/parser-os.js +199 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/src/parser-platforms.js +266 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/src/parser.js +496 -0
- package/dist/layers/testResources/nodejs/node_modules/bowser/src/utils.js +309 -0
- package/dist/layers/testResources/nodejs/node_modules/buffer/AUTHORS.md +73 -0
- package/dist/layers/testResources/nodejs/node_modules/buffer/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/buffer/README.md +410 -0
- package/dist/layers/testResources/nodejs/node_modules/buffer/index.d.ts +194 -0
- package/dist/layers/testResources/nodejs/node_modules/buffer/index.js +2106 -0
- package/dist/layers/testResources/nodejs/node_modules/buffer/package.json +93 -0
- package/dist/layers/testResources/nodejs/node_modules/cloneable-readable/.github/dependabot.yml +7 -0
- package/dist/layers/testResources/nodejs/node_modules/cloneable-readable/.github/workflows/ci.yml +29 -0
- package/dist/layers/testResources/nodejs/node_modules/cloneable-readable/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/cloneable-readable/README.md +50 -0
- package/dist/layers/testResources/nodejs/node_modules/cloneable-readable/example.js +14 -0
- package/dist/layers/testResources/nodejs/node_modules/cloneable-readable/index.js +170 -0
- package/dist/layers/testResources/nodejs/node_modules/cloneable-readable/package.json +36 -0
- package/dist/layers/testResources/nodejs/node_modules/cloneable-readable/test.js +740 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/LICENSE +22 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/README.md +293 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/dist/event-target-shim.js +871 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/dist/event-target-shim.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/dist/event-target-shim.mjs +862 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/dist/event-target-shim.mjs.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/dist/event-target-shim.umd.js +6 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/dist/event-target-shim.umd.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/index.d.ts +399 -0
- package/dist/layers/testResources/nodejs/node_modules/event-target-shim/package.json +82 -0
- package/dist/layers/testResources/nodejs/node_modules/events/.airtap.yml +15 -0
- package/dist/layers/testResources/nodejs/node_modules/events/.github/FUNDING.yml +12 -0
- package/dist/layers/testResources/nodejs/node_modules/events/.travis.yml +18 -0
- package/dist/layers/testResources/nodejs/node_modules/events/History.md +118 -0
- package/dist/layers/testResources/nodejs/node_modules/events/LICENSE +22 -0
- package/dist/layers/testResources/nodejs/node_modules/events/Readme.md +50 -0
- package/dist/layers/testResources/nodejs/node_modules/events/events.js +497 -0
- package/dist/layers/testResources/nodejs/node_modules/events/package.json +37 -0
- package/dist/layers/testResources/nodejs/node_modules/events/security.md +10 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/add-listeners.js +111 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/check-listener-leaks.js +101 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/common.js +104 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/errors.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/events-list.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/events-once.js +234 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/index.js +64 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/legacy-compat.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/listener-count.js +37 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/listeners-side-effects.js +56 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/listeners.js +168 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/max-listeners.js +47 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/method-names.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/modify-in-emit.js +90 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/num-args.js +60 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/once.js +83 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/prepend.js +31 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/remove-all-listeners.js +133 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/remove-listeners.js +212 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/set-max-listeners-side-effects.js +31 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/special-event-names.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/subclass.js +66 -0
- package/dist/layers/testResources/nodejs/node_modules/events/tests/symbols.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/README.md +96 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/index.js +46 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/package.json +61 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-deep-equal/react.js +53 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/CHANGELOG.md +554 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/README.md +204 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/package.json +71 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/cli/cli.js +93 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/cli/man.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/cli/read.js +92 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/fxp.d.ts +108 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/fxp.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/util.js +72 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/validator.js +423 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +259 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +131 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +152 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +48 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +588 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +58 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlparser/node2json.js +113 -0
- package/dist/layers/testResources/nodejs/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/ieee754/LICENSE +11 -0
- package/dist/layers/testResources/nodejs/node_modules/ieee754/README.md +51 -0
- package/dist/layers/testResources/nodejs/node_modules/ieee754/index.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/ieee754/index.js +85 -0
- package/dist/layers/testResources/nodejs/node_modules/ieee754/package.json +52 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/README.md +95 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/index.js +93 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/package.json +43 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/dist/layers/testResources/nodejs/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/dist/layers/testResources/nodejs/node_modules/jsonata/LICENSE +19 -0
- package/dist/layers/testResources/nodejs/node_modules/jsonata/README.md +70 -0
- package/dist/layers/testResources/nodejs/node_modules/jsonata/jsonata-es5.js +9867 -0
- package/dist/layers/testResources/nodejs/node_modules/jsonata/jsonata-es5.min.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/jsonata/jsonata.d.ts +53 -0
- package/dist/layers/testResources/nodejs/node_modules/jsonata/jsonata.js +7541 -0
- package/dist/layers/testResources/nodejs/node_modules/jsonata/jsonata.min.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/jsonata/package.json +62 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/CHANGELOG.md +305 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/LICENSE.txt +21 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/README.md +112 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bi-map.d.ts +46 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bi-map.js +195 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bit-set.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bit-set.js +379 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bit-vector.d.ts +42 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bit-vector.js +550 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bk-tree.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bk-tree.js +180 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bloom-filter.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/bloom-filter.js +186 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/circular-buffer.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/circular-buffer.js +131 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/critbit-tree-map.js +515 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/default-map.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/default-map.js +162 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/default-weak-map.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/default-weak-map.js +108 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fibonacci-heap.d.ts +65 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fibonacci-heap.js +320 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fixed-critbit-tree-map.js +427 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fixed-deque.d.ts +34 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fixed-deque.js +351 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fixed-reverse-heap.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fixed-reverse-heap.js +209 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fixed-stack.d.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fixed-stack.js +242 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fuzzy-map.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fuzzy-map.js +185 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fuzzy-multi-map.d.ts +36 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/fuzzy-multi-map.js +196 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/hashed-array-tree.d.ts +32 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/hashed-array-tree.js +209 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/heap.d.ts +84 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/heap.js +576 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/index.d.ts +46 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/index.js +56 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/inverted-index.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/inverted-index.js +249 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/kd-tree.d.ts +25 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/kd-tree.js +447 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/linked-list.d.ts +29 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/linked-list.js +261 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/lru-cache.d.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/lru-cache.js +433 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/lru-map.d.ts +43 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/lru-map.js +258 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/multi-array.js +447 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/multi-map.d.ts +47 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/multi-map.js +408 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/multi-set.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/multi-set.js +440 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/package.json +119 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/passjoin-index.d.ts +54 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/passjoin-index.js +518 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/queue.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/queue.js +215 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/semi-dynamic-trie.js +251 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/set.d.ts +18 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/set.js +356 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sort/insertion.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sort/insertion.js +50 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sort/quick.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sort/quick.js +116 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sparse-map.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sparse-map.js +243 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sparse-queue-set.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sparse-queue-set.js +218 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sparse-set.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/sparse-set.js +168 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/stack.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/stack.js +210 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/static-disjoint-set.d.ts +23 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/static-disjoint-set.js +195 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/static-interval-tree.d.ts +24 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/static-interval-tree.js +387 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/suffix-array.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/suffix-array.js +352 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/symspell.d.ts +33 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/symspell.js +547 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/trie-map.d.ts +30 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/trie-map.js +477 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/trie.d.ts +26 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/trie.js +167 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/binary-search.js +216 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/bitwise.js +109 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/comparators.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/hash-tables.js +107 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/iterables.js +93 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/merge.js +563 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/murmurhash3.js +87 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/typed-arrays.js +187 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/utils/types.d.ts +16 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/vector.d.ts +81 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/vector.js +373 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/vp-tree.d.ts +27 -0
- package/dist/layers/testResources/nodejs/node_modules/mnemonist/vp-tree.js +367 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/LICENSE.txt +21 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/README.md +321 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/chain.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/chain.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/combinations.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/combinations.js +76 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/consume.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/consume.js +32 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/filter.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/filter.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/foreach.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/foreach.js +156 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/index.d.ts +14 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/index.js +22 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/iterator.d.ts +19 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/iterator.js +104 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/map.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/map.js +27 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/match.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/match.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/package.json +45 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/permutations.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/permutations.js +96 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/power-set.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/power-set.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/range.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/range.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/split.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/split.js +68 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/take-into.d.ts +5 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/take-into.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/take.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/obliterator/take.js +40 -0
- package/dist/layers/testResources/nodejs/node_modules/process/.eslintrc +21 -0
- package/dist/layers/testResources/nodejs/node_modules/process/LICENSE +22 -0
- package/dist/layers/testResources/nodejs/node_modules/process/README.md +26 -0
- package/dist/layers/testResources/nodejs/node_modules/process/browser.js +184 -0
- package/dist/layers/testResources/nodejs/node_modules/process/index.js +2 -0
- package/dist/layers/testResources/nodejs/node_modules/process/package.json +27 -0
- package/dist/layers/testResources/nodejs/node_modules/process/test.js +199 -0
- package/dist/layers/testResources/nodejs/node_modules/punycode/LICENSE-MIT.txt +20 -0
- package/dist/layers/testResources/nodejs/node_modules/punycode/README.md +148 -0
- package/dist/layers/testResources/nodejs/node_modules/punycode/package.json +58 -0
- package/dist/layers/testResources/nodejs/node_modules/punycode/punycode.es6.js +444 -0
- package/dist/layers/testResources/nodejs/node_modules/punycode/punycode.js +443 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/LICENSE +47 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/README.md +116 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/_stream_readable.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/_stream_transform.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/_stream_writable.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +52 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/duplexify.js +378 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +284 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/pipeline.js +471 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/readable.js +1288 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/state.js +39 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/utils.js +329 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/streams/writable.js +817 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/internal/validators.js +530 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/ours/browser.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/ours/errors.js +341 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/ours/index.js +65 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/ours/primordials.js +107 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/ours/util.js +200 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/stream/promises.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/lib/stream.js +141 -0
- package/dist/layers/testResources/nodejs/node_modules/readable-stream/package.json +86 -0
- package/dist/layers/testResources/nodejs/node_modules/require-from-string/index.js +34 -0
- package/dist/layers/testResources/nodejs/node_modules/require-from-string/license +21 -0
- package/dist/layers/testResources/nodejs/node_modules/require-from-string/package.json +28 -0
- package/dist/layers/testResources/nodejs/node_modules/require-from-string/readme.md +56 -0
- package/dist/layers/testResources/nodejs/node_modules/safe-buffer/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/safe-buffer/README.md +584 -0
- package/dist/layers/testResources/nodejs/node_modules/safe-buffer/index.d.ts +187 -0
- package/dist/layers/testResources/nodejs/node_modules/safe-buffer/index.js +65 -0
- package/dist/layers/testResources/nodejs/node_modules/safe-buffer/package.json +51 -0
- package/dist/layers/testResources/nodejs/node_modules/string_decoder/LICENSE +48 -0
- package/dist/layers/testResources/nodejs/node_modules/string_decoder/README.md +47 -0
- package/dist/layers/testResources/nodejs/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/dist/layers/testResources/nodejs/node_modules/string_decoder/package.json +34 -0
- package/dist/layers/testResources/nodejs/node_modules/strnum/.vscode/launch.json +25 -0
- package/dist/layers/testResources/nodejs/node_modules/strnum/LICENSE +21 -0
- package/dist/layers/testResources/nodejs/node_modules/strnum/README.md +86 -0
- package/dist/layers/testResources/nodejs/node_modules/strnum/package.json +24 -0
- package/dist/layers/testResources/nodejs/node_modules/strnum/strnum.js +124 -0
- package/dist/layers/testResources/nodejs/node_modules/strnum/strnum.test.js +150 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/LICENSE.txt +12 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/README.md +164 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/SECURITY.md +41 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/modules/index.d.ts +37 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/modules/index.js +68 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/modules/package.json +3 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/package.json +47 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/tslib.d.ts +453 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/tslib.es6.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/tslib.es6.js +370 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/tslib.es6.mjs +370 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/tslib.html +1 -0
- package/dist/layers/testResources/nodejs/node_modules/tslib/tslib.js +421 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/LICENSE +11 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/README.md +203 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/es5/uri.all.d.ts +59 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/es5/uri.all.js +1443 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/es5/uri.all.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/es5/uri.all.min.d.ts +59 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/es5/uri.all.min.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/es5/uri.all.min.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/index.d.ts +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/index.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/index.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/regexps-iri.js +3 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/regexps-iri.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +4 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/regexps-uri.js +42 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/regexps-uri.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/http.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/http.js +28 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/http.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/https.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/https.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/https.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +12 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/mailto.js +148 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +10 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/urn.js +49 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/urn.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +7 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/ws.js +41 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/ws.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +3 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/wss.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/schemes/wss.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/uri.d.ts +59 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/uri.js +480 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/uri.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/util.d.ts +6 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/util.js +36 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/dist/esnext/util.js.map +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/package.json +77 -0
- package/dist/layers/testResources/nodejs/node_modules/uri-js/yarn.lock +2558 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/CHANGELOG.md +274 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/LICENSE.md +9 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/README.md +466 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/bin/uuid +2 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/rng.js +18 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/v4.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/stringify.js +33 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/v35.js +66 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/v4.js +29 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/index.js +79 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/md5-browser.js +223 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/md5.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/native-browser.js +11 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/native.js +15 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/nil.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/parse.js +45 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/regex.js +8 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/rng-browser.js +25 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/rng.js +24 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/sha1.js +23 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/stringify.js +44 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/v1.js +107 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/v3.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/v35.js +80 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/v4.js +43 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/v5.js +16 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/validate.js +17 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/dist/version.js +21 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/package.json +135 -0
- package/dist/layers/testResources/nodejs/node_modules/uuid/wrapper.mjs +10 -0
- package/dist/layers/testResources/nodejs/package-lock.json +7508 -0
- package/dist/layers/testResources/nodejs/package.json +1 -0
- package/dist/layers/testResources.zip +0 -0
- package/dist/src/cli.d.ts +1 -0
- package/dist/src/cli.js +88 -0
- package/dist/src/randomString.d.ts +1 -0
- package/dist/src/randomString.js +5 -0
- package/dist/src/requests.d.ts +14 -0
- package/dist/src/requests.js +11 -0
- package/dist/src/responses.d.ts +11 -0
- package/dist/src/responses.js +17 -0
- package/dist/src/sortQueryString.d.ts +1 -0
- package/dist/src/sortQueryString.js +15 -0
- package/dist/src/sortQueryString.spec.d.ts +1 -0
- package/dist/src/sortQueryString.spec.js +6 -0
- package/package.json +108 -0
|
@@ -0,0 +1,887 @@
|
|
|
1
|
+
export {
|
|
2
|
+
Format,
|
|
3
|
+
FormatDefinition,
|
|
4
|
+
AsyncFormatDefinition,
|
|
5
|
+
KeywordDefinition,
|
|
6
|
+
KeywordErrorDefinition,
|
|
7
|
+
CodeKeywordDefinition,
|
|
8
|
+
MacroKeywordDefinition,
|
|
9
|
+
FuncKeywordDefinition,
|
|
10
|
+
Vocabulary,
|
|
11
|
+
Schema,
|
|
12
|
+
SchemaObject,
|
|
13
|
+
AnySchemaObject,
|
|
14
|
+
AsyncSchema,
|
|
15
|
+
AnySchema,
|
|
16
|
+
ValidateFunction,
|
|
17
|
+
AsyncValidateFunction,
|
|
18
|
+
AnyValidateFunction,
|
|
19
|
+
ErrorObject,
|
|
20
|
+
ErrorNoParams,
|
|
21
|
+
} from "./types"
|
|
22
|
+
|
|
23
|
+
export {SchemaCxt, SchemaObjCxt} from "./compile"
|
|
24
|
+
export interface Plugin<Opts> {
|
|
25
|
+
(ajv: Ajv, options?: Opts): Ajv
|
|
26
|
+
[prop: string]: any
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export {KeywordCxt} from "./compile/validate"
|
|
30
|
+
export {DefinedError} from "./vocabularies/errors"
|
|
31
|
+
export {JSONType} from "./compile/rules"
|
|
32
|
+
export {JSONSchemaType} from "./types/json-schema"
|
|
33
|
+
export {JTDSchemaType, SomeJTDSchemaType, JTDDataType} from "./types/jtd-schema"
|
|
34
|
+
export {_, str, stringify, nil, Name, Code, CodeGen, CodeGenOptions} from "./compile/codegen"
|
|
35
|
+
|
|
36
|
+
import type {
|
|
37
|
+
Schema,
|
|
38
|
+
AnySchema,
|
|
39
|
+
AnySchemaObject,
|
|
40
|
+
SchemaObject,
|
|
41
|
+
AsyncSchema,
|
|
42
|
+
Vocabulary,
|
|
43
|
+
KeywordDefinition,
|
|
44
|
+
AddedKeywordDefinition,
|
|
45
|
+
AnyValidateFunction,
|
|
46
|
+
ValidateFunction,
|
|
47
|
+
AsyncValidateFunction,
|
|
48
|
+
ErrorObject,
|
|
49
|
+
Format,
|
|
50
|
+
AddedFormat,
|
|
51
|
+
RegExpEngine,
|
|
52
|
+
UriResolver,
|
|
53
|
+
} from "./types"
|
|
54
|
+
import type {JSONSchemaType} from "./types/json-schema"
|
|
55
|
+
import type {JTDSchemaType, SomeJTDSchemaType, JTDDataType} from "./types/jtd-schema"
|
|
56
|
+
import ValidationError from "./runtime/validation_error"
|
|
57
|
+
import MissingRefError from "./compile/ref_error"
|
|
58
|
+
import {getRules, ValidationRules, Rule, RuleGroup, JSONType} from "./compile/rules"
|
|
59
|
+
import {SchemaEnv, compileSchema, resolveSchema} from "./compile"
|
|
60
|
+
import {Code, ValueScope} from "./compile/codegen"
|
|
61
|
+
import {normalizeId, getSchemaRefs} from "./compile/resolve"
|
|
62
|
+
import {getJSONTypes} from "./compile/validate/dataType"
|
|
63
|
+
import {eachItem} from "./compile/util"
|
|
64
|
+
import * as $dataRefSchema from "./refs/data.json"
|
|
65
|
+
|
|
66
|
+
import DefaultUriResolver from "./runtime/uri"
|
|
67
|
+
|
|
68
|
+
const defaultRegExp: RegExpEngine = (str, flags) => new RegExp(str, flags)
|
|
69
|
+
defaultRegExp.code = "new RegExp"
|
|
70
|
+
|
|
71
|
+
const META_IGNORE_OPTIONS: (keyof Options)[] = ["removeAdditional", "useDefaults", "coerceTypes"]
|
|
72
|
+
const EXT_SCOPE_NAMES = new Set([
|
|
73
|
+
"validate",
|
|
74
|
+
"serialize",
|
|
75
|
+
"parse",
|
|
76
|
+
"wrapper",
|
|
77
|
+
"root",
|
|
78
|
+
"schema",
|
|
79
|
+
"keyword",
|
|
80
|
+
"pattern",
|
|
81
|
+
"formats",
|
|
82
|
+
"validate$data",
|
|
83
|
+
"func",
|
|
84
|
+
"obj",
|
|
85
|
+
"Error",
|
|
86
|
+
])
|
|
87
|
+
|
|
88
|
+
export type Options = CurrentOptions & DeprecatedOptions
|
|
89
|
+
|
|
90
|
+
export interface CurrentOptions {
|
|
91
|
+
// strict mode options (NEW)
|
|
92
|
+
strict?: boolean | "log"
|
|
93
|
+
strictSchema?: boolean | "log"
|
|
94
|
+
strictNumbers?: boolean | "log"
|
|
95
|
+
strictTypes?: boolean | "log"
|
|
96
|
+
strictTuples?: boolean | "log"
|
|
97
|
+
strictRequired?: boolean | "log"
|
|
98
|
+
allowMatchingProperties?: boolean // disables a strict mode restriction
|
|
99
|
+
allowUnionTypes?: boolean
|
|
100
|
+
validateFormats?: boolean
|
|
101
|
+
// validation and reporting options:
|
|
102
|
+
$data?: boolean
|
|
103
|
+
allErrors?: boolean
|
|
104
|
+
verbose?: boolean
|
|
105
|
+
discriminator?: boolean
|
|
106
|
+
unicodeRegExp?: boolean
|
|
107
|
+
timestamp?: "string" | "date" // JTD only
|
|
108
|
+
parseDate?: boolean // JTD only
|
|
109
|
+
allowDate?: boolean // JTD only
|
|
110
|
+
$comment?:
|
|
111
|
+
| true
|
|
112
|
+
| ((comment: string, schemaPath?: string, rootSchema?: AnySchemaObject) => unknown)
|
|
113
|
+
formats?: {[Name in string]?: Format}
|
|
114
|
+
keywords?: Vocabulary
|
|
115
|
+
schemas?: AnySchema[] | {[Key in string]?: AnySchema}
|
|
116
|
+
logger?: Logger | false
|
|
117
|
+
loadSchema?: (uri: string) => Promise<AnySchemaObject>
|
|
118
|
+
// options to modify validated data:
|
|
119
|
+
removeAdditional?: boolean | "all" | "failing"
|
|
120
|
+
useDefaults?: boolean | "empty"
|
|
121
|
+
coerceTypes?: boolean | "array"
|
|
122
|
+
// advanced options:
|
|
123
|
+
next?: boolean // NEW
|
|
124
|
+
unevaluated?: boolean // NEW
|
|
125
|
+
dynamicRef?: boolean // NEW
|
|
126
|
+
schemaId?: "id" | "$id"
|
|
127
|
+
jtd?: boolean // NEW
|
|
128
|
+
meta?: SchemaObject | boolean
|
|
129
|
+
defaultMeta?: string | AnySchemaObject
|
|
130
|
+
validateSchema?: boolean | "log"
|
|
131
|
+
addUsedSchema?: boolean
|
|
132
|
+
inlineRefs?: boolean | number
|
|
133
|
+
passContext?: boolean
|
|
134
|
+
loopRequired?: number
|
|
135
|
+
loopEnum?: number // NEW
|
|
136
|
+
ownProperties?: boolean
|
|
137
|
+
multipleOfPrecision?: number
|
|
138
|
+
int32range?: boolean // JTD only
|
|
139
|
+
messages?: boolean
|
|
140
|
+
code?: CodeOptions // NEW
|
|
141
|
+
uriResolver?: UriResolver
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export interface CodeOptions {
|
|
145
|
+
es5?: boolean
|
|
146
|
+
esm?: boolean
|
|
147
|
+
lines?: boolean
|
|
148
|
+
optimize?: boolean | number
|
|
149
|
+
formats?: Code // code to require (or construct) map of available formats - for standalone code
|
|
150
|
+
source?: boolean
|
|
151
|
+
process?: (code: string, schema?: SchemaEnv) => string
|
|
152
|
+
regExp?: RegExpEngine
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
interface InstanceCodeOptions extends CodeOptions {
|
|
156
|
+
regExp: RegExpEngine
|
|
157
|
+
optimize: number
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
interface DeprecatedOptions {
|
|
161
|
+
/** @deprecated */
|
|
162
|
+
ignoreKeywordsWithRef?: boolean
|
|
163
|
+
/** @deprecated */
|
|
164
|
+
jsPropertySyntax?: boolean // added instead of jsonPointers
|
|
165
|
+
/** @deprecated */
|
|
166
|
+
unicode?: boolean
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
interface RemovedOptions {
|
|
170
|
+
format?: boolean
|
|
171
|
+
errorDataPath?: "object" | "property"
|
|
172
|
+
nullable?: boolean // "nullable" keyword is supported by default
|
|
173
|
+
jsonPointers?: boolean
|
|
174
|
+
extendRefs?: true | "ignore" | "fail"
|
|
175
|
+
missingRefs?: true | "ignore" | "fail"
|
|
176
|
+
processCode?: (code: string, schema?: SchemaEnv) => string
|
|
177
|
+
sourceCode?: boolean
|
|
178
|
+
strictDefaults?: boolean
|
|
179
|
+
strictKeywords?: boolean
|
|
180
|
+
uniqueItems?: boolean
|
|
181
|
+
unknownFormats?: true | string[] | "ignore"
|
|
182
|
+
cache?: any
|
|
183
|
+
serialize?: (schema: AnySchema) => unknown
|
|
184
|
+
ajvErrors?: boolean
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
type OptionsInfo<T extends RemovedOptions | DeprecatedOptions> = {
|
|
188
|
+
[K in keyof T]-?: string | undefined
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
const removedOptions: OptionsInfo<RemovedOptions> = {
|
|
192
|
+
errorDataPath: "",
|
|
193
|
+
format: "`validateFormats: false` can be used instead.",
|
|
194
|
+
nullable: '"nullable" keyword is supported by default.',
|
|
195
|
+
jsonPointers: "Deprecated jsPropertySyntax can be used instead.",
|
|
196
|
+
extendRefs: "Deprecated ignoreKeywordsWithRef can be used instead.",
|
|
197
|
+
missingRefs: "Pass empty schema with $id that should be ignored to ajv.addSchema.",
|
|
198
|
+
processCode: "Use option `code: {process: (code, schemaEnv: object) => string}`",
|
|
199
|
+
sourceCode: "Use option `code: {source: true}`",
|
|
200
|
+
strictDefaults: "It is default now, see option `strict`.",
|
|
201
|
+
strictKeywords: "It is default now, see option `strict`.",
|
|
202
|
+
uniqueItems: '"uniqueItems" keyword is always validated.',
|
|
203
|
+
unknownFormats: "Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",
|
|
204
|
+
cache: "Map is used as cache, schema object as key.",
|
|
205
|
+
serialize: "Map is used as cache, schema object as key.",
|
|
206
|
+
ajvErrors: "It is default now.",
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
const deprecatedOptions: OptionsInfo<DeprecatedOptions> = {
|
|
210
|
+
ignoreKeywordsWithRef: "",
|
|
211
|
+
jsPropertySyntax: "",
|
|
212
|
+
unicode: '"minLength"/"maxLength" account for unicode characters by default.',
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
type RequiredInstanceOptions = {
|
|
216
|
+
[K in
|
|
217
|
+
| "strictSchema"
|
|
218
|
+
| "strictNumbers"
|
|
219
|
+
| "strictTypes"
|
|
220
|
+
| "strictTuples"
|
|
221
|
+
| "strictRequired"
|
|
222
|
+
| "inlineRefs"
|
|
223
|
+
| "loopRequired"
|
|
224
|
+
| "loopEnum"
|
|
225
|
+
| "meta"
|
|
226
|
+
| "messages"
|
|
227
|
+
| "schemaId"
|
|
228
|
+
| "addUsedSchema"
|
|
229
|
+
| "validateSchema"
|
|
230
|
+
| "validateFormats"
|
|
231
|
+
| "int32range"
|
|
232
|
+
| "unicodeRegExp"
|
|
233
|
+
| "uriResolver"]: NonNullable<Options[K]>
|
|
234
|
+
} & {code: InstanceCodeOptions}
|
|
235
|
+
|
|
236
|
+
export type InstanceOptions = Options & RequiredInstanceOptions
|
|
237
|
+
|
|
238
|
+
const MAX_EXPRESSION = 200
|
|
239
|
+
|
|
240
|
+
// eslint-disable-next-line complexity
|
|
241
|
+
function requiredOptions(o: Options): RequiredInstanceOptions {
|
|
242
|
+
const s = o.strict
|
|
243
|
+
const _optz = o.code?.optimize
|
|
244
|
+
const optimize = _optz === true || _optz === undefined ? 1 : _optz || 0
|
|
245
|
+
const regExp = o.code?.regExp ?? defaultRegExp
|
|
246
|
+
const uriResolver = o.uriResolver ?? DefaultUriResolver
|
|
247
|
+
return {
|
|
248
|
+
strictSchema: o.strictSchema ?? s ?? true,
|
|
249
|
+
strictNumbers: o.strictNumbers ?? s ?? true,
|
|
250
|
+
strictTypes: o.strictTypes ?? s ?? "log",
|
|
251
|
+
strictTuples: o.strictTuples ?? s ?? "log",
|
|
252
|
+
strictRequired: o.strictRequired ?? s ?? false,
|
|
253
|
+
code: o.code ? {...o.code, optimize, regExp} : {optimize, regExp},
|
|
254
|
+
loopRequired: o.loopRequired ?? MAX_EXPRESSION,
|
|
255
|
+
loopEnum: o.loopEnum ?? MAX_EXPRESSION,
|
|
256
|
+
meta: o.meta ?? true,
|
|
257
|
+
messages: o.messages ?? true,
|
|
258
|
+
inlineRefs: o.inlineRefs ?? true,
|
|
259
|
+
schemaId: o.schemaId ?? "$id",
|
|
260
|
+
addUsedSchema: o.addUsedSchema ?? true,
|
|
261
|
+
validateSchema: o.validateSchema ?? true,
|
|
262
|
+
validateFormats: o.validateFormats ?? true,
|
|
263
|
+
unicodeRegExp: o.unicodeRegExp ?? true,
|
|
264
|
+
int32range: o.int32range ?? true,
|
|
265
|
+
uriResolver: uriResolver,
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
export interface Logger {
|
|
270
|
+
log(...args: unknown[]): unknown
|
|
271
|
+
warn(...args: unknown[]): unknown
|
|
272
|
+
error(...args: unknown[]): unknown
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
export default class Ajv {
|
|
276
|
+
opts: InstanceOptions
|
|
277
|
+
errors?: ErrorObject[] | null // errors from the last validation
|
|
278
|
+
logger: Logger
|
|
279
|
+
// shared external scope values for compiled functions
|
|
280
|
+
readonly scope: ValueScope
|
|
281
|
+
readonly schemas: {[Key in string]?: SchemaEnv} = {}
|
|
282
|
+
readonly refs: {[Ref in string]?: SchemaEnv | string} = {}
|
|
283
|
+
readonly formats: {[Name in string]?: AddedFormat} = {}
|
|
284
|
+
readonly RULES: ValidationRules
|
|
285
|
+
readonly _compilations: Set<SchemaEnv> = new Set()
|
|
286
|
+
private readonly _loading: {[Ref in string]?: Promise<AnySchemaObject>} = {}
|
|
287
|
+
private readonly _cache: Map<AnySchema, SchemaEnv> = new Map()
|
|
288
|
+
private readonly _metaOpts: InstanceOptions
|
|
289
|
+
|
|
290
|
+
static ValidationError = ValidationError
|
|
291
|
+
static MissingRefError = MissingRefError
|
|
292
|
+
|
|
293
|
+
constructor(opts: Options = {}) {
|
|
294
|
+
opts = this.opts = {...opts, ...requiredOptions(opts)}
|
|
295
|
+
const {es5, lines} = this.opts.code
|
|
296
|
+
|
|
297
|
+
this.scope = new ValueScope({scope: {}, prefixes: EXT_SCOPE_NAMES, es5, lines})
|
|
298
|
+
this.logger = getLogger(opts.logger)
|
|
299
|
+
const formatOpt = opts.validateFormats
|
|
300
|
+
opts.validateFormats = false
|
|
301
|
+
|
|
302
|
+
this.RULES = getRules()
|
|
303
|
+
checkOptions.call(this, removedOptions, opts, "NOT SUPPORTED")
|
|
304
|
+
checkOptions.call(this, deprecatedOptions, opts, "DEPRECATED", "warn")
|
|
305
|
+
this._metaOpts = getMetaSchemaOptions.call(this)
|
|
306
|
+
|
|
307
|
+
if (opts.formats) addInitialFormats.call(this)
|
|
308
|
+
this._addVocabularies()
|
|
309
|
+
this._addDefaultMetaSchema()
|
|
310
|
+
if (opts.keywords) addInitialKeywords.call(this, opts.keywords)
|
|
311
|
+
if (typeof opts.meta == "object") this.addMetaSchema(opts.meta)
|
|
312
|
+
addInitialSchemas.call(this)
|
|
313
|
+
opts.validateFormats = formatOpt
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
_addVocabularies(): void {
|
|
317
|
+
this.addKeyword("$async")
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
_addDefaultMetaSchema(): void {
|
|
321
|
+
const {$data, meta, schemaId} = this.opts
|
|
322
|
+
let _dataRefSchema: SchemaObject = $dataRefSchema
|
|
323
|
+
if (schemaId === "id") {
|
|
324
|
+
_dataRefSchema = {...$dataRefSchema}
|
|
325
|
+
_dataRefSchema.id = _dataRefSchema.$id
|
|
326
|
+
delete _dataRefSchema.$id
|
|
327
|
+
}
|
|
328
|
+
if (meta && $data) this.addMetaSchema(_dataRefSchema, _dataRefSchema[schemaId], false)
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
defaultMeta(): string | AnySchemaObject | undefined {
|
|
332
|
+
const {meta, schemaId} = this.opts
|
|
333
|
+
return (this.opts.defaultMeta = typeof meta == "object" ? meta[schemaId] || meta : undefined)
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
// Validate data using schema
|
|
337
|
+
// AnySchema will be compiled and cached using schema itself as a key for Map
|
|
338
|
+
validate(schema: Schema | string, data: unknown): boolean
|
|
339
|
+
validate(schemaKeyRef: AnySchema | string, data: unknown): boolean | Promise<unknown>
|
|
340
|
+
validate<T>(schema: Schema | JSONSchemaType<T> | string, data: unknown): data is T
|
|
341
|
+
// Separated for type inference to work
|
|
342
|
+
// eslint-disable-next-line @typescript-eslint/unified-signatures
|
|
343
|
+
validate<T>(schema: JTDSchemaType<T>, data: unknown): data is T
|
|
344
|
+
// This overload is only intended for typescript inference, the first
|
|
345
|
+
// argument prevents manual type annotation from matching this overload
|
|
346
|
+
validate<N extends never, T extends SomeJTDSchemaType>(
|
|
347
|
+
schema: T,
|
|
348
|
+
data: unknown
|
|
349
|
+
): data is JTDDataType<T>
|
|
350
|
+
validate<T>(schema: AsyncSchema, data: unknown | T): Promise<T>
|
|
351
|
+
validate<T>(schemaKeyRef: AnySchema | string, data: unknown): data is T | Promise<T>
|
|
352
|
+
validate<T>(
|
|
353
|
+
schemaKeyRef: AnySchema | string, // key, ref or schema object
|
|
354
|
+
data: unknown | T // to be validated
|
|
355
|
+
): boolean | Promise<T> {
|
|
356
|
+
let v: AnyValidateFunction | undefined
|
|
357
|
+
if (typeof schemaKeyRef == "string") {
|
|
358
|
+
v = this.getSchema<T>(schemaKeyRef)
|
|
359
|
+
if (!v) throw new Error(`no schema with key or ref "${schemaKeyRef}"`)
|
|
360
|
+
} else {
|
|
361
|
+
v = this.compile<T>(schemaKeyRef)
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
const valid = v(data)
|
|
365
|
+
if (!("$async" in v)) this.errors = v.errors
|
|
366
|
+
return valid
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
// Create validation function for passed schema
|
|
370
|
+
// _meta: true if schema is a meta-schema. Used internally to compile meta schemas of user-defined keywords.
|
|
371
|
+
compile<T = unknown>(schema: Schema | JSONSchemaType<T>, _meta?: boolean): ValidateFunction<T>
|
|
372
|
+
// Separated for type inference to work
|
|
373
|
+
// eslint-disable-next-line @typescript-eslint/unified-signatures
|
|
374
|
+
compile<T = unknown>(schema: JTDSchemaType<T>, _meta?: boolean): ValidateFunction<T>
|
|
375
|
+
// This overload is only intended for typescript inference, the first
|
|
376
|
+
// argument prevents manual type annotation from matching this overload
|
|
377
|
+
compile<N extends never, T extends SomeJTDSchemaType>(
|
|
378
|
+
schema: T,
|
|
379
|
+
_meta?: boolean
|
|
380
|
+
): ValidateFunction<JTDDataType<T>>
|
|
381
|
+
compile<T = unknown>(schema: AsyncSchema, _meta?: boolean): AsyncValidateFunction<T>
|
|
382
|
+
compile<T = unknown>(schema: AnySchema, _meta?: boolean): AnyValidateFunction<T>
|
|
383
|
+
compile<T = unknown>(schema: AnySchema, _meta?: boolean): AnyValidateFunction<T> {
|
|
384
|
+
const sch = this._addSchema(schema, _meta)
|
|
385
|
+
return (sch.validate || this._compileSchemaEnv(sch)) as AnyValidateFunction<T>
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
// Creates validating function for passed schema with asynchronous loading of missing schemas.
|
|
389
|
+
// `loadSchema` option should be a function that accepts schema uri and returns promise that resolves with the schema.
|
|
390
|
+
// TODO allow passing schema URI
|
|
391
|
+
// meta - optional true to compile meta-schema
|
|
392
|
+
compileAsync<T = unknown>(
|
|
393
|
+
schema: SchemaObject | JSONSchemaType<T>,
|
|
394
|
+
_meta?: boolean
|
|
395
|
+
): Promise<ValidateFunction<T>>
|
|
396
|
+
// Separated for type inference to work
|
|
397
|
+
// eslint-disable-next-line @typescript-eslint/unified-signatures
|
|
398
|
+
compileAsync<T = unknown>(schema: JTDSchemaType<T>, _meta?: boolean): Promise<ValidateFunction<T>>
|
|
399
|
+
compileAsync<T = unknown>(schema: AsyncSchema, meta?: boolean): Promise<AsyncValidateFunction<T>>
|
|
400
|
+
// eslint-disable-next-line @typescript-eslint/unified-signatures
|
|
401
|
+
compileAsync<T = unknown>(
|
|
402
|
+
schema: AnySchemaObject,
|
|
403
|
+
meta?: boolean
|
|
404
|
+
): Promise<AnyValidateFunction<T>>
|
|
405
|
+
compileAsync<T = unknown>(
|
|
406
|
+
schema: AnySchemaObject,
|
|
407
|
+
meta?: boolean
|
|
408
|
+
): Promise<AnyValidateFunction<T>> {
|
|
409
|
+
if (typeof this.opts.loadSchema != "function") {
|
|
410
|
+
throw new Error("options.loadSchema should be a function")
|
|
411
|
+
}
|
|
412
|
+
const {loadSchema} = this.opts
|
|
413
|
+
return runCompileAsync.call(this, schema, meta)
|
|
414
|
+
|
|
415
|
+
async function runCompileAsync(
|
|
416
|
+
this: Ajv,
|
|
417
|
+
_schema: AnySchemaObject,
|
|
418
|
+
_meta?: boolean
|
|
419
|
+
): Promise<AnyValidateFunction> {
|
|
420
|
+
await loadMetaSchema.call(this, _schema.$schema)
|
|
421
|
+
const sch = this._addSchema(_schema, _meta)
|
|
422
|
+
return sch.validate || _compileAsync.call(this, sch)
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
async function loadMetaSchema(this: Ajv, $ref?: string): Promise<void> {
|
|
426
|
+
if ($ref && !this.getSchema($ref)) {
|
|
427
|
+
await runCompileAsync.call(this, {$ref}, true)
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
async function _compileAsync(this: Ajv, sch: SchemaEnv): Promise<AnyValidateFunction> {
|
|
432
|
+
try {
|
|
433
|
+
return this._compileSchemaEnv(sch)
|
|
434
|
+
} catch (e) {
|
|
435
|
+
if (!(e instanceof MissingRefError)) throw e
|
|
436
|
+
checkLoaded.call(this, e)
|
|
437
|
+
await loadMissingSchema.call(this, e.missingSchema)
|
|
438
|
+
return _compileAsync.call(this, sch)
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
function checkLoaded(this: Ajv, {missingSchema: ref, missingRef}: MissingRefError): void {
|
|
443
|
+
if (this.refs[ref]) {
|
|
444
|
+
throw new Error(`AnySchema ${ref} is loaded but ${missingRef} cannot be resolved`)
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
async function loadMissingSchema(this: Ajv, ref: string): Promise<void> {
|
|
449
|
+
const _schema = await _loadSchema.call(this, ref)
|
|
450
|
+
if (!this.refs[ref]) await loadMetaSchema.call(this, _schema.$schema)
|
|
451
|
+
if (!this.refs[ref]) this.addSchema(_schema, ref, meta)
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
async function _loadSchema(this: Ajv, ref: string): Promise<AnySchemaObject> {
|
|
455
|
+
const p = this._loading[ref]
|
|
456
|
+
if (p) return p
|
|
457
|
+
try {
|
|
458
|
+
return await (this._loading[ref] = loadSchema(ref))
|
|
459
|
+
} finally {
|
|
460
|
+
delete this._loading[ref]
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
// Adds schema to the instance
|
|
466
|
+
addSchema(
|
|
467
|
+
schema: AnySchema | AnySchema[], // If array is passed, `key` will be ignored
|
|
468
|
+
key?: string, // Optional schema key. Can be passed to `validate` method instead of schema object or id/ref. One schema per instance can have empty `id` and `key`.
|
|
469
|
+
_meta?: boolean, // true if schema is a meta-schema. Used internally, addMetaSchema should be used instead.
|
|
470
|
+
_validateSchema = this.opts.validateSchema // false to skip schema validation. Used internally, option validateSchema should be used instead.
|
|
471
|
+
): Ajv {
|
|
472
|
+
if (Array.isArray(schema)) {
|
|
473
|
+
for (const sch of schema) this.addSchema(sch, undefined, _meta, _validateSchema)
|
|
474
|
+
return this
|
|
475
|
+
}
|
|
476
|
+
let id: string | undefined
|
|
477
|
+
if (typeof schema === "object") {
|
|
478
|
+
const {schemaId} = this.opts
|
|
479
|
+
id = schema[schemaId]
|
|
480
|
+
if (id !== undefined && typeof id != "string") {
|
|
481
|
+
throw new Error(`schema ${schemaId} must be string`)
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
key = normalizeId(key || id)
|
|
485
|
+
this._checkUnique(key)
|
|
486
|
+
this.schemas[key] = this._addSchema(schema, _meta, key, _validateSchema, true)
|
|
487
|
+
return this
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
// Add schema that will be used to validate other schemas
|
|
491
|
+
// options in META_IGNORE_OPTIONS are alway set to false
|
|
492
|
+
addMetaSchema(
|
|
493
|
+
schema: AnySchemaObject,
|
|
494
|
+
key?: string, // schema key
|
|
495
|
+
_validateSchema = this.opts.validateSchema // false to skip schema validation, can be used to override validateSchema option for meta-schema
|
|
496
|
+
): Ajv {
|
|
497
|
+
this.addSchema(schema, key, true, _validateSchema)
|
|
498
|
+
return this
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
// Validate schema against its meta-schema
|
|
502
|
+
validateSchema(schema: AnySchema, throwOrLogError?: boolean): boolean | Promise<unknown> {
|
|
503
|
+
if (typeof schema == "boolean") return true
|
|
504
|
+
let $schema: string | AnySchemaObject | undefined
|
|
505
|
+
$schema = schema.$schema
|
|
506
|
+
if ($schema !== undefined && typeof $schema != "string") {
|
|
507
|
+
throw new Error("$schema must be a string")
|
|
508
|
+
}
|
|
509
|
+
$schema = $schema || this.opts.defaultMeta || this.defaultMeta()
|
|
510
|
+
if (!$schema) {
|
|
511
|
+
this.logger.warn("meta-schema not available")
|
|
512
|
+
this.errors = null
|
|
513
|
+
return true
|
|
514
|
+
}
|
|
515
|
+
const valid = this.validate($schema, schema)
|
|
516
|
+
if (!valid && throwOrLogError) {
|
|
517
|
+
const message = "schema is invalid: " + this.errorsText()
|
|
518
|
+
if (this.opts.validateSchema === "log") this.logger.error(message)
|
|
519
|
+
else throw new Error(message)
|
|
520
|
+
}
|
|
521
|
+
return valid
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
// Get compiled schema by `key` or `ref`.
|
|
525
|
+
// (`key` that was passed to `addSchema` or full schema reference - `schema.$id` or resolved id)
|
|
526
|
+
getSchema<T = unknown>(keyRef: string): AnyValidateFunction<T> | undefined {
|
|
527
|
+
let sch
|
|
528
|
+
while (typeof (sch = getSchEnv.call(this, keyRef)) == "string") keyRef = sch
|
|
529
|
+
if (sch === undefined) {
|
|
530
|
+
const {schemaId} = this.opts
|
|
531
|
+
const root = new SchemaEnv({schema: {}, schemaId})
|
|
532
|
+
sch = resolveSchema.call(this, root, keyRef)
|
|
533
|
+
if (!sch) return
|
|
534
|
+
this.refs[keyRef] = sch
|
|
535
|
+
}
|
|
536
|
+
return (sch.validate || this._compileSchemaEnv(sch)) as AnyValidateFunction<T> | undefined
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
// Remove cached schema(s).
|
|
540
|
+
// If no parameter is passed all schemas but meta-schemas are removed.
|
|
541
|
+
// If RegExp is passed all schemas with key/id matching pattern but meta-schemas are removed.
|
|
542
|
+
// Even if schema is referenced by other schemas it still can be removed as other schemas have local references.
|
|
543
|
+
removeSchema(schemaKeyRef?: AnySchema | string | RegExp): Ajv {
|
|
544
|
+
if (schemaKeyRef instanceof RegExp) {
|
|
545
|
+
this._removeAllSchemas(this.schemas, schemaKeyRef)
|
|
546
|
+
this._removeAllSchemas(this.refs, schemaKeyRef)
|
|
547
|
+
return this
|
|
548
|
+
}
|
|
549
|
+
switch (typeof schemaKeyRef) {
|
|
550
|
+
case "undefined":
|
|
551
|
+
this._removeAllSchemas(this.schemas)
|
|
552
|
+
this._removeAllSchemas(this.refs)
|
|
553
|
+
this._cache.clear()
|
|
554
|
+
return this
|
|
555
|
+
case "string": {
|
|
556
|
+
const sch = getSchEnv.call(this, schemaKeyRef)
|
|
557
|
+
if (typeof sch == "object") this._cache.delete(sch.schema)
|
|
558
|
+
delete this.schemas[schemaKeyRef]
|
|
559
|
+
delete this.refs[schemaKeyRef]
|
|
560
|
+
return this
|
|
561
|
+
}
|
|
562
|
+
case "object": {
|
|
563
|
+
const cacheKey = schemaKeyRef
|
|
564
|
+
this._cache.delete(cacheKey)
|
|
565
|
+
let id = schemaKeyRef[this.opts.schemaId]
|
|
566
|
+
if (id) {
|
|
567
|
+
id = normalizeId(id)
|
|
568
|
+
delete this.schemas[id]
|
|
569
|
+
delete this.refs[id]
|
|
570
|
+
}
|
|
571
|
+
return this
|
|
572
|
+
}
|
|
573
|
+
default:
|
|
574
|
+
throw new Error("ajv.removeSchema: invalid parameter")
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// add "vocabulary" - a collection of keywords
|
|
579
|
+
addVocabulary(definitions: Vocabulary): Ajv {
|
|
580
|
+
for (const def of definitions) this.addKeyword(def)
|
|
581
|
+
return this
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
addKeyword(
|
|
585
|
+
kwdOrDef: string | KeywordDefinition,
|
|
586
|
+
def?: KeywordDefinition // deprecated
|
|
587
|
+
): Ajv {
|
|
588
|
+
let keyword: string | string[]
|
|
589
|
+
if (typeof kwdOrDef == "string") {
|
|
590
|
+
keyword = kwdOrDef
|
|
591
|
+
if (typeof def == "object") {
|
|
592
|
+
this.logger.warn("these parameters are deprecated, see docs for addKeyword")
|
|
593
|
+
def.keyword = keyword
|
|
594
|
+
}
|
|
595
|
+
} else if (typeof kwdOrDef == "object" && def === undefined) {
|
|
596
|
+
def = kwdOrDef
|
|
597
|
+
keyword = def.keyword
|
|
598
|
+
if (Array.isArray(keyword) && !keyword.length) {
|
|
599
|
+
throw new Error("addKeywords: keyword must be string or non-empty array")
|
|
600
|
+
}
|
|
601
|
+
} else {
|
|
602
|
+
throw new Error("invalid addKeywords parameters")
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
checkKeyword.call(this, keyword, def)
|
|
606
|
+
if (!def) {
|
|
607
|
+
eachItem(keyword, (kwd) => addRule.call(this, kwd))
|
|
608
|
+
return this
|
|
609
|
+
}
|
|
610
|
+
keywordMetaschema.call(this, def)
|
|
611
|
+
const definition: AddedKeywordDefinition = {
|
|
612
|
+
...def,
|
|
613
|
+
type: getJSONTypes(def.type),
|
|
614
|
+
schemaType: getJSONTypes(def.schemaType),
|
|
615
|
+
}
|
|
616
|
+
eachItem(
|
|
617
|
+
keyword,
|
|
618
|
+
definition.type.length === 0
|
|
619
|
+
? (k) => addRule.call(this, k, definition)
|
|
620
|
+
: (k) => definition.type.forEach((t) => addRule.call(this, k, definition, t))
|
|
621
|
+
)
|
|
622
|
+
return this
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
getKeyword(keyword: string): AddedKeywordDefinition | boolean {
|
|
626
|
+
const rule = this.RULES.all[keyword]
|
|
627
|
+
return typeof rule == "object" ? rule.definition : !!rule
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
// Remove keyword
|
|
631
|
+
removeKeyword(keyword: string): Ajv {
|
|
632
|
+
// TODO return type should be Ajv
|
|
633
|
+
const {RULES} = this
|
|
634
|
+
delete RULES.keywords[keyword]
|
|
635
|
+
delete RULES.all[keyword]
|
|
636
|
+
for (const group of RULES.rules) {
|
|
637
|
+
const i = group.rules.findIndex((rule) => rule.keyword === keyword)
|
|
638
|
+
if (i >= 0) group.rules.splice(i, 1)
|
|
639
|
+
}
|
|
640
|
+
return this
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
// Add format
|
|
644
|
+
addFormat(name: string, format: Format): Ajv {
|
|
645
|
+
if (typeof format == "string") format = new RegExp(format)
|
|
646
|
+
this.formats[name] = format
|
|
647
|
+
return this
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
errorsText(
|
|
651
|
+
errors: ErrorObject[] | null | undefined = this.errors, // optional array of validation errors
|
|
652
|
+
{separator = ", ", dataVar = "data"}: ErrorsTextOptions = {} // optional options with properties `separator` and `dataVar`
|
|
653
|
+
): string {
|
|
654
|
+
if (!errors || errors.length === 0) return "No errors"
|
|
655
|
+
return errors
|
|
656
|
+
.map((e) => `${dataVar}${e.instancePath} ${e.message}`)
|
|
657
|
+
.reduce((text, msg) => text + separator + msg)
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
$dataMetaSchema(metaSchema: AnySchemaObject, keywordsJsonPointers: string[]): AnySchemaObject {
|
|
661
|
+
const rules = this.RULES.all
|
|
662
|
+
metaSchema = JSON.parse(JSON.stringify(metaSchema))
|
|
663
|
+
for (const jsonPointer of keywordsJsonPointers) {
|
|
664
|
+
const segments = jsonPointer.split("/").slice(1) // first segment is an empty string
|
|
665
|
+
let keywords = metaSchema
|
|
666
|
+
for (const seg of segments) keywords = keywords[seg] as AnySchemaObject
|
|
667
|
+
|
|
668
|
+
for (const key in rules) {
|
|
669
|
+
const rule = rules[key]
|
|
670
|
+
if (typeof rule != "object") continue
|
|
671
|
+
const {$data} = rule.definition
|
|
672
|
+
const schema = keywords[key] as AnySchemaObject | undefined
|
|
673
|
+
if ($data && schema) keywords[key] = schemaOrData(schema)
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
return metaSchema
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
private _removeAllSchemas(schemas: {[Ref in string]?: SchemaEnv | string}, regex?: RegExp): void {
|
|
681
|
+
for (const keyRef in schemas) {
|
|
682
|
+
const sch = schemas[keyRef]
|
|
683
|
+
if (!regex || regex.test(keyRef)) {
|
|
684
|
+
if (typeof sch == "string") {
|
|
685
|
+
delete schemas[keyRef]
|
|
686
|
+
} else if (sch && !sch.meta) {
|
|
687
|
+
this._cache.delete(sch.schema)
|
|
688
|
+
delete schemas[keyRef]
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
_addSchema(
|
|
695
|
+
schema: AnySchema,
|
|
696
|
+
meta?: boolean,
|
|
697
|
+
baseId?: string,
|
|
698
|
+
validateSchema = this.opts.validateSchema,
|
|
699
|
+
addSchema = this.opts.addUsedSchema
|
|
700
|
+
): SchemaEnv {
|
|
701
|
+
let id: string | undefined
|
|
702
|
+
const {schemaId} = this.opts
|
|
703
|
+
if (typeof schema == "object") {
|
|
704
|
+
id = schema[schemaId]
|
|
705
|
+
} else {
|
|
706
|
+
if (this.opts.jtd) throw new Error("schema must be object")
|
|
707
|
+
else if (typeof schema != "boolean") throw new Error("schema must be object or boolean")
|
|
708
|
+
}
|
|
709
|
+
let sch = this._cache.get(schema)
|
|
710
|
+
if (sch !== undefined) return sch
|
|
711
|
+
|
|
712
|
+
baseId = normalizeId(id || baseId)
|
|
713
|
+
const localRefs = getSchemaRefs.call(this, schema, baseId)
|
|
714
|
+
sch = new SchemaEnv({schema, schemaId, meta, baseId, localRefs})
|
|
715
|
+
this._cache.set(sch.schema, sch)
|
|
716
|
+
if (addSchema && !baseId.startsWith("#")) {
|
|
717
|
+
// TODO atm it is allowed to overwrite schemas without id (instead of not adding them)
|
|
718
|
+
if (baseId) this._checkUnique(baseId)
|
|
719
|
+
this.refs[baseId] = sch
|
|
720
|
+
}
|
|
721
|
+
if (validateSchema) this.validateSchema(schema, true)
|
|
722
|
+
return sch
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
private _checkUnique(id: string): void {
|
|
726
|
+
if (this.schemas[id] || this.refs[id]) {
|
|
727
|
+
throw new Error(`schema with key or id "${id}" already exists`)
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
private _compileSchemaEnv(sch: SchemaEnv): AnyValidateFunction {
|
|
732
|
+
if (sch.meta) this._compileMetaSchema(sch)
|
|
733
|
+
else compileSchema.call(this, sch)
|
|
734
|
+
|
|
735
|
+
/* istanbul ignore if */
|
|
736
|
+
if (!sch.validate) throw new Error("ajv implementation error")
|
|
737
|
+
return sch.validate
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
private _compileMetaSchema(sch: SchemaEnv): void {
|
|
741
|
+
const currentOpts = this.opts
|
|
742
|
+
this.opts = this._metaOpts
|
|
743
|
+
try {
|
|
744
|
+
compileSchema.call(this, sch)
|
|
745
|
+
} finally {
|
|
746
|
+
this.opts = currentOpts
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
export interface ErrorsTextOptions {
|
|
752
|
+
separator?: string
|
|
753
|
+
dataVar?: string
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
function checkOptions(
|
|
757
|
+
this: Ajv,
|
|
758
|
+
checkOpts: OptionsInfo<RemovedOptions | DeprecatedOptions>,
|
|
759
|
+
options: Options & RemovedOptions,
|
|
760
|
+
msg: string,
|
|
761
|
+
log: "warn" | "error" = "error"
|
|
762
|
+
): void {
|
|
763
|
+
for (const key in checkOpts) {
|
|
764
|
+
const opt = key as keyof typeof checkOpts
|
|
765
|
+
if (opt in options) this.logger[log](`${msg}: option ${key}. ${checkOpts[opt]}`)
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
function getSchEnv(this: Ajv, keyRef: string): SchemaEnv | string | undefined {
|
|
770
|
+
keyRef = normalizeId(keyRef) // TODO tests fail without this line
|
|
771
|
+
return this.schemas[keyRef] || this.refs[keyRef]
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
function addInitialSchemas(this: Ajv): void {
|
|
775
|
+
const optsSchemas = this.opts.schemas
|
|
776
|
+
if (!optsSchemas) return
|
|
777
|
+
if (Array.isArray(optsSchemas)) this.addSchema(optsSchemas)
|
|
778
|
+
else for (const key in optsSchemas) this.addSchema(optsSchemas[key] as AnySchema, key)
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
function addInitialFormats(this: Ajv): void {
|
|
782
|
+
for (const name in this.opts.formats) {
|
|
783
|
+
const format = this.opts.formats[name]
|
|
784
|
+
if (format) this.addFormat(name, format)
|
|
785
|
+
}
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
function addInitialKeywords(
|
|
789
|
+
this: Ajv,
|
|
790
|
+
defs: Vocabulary | {[K in string]?: KeywordDefinition}
|
|
791
|
+
): void {
|
|
792
|
+
if (Array.isArray(defs)) {
|
|
793
|
+
this.addVocabulary(defs)
|
|
794
|
+
return
|
|
795
|
+
}
|
|
796
|
+
this.logger.warn("keywords option as map is deprecated, pass array")
|
|
797
|
+
for (const keyword in defs) {
|
|
798
|
+
const def = defs[keyword] as KeywordDefinition
|
|
799
|
+
if (!def.keyword) def.keyword = keyword
|
|
800
|
+
this.addKeyword(def)
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
function getMetaSchemaOptions(this: Ajv): InstanceOptions {
|
|
805
|
+
const metaOpts = {...this.opts}
|
|
806
|
+
for (const opt of META_IGNORE_OPTIONS) delete metaOpts[opt]
|
|
807
|
+
return metaOpts
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
const noLogs = {log() {}, warn() {}, error() {}}
|
|
811
|
+
|
|
812
|
+
function getLogger(logger?: Partial<Logger> | false): Logger {
|
|
813
|
+
if (logger === false) return noLogs
|
|
814
|
+
if (logger === undefined) return console
|
|
815
|
+
if (logger.log && logger.warn && logger.error) return logger as Logger
|
|
816
|
+
throw new Error("logger must implement log, warn and error methods")
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
const KEYWORD_NAME = /^[a-z_$][a-z0-9_$:-]*$/i
|
|
820
|
+
|
|
821
|
+
function checkKeyword(this: Ajv, keyword: string | string[], def?: KeywordDefinition): void {
|
|
822
|
+
const {RULES} = this
|
|
823
|
+
eachItem(keyword, (kwd) => {
|
|
824
|
+
if (RULES.keywords[kwd]) throw new Error(`Keyword ${kwd} is already defined`)
|
|
825
|
+
if (!KEYWORD_NAME.test(kwd)) throw new Error(`Keyword ${kwd} has invalid name`)
|
|
826
|
+
})
|
|
827
|
+
if (!def) return
|
|
828
|
+
if (def.$data && !("code" in def || "validate" in def)) {
|
|
829
|
+
throw new Error('$data keyword must have "code" or "validate" function')
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
function addRule(
|
|
834
|
+
this: Ajv,
|
|
835
|
+
keyword: string,
|
|
836
|
+
definition?: AddedKeywordDefinition,
|
|
837
|
+
dataType?: JSONType
|
|
838
|
+
): void {
|
|
839
|
+
const post = definition?.post
|
|
840
|
+
if (dataType && post) throw new Error('keyword with "post" flag cannot have "type"')
|
|
841
|
+
const {RULES} = this
|
|
842
|
+
let ruleGroup = post ? RULES.post : RULES.rules.find(({type: t}) => t === dataType)
|
|
843
|
+
if (!ruleGroup) {
|
|
844
|
+
ruleGroup = {type: dataType, rules: []}
|
|
845
|
+
RULES.rules.push(ruleGroup)
|
|
846
|
+
}
|
|
847
|
+
RULES.keywords[keyword] = true
|
|
848
|
+
if (!definition) return
|
|
849
|
+
|
|
850
|
+
const rule: Rule = {
|
|
851
|
+
keyword,
|
|
852
|
+
definition: {
|
|
853
|
+
...definition,
|
|
854
|
+
type: getJSONTypes(definition.type),
|
|
855
|
+
schemaType: getJSONTypes(definition.schemaType),
|
|
856
|
+
},
|
|
857
|
+
}
|
|
858
|
+
if (definition.before) addBeforeRule.call(this, ruleGroup, rule, definition.before)
|
|
859
|
+
else ruleGroup.rules.push(rule)
|
|
860
|
+
RULES.all[keyword] = rule
|
|
861
|
+
definition.implements?.forEach((kwd) => this.addKeyword(kwd))
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
function addBeforeRule(this: Ajv, ruleGroup: RuleGroup, rule: Rule, before: string): void {
|
|
865
|
+
const i = ruleGroup.rules.findIndex((_rule) => _rule.keyword === before)
|
|
866
|
+
if (i >= 0) {
|
|
867
|
+
ruleGroup.rules.splice(i, 0, rule)
|
|
868
|
+
} else {
|
|
869
|
+
ruleGroup.rules.push(rule)
|
|
870
|
+
this.logger.warn(`rule ${before} is not defined`)
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
function keywordMetaschema(this: Ajv, def: KeywordDefinition): void {
|
|
875
|
+
let {metaSchema} = def
|
|
876
|
+
if (metaSchema === undefined) return
|
|
877
|
+
if (def.$data && this.opts.$data) metaSchema = schemaOrData(metaSchema)
|
|
878
|
+
def.validateSchema = this.compile(metaSchema, true)
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
const $dataRef = {
|
|
882
|
+
$ref: "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
function schemaOrData(schema: AnySchema): AnySchemaObject {
|
|
886
|
+
return {anyOf: [schema, $dataRef]}
|
|
887
|
+
}
|