@aws-amplify/graphql-model-transformer 1.3.5-agqlac.0 → 1.4.0-rds.3
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/API.md +3 -3
- package/CHANGELOG.md +13 -4
- package/lib/definitions.d.ts.map +1 -1
- package/lib/definitions.js.map +1 -1
- package/lib/graphql-model-transformer.js +1 -1
- package/lib/graphql-model-transformer.js.map +1 -1
- package/lib/rds-lambda.zip +0 -0
- package/lib/rds-notification-lambda.zip +0 -0
- package/lib/rds-patching-lambda.zip +0 -0
- package/lib/resolvers/dynamodb/mutation.d.ts +1 -1
- package/lib/resolvers/dynamodb/mutation.d.ts.map +1 -1
- package/lib/resolvers/dynamodb/mutation.js +1 -1
- package/lib/resolvers/dynamodb/mutation.js.map +1 -1
- package/lib/resolvers/generators/dynamodb-vtl-generator.d.ts +1 -1
- package/lib/resolvers/generators/dynamodb-vtl-generator.d.ts.map +1 -1
- package/lib/resolvers/generators/dynamodb-vtl-generator.js +2 -2
- package/lib/resolvers/generators/dynamodb-vtl-generator.js.map +1 -1
- package/lib/resolvers/generators/rds-vtl-generator.d.ts +1 -1
- package/lib/resolvers/generators/rds-vtl-generator.d.ts.map +1 -1
- package/lib/resolvers/generators/rds-vtl-generator.js +2 -2
- package/lib/resolvers/generators/rds-vtl-generator.js.map +1 -1
- package/lib/resolvers/generators/vtl-generator.d.ts +1 -1
- package/lib/resolvers/generators/vtl-generator.d.ts.map +1 -1
- package/lib/resolvers/rds/mutation.d.ts +1 -1
- package/lib/resolvers/rds/mutation.d.ts.map +1 -1
- package/lib/resolvers/rds/mutation.js +59 -61
- package/lib/resolvers/rds/mutation.js.map +1 -1
- package/lib/resolvers/rds/resolver.d.ts +11 -5
- package/lib/resolvers/rds/resolver.d.ts.map +1 -1
- package/lib/resolvers/rds/resolver.js +160 -24
- package/lib/resolvers/rds/resolver.js.map +1 -1
- package/lib/resources/dynamo-model-resource-generator.js +1 -1
- package/lib/resources/dynamo-model-resource-generator.js.map +1 -1
- package/lib/resources/model-resource-generator.d.ts.map +1 -1
- package/lib/resources/model-resource-generator.js +5 -4
- package/lib/resources/model-resource-generator.js.map +1 -1
- package/lib/resources/rds-model-resource-generator.d.ts +1 -1
- package/lib/resources/rds-model-resource-generator.d.ts.map +1 -1
- package/lib/resources/rds-model-resource-generator.js +25 -3
- package/lib/resources/rds-model-resource-generator.js.map +1 -1
- package/package.json +13 -19
- package/publish-notification-lambda/README.md +39 -0
- package/publish-notification-lambda/node_modules/.package-lock.json +1930 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +46 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/LICENSE +202 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/README.md +20 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +12 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +142 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +3 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +37 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/package.json +26 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +21 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/Key.ts +12 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +13 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +88 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +59 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/index.ts +5 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/tsconfig.json +17 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +88 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +12 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +142 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +3 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +37 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +34 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +108 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/index.ts +3 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/tsconfig.json +22 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +86 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/README.md +29 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +12 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +142 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +3 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +37 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/package.json +28 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/tsconfig.json +17 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +46 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +12 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +142 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +3 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +37 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/package.json +26 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +16 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/README.md +16 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/package.json +31 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/publish-notification-lambda/node_modules/@aws-crypto/util/tsconfig.json +23 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/abort-controller/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/abort-controller/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-lambda/README.md +798 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-lambda/package.json +103 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sns/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sns/README.md +554 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sns/package.json +100 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sso/README.md +255 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sso/package.json +96 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sso-oidc/README.md +268 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sso-oidc/package.json +96 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sts/README.md +273 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/client-sts/package.json +102 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/config-resolver/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/config-resolver/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/config-resolver/package.json +59 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-imds/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-imds/README.md +11 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-imds/package.json +66 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-ini/package.json +69 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-node/README.md +101 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-node/package.json +70 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-web-identity/package.json +71 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-codec/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-codec/package.json +57 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-browser/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-browser/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-browser/package.json +57 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/package.json +56 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-node/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-node/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-node/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-universal/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-universal/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-universal/package.json +59 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/fetch-http-handler/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/fetch-http-handler/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/fetch-http-handler/package.json +59 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/hash-node/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/hash-node/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/hash-node/package.json +60 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/invalid-dependency/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/invalid-dependency/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/invalid-dependency/package.json +53 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/is-array-buffer/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/is-array-buffer/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/is-array-buffer/package.json +56 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-content-length/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-content-length/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-content-length/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-endpoint/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-endpoint/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-endpoint/package.json +60 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-host-header/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-recursion-detection/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-retry/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-retry/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-retry/package.json +65 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-sdk-sts/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-sdk-sts/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-sdk-sts/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-serde/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-serde/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-serde/package.json +57 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-signing/package.json +61 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-stack/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-stack/README.md +78 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-stack/package.json +60 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/middleware-user-agent/package.json +59 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/node-config-provider/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/node-config-provider/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/node-config-provider/package.json +61 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/node-http-handler/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/node-http-handler/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/node-http-handler/package.json +63 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/property-provider/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/property-provider/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/property-provider/package.json +56 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/protocol-http/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/protocol-http/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/protocol-http/package.json +57 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/querystring-builder/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/querystring-builder/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/querystring-builder/package.json +57 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/querystring-parser/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/querystring-parser/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/querystring-parser/package.json +56 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/service-error-classification/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/service-error-classification/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/service-error-classification/package.json +53 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/shared-ini-file-loader/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/shared-ini-file-loader/README.md +105 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/shared-ini-file-loader/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/signature-v4/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/signature-v4/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/signature-v4/package.json +66 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/smithy-client/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/smithy-client/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/smithy-client/package.json +59 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/token-providers/README.md +39 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/token-providers/package.json +67 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/types/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/types/package.json +57 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/url-parser/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/url-parser/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/url-parser/package.json +54 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-base64/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-base64/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-base64/package.json +66 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-browser/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-browser/README.md +12 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-browser/package.json +53 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-node/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-node/README.md +12 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-node/package.json +57 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-buffer-from/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-buffer-from/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-buffer-from/package.json +57 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-config-provider/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +62 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-node/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-node/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-node/package.json +61 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +203 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +203 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/package.json +58 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-hex-encoding/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-hex-encoding/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-hex-encoding/package.json +56 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-locate-window/package.json +56 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-middleware/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-middleware/README.md +12 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-middleware/package.json +62 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-retry/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-retry/README.md +77 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-retry/package.json +64 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-uri-escape/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-uri-escape/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-uri-escape/package.json +55 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8/README.md +4 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8/package.json +65 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8-browser/README.md +8 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8-browser/package.json +50 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-waiter/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-waiter/README.md +10 -0
- package/publish-notification-lambda/node_modules/@aws-sdk/util-waiter/package.json +58 -0
- package/publish-notification-lambda/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@smithy/protocol-http/README.md +4 -0
- package/publish-notification-lambda/node_modules/@smithy/protocol-http/package.json +63 -0
- package/publish-notification-lambda/node_modules/@smithy/types/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/@smithy/types/README.md +4 -0
- package/publish-notification-lambda/node_modules/@smithy/types/package.json +62 -0
- package/publish-notification-lambda/node_modules/@types/node/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/@types/node/README.md +16 -0
- package/publish-notification-lambda/node_modules/@types/node/package.json +237 -0
- package/publish-notification-lambda/node_modules/ansi-regex/license +9 -0
- package/publish-notification-lambda/node_modules/ansi-regex/package.json +55 -0
- package/publish-notification-lambda/node_modules/ansi-regex/readme.md +78 -0
- package/publish-notification-lambda/node_modules/ansi-styles/license +9 -0
- package/publish-notification-lambda/node_modules/ansi-styles/package.json +56 -0
- package/publish-notification-lambda/node_modules/ansi-styles/readme.md +152 -0
- package/publish-notification-lambda/node_modules/archiver/CHANGELOG.md +228 -0
- package/publish-notification-lambda/node_modules/archiver/LICENSE +22 -0
- package/publish-notification-lambda/node_modules/archiver/README.md +94 -0
- package/publish-notification-lambda/node_modules/archiver/package.json +60 -0
- package/publish-notification-lambda/node_modules/archiver-utils/CHANGELOG.md +14 -0
- package/publish-notification-lambda/node_modules/archiver-utils/LICENSE +22 -0
- package/publish-notification-lambda/node_modules/archiver-utils/README.md +7 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/.travis.yml +34 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/LICENSE +47 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/README.md +58 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/package.json +52 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/safe-buffer/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/safe-buffer/README.md +584 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/safe-buffer/package.json +37 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/string_decoder/.travis.yml +50 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/string_decoder/LICENSE +48 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/string_decoder/README.md +47 -0
- package/publish-notification-lambda/node_modules/archiver-utils/node_modules/string_decoder/package.json +31 -0
- package/publish-notification-lambda/node_modules/archiver-utils/package.json +54 -0
- package/publish-notification-lambda/node_modules/async/CHANGELOG.md +348 -0
- package/publish-notification-lambda/node_modules/async/LICENSE +19 -0
- package/publish-notification-lambda/node_modules/async/README.md +59 -0
- package/publish-notification-lambda/node_modules/async/bower.json +17 -0
- package/publish-notification-lambda/node_modules/async/dist/async.mjs +5947 -0
- package/publish-notification-lambda/node_modules/async/package.json +75 -0
- package/publish-notification-lambda/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/publish-notification-lambda/node_modules/balanced-match/LICENSE.md +21 -0
- package/publish-notification-lambda/node_modules/balanced-match/README.md +97 -0
- package/publish-notification-lambda/node_modules/balanced-match/package.json +48 -0
- package/publish-notification-lambda/node_modules/base64-js/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/base64-js/README.md +34 -0
- package/publish-notification-lambda/node_modules/base64-js/package.json +47 -0
- package/publish-notification-lambda/node_modules/bestzip/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/bestzip/package.json +46 -0
- package/publish-notification-lambda/node_modules/bestzip/readme.md +91 -0
- package/publish-notification-lambda/node_modules/bl/.travis.yml +17 -0
- package/publish-notification-lambda/node_modules/bl/LICENSE.md +13 -0
- package/publish-notification-lambda/node_modules/bl/README.md +247 -0
- package/publish-notification-lambda/node_modules/bl/package.json +37 -0
- package/publish-notification-lambda/node_modules/bowser/CHANGELOG.md +218 -0
- package/publish-notification-lambda/node_modules/bowser/LICENSE +39 -0
- package/publish-notification-lambda/node_modules/bowser/README.md +179 -0
- package/publish-notification-lambda/node_modules/bowser/package.json +83 -0
- package/publish-notification-lambda/node_modules/brace-expansion/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/brace-expansion/README.md +129 -0
- package/publish-notification-lambda/node_modules/brace-expansion/package.json +47 -0
- package/publish-notification-lambda/node_modules/buffer/AUTHORS.md +70 -0
- package/publish-notification-lambda/node_modules/buffer/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/buffer/README.md +410 -0
- package/publish-notification-lambda/node_modules/buffer/package.json +96 -0
- package/publish-notification-lambda/node_modules/buffer-crc32/LICENSE +19 -0
- package/publish-notification-lambda/node_modules/buffer-crc32/README.md +47 -0
- package/publish-notification-lambda/node_modules/buffer-crc32/package.json +39 -0
- package/publish-notification-lambda/node_modules/cliui/CHANGELOG.md +121 -0
- package/publish-notification-lambda/node_modules/cliui/LICENSE.txt +14 -0
- package/publish-notification-lambda/node_modules/cliui/README.md +141 -0
- package/publish-notification-lambda/node_modules/cliui/build/index.cjs +302 -0
- package/publish-notification-lambda/node_modules/cliui/index.mjs +13 -0
- package/publish-notification-lambda/node_modules/cliui/package.json +83 -0
- package/publish-notification-lambda/node_modules/color-convert/CHANGELOG.md +54 -0
- package/publish-notification-lambda/node_modules/color-convert/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/color-convert/README.md +68 -0
- package/publish-notification-lambda/node_modules/color-convert/package.json +48 -0
- package/publish-notification-lambda/node_modules/color-name/LICENSE +8 -0
- package/publish-notification-lambda/node_modules/color-name/README.md +11 -0
- package/publish-notification-lambda/node_modules/color-name/package.json +28 -0
- package/publish-notification-lambda/node_modules/compress-commons/CHANGELOG.md +58 -0
- package/publish-notification-lambda/node_modules/compress-commons/LICENSE +22 -0
- package/publish-notification-lambda/node_modules/compress-commons/README.md +25 -0
- package/publish-notification-lambda/node_modules/compress-commons/package.json +45 -0
- package/publish-notification-lambda/node_modules/concat-map/.travis.yml +4 -0
- package/publish-notification-lambda/node_modules/concat-map/LICENSE +18 -0
- package/publish-notification-lambda/node_modules/concat-map/README.markdown +62 -0
- package/publish-notification-lambda/node_modules/concat-map/package.json +43 -0
- package/publish-notification-lambda/node_modules/core-util-is/LICENSE +19 -0
- package/publish-notification-lambda/node_modules/core-util-is/README.md +3 -0
- package/publish-notification-lambda/node_modules/core-util-is/package.json +38 -0
- package/publish-notification-lambda/node_modules/crc-32/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/crc-32/README.md +200 -0
- package/publish-notification-lambda/node_modules/crc-32/bin/crc32.njs +105 -0
- package/publish-notification-lambda/node_modules/crc-32/package.json +43 -0
- package/publish-notification-lambda/node_modules/crc-32/types/tsconfig.json +14 -0
- package/publish-notification-lambda/node_modules/crc-32/types/tslint.json +11 -0
- package/publish-notification-lambda/node_modules/crc32-stream/CHANGELOG.md +57 -0
- package/publish-notification-lambda/node_modules/crc32-stream/LICENSE +22 -0
- package/publish-notification-lambda/node_modules/crc32-stream/README.md +79 -0
- package/publish-notification-lambda/node_modules/crc32-stream/package.json +45 -0
- package/publish-notification-lambda/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/publish-notification-lambda/node_modules/emoji-regex/README.md +73 -0
- package/publish-notification-lambda/node_modules/emoji-regex/package.json +50 -0
- package/publish-notification-lambda/node_modules/end-of-stream/README.md +54 -0
- package/publish-notification-lambda/node_modules/end-of-stream/package.json +37 -0
- package/publish-notification-lambda/node_modules/escalade/dist/index.mjs +22 -0
- package/publish-notification-lambda/node_modules/escalade/license +9 -0
- package/publish-notification-lambda/node_modules/escalade/package.json +61 -0
- package/publish-notification-lambda/node_modules/escalade/readme.md +211 -0
- package/publish-notification-lambda/node_modules/escalade/sync/index.mjs +18 -0
- package/publish-notification-lambda/node_modules/fast-xml-parser/CHANGELOG.md +551 -0
- package/publish-notification-lambda/node_modules/fast-xml-parser/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/fast-xml-parser/README.md +204 -0
- package/publish-notification-lambda/node_modules/fast-xml-parser/package.json +71 -0
- package/publish-notification-lambda/node_modules/fs-constants/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/fs-constants/README.md +26 -0
- package/publish-notification-lambda/node_modules/fs-constants/package.json +19 -0
- package/publish-notification-lambda/node_modules/fs.realpath/LICENSE +43 -0
- package/publish-notification-lambda/node_modules/fs.realpath/README.md +33 -0
- package/publish-notification-lambda/node_modules/fs.realpath/package.json +26 -0
- package/publish-notification-lambda/node_modules/get-caller-file/LICENSE.md +6 -0
- package/publish-notification-lambda/node_modules/get-caller-file/README.md +41 -0
- package/publish-notification-lambda/node_modules/get-caller-file/package.json +42 -0
- package/publish-notification-lambda/node_modules/glob/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/glob/README.md +378 -0
- package/publish-notification-lambda/node_modules/glob/package.json +55 -0
- package/publish-notification-lambda/node_modules/graceful-fs/LICENSE +15 -0
- package/publish-notification-lambda/node_modules/graceful-fs/README.md +143 -0
- package/publish-notification-lambda/node_modules/graceful-fs/package.json +53 -0
- package/publish-notification-lambda/node_modules/ieee754/LICENSE +11 -0
- package/publish-notification-lambda/node_modules/ieee754/README.md +51 -0
- package/publish-notification-lambda/node_modules/ieee754/package.json +52 -0
- package/publish-notification-lambda/node_modules/inflight/LICENSE +15 -0
- package/publish-notification-lambda/node_modules/inflight/README.md +37 -0
- package/publish-notification-lambda/node_modules/inflight/package.json +29 -0
- package/publish-notification-lambda/node_modules/inherits/LICENSE +16 -0
- package/publish-notification-lambda/node_modules/inherits/README.md +42 -0
- package/publish-notification-lambda/node_modules/inherits/package.json +29 -0
- package/publish-notification-lambda/node_modules/is-fullwidth-code-point/license +9 -0
- package/publish-notification-lambda/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/publish-notification-lambda/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/publish-notification-lambda/node_modules/isarray/.travis.yml +4 -0
- package/publish-notification-lambda/node_modules/isarray/Makefile +6 -0
- package/publish-notification-lambda/node_modules/isarray/README.md +60 -0
- package/publish-notification-lambda/node_modules/isarray/component.json +19 -0
- package/publish-notification-lambda/node_modules/isarray/package.json +45 -0
- package/publish-notification-lambda/node_modules/isexe/README.md +51 -0
- package/publish-notification-lambda/node_modules/isexe/package.json +31 -0
- package/publish-notification-lambda/node_modules/lazystream/LICENSE +23 -0
- package/publish-notification-lambda/node_modules/lazystream/README.md +114 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/.travis.yml +34 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/LICENSE +47 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/README.md +58 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/package.json +52 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/safe-buffer/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/safe-buffer/README.md +584 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/safe-buffer/package.json +37 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/string_decoder/.travis.yml +50 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/string_decoder/LICENSE +48 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/string_decoder/README.md +47 -0
- package/publish-notification-lambda/node_modules/lazystream/node_modules/string_decoder/package.json +31 -0
- package/publish-notification-lambda/node_modules/lazystream/package.json +46 -0
- package/publish-notification-lambda/node_modules/lazystream/test/data.md +13 -0
- package/publish-notification-lambda/node_modules/lodash.defaults/LICENSE +47 -0
- package/publish-notification-lambda/node_modules/lodash.defaults/README.md +18 -0
- package/publish-notification-lambda/node_modules/lodash.defaults/package.json +17 -0
- package/publish-notification-lambda/node_modules/lodash.difference/LICENSE +47 -0
- package/publish-notification-lambda/node_modules/lodash.difference/README.md +18 -0
- package/publish-notification-lambda/node_modules/lodash.difference/package.json +17 -0
- package/publish-notification-lambda/node_modules/lodash.flatten/LICENSE +47 -0
- package/publish-notification-lambda/node_modules/lodash.flatten/README.md +18 -0
- package/publish-notification-lambda/node_modules/lodash.flatten/package.json +17 -0
- package/publish-notification-lambda/node_modules/lodash.isplainobject/LICENSE +47 -0
- package/publish-notification-lambda/node_modules/lodash.isplainobject/README.md +18 -0
- package/publish-notification-lambda/node_modules/lodash.isplainobject/package.json +17 -0
- package/publish-notification-lambda/node_modules/lodash.union/LICENSE +47 -0
- package/publish-notification-lambda/node_modules/lodash.union/README.md +18 -0
- package/publish-notification-lambda/node_modules/lodash.union/package.json +17 -0
- package/publish-notification-lambda/node_modules/minimatch/README.md +230 -0
- package/publish-notification-lambda/node_modules/minimatch/package.json +33 -0
- package/publish-notification-lambda/node_modules/normalize-path/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/normalize-path/README.md +127 -0
- package/publish-notification-lambda/node_modules/normalize-path/package.json +77 -0
- package/publish-notification-lambda/node_modules/once/LICENSE +15 -0
- package/publish-notification-lambda/node_modules/once/README.md +79 -0
- package/publish-notification-lambda/node_modules/once/package.json +33 -0
- package/publish-notification-lambda/node_modules/path-is-absolute/license +21 -0
- package/publish-notification-lambda/node_modules/path-is-absolute/package.json +43 -0
- package/publish-notification-lambda/node_modules/path-is-absolute/readme.md +59 -0
- package/publish-notification-lambda/node_modules/process-nextick-args/license.md +19 -0
- package/publish-notification-lambda/node_modules/process-nextick-args/package.json +25 -0
- package/publish-notification-lambda/node_modules/process-nextick-args/readme.md +18 -0
- package/publish-notification-lambda/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/publish-notification-lambda/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/publish-notification-lambda/node_modules/readable-stream/LICENSE +47 -0
- package/publish-notification-lambda/node_modules/readable-stream/README.md +106 -0
- package/publish-notification-lambda/node_modules/readable-stream/package.json +68 -0
- package/publish-notification-lambda/node_modules/readdir-glob/LICENSE +201 -0
- package/publish-notification-lambda/node_modules/readdir-glob/README.md +85 -0
- package/publish-notification-lambda/node_modules/readdir-glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/publish-notification-lambda/node_modules/readdir-glob/node_modules/brace-expansion/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/readdir-glob/node_modules/brace-expansion/README.md +135 -0
- package/publish-notification-lambda/node_modules/readdir-glob/node_modules/brace-expansion/package.json +46 -0
- package/publish-notification-lambda/node_modules/readdir-glob/node_modules/minimatch/LICENSE +15 -0
- package/publish-notification-lambda/node_modules/readdir-glob/node_modules/minimatch/README.md +259 -0
- package/publish-notification-lambda/node_modules/readdir-glob/node_modules/minimatch/package.json +35 -0
- package/publish-notification-lambda/node_modules/readdir-glob/package.json +43 -0
- package/publish-notification-lambda/node_modules/require-directory/.jshintrc +67 -0
- package/publish-notification-lambda/node_modules/require-directory/.travis.yml +3 -0
- package/publish-notification-lambda/node_modules/require-directory/LICENSE +22 -0
- package/publish-notification-lambda/node_modules/require-directory/README.markdown +184 -0
- package/publish-notification-lambda/node_modules/require-directory/package.json +40 -0
- package/publish-notification-lambda/node_modules/safe-buffer/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/safe-buffer/README.md +584 -0
- package/publish-notification-lambda/node_modules/safe-buffer/package.json +51 -0
- package/publish-notification-lambda/node_modules/string-width/license +9 -0
- package/publish-notification-lambda/node_modules/string-width/package.json +56 -0
- package/publish-notification-lambda/node_modules/string-width/readme.md +50 -0
- package/publish-notification-lambda/node_modules/string_decoder/LICENSE +48 -0
- package/publish-notification-lambda/node_modules/string_decoder/README.md +47 -0
- package/publish-notification-lambda/node_modules/string_decoder/package.json +34 -0
- package/publish-notification-lambda/node_modules/strip-ansi/license +9 -0
- package/publish-notification-lambda/node_modules/strip-ansi/package.json +54 -0
- package/publish-notification-lambda/node_modules/strip-ansi/readme.md +46 -0
- package/publish-notification-lambda/node_modules/strnum/.vscode/launch.json +25 -0
- package/publish-notification-lambda/node_modules/strnum/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/strnum/README.md +86 -0
- package/publish-notification-lambda/node_modules/strnum/package.json +24 -0
- package/publish-notification-lambda/node_modules/tar-stream/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/tar-stream/README.md +168 -0
- package/publish-notification-lambda/node_modules/tar-stream/package.json +58 -0
- package/publish-notification-lambda/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/publish-notification-lambda/node_modules/tslib/LICENSE.txt +12 -0
- package/publish-notification-lambda/node_modules/tslib/README.md +164 -0
- package/publish-notification-lambda/node_modules/tslib/SECURITY.md +41 -0
- package/publish-notification-lambda/node_modules/tslib/modules/package.json +3 -0
- package/publish-notification-lambda/node_modules/tslib/package.json +47 -0
- package/publish-notification-lambda/node_modules/tslib/tslib.es6.html +1 -0
- package/publish-notification-lambda/node_modules/tslib/tslib.es6.mjs +370 -0
- package/publish-notification-lambda/node_modules/tslib/tslib.html +1 -0
- package/publish-notification-lambda/node_modules/typescript/LICENSE.txt +55 -0
- package/publish-notification-lambda/node_modules/typescript/README.md +51 -0
- package/publish-notification-lambda/node_modules/typescript/SECURITY.md +41 -0
- package/publish-notification-lambda/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/publish-notification-lambda/node_modules/typescript/bin/tsc +2 -0
- package/publish-notification-lambda/node_modules/typescript/bin/tsserver +2 -0
- package/publish-notification-lambda/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/typesMap.json +497 -0
- package/publish-notification-lambda/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
- package/publish-notification-lambda/node_modules/typescript/package.json +116 -0
- package/publish-notification-lambda/node_modules/util-deprecate/History.md +16 -0
- package/publish-notification-lambda/node_modules/util-deprecate/LICENSE +24 -0
- package/publish-notification-lambda/node_modules/util-deprecate/README.md +53 -0
- package/publish-notification-lambda/node_modules/util-deprecate/package.json +27 -0
- package/publish-notification-lambda/node_modules/uuid/CHANGELOG.md +229 -0
- package/publish-notification-lambda/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/publish-notification-lambda/node_modules/uuid/LICENSE.md +9 -0
- package/publish-notification-lambda/node_modules/uuid/README.md +505 -0
- package/publish-notification-lambda/node_modules/uuid/dist/bin/uuid +2 -0
- package/publish-notification-lambda/node_modules/uuid/package.json +135 -0
- package/publish-notification-lambda/node_modules/uuid/wrapper.mjs +10 -0
- package/publish-notification-lambda/node_modules/which/CHANGELOG.md +166 -0
- package/publish-notification-lambda/node_modules/which/LICENSE +15 -0
- package/publish-notification-lambda/node_modules/which/README.md +54 -0
- package/publish-notification-lambda/node_modules/which/bin/node-which +52 -0
- package/publish-notification-lambda/node_modules/which/package.json +43 -0
- package/publish-notification-lambda/node_modules/wrap-ansi/license +9 -0
- package/publish-notification-lambda/node_modules/wrap-ansi/package.json +62 -0
- package/publish-notification-lambda/node_modules/wrap-ansi/readme.md +91 -0
- package/publish-notification-lambda/node_modules/wrappy/LICENSE +15 -0
- package/publish-notification-lambda/node_modules/wrappy/README.md +36 -0
- package/publish-notification-lambda/node_modules/wrappy/package.json +29 -0
- package/publish-notification-lambda/node_modules/y18n/CHANGELOG.md +100 -0
- package/publish-notification-lambda/node_modules/y18n/LICENSE +13 -0
- package/publish-notification-lambda/node_modules/y18n/README.md +127 -0
- package/publish-notification-lambda/node_modules/y18n/build/index.cjs +203 -0
- package/publish-notification-lambda/node_modules/y18n/index.mjs +8 -0
- package/publish-notification-lambda/node_modules/y18n/package.json +70 -0
- package/publish-notification-lambda/node_modules/yargs/CHANGELOG.md +88 -0
- package/publish-notification-lambda/node_modules/yargs/LICENSE +21 -0
- package/publish-notification-lambda/node_modules/yargs/README.md +202 -0
- package/publish-notification-lambda/node_modules/yargs/browser.mjs +7 -0
- package/publish-notification-lambda/node_modules/yargs/build/index.cjs +2920 -0
- package/publish-notification-lambda/node_modules/yargs/helpers/helpers.mjs +10 -0
- package/publish-notification-lambda/node_modules/yargs/helpers/package.json +3 -0
- package/publish-notification-lambda/node_modules/yargs/index.cjs +39 -0
- package/publish-notification-lambda/node_modules/yargs/index.mjs +8 -0
- package/publish-notification-lambda/node_modules/yargs/lib/platform-shims/browser.mjs +92 -0
- package/publish-notification-lambda/node_modules/yargs/lib/platform-shims/esm.mjs +67 -0
- package/publish-notification-lambda/node_modules/yargs/locales/be.json +46 -0
- package/publish-notification-lambda/node_modules/yargs/locales/de.json +46 -0
- package/publish-notification-lambda/node_modules/yargs/locales/en.json +51 -0
- package/publish-notification-lambda/node_modules/yargs/locales/es.json +46 -0
- package/publish-notification-lambda/node_modules/yargs/locales/fi.json +49 -0
- package/publish-notification-lambda/node_modules/yargs/locales/fr.json +53 -0
- package/publish-notification-lambda/node_modules/yargs/locales/hi.json +49 -0
- package/publish-notification-lambda/node_modules/yargs/locales/hu.json +46 -0
- package/publish-notification-lambda/node_modules/yargs/locales/id.json +50 -0
- package/publish-notification-lambda/node_modules/yargs/locales/it.json +46 -0
- package/publish-notification-lambda/node_modules/yargs/locales/ja.json +51 -0
- package/publish-notification-lambda/node_modules/yargs/locales/ko.json +49 -0
- package/publish-notification-lambda/node_modules/yargs/locales/nb.json +44 -0
- package/publish-notification-lambda/node_modules/yargs/locales/nl.json +49 -0
- package/publish-notification-lambda/node_modules/yargs/locales/nn.json +44 -0
- package/publish-notification-lambda/node_modules/yargs/locales/pirate.json +13 -0
- package/publish-notification-lambda/node_modules/yargs/locales/pl.json +49 -0
- package/publish-notification-lambda/node_modules/yargs/locales/pt.json +45 -0
- package/publish-notification-lambda/node_modules/yargs/locales/pt_BR.json +48 -0
- package/publish-notification-lambda/node_modules/yargs/locales/ru.json +46 -0
- package/publish-notification-lambda/node_modules/yargs/locales/th.json +46 -0
- package/publish-notification-lambda/node_modules/yargs/locales/tr.json +48 -0
- package/publish-notification-lambda/node_modules/yargs/locales/zh_CN.json +48 -0
- package/publish-notification-lambda/node_modules/yargs/locales/zh_TW.json +47 -0
- package/publish-notification-lambda/node_modules/yargs/package.json +122 -0
- package/publish-notification-lambda/node_modules/yargs/yargs +9 -0
- package/publish-notification-lambda/node_modules/yargs-parser/CHANGELOG.md +263 -0
- package/publish-notification-lambda/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/publish-notification-lambda/node_modules/yargs-parser/README.md +518 -0
- package/publish-notification-lambda/node_modules/yargs-parser/build/index.cjs +1042 -0
- package/publish-notification-lambda/node_modules/yargs-parser/package.json +87 -0
- package/publish-notification-lambda/node_modules/zip-stream/CHANGELOG.md +110 -0
- package/publish-notification-lambda/node_modules/zip-stream/LICENSE +22 -0
- package/publish-notification-lambda/node_modules/zip-stream/README.md +45 -0
- package/publish-notification-lambda/node_modules/zip-stream/package.json +49 -0
- package/publish-notification-lambda/package-lock.json +1944 -0
- package/publish-notification-lambda/package.json +23 -0
- package/publish-notification-lambda/src/index.ts +101 -0
- package/publish-notification-lambda/tsconfig.json +13 -0
- package/rds-lambda/handler.ts +52 -3
- package/rds-lambda/node_modules/.package-lock.json +824 -692
- package/rds-lambda/node_modules/@aws-sdk/abort-controller/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/client-ssm/package.json +29 -29
- package/rds-lambda/node_modules/@aws-sdk/client-sso/package.json +25 -25
- package/rds-lambda/node_modules/@aws-sdk/client-sso-oidc/package.json +25 -25
- package/rds-lambda/node_modules/@aws-sdk/client-sts/package.json +29 -29
- package/rds-lambda/node_modules/@aws-sdk/config-resolver/package.json +4 -4
- package/rds-lambda/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/credential-provider-imds/package.json +5 -5
- package/rds-lambda/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
- package/rds-lambda/node_modules/@aws-sdk/credential-provider-node/package.json +10 -10
- package/rds-lambda/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
- package/rds-lambda/node_modules/@aws-sdk/credential-provider-sso/package.json +6 -6
- package/rds-lambda/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/fetch-http-handler/package.json +5 -5
- package/rds-lambda/node_modules/@aws-sdk/hash-node/package.json +3 -2
- package/rds-lambda/node_modules/@aws-sdk/invalid-dependency/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/middleware-content-length/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/middleware-endpoint/package.json +6 -5
- package/rds-lambda/node_modules/@aws-sdk/middleware-host-header/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/middleware-logger/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/middleware-recursion-detection/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/middleware-retry/package.json +7 -7
- package/rds-lambda/node_modules/@aws-sdk/middleware-sdk-sts/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/middleware-serde/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/middleware-signing/package.json +6 -6
- package/rds-lambda/node_modules/@aws-sdk/middleware-stack/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/middleware-user-agent/package.json +4 -4
- package/rds-lambda/node_modules/@aws-sdk/node-config-provider/package.json +4 -4
- package/rds-lambda/node_modules/@aws-sdk/node-http-handler/package.json +5 -5
- package/rds-lambda/node_modules/@aws-sdk/property-provider/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/protocol-http/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/querystring-builder/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/querystring-parser/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/service-error-classification/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/shared-ini-file-loader/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/signature-v4/package.json +4 -5
- package/rds-lambda/node_modules/@aws-sdk/smithy-client/package.json +3 -5
- package/rds-lambda/node_modules/@aws-sdk/token-providers/package.json +5 -5
- package/rds-lambda/node_modules/@aws-sdk/types/package.json +1 -7
- package/rds-lambda/node_modules/@aws-sdk/url-parser/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +4 -4
- package/rds-lambda/node_modules/@aws-sdk/util-defaults-mode-node/package.json +7 -7
- package/rds-lambda/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -11
- package/rds-lambda/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -11
- package/rds-lambda/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/util-middleware/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/util-retry/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/util-user-agent-browser/package.json +2 -2
- package/rds-lambda/node_modules/@aws-sdk/util-user-agent-node/package.json +3 -3
- package/rds-lambda/node_modules/@aws-sdk/util-waiter/package.json +3 -3
- package/rds-lambda/node_modules/archiver/CHANGELOG.md +228 -0
- package/rds-lambda/node_modules/archiver/LICENSE +22 -0
- package/rds-lambda/node_modules/archiver/README.md +94 -0
- package/rds-lambda/node_modules/archiver/package.json +60 -0
- package/rds-lambda/node_modules/archiver-utils/CHANGELOG.md +14 -0
- package/rds-lambda/node_modules/archiver-utils/LICENSE +22 -0
- package/rds-lambda/node_modules/archiver-utils/README.md +7 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/.travis.yml +34 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/LICENSE +47 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/README.md +58 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/package.json +52 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/safe-buffer/LICENSE +21 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/safe-buffer/README.md +584 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/safe-buffer/package.json +37 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/string_decoder/.travis.yml +50 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/string_decoder/LICENSE +48 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/string_decoder/README.md +47 -0
- package/rds-lambda/node_modules/archiver-utils/node_modules/string_decoder/package.json +31 -0
- package/rds-lambda/node_modules/archiver-utils/package.json +54 -0
- package/rds-lambda/node_modules/async/CHANGELOG.md +348 -0
- package/rds-lambda/node_modules/async/LICENSE +19 -0
- package/rds-lambda/node_modules/async/README.md +59 -0
- package/rds-lambda/node_modules/async/bower.json +17 -0
- package/rds-lambda/node_modules/async/dist/async.mjs +5947 -0
- package/rds-lambda/node_modules/async/package.json +75 -0
- package/rds-lambda/node_modules/base64-js/LICENSE +21 -0
- package/rds-lambda/node_modules/base64-js/README.md +34 -0
- package/rds-lambda/node_modules/base64-js/package.json +47 -0
- package/rds-lambda/node_modules/bestzip/LICENSE +21 -0
- package/rds-lambda/node_modules/bestzip/package.json +46 -0
- package/rds-lambda/node_modules/bestzip/readme.md +91 -0
- package/rds-lambda/node_modules/bl/.travis.yml +17 -0
- package/rds-lambda/node_modules/bl/LICENSE.md +13 -0
- package/rds-lambda/node_modules/bl/README.md +247 -0
- package/rds-lambda/node_modules/bl/package.json +37 -0
- package/rds-lambda/node_modules/buffer/AUTHORS.md +70 -0
- package/rds-lambda/node_modules/buffer/LICENSE +21 -0
- package/rds-lambda/node_modules/buffer/README.md +410 -0
- package/rds-lambda/node_modules/buffer/package.json +96 -0
- package/rds-lambda/node_modules/buffer-crc32/LICENSE +19 -0
- package/rds-lambda/node_modules/buffer-crc32/README.md +47 -0
- package/rds-lambda/node_modules/buffer-crc32/package.json +39 -0
- package/rds-lambda/node_modules/cliui/CHANGELOG.md +0 -18
- package/rds-lambda/node_modules/cliui/package.json +6 -6
- package/rds-lambda/node_modules/compress-commons/CHANGELOG.md +58 -0
- package/rds-lambda/node_modules/compress-commons/LICENSE +22 -0
- package/rds-lambda/node_modules/compress-commons/README.md +25 -0
- package/rds-lambda/node_modules/compress-commons/package.json +45 -0
- package/rds-lambda/node_modules/core-util-is/LICENSE +19 -0
- package/rds-lambda/node_modules/core-util-is/README.md +3 -0
- package/rds-lambda/node_modules/core-util-is/package.json +38 -0
- package/rds-lambda/node_modules/crc-32/LICENSE +201 -0
- package/rds-lambda/node_modules/crc-32/README.md +200 -0
- package/rds-lambda/node_modules/crc-32/bin/crc32.njs +105 -0
- package/rds-lambda/node_modules/crc-32/package.json +43 -0
- package/rds-lambda/node_modules/crc-32/types/tsconfig.json +14 -0
- package/rds-lambda/node_modules/crc-32/types/tslint.json +11 -0
- package/rds-lambda/node_modules/crc32-stream/CHANGELOG.md +57 -0
- package/rds-lambda/node_modules/crc32-stream/LICENSE +22 -0
- package/rds-lambda/node_modules/crc32-stream/README.md +79 -0
- package/rds-lambda/node_modules/crc32-stream/package.json +45 -0
- package/rds-lambda/node_modules/end-of-stream/LICENSE +21 -0
- package/rds-lambda/node_modules/end-of-stream/README.md +54 -0
- package/rds-lambda/node_modules/end-of-stream/package.json +37 -0
- package/rds-lambda/node_modules/fast-xml-parser/CHANGELOG.md +0 -29
- package/rds-lambda/node_modules/fast-xml-parser/README.md +0 -1
- package/rds-lambda/node_modules/fast-xml-parser/package.json +4 -7
- package/rds-lambda/node_modules/fs-constants/LICENSE +21 -0
- package/rds-lambda/node_modules/fs-constants/README.md +26 -0
- package/rds-lambda/node_modules/fs-constants/package.json +19 -0
- package/rds-lambda/node_modules/ieee754/LICENSE +11 -0
- package/rds-lambda/node_modules/ieee754/README.md +51 -0
- package/rds-lambda/node_modules/ieee754/package.json +52 -0
- package/rds-lambda/node_modules/isarray/.travis.yml +4 -0
- package/rds-lambda/node_modules/isarray/Makefile +6 -0
- package/rds-lambda/node_modules/isarray/README.md +60 -0
- package/rds-lambda/node_modules/isarray/component.json +19 -0
- package/rds-lambda/node_modules/isarray/package.json +45 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/cliui/CHANGELOG.md +139 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/cliui/LICENSE.txt +14 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/cliui/README.md +141 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/cliui/build/index.cjs +302 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/cliui/index.mjs +13 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/cliui/package.json +83 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/LICENSE +21 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/README.md +204 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/browser.mjs +7 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/build/index.cjs +1 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/helpers/helpers.mjs +10 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/helpers/package.json +3 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/index.cjs +53 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/index.mjs +8 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/lib/platform-shims/browser.mjs +95 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/lib/platform-shims/esm.mjs +73 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/be.json +46 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/de.json +46 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/en.json +55 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/es.json +46 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/fi.json +49 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/fr.json +53 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/hi.json +49 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/hu.json +46 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/id.json +50 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/it.json +46 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/ja.json +51 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/ko.json +49 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/nb.json +44 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/nl.json +49 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/nn.json +44 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/pirate.json +13 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/pl.json +49 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/pt.json +45 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/pt_BR.json +48 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/ru.json +51 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/th.json +46 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/tr.json +48 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/zh_CN.json +48 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/zh_TW.json +51 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/package.json +123 -0
- package/rds-lambda/node_modules/jest-cli/node_modules/yargs/yargs +9 -0
- package/rds-lambda/node_modules/lazystream/LICENSE +23 -0
- package/rds-lambda/node_modules/lazystream/README.md +114 -0
- package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/.travis.yml +34 -0
- package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/LICENSE +47 -0
- package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/README.md +58 -0
- package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/package.json +52 -0
- package/rds-lambda/node_modules/lazystream/node_modules/safe-buffer/LICENSE +21 -0
- package/rds-lambda/node_modules/lazystream/node_modules/safe-buffer/README.md +584 -0
- package/rds-lambda/node_modules/lazystream/node_modules/safe-buffer/package.json +37 -0
- package/rds-lambda/node_modules/lazystream/node_modules/string_decoder/.travis.yml +50 -0
- package/rds-lambda/node_modules/lazystream/node_modules/string_decoder/LICENSE +48 -0
- package/rds-lambda/node_modules/lazystream/node_modules/string_decoder/README.md +47 -0
- package/rds-lambda/node_modules/lazystream/node_modules/string_decoder/package.json +31 -0
- package/rds-lambda/node_modules/lazystream/package.json +46 -0
- package/rds-lambda/node_modules/lazystream/test/data.md +13 -0
- package/rds-lambda/node_modules/lodash.defaults/LICENSE +47 -0
- package/rds-lambda/node_modules/lodash.defaults/README.md +18 -0
- package/rds-lambda/node_modules/lodash.defaults/package.json +17 -0
- package/rds-lambda/node_modules/lodash.difference/LICENSE +47 -0
- package/rds-lambda/node_modules/lodash.difference/README.md +18 -0
- package/rds-lambda/node_modules/lodash.difference/package.json +17 -0
- package/rds-lambda/node_modules/lodash.flatten/LICENSE +47 -0
- package/rds-lambda/node_modules/lodash.flatten/README.md +18 -0
- package/rds-lambda/node_modules/lodash.flatten/package.json +17 -0
- package/rds-lambda/node_modules/lodash.isplainobject/LICENSE +47 -0
- package/rds-lambda/node_modules/lodash.isplainobject/README.md +18 -0
- package/rds-lambda/node_modules/lodash.isplainobject/package.json +17 -0
- package/rds-lambda/node_modules/lodash.union/LICENSE +47 -0
- package/rds-lambda/node_modules/lodash.union/README.md +18 -0
- package/rds-lambda/node_modules/lodash.union/package.json +17 -0
- package/rds-lambda/node_modules/process-nextick-args/license.md +19 -0
- package/rds-lambda/node_modules/process-nextick-args/package.json +25 -0
- package/rds-lambda/node_modules/process-nextick-args/readme.md +18 -0
- package/rds-lambda/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/rds-lambda/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/rds-lambda/node_modules/readable-stream/LICENSE +47 -0
- package/rds-lambda/node_modules/readable-stream/README.md +106 -0
- package/rds-lambda/node_modules/readable-stream/package.json +68 -0
- package/rds-lambda/node_modules/readdir-glob/LICENSE +201 -0
- package/rds-lambda/node_modules/readdir-glob/README.md +85 -0
- package/rds-lambda/node_modules/readdir-glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/rds-lambda/node_modules/readdir-glob/node_modules/brace-expansion/LICENSE +21 -0
- package/rds-lambda/node_modules/readdir-glob/node_modules/brace-expansion/README.md +135 -0
- package/rds-lambda/node_modules/readdir-glob/node_modules/brace-expansion/package.json +46 -0
- package/rds-lambda/node_modules/readdir-glob/node_modules/minimatch/LICENSE +15 -0
- package/rds-lambda/node_modules/readdir-glob/node_modules/minimatch/README.md +259 -0
- package/rds-lambda/node_modules/readdir-glob/node_modules/minimatch/package.json +35 -0
- package/rds-lambda/node_modules/readdir-glob/package.json +43 -0
- package/rds-lambda/node_modules/safe-buffer/LICENSE +21 -0
- package/rds-lambda/node_modules/safe-buffer/README.md +584 -0
- package/rds-lambda/node_modules/safe-buffer/package.json +51 -0
- package/rds-lambda/node_modules/string_decoder/LICENSE +48 -0
- package/rds-lambda/node_modules/string_decoder/README.md +47 -0
- package/rds-lambda/node_modules/string_decoder/package.json +34 -0
- package/rds-lambda/node_modules/tar-stream/LICENSE +21 -0
- package/rds-lambda/node_modules/tar-stream/README.md +168 -0
- package/rds-lambda/node_modules/tar-stream/package.json +58 -0
- package/rds-lambda/node_modules/util-deprecate/History.md +16 -0
- package/rds-lambda/node_modules/util-deprecate/LICENSE +24 -0
- package/rds-lambda/node_modules/util-deprecate/README.md +53 -0
- package/rds-lambda/node_modules/util-deprecate/package.json +27 -0
- package/rds-lambda/node_modules/yargs/CHANGELOG.md +88 -0
- package/rds-lambda/node_modules/yargs/README.md +6 -8
- package/rds-lambda/node_modules/yargs/browser.mjs +2 -2
- package/rds-lambda/node_modules/yargs/build/index.cjs +2920 -1
- package/rds-lambda/node_modules/yargs/index.cjs +8 -22
- package/rds-lambda/node_modules/yargs/index.mjs +2 -2
- package/rds-lambda/node_modules/yargs/lib/platform-shims/browser.mjs +0 -3
- package/rds-lambda/node_modules/yargs/lib/platform-shims/esm.mjs +3 -9
- package/rds-lambda/node_modules/yargs/locales/en.json +0 -4
- package/rds-lambda/node_modules/yargs/locales/fi.json +1 -1
- package/rds-lambda/node_modules/yargs/locales/ko.json +25 -25
- package/rds-lambda/node_modules/yargs/locales/ru.json +1 -6
- package/rds-lambda/node_modules/yargs/locales/zh_TW.json +46 -50
- package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/CHANGELOG.md +263 -0
- package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/README.md +518 -0
- package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/build/index.cjs +1042 -0
- package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/package.json +87 -0
- package/rds-lambda/node_modules/yargs/package.json +24 -25
- package/rds-lambda/node_modules/zip-stream/CHANGELOG.md +110 -0
- package/rds-lambda/node_modules/zip-stream/LICENSE +22 -0
- package/rds-lambda/node_modules/zip-stream/README.md +45 -0
- package/rds-lambda/node_modules/zip-stream/package.json +49 -0
- package/rds-lambda/package-lock.json +826 -696
- package/rds-lambda/package.json +3 -5
- package/rds-patching-lambda/node_modules/.package-lock.json +1883 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/CHANGELOG.md +76 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/README.md +16 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +12 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +142 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +3 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +37 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/package.json +28 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +24 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/src/index.ts +92 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/crc32/tsconfig.json +23 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +46 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/LICENSE +202 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/README.md +20 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +12 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +142 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +3 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +37 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/package.json +26 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +21 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/Key.ts +12 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +13 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +88 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +59 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/index.ts +5 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/tsconfig.json +17 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +88 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +12 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +142 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +3 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +37 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +34 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +108 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/index.ts +3 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/tsconfig.json +22 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +86 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/README.md +29 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +12 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +142 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +3 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +37 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/package.json +28 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/tsconfig.json +17 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +46 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +12 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +142 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +3 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +37 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/package.json +26 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +16 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/README.md +16 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/package.json +31 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/rds-patching-lambda/node_modules/@aws-crypto/util/tsconfig.json +23 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/abort-controller/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/abort-controller/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/abort-controller/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-lambda/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-lambda/README.md +798 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-lambda/package.json +103 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sso/README.md +255 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sso/package.json +96 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sso-oidc/README.md +268 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sso-oidc/package.json +96 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sts/README.md +273 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/client-sts/package.json +102 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/config-resolver/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/config-resolver/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/config-resolver/package.json +59 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-imds/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-imds/README.md +11 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-imds/package.json +66 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-ini/package.json +69 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-node/README.md +101 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-node/package.json +70 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-web-identity/package.json +71 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-codec/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-codec/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-codec/package.json +57 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-browser/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-browser/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-browser/package.json +57 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/package.json +56 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-node/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-node/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-node/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-universal/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-universal/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-universal/package.json +59 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/fetch-http-handler/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/fetch-http-handler/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/fetch-http-handler/package.json +59 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/hash-node/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/hash-node/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/hash-node/package.json +60 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/invalid-dependency/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/invalid-dependency/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/invalid-dependency/package.json +53 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/is-array-buffer/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/is-array-buffer/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/is-array-buffer/package.json +56 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-content-length/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-content-length/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-content-length/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-endpoint/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-endpoint/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-endpoint/package.json +60 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-host-header/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-recursion-detection/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-retry/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-retry/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-retry/package.json +65 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-sdk-sts/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-sdk-sts/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-sdk-sts/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-serde/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-serde/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-serde/package.json +57 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-signing/package.json +61 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-stack/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-stack/README.md +78 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-stack/package.json +60 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/middleware-user-agent/package.json +59 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/node-config-provider/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/node-config-provider/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/node-config-provider/package.json +61 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/node-http-handler/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/node-http-handler/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/node-http-handler/package.json +63 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/property-provider/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/property-provider/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/property-provider/package.json +56 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/protocol-http/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/protocol-http/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/protocol-http/package.json +57 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/querystring-builder/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/querystring-builder/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/querystring-builder/package.json +57 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/querystring-parser/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/querystring-parser/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/querystring-parser/package.json +56 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/service-error-classification/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/service-error-classification/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/service-error-classification/package.json +53 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/shared-ini-file-loader/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/shared-ini-file-loader/README.md +105 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/shared-ini-file-loader/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/signature-v4/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/signature-v4/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/signature-v4/package.json +66 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/smithy-client/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/smithy-client/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/smithy-client/package.json +59 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/token-providers/README.md +39 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/token-providers/package.json +67 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/types/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/types/package.json +57 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/url-parser/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/url-parser/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/url-parser/package.json +54 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-base64/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-base64/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-base64/package.json +66 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-browser/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-browser/README.md +12 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-browser/package.json +53 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-node/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-node/README.md +12 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-node/package.json +57 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-buffer-from/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-buffer-from/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-buffer-from/package.json +57 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-config-provider/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +62 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-node/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-node/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-node/package.json +61 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +203 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +203 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/package.json +58 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-hex-encoding/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-hex-encoding/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-hex-encoding/package.json +56 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-locate-window/package.json +56 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-middleware/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-middleware/README.md +12 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-middleware/package.json +62 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-retry/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-retry/README.md +77 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-retry/package.json +64 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-uri-escape/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-uri-escape/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-uri-escape/package.json +55 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8/README.md +4 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8/package.json +65 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8-browser/README.md +8 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8-browser/package.json +50 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-waiter/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-waiter/README.md +10 -0
- package/rds-patching-lambda/node_modules/@aws-sdk/util-waiter/package.json +58 -0
- package/rds-patching-lambda/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@smithy/protocol-http/README.md +4 -0
- package/rds-patching-lambda/node_modules/@smithy/protocol-http/package.json +63 -0
- package/rds-patching-lambda/node_modules/@smithy/types/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/@smithy/types/README.md +4 -0
- package/rds-patching-lambda/node_modules/@smithy/types/package.json +62 -0
- package/rds-patching-lambda/node_modules/@types/node/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/@types/node/README.md +16 -0
- package/rds-patching-lambda/node_modules/@types/node/package.json +237 -0
- package/rds-patching-lambda/node_modules/ansi-regex/license +9 -0
- package/rds-patching-lambda/node_modules/ansi-regex/package.json +55 -0
- package/rds-patching-lambda/node_modules/ansi-regex/readme.md +78 -0
- package/rds-patching-lambda/node_modules/ansi-styles/license +9 -0
- package/rds-patching-lambda/node_modules/ansi-styles/package.json +56 -0
- package/rds-patching-lambda/node_modules/ansi-styles/readme.md +152 -0
- package/rds-patching-lambda/node_modules/archiver/CHANGELOG.md +228 -0
- package/rds-patching-lambda/node_modules/archiver/LICENSE +22 -0
- package/rds-patching-lambda/node_modules/archiver/README.md +94 -0
- package/rds-patching-lambda/node_modules/archiver/package.json +60 -0
- package/rds-patching-lambda/node_modules/archiver-utils/CHANGELOG.md +14 -0
- package/rds-patching-lambda/node_modules/archiver-utils/LICENSE +22 -0
- package/rds-patching-lambda/node_modules/archiver-utils/README.md +7 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/.travis.yml +34 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/LICENSE +47 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/README.md +58 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/package.json +52 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/safe-buffer/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/safe-buffer/README.md +584 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/safe-buffer/package.json +37 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/string_decoder/.travis.yml +50 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/string_decoder/LICENSE +48 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/string_decoder/README.md +47 -0
- package/rds-patching-lambda/node_modules/archiver-utils/node_modules/string_decoder/package.json +31 -0
- package/rds-patching-lambda/node_modules/archiver-utils/package.json +54 -0
- package/rds-patching-lambda/node_modules/async/CHANGELOG.md +348 -0
- package/rds-patching-lambda/node_modules/async/LICENSE +19 -0
- package/rds-patching-lambda/node_modules/async/README.md +59 -0
- package/rds-patching-lambda/node_modules/async/bower.json +17 -0
- package/rds-patching-lambda/node_modules/async/dist/async.mjs +5947 -0
- package/rds-patching-lambda/node_modules/async/package.json +75 -0
- package/rds-patching-lambda/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/rds-patching-lambda/node_modules/balanced-match/LICENSE.md +21 -0
- package/rds-patching-lambda/node_modules/balanced-match/README.md +97 -0
- package/rds-patching-lambda/node_modules/balanced-match/package.json +48 -0
- package/rds-patching-lambda/node_modules/base64-js/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/base64-js/README.md +34 -0
- package/rds-patching-lambda/node_modules/base64-js/package.json +47 -0
- package/rds-patching-lambda/node_modules/bestzip/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/bestzip/package.json +46 -0
- package/rds-patching-lambda/node_modules/bestzip/readme.md +91 -0
- package/rds-patching-lambda/node_modules/bl/.travis.yml +17 -0
- package/rds-patching-lambda/node_modules/bl/LICENSE.md +13 -0
- package/rds-patching-lambda/node_modules/bl/README.md +247 -0
- package/rds-patching-lambda/node_modules/bl/package.json +37 -0
- package/rds-patching-lambda/node_modules/bowser/CHANGELOG.md +218 -0
- package/rds-patching-lambda/node_modules/bowser/LICENSE +39 -0
- package/rds-patching-lambda/node_modules/bowser/README.md +179 -0
- package/rds-patching-lambda/node_modules/bowser/package.json +83 -0
- package/rds-patching-lambda/node_modules/brace-expansion/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/brace-expansion/README.md +129 -0
- package/rds-patching-lambda/node_modules/brace-expansion/package.json +47 -0
- package/rds-patching-lambda/node_modules/buffer/AUTHORS.md +70 -0
- package/rds-patching-lambda/node_modules/buffer/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/buffer/README.md +410 -0
- package/rds-patching-lambda/node_modules/buffer/package.json +96 -0
- package/rds-patching-lambda/node_modules/buffer-crc32/LICENSE +19 -0
- package/rds-patching-lambda/node_modules/buffer-crc32/README.md +47 -0
- package/rds-patching-lambda/node_modules/buffer-crc32/package.json +39 -0
- package/rds-patching-lambda/node_modules/cliui/CHANGELOG.md +121 -0
- package/rds-patching-lambda/node_modules/cliui/LICENSE.txt +14 -0
- package/rds-patching-lambda/node_modules/cliui/README.md +141 -0
- package/rds-patching-lambda/node_modules/cliui/build/index.cjs +302 -0
- package/rds-patching-lambda/node_modules/cliui/index.mjs +13 -0
- package/rds-patching-lambda/node_modules/cliui/package.json +83 -0
- package/rds-patching-lambda/node_modules/color-convert/CHANGELOG.md +54 -0
- package/rds-patching-lambda/node_modules/color-convert/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/color-convert/README.md +68 -0
- package/rds-patching-lambda/node_modules/color-convert/package.json +48 -0
- package/rds-patching-lambda/node_modules/color-name/LICENSE +8 -0
- package/rds-patching-lambda/node_modules/color-name/README.md +11 -0
- package/rds-patching-lambda/node_modules/color-name/package.json +28 -0
- package/rds-patching-lambda/node_modules/compress-commons/CHANGELOG.md +58 -0
- package/rds-patching-lambda/node_modules/compress-commons/LICENSE +22 -0
- package/rds-patching-lambda/node_modules/compress-commons/README.md +25 -0
- package/rds-patching-lambda/node_modules/compress-commons/package.json +45 -0
- package/rds-patching-lambda/node_modules/concat-map/.travis.yml +4 -0
- package/rds-patching-lambda/node_modules/concat-map/LICENSE +18 -0
- package/rds-patching-lambda/node_modules/concat-map/README.markdown +62 -0
- package/rds-patching-lambda/node_modules/concat-map/package.json +43 -0
- package/rds-patching-lambda/node_modules/core-util-is/LICENSE +19 -0
- package/rds-patching-lambda/node_modules/core-util-is/README.md +3 -0
- package/rds-patching-lambda/node_modules/core-util-is/package.json +38 -0
- package/rds-patching-lambda/node_modules/crc-32/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/crc-32/README.md +200 -0
- package/rds-patching-lambda/node_modules/crc-32/bin/crc32.njs +105 -0
- package/rds-patching-lambda/node_modules/crc-32/package.json +43 -0
- package/rds-patching-lambda/node_modules/crc-32/types/tsconfig.json +14 -0
- package/rds-patching-lambda/node_modules/crc-32/types/tslint.json +11 -0
- package/rds-patching-lambda/node_modules/crc32-stream/CHANGELOG.md +57 -0
- package/rds-patching-lambda/node_modules/crc32-stream/LICENSE +22 -0
- package/rds-patching-lambda/node_modules/crc32-stream/README.md +79 -0
- package/rds-patching-lambda/node_modules/crc32-stream/package.json +45 -0
- package/rds-patching-lambda/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/rds-patching-lambda/node_modules/emoji-regex/README.md +73 -0
- package/rds-patching-lambda/node_modules/emoji-regex/package.json +50 -0
- package/rds-patching-lambda/node_modules/end-of-stream/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/end-of-stream/README.md +54 -0
- package/rds-patching-lambda/node_modules/end-of-stream/package.json +37 -0
- package/rds-patching-lambda/node_modules/escalade/dist/index.mjs +22 -0
- package/rds-patching-lambda/node_modules/escalade/license +9 -0
- package/rds-patching-lambda/node_modules/escalade/package.json +61 -0
- package/rds-patching-lambda/node_modules/escalade/readme.md +211 -0
- package/rds-patching-lambda/node_modules/escalade/sync/index.mjs +18 -0
- package/rds-patching-lambda/node_modules/fast-xml-parser/CHANGELOG.md +551 -0
- package/rds-patching-lambda/node_modules/fast-xml-parser/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/fast-xml-parser/README.md +204 -0
- package/rds-patching-lambda/node_modules/fast-xml-parser/package.json +71 -0
- package/rds-patching-lambda/node_modules/fs-constants/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/fs-constants/README.md +26 -0
- package/rds-patching-lambda/node_modules/fs-constants/package.json +19 -0
- package/rds-patching-lambda/node_modules/fs.realpath/LICENSE +43 -0
- package/rds-patching-lambda/node_modules/fs.realpath/README.md +33 -0
- package/rds-patching-lambda/node_modules/fs.realpath/package.json +26 -0
- package/rds-patching-lambda/node_modules/get-caller-file/LICENSE.md +6 -0
- package/rds-patching-lambda/node_modules/get-caller-file/README.md +41 -0
- package/rds-patching-lambda/node_modules/get-caller-file/package.json +42 -0
- package/rds-patching-lambda/node_modules/glob/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/glob/README.md +378 -0
- package/rds-patching-lambda/node_modules/glob/package.json +55 -0
- package/rds-patching-lambda/node_modules/graceful-fs/LICENSE +15 -0
- package/rds-patching-lambda/node_modules/graceful-fs/README.md +143 -0
- package/rds-patching-lambda/node_modules/graceful-fs/package.json +53 -0
- package/rds-patching-lambda/node_modules/ieee754/LICENSE +11 -0
- package/rds-patching-lambda/node_modules/ieee754/README.md +51 -0
- package/rds-patching-lambda/node_modules/ieee754/package.json +52 -0
- package/rds-patching-lambda/node_modules/inflight/LICENSE +15 -0
- package/rds-patching-lambda/node_modules/inflight/README.md +37 -0
- package/rds-patching-lambda/node_modules/inflight/package.json +29 -0
- package/rds-patching-lambda/node_modules/inherits/LICENSE +16 -0
- package/rds-patching-lambda/node_modules/inherits/README.md +42 -0
- package/rds-patching-lambda/node_modules/inherits/package.json +29 -0
- package/rds-patching-lambda/node_modules/is-fullwidth-code-point/license +9 -0
- package/rds-patching-lambda/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/rds-patching-lambda/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/rds-patching-lambda/node_modules/isarray/.travis.yml +4 -0
- package/rds-patching-lambda/node_modules/isarray/Makefile +6 -0
- package/rds-patching-lambda/node_modules/isarray/README.md +60 -0
- package/rds-patching-lambda/node_modules/isarray/component.json +19 -0
- package/rds-patching-lambda/node_modules/isarray/package.json +45 -0
- package/rds-patching-lambda/node_modules/isexe/LICENSE +15 -0
- package/rds-patching-lambda/node_modules/isexe/README.md +51 -0
- package/rds-patching-lambda/node_modules/isexe/package.json +31 -0
- package/rds-patching-lambda/node_modules/lazystream/LICENSE +23 -0
- package/rds-patching-lambda/node_modules/lazystream/README.md +114 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/.travis.yml +34 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/LICENSE +47 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/README.md +58 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/package.json +52 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/safe-buffer/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/safe-buffer/README.md +584 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/safe-buffer/package.json +37 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/string_decoder/.travis.yml +50 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/string_decoder/LICENSE +48 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/string_decoder/README.md +47 -0
- package/rds-patching-lambda/node_modules/lazystream/node_modules/string_decoder/package.json +31 -0
- package/rds-patching-lambda/node_modules/lazystream/package.json +46 -0
- package/rds-patching-lambda/node_modules/lazystream/test/data.md +13 -0
- package/rds-patching-lambda/node_modules/lodash.defaults/LICENSE +47 -0
- package/rds-patching-lambda/node_modules/lodash.defaults/README.md +18 -0
- package/rds-patching-lambda/node_modules/lodash.defaults/package.json +17 -0
- package/rds-patching-lambda/node_modules/lodash.difference/LICENSE +47 -0
- package/rds-patching-lambda/node_modules/lodash.difference/README.md +18 -0
- package/rds-patching-lambda/node_modules/lodash.difference/package.json +17 -0
- package/rds-patching-lambda/node_modules/lodash.flatten/LICENSE +47 -0
- package/rds-patching-lambda/node_modules/lodash.flatten/README.md +18 -0
- package/rds-patching-lambda/node_modules/lodash.flatten/package.json +17 -0
- package/rds-patching-lambda/node_modules/lodash.isplainobject/LICENSE +47 -0
- package/rds-patching-lambda/node_modules/lodash.isplainobject/README.md +18 -0
- package/rds-patching-lambda/node_modules/lodash.isplainobject/package.json +17 -0
- package/rds-patching-lambda/node_modules/lodash.union/LICENSE +47 -0
- package/rds-patching-lambda/node_modules/lodash.union/README.md +18 -0
- package/rds-patching-lambda/node_modules/lodash.union/package.json +17 -0
- package/rds-patching-lambda/node_modules/minimatch/LICENSE +15 -0
- package/rds-patching-lambda/node_modules/minimatch/README.md +230 -0
- package/rds-patching-lambda/node_modules/minimatch/package.json +33 -0
- package/rds-patching-lambda/node_modules/normalize-path/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/normalize-path/README.md +127 -0
- package/rds-patching-lambda/node_modules/normalize-path/package.json +77 -0
- package/rds-patching-lambda/node_modules/once/LICENSE +15 -0
- package/rds-patching-lambda/node_modules/once/README.md +79 -0
- package/rds-patching-lambda/node_modules/once/package.json +33 -0
- package/rds-patching-lambda/node_modules/path-is-absolute/license +21 -0
- package/rds-patching-lambda/node_modules/path-is-absolute/package.json +43 -0
- package/rds-patching-lambda/node_modules/path-is-absolute/readme.md +59 -0
- package/rds-patching-lambda/node_modules/process-nextick-args/license.md +19 -0
- package/rds-patching-lambda/node_modules/process-nextick-args/package.json +25 -0
- package/rds-patching-lambda/node_modules/process-nextick-args/readme.md +18 -0
- package/rds-patching-lambda/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/rds-patching-lambda/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/rds-patching-lambda/node_modules/readable-stream/LICENSE +47 -0
- package/rds-patching-lambda/node_modules/readable-stream/README.md +106 -0
- package/rds-patching-lambda/node_modules/readable-stream/package.json +68 -0
- package/rds-patching-lambda/node_modules/readdir-glob/LICENSE +201 -0
- package/rds-patching-lambda/node_modules/readdir-glob/README.md +85 -0
- package/rds-patching-lambda/node_modules/readdir-glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/rds-patching-lambda/node_modules/readdir-glob/node_modules/brace-expansion/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/readdir-glob/node_modules/brace-expansion/README.md +135 -0
- package/rds-patching-lambda/node_modules/readdir-glob/node_modules/brace-expansion/package.json +46 -0
- package/rds-patching-lambda/node_modules/readdir-glob/node_modules/minimatch/LICENSE +15 -0
- package/rds-patching-lambda/node_modules/readdir-glob/node_modules/minimatch/README.md +259 -0
- package/rds-patching-lambda/node_modules/readdir-glob/node_modules/minimatch/package.json +35 -0
- package/rds-patching-lambda/node_modules/readdir-glob/package.json +43 -0
- package/rds-patching-lambda/node_modules/require-directory/.jshintrc +67 -0
- package/rds-patching-lambda/node_modules/require-directory/.travis.yml +3 -0
- package/rds-patching-lambda/node_modules/require-directory/LICENSE +22 -0
- package/rds-patching-lambda/node_modules/require-directory/README.markdown +184 -0
- package/rds-patching-lambda/node_modules/require-directory/package.json +40 -0
- package/rds-patching-lambda/node_modules/safe-buffer/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/safe-buffer/README.md +584 -0
- package/rds-patching-lambda/node_modules/safe-buffer/package.json +51 -0
- package/rds-patching-lambda/node_modules/string-width/license +9 -0
- package/rds-patching-lambda/node_modules/string-width/package.json +56 -0
- package/rds-patching-lambda/node_modules/string-width/readme.md +50 -0
- package/rds-patching-lambda/node_modules/string_decoder/LICENSE +48 -0
- package/rds-patching-lambda/node_modules/string_decoder/README.md +47 -0
- package/rds-patching-lambda/node_modules/string_decoder/package.json +34 -0
- package/rds-patching-lambda/node_modules/strip-ansi/license +9 -0
- package/rds-patching-lambda/node_modules/strip-ansi/package.json +54 -0
- package/rds-patching-lambda/node_modules/strip-ansi/readme.md +46 -0
- package/rds-patching-lambda/node_modules/strnum/.vscode/launch.json +25 -0
- package/rds-patching-lambda/node_modules/strnum/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/strnum/README.md +86 -0
- package/rds-patching-lambda/node_modules/strnum/package.json +24 -0
- package/rds-patching-lambda/node_modules/tar-stream/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/tar-stream/README.md +168 -0
- package/rds-patching-lambda/node_modules/tar-stream/package.json +58 -0
- package/rds-patching-lambda/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/rds-patching-lambda/node_modules/tslib/LICENSE.txt +12 -0
- package/rds-patching-lambda/node_modules/tslib/README.md +164 -0
- package/rds-patching-lambda/node_modules/tslib/SECURITY.md +41 -0
- package/rds-patching-lambda/node_modules/tslib/modules/package.json +3 -0
- package/rds-patching-lambda/node_modules/tslib/package.json +47 -0
- package/rds-patching-lambda/node_modules/tslib/tslib.es6.html +1 -0
- package/rds-patching-lambda/node_modules/tslib/tslib.es6.mjs +370 -0
- package/rds-patching-lambda/node_modules/tslib/tslib.html +1 -0
- package/rds-patching-lambda/node_modules/typescript/LICENSE.txt +55 -0
- package/rds-patching-lambda/node_modules/typescript/README.md +51 -0
- package/rds-patching-lambda/node_modules/typescript/SECURITY.md +41 -0
- package/rds-patching-lambda/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/rds-patching-lambda/node_modules/typescript/bin/tsc +2 -0
- package/rds-patching-lambda/node_modules/typescript/bin/tsserver +2 -0
- package/rds-patching-lambda/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/typesMap.json +497 -0
- package/rds-patching-lambda/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
- package/rds-patching-lambda/node_modules/typescript/package.json +116 -0
- package/rds-patching-lambda/node_modules/util-deprecate/History.md +16 -0
- package/rds-patching-lambda/node_modules/util-deprecate/LICENSE +24 -0
- package/rds-patching-lambda/node_modules/util-deprecate/README.md +53 -0
- package/rds-patching-lambda/node_modules/util-deprecate/package.json +27 -0
- package/rds-patching-lambda/node_modules/uuid/CHANGELOG.md +229 -0
- package/rds-patching-lambda/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/rds-patching-lambda/node_modules/uuid/LICENSE.md +9 -0
- package/rds-patching-lambda/node_modules/uuid/README.md +505 -0
- package/rds-patching-lambda/node_modules/uuid/dist/bin/uuid +2 -0
- package/rds-patching-lambda/node_modules/uuid/package.json +135 -0
- package/rds-patching-lambda/node_modules/uuid/wrapper.mjs +10 -0
- package/rds-patching-lambda/node_modules/which/CHANGELOG.md +166 -0
- package/rds-patching-lambda/node_modules/which/LICENSE +15 -0
- package/rds-patching-lambda/node_modules/which/README.md +54 -0
- package/rds-patching-lambda/node_modules/which/bin/node-which +52 -0
- package/rds-patching-lambda/node_modules/which/package.json +43 -0
- package/rds-patching-lambda/node_modules/wrap-ansi/license +9 -0
- package/rds-patching-lambda/node_modules/wrap-ansi/package.json +62 -0
- package/rds-patching-lambda/node_modules/wrap-ansi/readme.md +91 -0
- package/rds-patching-lambda/node_modules/wrappy/LICENSE +15 -0
- package/rds-patching-lambda/node_modules/wrappy/README.md +36 -0
- package/rds-patching-lambda/node_modules/wrappy/package.json +29 -0
- package/rds-patching-lambda/node_modules/y18n/CHANGELOG.md +100 -0
- package/rds-patching-lambda/node_modules/y18n/LICENSE +13 -0
- package/rds-patching-lambda/node_modules/y18n/README.md +127 -0
- package/rds-patching-lambda/node_modules/y18n/build/index.cjs +203 -0
- package/rds-patching-lambda/node_modules/y18n/index.mjs +8 -0
- package/rds-patching-lambda/node_modules/y18n/package.json +70 -0
- package/rds-patching-lambda/node_modules/yargs/CHANGELOG.md +88 -0
- package/rds-patching-lambda/node_modules/yargs/LICENSE +21 -0
- package/rds-patching-lambda/node_modules/yargs/README.md +202 -0
- package/rds-patching-lambda/node_modules/yargs/browser.mjs +7 -0
- package/rds-patching-lambda/node_modules/yargs/build/index.cjs +2920 -0
- package/rds-patching-lambda/node_modules/yargs/helpers/helpers.mjs +10 -0
- package/rds-patching-lambda/node_modules/yargs/helpers/package.json +3 -0
- package/rds-patching-lambda/node_modules/yargs/index.cjs +39 -0
- package/rds-patching-lambda/node_modules/yargs/index.mjs +8 -0
- package/rds-patching-lambda/node_modules/yargs/lib/platform-shims/browser.mjs +92 -0
- package/rds-patching-lambda/node_modules/yargs/lib/platform-shims/esm.mjs +67 -0
- package/rds-patching-lambda/node_modules/yargs/locales/be.json +46 -0
- package/rds-patching-lambda/node_modules/yargs/locales/de.json +46 -0
- package/rds-patching-lambda/node_modules/yargs/locales/en.json +51 -0
- package/rds-patching-lambda/node_modules/yargs/locales/es.json +46 -0
- package/rds-patching-lambda/node_modules/yargs/locales/fi.json +49 -0
- package/rds-patching-lambda/node_modules/yargs/locales/fr.json +53 -0
- package/rds-patching-lambda/node_modules/yargs/locales/hi.json +49 -0
- package/rds-patching-lambda/node_modules/yargs/locales/hu.json +46 -0
- package/rds-patching-lambda/node_modules/yargs/locales/id.json +50 -0
- package/rds-patching-lambda/node_modules/yargs/locales/it.json +46 -0
- package/rds-patching-lambda/node_modules/yargs/locales/ja.json +51 -0
- package/rds-patching-lambda/node_modules/yargs/locales/ko.json +49 -0
- package/rds-patching-lambda/node_modules/yargs/locales/nb.json +44 -0
- package/rds-patching-lambda/node_modules/yargs/locales/nl.json +49 -0
- package/rds-patching-lambda/node_modules/yargs/locales/nn.json +44 -0
- package/rds-patching-lambda/node_modules/yargs/locales/pirate.json +13 -0
- package/rds-patching-lambda/node_modules/yargs/locales/pl.json +49 -0
- package/rds-patching-lambda/node_modules/yargs/locales/pt.json +45 -0
- package/rds-patching-lambda/node_modules/yargs/locales/pt_BR.json +48 -0
- package/rds-patching-lambda/node_modules/yargs/locales/ru.json +46 -0
- package/rds-patching-lambda/node_modules/yargs/locales/th.json +46 -0
- package/rds-patching-lambda/node_modules/yargs/locales/tr.json +48 -0
- package/rds-patching-lambda/node_modules/yargs/locales/zh_CN.json +48 -0
- package/rds-patching-lambda/node_modules/yargs/locales/zh_TW.json +47 -0
- package/rds-patching-lambda/node_modules/yargs/package.json +122 -0
- package/rds-patching-lambda/node_modules/yargs/yargs +9 -0
- package/rds-patching-lambda/node_modules/yargs-parser/CHANGELOG.md +263 -0
- package/rds-patching-lambda/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/rds-patching-lambda/node_modules/yargs-parser/README.md +518 -0
- package/rds-patching-lambda/node_modules/yargs-parser/build/index.cjs +1042 -0
- package/rds-patching-lambda/node_modules/yargs-parser/package.json +87 -0
- package/rds-patching-lambda/node_modules/zip-stream/CHANGELOG.md +110 -0
- package/rds-patching-lambda/node_modules/zip-stream/LICENSE +22 -0
- package/rds-patching-lambda/node_modules/zip-stream/README.md +45 -0
- package/rds-patching-lambda/node_modules/zip-stream/package.json +49 -0
- package/rds-patching-lambda/package-lock.json +1896 -0
- package/rds-patching-lambda/package.json +22 -0
- package/rds-patching-lambda/src/index.ts +76 -0
- package/rds-patching-lambda/tsconfig.json +13 -0
- package/src/__tests__/model-transformer.test.ts +5 -13
- package/src/definitions.ts +0 -2
- package/src/graphql-model-transformer.ts +1 -1
- package/src/resolvers/dynamodb/mutation.ts +1 -1
- package/src/resolvers/generators/dynamodb-vtl-generator.ts +2 -2
- package/src/resolvers/generators/rds-vtl-generator.ts +2 -2
- package/src/resolvers/generators/vtl-generator.ts +1 -1
- package/src/resolvers/rds/mutation.ts +73 -67
- package/src/resolvers/rds/resolver.ts +263 -50
- package/src/resources/dynamo-model-resource-generator.ts +1 -1
- package/src/resources/model-resource-generator.ts +5 -4
- package/src/resources/rds-model-resource-generator.ts +52 -4
- package/tsconfig.tsbuildinfo +1 -1
- package/rds-lambda/clients/DBClient.ts +0 -31
- package/rds-lambda/clients/mysql/MySQLClient.ts +0 -118
- package/rds-lambda/clients/mysql/MySQLPasswordClient.ts +0 -58
- package/rds-lambda/context/DataSourceContext.ts +0 -8
- package/rds-lambda/interfaces/BaseRequest.ts +0 -22
- package/rds-lambda/interfaces/ListRequest.ts +0 -31
- package/rds-lambda/node_modules/@aws-sdk/eventstream-codec/package.json +0 -57
- package/rds-lambda/node_modules/@aws-sdk/util-stream/README.md +0 -12
- package/rds-lambda/node_modules/@aws-sdk/util-stream/package.json +0 -71
- package/rds-lambda/node_modules/buffer-writer/.travis.yml +0 -7
- package/rds-lambda/node_modules/buffer-writer/LICENSE +0 -19
- package/rds-lambda/node_modules/buffer-writer/README.md +0 -48
- package/rds-lambda/node_modules/buffer-writer/package.json +0 -26
- package/rds-lambda/node_modules/buffer-writer/test/mocha.opts +0 -1
- package/rds-lambda/node_modules/denque/CHANGELOG.md +0 -29
- package/rds-lambda/node_modules/denque/LICENSE +0 -201
- package/rds-lambda/node_modules/denque/README.md +0 -77
- package/rds-lambda/node_modules/denque/package.json +0 -58
- package/rds-lambda/node_modules/generate-function/.travis.yml +0 -3
- package/rds-lambda/node_modules/generate-function/README.md +0 -89
- package/rds-lambda/node_modules/generate-function/package.json +0 -32
- package/rds-lambda/node_modules/iconv-lite/.github/dependabot.yml +0 -11
- package/rds-lambda/node_modules/iconv-lite/.idea/codeStyles/Project.xml +0 -47
- package/rds-lambda/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/rds-lambda/node_modules/iconv-lite/.idea/iconv-lite.iml +0 -12
- package/rds-lambda/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/rds-lambda/node_modules/iconv-lite/.idea/modules.xml +0 -8
- package/rds-lambda/node_modules/iconv-lite/.idea/vcs.xml +0 -6
- package/rds-lambda/node_modules/iconv-lite/Changelog.md +0 -212
- package/rds-lambda/node_modules/iconv-lite/LICENSE +0 -21
- package/rds-lambda/node_modules/iconv-lite/README.md +0 -130
- package/rds-lambda/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/rds-lambda/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/rds-lambda/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/rds-lambda/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/rds-lambda/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/rds-lambda/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/rds-lambda/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
- package/rds-lambda/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/rds-lambda/node_modules/iconv-lite/package.json +0 -44
- package/rds-lambda/node_modules/is-property/LICENSE +0 -22
- package/rds-lambda/node_modules/is-property/README.md +0 -28
- package/rds-lambda/node_modules/is-property/package.json +0 -36
- package/rds-lambda/node_modules/long/LICENSE +0 -202
- package/rds-lambda/node_modules/long/README.md +0 -246
- package/rds-lambda/node_modules/long/package.json +0 -34
- package/rds-lambda/node_modules/mysql2/License +0 -19
- package/rds-lambda/node_modules/mysql2/README.md +0 -281
- package/rds-lambda/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +0 -18
- package/rds-lambda/node_modules/mysql2/node_modules/lru-cache/README.md +0 -166
- package/rds-lambda/node_modules/mysql2/node_modules/lru-cache/package.json +0 -34
- package/rds-lambda/node_modules/mysql2/node_modules/yallist/README.md +0 -204
- package/rds-lambda/node_modules/mysql2/node_modules/yallist/package.json +0 -29
- package/rds-lambda/node_modules/mysql2/package.json +0 -86
- package/rds-lambda/node_modules/mysql2/typings/mysql/LICENSE.txt +0 -15
- package/rds-lambda/node_modules/mysql2/typings/mysql/info.txt +0 -1
- package/rds-lambda/node_modules/named-placeholders/LICENSE +0 -21
- package/rds-lambda/node_modules/named-placeholders/README.md +0 -29
- package/rds-lambda/node_modules/named-placeholders/node_modules/lru-cache/LICENSE +0 -15
- package/rds-lambda/node_modules/named-placeholders/node_modules/lru-cache/README.md +0 -1117
- package/rds-lambda/node_modules/named-placeholders/node_modules/lru-cache/index.mjs +0 -1227
- package/rds-lambda/node_modules/named-placeholders/node_modules/lru-cache/package.json +0 -96
- package/rds-lambda/node_modules/named-placeholders/package.json +0 -32
- package/rds-lambda/node_modules/packet-reader/.travis.yml +0 -8
- package/rds-lambda/node_modules/packet-reader/README.md +0 -87
- package/rds-lambda/node_modules/packet-reader/package.json +0 -25
- package/rds-lambda/node_modules/pg/LICENSE +0 -21
- package/rds-lambda/node_modules/pg/README.md +0 -89
- package/rds-lambda/node_modules/pg/node_modules/pg-connection-string/LICENSE +0 -21
- package/rds-lambda/node_modules/pg/node_modules/pg-connection-string/README.md +0 -77
- package/rds-lambda/node_modules/pg/node_modules/pg-connection-string/package.json +0 -40
- package/rds-lambda/node_modules/pg/package.json +0 -64
- package/rds-lambda/node_modules/pg-cloudflare/LICENSE +0 -21
- package/rds-lambda/node_modules/pg-cloudflare/README.md +0 -33
- package/rds-lambda/node_modules/pg-cloudflare/package.json +0 -32
- package/rds-lambda/node_modules/pg-cloudflare/src/empty.ts +0 -3
- package/rds-lambda/node_modules/pg-cloudflare/src/index.ts +0 -164
- package/rds-lambda/node_modules/pg-int8/LICENSE +0 -13
- package/rds-lambda/node_modules/pg-int8/README.md +0 -16
- package/rds-lambda/node_modules/pg-int8/package.json +0 -24
- package/rds-lambda/node_modules/pg-pool/LICENSE +0 -21
- package/rds-lambda/node_modules/pg-pool/README.md +0 -376
- package/rds-lambda/node_modules/pg-pool/package.json +0 -41
- package/rds-lambda/node_modules/pg-protocol/LICENSE +0 -21
- package/rds-lambda/node_modules/pg-protocol/README.md +0 -3
- package/rds-lambda/node_modules/pg-protocol/package.json +0 -35
- package/rds-lambda/node_modules/pg-protocol/src/b.ts +0 -28
- package/rds-lambda/node_modules/pg-protocol/src/buffer-reader.ts +0 -53
- package/rds-lambda/node_modules/pg-protocol/src/buffer-writer.ts +0 -85
- package/rds-lambda/node_modules/pg-protocol/src/inbound-parser.test.ts +0 -557
- package/rds-lambda/node_modules/pg-protocol/src/index.ts +0 -11
- package/rds-lambda/node_modules/pg-protocol/src/messages.ts +0 -230
- package/rds-lambda/node_modules/pg-protocol/src/outbound-serializer.test.ts +0 -272
- package/rds-lambda/node_modules/pg-protocol/src/parser.ts +0 -389
- package/rds-lambda/node_modules/pg-protocol/src/serializer.ts +0 -274
- package/rds-lambda/node_modules/pg-protocol/src/testing/buffer-list.ts +0 -75
- package/rds-lambda/node_modules/pg-protocol/src/testing/test-buffers.ts +0 -166
- package/rds-lambda/node_modules/pg-types/.travis.yml +0 -7
- package/rds-lambda/node_modules/pg-types/Makefile +0 -14
- package/rds-lambda/node_modules/pg-types/README.md +0 -75
- package/rds-lambda/node_modules/pg-types/index.test-d.ts +0 -21
- package/rds-lambda/node_modules/pg-types/package.json +0 -42
- package/rds-lambda/node_modules/pgpass/README.md +0 -74
- package/rds-lambda/node_modules/pgpass/package.json +0 -41
- package/rds-lambda/node_modules/postgres-array/license +0 -21
- package/rds-lambda/node_modules/postgres-array/package.json +0 -35
- package/rds-lambda/node_modules/postgres-array/readme.md +0 -43
- package/rds-lambda/node_modules/postgres-bytea/license +0 -21
- package/rds-lambda/node_modules/postgres-bytea/package.json +0 -34
- package/rds-lambda/node_modules/postgres-bytea/readme.md +0 -34
- package/rds-lambda/node_modules/postgres-date/license +0 -21
- package/rds-lambda/node_modules/postgres-date/package.json +0 -33
- package/rds-lambda/node_modules/postgres-date/readme.md +0 -49
- package/rds-lambda/node_modules/postgres-interval/license +0 -21
- package/rds-lambda/node_modules/postgres-interval/package.json +0 -36
- package/rds-lambda/node_modules/postgres-interval/readme.md +0 -48
- package/rds-lambda/node_modules/safer-buffer/LICENSE +0 -21
- package/rds-lambda/node_modules/safer-buffer/Porting-Buffer.md +0 -268
- package/rds-lambda/node_modules/safer-buffer/Readme.md +0 -156
- package/rds-lambda/node_modules/safer-buffer/package.json +0 -34
- package/rds-lambda/node_modules/seq-queue/.jshintrc +0 -19
- package/rds-lambda/node_modules/seq-queue/AUTHORS +0 -1
- package/rds-lambda/node_modules/seq-queue/LICENSE +0 -22
- package/rds-lambda/node_modules/seq-queue/Makefile +0 -9
- package/rds-lambda/node_modules/seq-queue/README.md +0 -75
- package/rds-lambda/node_modules/seq-queue/package.json +0 -17
- package/rds-lambda/node_modules/split2/LICENSE +0 -13
- package/rds-lambda/node_modules/split2/README.md +0 -85
- package/rds-lambda/node_modules/split2/package.json +0 -39
- package/rds-lambda/node_modules/sqlstring/HISTORY.md +0 -53
- package/rds-lambda/node_modules/sqlstring/LICENSE +0 -19
- package/rds-lambda/node_modules/sqlstring/README.md +0 -205
- package/rds-lambda/node_modules/sqlstring/package.json +0 -47
- package/rds-lambda/node_modules/xtend/.jshintrc +0 -30
- package/rds-lambda/node_modules/xtend/LICENSE +0 -20
- package/rds-lambda/node_modules/xtend/README.md +0 -32
- package/rds-lambda/node_modules/xtend/package.json +0 -55
- package/rds-lambda/utils/rds_utils.ts +0 -145
- package/src/__tests__/test-utils/rds_utils.test.ts +0 -372
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/LICENSE +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/README.md +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/package.json +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/src/index.ts +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/tsconfig.json +0 -0
- /package/{rds-lambda/node_modules/@aws-sdk/util-stream → publish-notification-lambda/node_modules/@aws-sdk/abort-controller}/LICENSE +0 -0
- /package/{rds-lambda/node_modules/@aws-sdk/eventstream-codec → publish-notification-lambda/node_modules/@aws-sdk/client-lambda}/LICENSE +0 -0
- /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-sdk/eventstream-codec/README.md +0 -0
- /package/{rds-lambda/node_modules/generate-function → publish-notification-lambda/node_modules/end-of-stream}/LICENSE +0 -0
- /package/{rds-lambda/node_modules/mysql2/node_modules/lru-cache → publish-notification-lambda/node_modules/isexe}/LICENSE +0 -0
- /package/{rds-lambda/node_modules/mysql2/node_modules/yallist → publish-notification-lambda/node_modules/minimatch}/LICENSE +0 -0
- /package/rds-lambda/node_modules/{cliui → jest-cli/node_modules/cliui}/build/index.d.cts +0 -0
- /package/rds-lambda/node_modules/{yargs → jest-cli/node_modules/yargs}/locales/cs.json +0 -0
- /package/rds-lambda/node_modules/{yargs → jest-cli/node_modules/yargs}/locales/uk_UA.json +0 -0
- /package/rds-lambda/node_modules/{yargs → jest-cli/node_modules/yargs}/locales/uz.json +0 -0
- /package/rds-lambda/node_modules/{yargs → jest-cli/node_modules/yargs}/yargs.mjs +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rdslayerstresstest",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "npm run build && node ./lib/index.js",
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"release": "rm -f test-lambda.zip && bestzip --force node ./test-lambda.zip ./*"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@aws-sdk/client-lambda": "3.352.0",
|
|
13
|
+
"typescript": "5.1.3"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [],
|
|
16
|
+
"author": "",
|
|
17
|
+
"license": "ISC",
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/node": "^20.3.1",
|
|
20
|
+
"bestzip": "2.2.1"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { LambdaClient, UpdateFunctionConfigurationCommand, UpdateFunctionConfigurationCommandOutput } from "@aws-sdk/client-lambda";
|
|
2
|
+
|
|
3
|
+
const SNS_EVENT_SOURCE = 'aws:sns';
|
|
4
|
+
|
|
5
|
+
type LayerConfig = {
|
|
6
|
+
layerArn?: string;
|
|
7
|
+
region?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const MIN_WAIT_TIME_IN_MS = 0; // No wait time
|
|
11
|
+
const MAX_WAIT_TIME_IN_MS = 5 * 60 * 1000; // 5 minutes
|
|
12
|
+
|
|
13
|
+
const delay = (ms: number): Promise<void> => new Promise((resolve) => setTimeout(resolve, ms));
|
|
14
|
+
|
|
15
|
+
const waitRandomTime = (): Promise<void> => {
|
|
16
|
+
const waitTime = Math.floor(Math.random() * (MAX_WAIT_TIME_IN_MS - MIN_WAIT_TIME_IN_MS + 1) + MIN_WAIT_TIME_IN_MS);
|
|
17
|
+
console.log(`Waiting for ${waitTime} ms`);
|
|
18
|
+
return delay(waitTime);
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const getLayerConfig = (event: any): LayerConfig => {
|
|
22
|
+
// Check layerArn in the event
|
|
23
|
+
const { Sns } = event.Records.find((record: any) => record.EventSource === SNS_EVENT_SOURCE);
|
|
24
|
+
if (!Sns) {
|
|
25
|
+
throw new Error('No SNS notification found in the event');
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const layerArn = Sns?.MessageAttributes?.LayerArn?.Value;
|
|
29
|
+
const region = Sns?.MessageAttributes?.Region?.Value;
|
|
30
|
+
|
|
31
|
+
return {
|
|
32
|
+
layerArn,
|
|
33
|
+
region,
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
const updateFunction = async (layerArn: string): Promise<UpdateFunctionConfigurationCommandOutput> => {
|
|
38
|
+
const client = new LambdaClient({ region: process.env.AWS_REGION });
|
|
39
|
+
const lambdaFunctionArn = process.env.LAMBDA_FUNCTION_ARN;
|
|
40
|
+
const command = new UpdateFunctionConfigurationCommand({
|
|
41
|
+
FunctionName: lambdaFunctionArn,
|
|
42
|
+
Layers: [
|
|
43
|
+
layerArn,
|
|
44
|
+
],
|
|
45
|
+
});
|
|
46
|
+
const response = await client.send(command);
|
|
47
|
+
return response;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export const handler = async (event: any): Promise<void> => {
|
|
51
|
+
// Record the received event in logs
|
|
52
|
+
console.log('Received event', JSON.stringify(event, null, 4));
|
|
53
|
+
|
|
54
|
+
const { layerArn, region } = getLayerConfig(event);
|
|
55
|
+
if (!layerArn || !region) {
|
|
56
|
+
throw new Error('Layer ARN or region is missing in the notification event');
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (region !== process.env.AWS_REGION) {
|
|
60
|
+
console.log(`Region ${region} in notification is not same as the current region ${process.env.AWS_REGION}. Skipping update.`);
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// Wait for a random time up to 5 minutes.
|
|
65
|
+
// This is to avoid all the functions updating at the same time which may result in throttling errors.
|
|
66
|
+
await waitRandomTime();
|
|
67
|
+
|
|
68
|
+
// Update the function configuration with the new layer version
|
|
69
|
+
try {
|
|
70
|
+
const response = await updateFunction(layerArn);
|
|
71
|
+
console.log(`Updated layer version to ${layerArn}`, response);
|
|
72
|
+
} catch (e) {
|
|
73
|
+
console.error('Error Updating layer', e);
|
|
74
|
+
throw e;
|
|
75
|
+
}
|
|
76
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2015", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
4
|
+
"module": "commonjs", /* Specify what module code is generated. */
|
|
5
|
+
"rootDir": "./src", /* Specify the root folder within your source files. */
|
|
6
|
+
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
7
|
+
"outDir": "./lib", /* Specify an output folder for all emitted files. */
|
|
8
|
+
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
9
|
+
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
10
|
+
"strict": true, /* Enable all strict type-checking options. */
|
|
11
|
+
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -1159,10 +1159,8 @@ describe('ModelTransformer: ', () => {
|
|
|
1159
1159
|
ConflictHandler: ConflictHandlerType.AUTOMERGE,
|
|
1160
1160
|
},
|
|
1161
1161
|
},
|
|
1162
|
+
sandboxModeEnabled: true,
|
|
1162
1163
|
transformers: [new ModelTransformer()],
|
|
1163
|
-
transformParameters: {
|
|
1164
|
-
sandboxModeEnabled: true,
|
|
1165
|
-
},
|
|
1166
1164
|
});
|
|
1167
1165
|
const out = transformer.transform(validSchema);
|
|
1168
1166
|
expect(out).toBeDefined();
|
|
@@ -1252,10 +1250,8 @@ describe('ModelTransformer: ', () => {
|
|
|
1252
1250
|
}
|
|
1253
1251
|
}
|
|
1254
1252
|
},
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
sandboxModeEnabled: true,
|
|
1258
|
-
},
|
|
1253
|
+
sandboxModeEnabled: true,
|
|
1254
|
+
transformers: [new ModelTransformer()]
|
|
1259
1255
|
});
|
|
1260
1256
|
const out = transformer.transform(validSchema);
|
|
1261
1257
|
expect(out).toBeDefined();
|
|
@@ -1341,10 +1337,8 @@ describe('ModelTransformer: ', () => {
|
|
|
1341
1337
|
name: String
|
|
1342
1338
|
}`;
|
|
1343
1339
|
const transformer = new GraphQLTransform({
|
|
1340
|
+
sandboxModeEnabled: true,
|
|
1344
1341
|
transformers: [new ModelTransformer()],
|
|
1345
|
-
transformParameters: {
|
|
1346
|
-
sandboxModeEnabled: true,
|
|
1347
|
-
},
|
|
1348
1342
|
});
|
|
1349
1343
|
const out = transformer.transform(validSchema);
|
|
1350
1344
|
|
|
@@ -1380,10 +1374,8 @@ describe('ModelTransformer: ', () => {
|
|
|
1380
1374
|
},
|
|
1381
1375
|
],
|
|
1382
1376
|
},
|
|
1377
|
+
sandboxModeEnabled: true,
|
|
1383
1378
|
transformers: [new ModelTransformer()],
|
|
1384
|
-
transformParameters: {
|
|
1385
|
-
sandboxModeEnabled: true,
|
|
1386
|
-
}
|
|
1387
1379
|
});
|
|
1388
1380
|
const out = transformer.transform(validSchema);
|
|
1389
1381
|
expect(out).toBeDefined();
|
package/src/definitions.ts
CHANGED
|
@@ -18,7 +18,5 @@ export const FLOAT_FUNCTIONS = new Set<string>(['attributeExists', 'attributeTyp
|
|
|
18
18
|
export const BOOLEAN_FUNCTIONS = new Set<string>(['attributeExists', 'attributeType']);
|
|
19
19
|
|
|
20
20
|
export const ATTRIBUTE_TYPES = ['binary', 'binarySet', 'bool', 'list', 'map', 'number', 'numberSet', 'string', 'stringSet', '_null'];
|
|
21
|
-
|
|
22
21
|
export const OPERATION_KEY = '__operation';
|
|
23
|
-
|
|
24
22
|
export const API_KEY_DIRECTIVE = 'aws_api_key';
|
|
@@ -291,7 +291,7 @@ export class ModelTransformer extends TransformerModelBase implements Transforme
|
|
|
291
291
|
}
|
|
292
292
|
}
|
|
293
293
|
// global auth check
|
|
294
|
-
if (!hasAuth && ctx.
|
|
294
|
+
if (!hasAuth && ctx.sandboxModeEnabled && ctx.authConfig.defaultAuthentication.authenticationType !== 'API_KEY') {
|
|
295
295
|
const apiKeyDirArray = [makeDirective(API_KEY_DIRECTIVE, [])];
|
|
296
296
|
extendTypeWithDirectives(ctx, def.name.value, apiKeyDirArray);
|
|
297
297
|
propagateApiKeyToNestedTypes(ctx as TransformerContextProvider, def, new Set<string>());
|
|
@@ -220,7 +220,7 @@ export const generateCreateRequestTemplate = (modelName: string, modelIndexField
|
|
|
220
220
|
* Generate mapping template that sets default values for create mutation
|
|
221
221
|
* @param modelConfig directive configuration
|
|
222
222
|
*/
|
|
223
|
-
export const generateCreateInitSlotTemplate = (modelConfig: ModelDirectiveConfiguration): string => {
|
|
223
|
+
export const generateCreateInitSlotTemplate = (modelConfig: ModelDirectiveConfiguration, initializeIdField: boolean): string => {
|
|
224
224
|
const statements: Expression[] = [
|
|
225
225
|
// initialize defaultValues
|
|
226
226
|
qref(
|
|
@@ -28,8 +28,8 @@ export class DynamoDBModelVTLGenerator implements ModelVTLGenerator {
|
|
|
28
28
|
generateCreateRequestTemplate(config: ModelCreateRequestConfig): string {
|
|
29
29
|
return generateCreateRequestTemplate(config.modelName, config.modelIndexFields);
|
|
30
30
|
}
|
|
31
|
-
generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string {
|
|
32
|
-
return generateCreateInitSlotTemplate(config.modelConfig);
|
|
31
|
+
generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string {
|
|
32
|
+
return generateCreateInitSlotTemplate(config.modelConfig, initializeIdField);
|
|
33
33
|
}
|
|
34
34
|
generateDeleteRequestTemplate(config: ModelUpdateRequestConfig): string {
|
|
35
35
|
return generateDeleteRequestTemplate(config.modelName, config.isSyncEnabled);
|
|
@@ -30,8 +30,8 @@ export class RDSModelVTLGenerator implements ModelVTLGenerator {
|
|
|
30
30
|
generateCreateRequestTemplate(config: ModelCreateRequestConfig): string {
|
|
31
31
|
return generateLambdaCreateRequestTemplate(config.modelName, config.operationName);
|
|
32
32
|
}
|
|
33
|
-
generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string {
|
|
34
|
-
return generateCreateInitSlotTemplate(config.modelConfig);
|
|
33
|
+
generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string {
|
|
34
|
+
return generateCreateInitSlotTemplate(config.modelConfig, initializeIdField);
|
|
35
35
|
}
|
|
36
36
|
generateDeleteRequestTemplate(config: ModelUpdateRequestConfig): string {
|
|
37
37
|
return generateLambdaDeleteRequestTemplate(config.modelName, config.operationName, config.modelIndexFields ?? ['id']);
|
|
@@ -33,7 +33,7 @@ export type ModelDefaultResponseConfig = ModelRequestConfig & {
|
|
|
33
33
|
export interface ModelVTLGenerator {
|
|
34
34
|
generateUpdateRequestTemplate(config: ModelUpdateRequestConfig): string;
|
|
35
35
|
generateCreateRequestTemplate(config: ModelCreateRequestConfig): string;
|
|
36
|
-
generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
|
|
36
|
+
generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string;
|
|
37
37
|
generateDeleteRequestTemplate(config: ModelDeleteRequestConfig): string;
|
|
38
38
|
generateUpdateInitSlotTemplate(config: ModelUpdateInitSlotConfig): string;
|
|
39
39
|
generateGetRequestTemplate(config: ModelRequestConfig): string;
|
|
@@ -17,7 +17,7 @@ import { ModelDirectiveConfiguration } from '../../directive';
|
|
|
17
17
|
* Generate mapping template that sets default values for create mutation
|
|
18
18
|
* @param modelConfig directive configuration
|
|
19
19
|
*/
|
|
20
|
-
export const generateCreateInitSlotTemplate = (modelConfig: ModelDirectiveConfiguration): string => {
|
|
20
|
+
export const generateCreateInitSlotTemplate = (modelConfig: ModelDirectiveConfiguration, initializeIdField: boolean): string => {
|
|
21
21
|
const statements: Expression[] = [
|
|
22
22
|
// initialize defaultValues
|
|
23
23
|
qref(
|
|
@@ -31,7 +31,9 @@ export const generateCreateInitSlotTemplate = (modelConfig: ModelDirectiveConfig
|
|
|
31
31
|
|
|
32
32
|
if (modelConfig?.timestamps) {
|
|
33
33
|
statements.push(set(ref('createdAt'), methodCall(ref('util.time.nowISO8601'))));
|
|
34
|
-
|
|
34
|
+
if (initializeIdField) {
|
|
35
|
+
statements.push(qref(methodCall(ref('ctx.stash.defaultValues.put'), str('id'), methodCall(ref('util.autoId')))));
|
|
36
|
+
}
|
|
35
37
|
if (modelConfig.timestamps.createdAt) {
|
|
36
38
|
statements.push(qref(methodCall(ref('ctx.stash.defaultValues.put'), str(modelConfig.timestamps.createdAt), ref('createdAt'))));
|
|
37
39
|
}
|
|
@@ -50,29 +52,27 @@ export const generateCreateInitSlotTemplate = (modelConfig: ModelDirectiveConfig
|
|
|
50
52
|
return printBlock('Initialization default values')(compoundExpression(statements));
|
|
51
53
|
};
|
|
52
54
|
|
|
53
|
-
export const generateLambdaCreateRequestTemplate = (tableName: string, operationName: string): string =>
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
);
|
|
75
|
-
};
|
|
55
|
+
export const generateLambdaCreateRequestTemplate = (tableName: string, operationName: string): string => printBlock('Invoke RDS Lambda data source')(
|
|
56
|
+
compoundExpression([
|
|
57
|
+
set(ref('lambdaInput'), obj({})),
|
|
58
|
+
set(ref('lambdaInput.table'), str(tableName)),
|
|
59
|
+
set(ref('lambdaInput.args'), obj({})),
|
|
60
|
+
set(ref('lambdaInput.operation'), str('CREATE')),
|
|
61
|
+
set(ref('lambdaInput.operationName'), str(operationName)),
|
|
62
|
+
set(ref('lambdaInput.args.metadata'), obj({})),
|
|
63
|
+
set(ref('lambdaInput.args.metadata.keys'), list([])),
|
|
64
|
+
qref(methodCall(ref('lambdaInput.args.metadata.keys.addAll'), methodCall(ref('util.defaultIfNull'), ref('ctx.stash.keys'), list([])))),
|
|
65
|
+
comment('Set the default values to put request'),
|
|
66
|
+
set(ref('lambdaInput.args.input'), methodCall(ref('util.defaultIfNull'), ref('ctx.stash.defaultValues'), obj({}))),
|
|
67
|
+
comment('copy the values from input'),
|
|
68
|
+
qref(methodCall(ref('lambdaInput.args.input.putAll'), methodCall(ref('util.defaultIfNull'), ref('context.arguments.input'), obj({})))),
|
|
69
|
+
obj({
|
|
70
|
+
version: str('2018-05-29'),
|
|
71
|
+
operation: str('Invoke'),
|
|
72
|
+
payload: methodCall(ref('util.toJson'), ref('lambdaInput')),
|
|
73
|
+
}),
|
|
74
|
+
]),
|
|
75
|
+
);
|
|
76
76
|
|
|
77
77
|
/**
|
|
78
78
|
* Generate VTL template that sets the default values for Update mutation
|
|
@@ -109,49 +109,55 @@ export const generateUpdateInitSlotTemplate = (modelConfig: ModelDirectiveConfig
|
|
|
109
109
|
/**
|
|
110
110
|
* Generate VTL template that calls the lambda for an Update mutation
|
|
111
111
|
*/
|
|
112
|
-
export const generateLambdaUpdateRequestTemplate = (
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
112
|
+
export const generateLambdaUpdateRequestTemplate = (
|
|
113
|
+
tableName: string,
|
|
114
|
+
operationName: string,
|
|
115
|
+
modelIndexFields: string[],
|
|
116
|
+
): string => printBlock('Invoke RDS Lambda data source')(
|
|
117
|
+
compoundExpression([
|
|
118
|
+
set(ref('lambdaInput'), obj({})),
|
|
119
|
+
set(ref('lambdaInput.table'), str(tableName)),
|
|
120
|
+
set(ref('lambdaInput.args'), obj({})),
|
|
121
|
+
set(ref('lambdaInput.operation'), str('UPDATE')),
|
|
122
|
+
set(ref('lambdaInput.operationName'), str(operationName)),
|
|
123
|
+
set(ref('lambdaInput.args.metadata'), obj({})),
|
|
124
|
+
set(ref('lambdaInput.args.metadata.keys'), list([])),
|
|
125
|
+
qref(methodCall(ref('lambdaInput.args.metadata.keys.addAll'), methodCall(ref('util.defaultIfNull'), ref('ctx.stash.keys'), list([])))),
|
|
126
|
+
comment('Set the default values to put request'),
|
|
127
|
+
set(ref('lambdaInput.args.input'), methodCall(ref('util.defaultIfNull'), ref('ctx.stash.defaultValues'), obj({}))),
|
|
128
|
+
comment('copy the values from input'),
|
|
129
|
+
qref(methodCall(ref('lambdaInput.args.input.putAll'), methodCall(ref('util.defaultIfNull'), ref('context.arguments.input'), obj({})))),
|
|
130
|
+
set(ref('lambdaInput.args.condition'), methodCall(ref('util.defaultIfNull'), ref('context.arguments.condition'), obj({}))),
|
|
131
|
+
obj({
|
|
132
|
+
version: str('2018-05-29'),
|
|
133
|
+
operation: str('Invoke'),
|
|
134
|
+
payload: methodCall(ref('util.toJson'), ref('lambdaInput')),
|
|
135
|
+
}),
|
|
136
|
+
]),
|
|
137
|
+
);
|
|
135
138
|
|
|
136
139
|
/**
|
|
137
140
|
* Generate VTL template that calls the lambda for a Delete mutation
|
|
138
141
|
*/
|
|
139
|
-
export const generateLambdaDeleteRequestTemplate = (
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
142
|
+
export const generateLambdaDeleteRequestTemplate = (
|
|
143
|
+
tableName: string,
|
|
144
|
+
operationName: string,
|
|
145
|
+
modelIndexFields: string[],
|
|
146
|
+
): string => printBlock('Invoke RDS Lambda data source')(
|
|
147
|
+
compoundExpression([
|
|
148
|
+
set(ref('lambdaInput'), obj({})),
|
|
149
|
+
set(ref('lambdaInput.table'), str(tableName)),
|
|
150
|
+
set(ref('lambdaInput.args'), ref('context.arguments')),
|
|
151
|
+
set(ref('lambdaInput.operation'), str('DELETE')),
|
|
152
|
+
set(ref('lambdaInput.operationName'), str(operationName)),
|
|
153
|
+
set(ref('lambdaInput.args.metadata'), obj({})),
|
|
154
|
+
set(ref('lambdaInput.args.metadata.keys'), list([])),
|
|
155
|
+
qref(methodCall(ref('lambdaInput.args.metadata.keys.addAll'), methodCall(ref('util.defaultIfNull'), ref('ctx.stash.keys'), list([])))),
|
|
156
|
+
set(ref('lambdaInput.args.condition'), methodCall(ref('util.defaultIfNull'), ref('context.arguments.condition'), obj({}))),
|
|
157
|
+
obj({
|
|
158
|
+
version: str('2018-05-29'),
|
|
159
|
+
operation: str('Invoke'),
|
|
160
|
+
payload: methodCall(ref('util.toJson'), ref('lambdaInput')),
|
|
161
|
+
}),
|
|
162
|
+
]),
|
|
163
|
+
);
|