@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.
Files changed (1764) hide show
  1. package/API.md +3 -3
  2. package/CHANGELOG.md +13 -4
  3. package/lib/definitions.d.ts.map +1 -1
  4. package/lib/definitions.js.map +1 -1
  5. package/lib/graphql-model-transformer.js +1 -1
  6. package/lib/graphql-model-transformer.js.map +1 -1
  7. package/lib/rds-lambda.zip +0 -0
  8. package/lib/rds-notification-lambda.zip +0 -0
  9. package/lib/rds-patching-lambda.zip +0 -0
  10. package/lib/resolvers/dynamodb/mutation.d.ts +1 -1
  11. package/lib/resolvers/dynamodb/mutation.d.ts.map +1 -1
  12. package/lib/resolvers/dynamodb/mutation.js +1 -1
  13. package/lib/resolvers/dynamodb/mutation.js.map +1 -1
  14. package/lib/resolvers/generators/dynamodb-vtl-generator.d.ts +1 -1
  15. package/lib/resolvers/generators/dynamodb-vtl-generator.d.ts.map +1 -1
  16. package/lib/resolvers/generators/dynamodb-vtl-generator.js +2 -2
  17. package/lib/resolvers/generators/dynamodb-vtl-generator.js.map +1 -1
  18. package/lib/resolvers/generators/rds-vtl-generator.d.ts +1 -1
  19. package/lib/resolvers/generators/rds-vtl-generator.d.ts.map +1 -1
  20. package/lib/resolvers/generators/rds-vtl-generator.js +2 -2
  21. package/lib/resolvers/generators/rds-vtl-generator.js.map +1 -1
  22. package/lib/resolvers/generators/vtl-generator.d.ts +1 -1
  23. package/lib/resolvers/generators/vtl-generator.d.ts.map +1 -1
  24. package/lib/resolvers/rds/mutation.d.ts +1 -1
  25. package/lib/resolvers/rds/mutation.d.ts.map +1 -1
  26. package/lib/resolvers/rds/mutation.js +59 -61
  27. package/lib/resolvers/rds/mutation.js.map +1 -1
  28. package/lib/resolvers/rds/resolver.d.ts +11 -5
  29. package/lib/resolvers/rds/resolver.d.ts.map +1 -1
  30. package/lib/resolvers/rds/resolver.js +160 -24
  31. package/lib/resolvers/rds/resolver.js.map +1 -1
  32. package/lib/resources/dynamo-model-resource-generator.js +1 -1
  33. package/lib/resources/dynamo-model-resource-generator.js.map +1 -1
  34. package/lib/resources/model-resource-generator.d.ts.map +1 -1
  35. package/lib/resources/model-resource-generator.js +5 -4
  36. package/lib/resources/model-resource-generator.js.map +1 -1
  37. package/lib/resources/rds-model-resource-generator.d.ts +1 -1
  38. package/lib/resources/rds-model-resource-generator.d.ts.map +1 -1
  39. package/lib/resources/rds-model-resource-generator.js +25 -3
  40. package/lib/resources/rds-model-resource-generator.js.map +1 -1
  41. package/package.json +13 -19
  42. package/publish-notification-lambda/README.md +39 -0
  43. package/publish-notification-lambda/node_modules/.package-lock.json +1930 -0
  44. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +46 -0
  45. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/LICENSE +202 -0
  46. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/README.md +20 -0
  47. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +15 -0
  48. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +12 -0
  49. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +142 -0
  50. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +3 -0
  51. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +37 -0
  52. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  53. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +1 -0
  54. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +1 -0
  55. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/package.json +26 -0
  56. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +21 -0
  57. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/Key.ts +12 -0
  58. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +13 -0
  59. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +88 -0
  60. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +59 -0
  61. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/src/index.ts +5 -0
  62. package/publish-notification-lambda/node_modules/@aws-crypto/ie11-detection/tsconfig.json +17 -0
  63. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +88 -0
  64. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
  65. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
  66. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +15 -0
  67. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +12 -0
  68. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +142 -0
  69. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +3 -0
  70. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +37 -0
  71. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  72. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +1 -0
  73. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +1 -0
  74. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
  75. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
  76. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +34 -0
  77. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +108 -0
  78. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/index.ts +3 -0
  79. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
  80. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
  81. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-browser/tsconfig.json +22 -0
  82. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +86 -0
  83. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
  84. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/README.md +29 -0
  85. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +15 -0
  86. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +12 -0
  87. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +142 -0
  88. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +3 -0
  89. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +37 -0
  90. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  91. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +1 -0
  92. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +1 -0
  93. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/package.json +28 -0
  94. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
  95. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
  96. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
  97. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
  98. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
  99. package/publish-notification-lambda/node_modules/@aws-crypto/sha256-js/tsconfig.json +17 -0
  100. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +46 -0
  101. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
  102. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
  103. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +15 -0
  104. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +12 -0
  105. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +142 -0
  106. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +3 -0
  107. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +37 -0
  108. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  109. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +1 -0
  110. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +1 -0
  111. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/package.json +26 -0
  112. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
  113. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
  114. package/publish-notification-lambda/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +16 -0
  115. package/publish-notification-lambda/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
  116. package/publish-notification-lambda/node_modules/@aws-crypto/util/LICENSE +201 -0
  117. package/publish-notification-lambda/node_modules/@aws-crypto/util/README.md +16 -0
  118. package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
  119. package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
  120. package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
  121. package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
  122. package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
  123. package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  124. package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
  125. package/publish-notification-lambda/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
  126. package/publish-notification-lambda/node_modules/@aws-crypto/util/package.json +31 -0
  127. package/publish-notification-lambda/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
  128. package/publish-notification-lambda/node_modules/@aws-crypto/util/src/index.ts +7 -0
  129. package/publish-notification-lambda/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
  130. package/publish-notification-lambda/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
  131. package/publish-notification-lambda/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
  132. package/publish-notification-lambda/node_modules/@aws-crypto/util/tsconfig.json +23 -0
  133. package/publish-notification-lambda/node_modules/@aws-sdk/abort-controller/README.md +4 -0
  134. package/publish-notification-lambda/node_modules/@aws-sdk/abort-controller/package.json +58 -0
  135. package/publish-notification-lambda/node_modules/@aws-sdk/client-lambda/README.md +798 -0
  136. package/publish-notification-lambda/node_modules/@aws-sdk/client-lambda/package.json +103 -0
  137. package/publish-notification-lambda/node_modules/@aws-sdk/client-sns/LICENSE +201 -0
  138. package/publish-notification-lambda/node_modules/@aws-sdk/client-sns/README.md +554 -0
  139. package/publish-notification-lambda/node_modules/@aws-sdk/client-sns/package.json +100 -0
  140. package/publish-notification-lambda/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
  141. package/publish-notification-lambda/node_modules/@aws-sdk/client-sso/README.md +255 -0
  142. package/publish-notification-lambda/node_modules/@aws-sdk/client-sso/package.json +96 -0
  143. package/publish-notification-lambda/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
  144. package/publish-notification-lambda/node_modules/@aws-sdk/client-sso-oidc/README.md +268 -0
  145. package/publish-notification-lambda/node_modules/@aws-sdk/client-sso-oidc/package.json +96 -0
  146. package/publish-notification-lambda/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
  147. package/publish-notification-lambda/node_modules/@aws-sdk/client-sts/README.md +273 -0
  148. package/publish-notification-lambda/node_modules/@aws-sdk/client-sts/package.json +102 -0
  149. package/publish-notification-lambda/node_modules/@aws-sdk/config-resolver/LICENSE +201 -0
  150. package/publish-notification-lambda/node_modules/@aws-sdk/config-resolver/README.md +10 -0
  151. package/publish-notification-lambda/node_modules/@aws-sdk/config-resolver/package.json +59 -0
  152. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
  153. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
  154. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
  155. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-imds/LICENSE +201 -0
  156. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-imds/README.md +11 -0
  157. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-imds/package.json +66 -0
  158. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
  159. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
  160. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-ini/package.json +69 -0
  161. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
  162. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-node/README.md +101 -0
  163. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-node/package.json +70 -0
  164. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
  165. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
  166. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
  167. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
  168. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
  169. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
  170. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
  171. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
  172. package/publish-notification-lambda/node_modules/@aws-sdk/credential-provider-web-identity/package.json +71 -0
  173. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-codec/LICENSE +201 -0
  174. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-codec/package.json +57 -0
  175. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-browser/LICENSE +201 -0
  176. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-browser/README.md +10 -0
  177. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-browser/package.json +57 -0
  178. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/LICENSE +201 -0
  179. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/README.md +10 -0
  180. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/package.json +56 -0
  181. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-node/LICENSE +201 -0
  182. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-node/README.md +10 -0
  183. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-node/package.json +58 -0
  184. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-universal/LICENSE +201 -0
  185. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-universal/README.md +10 -0
  186. package/publish-notification-lambda/node_modules/@aws-sdk/eventstream-serde-universal/package.json +59 -0
  187. package/publish-notification-lambda/node_modules/@aws-sdk/fetch-http-handler/LICENSE +201 -0
  188. package/publish-notification-lambda/node_modules/@aws-sdk/fetch-http-handler/README.md +4 -0
  189. package/publish-notification-lambda/node_modules/@aws-sdk/fetch-http-handler/package.json +59 -0
  190. package/publish-notification-lambda/node_modules/@aws-sdk/hash-node/LICENSE +201 -0
  191. package/publish-notification-lambda/node_modules/@aws-sdk/hash-node/README.md +10 -0
  192. package/publish-notification-lambda/node_modules/@aws-sdk/hash-node/package.json +60 -0
  193. package/publish-notification-lambda/node_modules/@aws-sdk/invalid-dependency/LICENSE +201 -0
  194. package/publish-notification-lambda/node_modules/@aws-sdk/invalid-dependency/README.md +10 -0
  195. package/publish-notification-lambda/node_modules/@aws-sdk/invalid-dependency/package.json +53 -0
  196. package/publish-notification-lambda/node_modules/@aws-sdk/is-array-buffer/LICENSE +201 -0
  197. package/publish-notification-lambda/node_modules/@aws-sdk/is-array-buffer/README.md +10 -0
  198. package/publish-notification-lambda/node_modules/@aws-sdk/is-array-buffer/package.json +56 -0
  199. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-content-length/LICENSE +201 -0
  200. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-content-length/README.md +4 -0
  201. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-content-length/package.json +58 -0
  202. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-endpoint/LICENSE +201 -0
  203. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-endpoint/README.md +10 -0
  204. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-endpoint/package.json +60 -0
  205. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
  206. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
  207. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-host-header/package.json +58 -0
  208. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
  209. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
  210. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
  211. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
  212. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
  213. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-recursion-detection/package.json +58 -0
  214. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-retry/LICENSE +201 -0
  215. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-retry/README.md +4 -0
  216. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-retry/package.json +65 -0
  217. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-sdk-sts/LICENSE +201 -0
  218. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-sdk-sts/README.md +4 -0
  219. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-sdk-sts/package.json +58 -0
  220. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-serde/LICENSE +201 -0
  221. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-serde/README.md +4 -0
  222. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-serde/package.json +57 -0
  223. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
  224. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
  225. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-signing/package.json +61 -0
  226. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-stack/LICENSE +201 -0
  227. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-stack/README.md +78 -0
  228. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-stack/package.json +60 -0
  229. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
  230. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
  231. package/publish-notification-lambda/node_modules/@aws-sdk/middleware-user-agent/package.json +59 -0
  232. package/publish-notification-lambda/node_modules/@aws-sdk/node-config-provider/LICENSE +201 -0
  233. package/publish-notification-lambda/node_modules/@aws-sdk/node-config-provider/README.md +4 -0
  234. package/publish-notification-lambda/node_modules/@aws-sdk/node-config-provider/package.json +61 -0
  235. package/publish-notification-lambda/node_modules/@aws-sdk/node-http-handler/LICENSE +201 -0
  236. package/publish-notification-lambda/node_modules/@aws-sdk/node-http-handler/README.md +4 -0
  237. package/publish-notification-lambda/node_modules/@aws-sdk/node-http-handler/package.json +63 -0
  238. package/publish-notification-lambda/node_modules/@aws-sdk/property-provider/LICENSE +201 -0
  239. package/publish-notification-lambda/node_modules/@aws-sdk/property-provider/README.md +10 -0
  240. package/publish-notification-lambda/node_modules/@aws-sdk/property-provider/package.json +56 -0
  241. package/publish-notification-lambda/node_modules/@aws-sdk/protocol-http/LICENSE +201 -0
  242. package/publish-notification-lambda/node_modules/@aws-sdk/protocol-http/README.md +4 -0
  243. package/publish-notification-lambda/node_modules/@aws-sdk/protocol-http/package.json +57 -0
  244. package/publish-notification-lambda/node_modules/@aws-sdk/querystring-builder/LICENSE +201 -0
  245. package/publish-notification-lambda/node_modules/@aws-sdk/querystring-builder/README.md +10 -0
  246. package/publish-notification-lambda/node_modules/@aws-sdk/querystring-builder/package.json +57 -0
  247. package/publish-notification-lambda/node_modules/@aws-sdk/querystring-parser/LICENSE +201 -0
  248. package/publish-notification-lambda/node_modules/@aws-sdk/querystring-parser/README.md +10 -0
  249. package/publish-notification-lambda/node_modules/@aws-sdk/querystring-parser/package.json +56 -0
  250. package/publish-notification-lambda/node_modules/@aws-sdk/service-error-classification/LICENSE +201 -0
  251. package/publish-notification-lambda/node_modules/@aws-sdk/service-error-classification/README.md +4 -0
  252. package/publish-notification-lambda/node_modules/@aws-sdk/service-error-classification/package.json +53 -0
  253. package/publish-notification-lambda/node_modules/@aws-sdk/shared-ini-file-loader/LICENSE +201 -0
  254. package/publish-notification-lambda/node_modules/@aws-sdk/shared-ini-file-loader/README.md +105 -0
  255. package/publish-notification-lambda/node_modules/@aws-sdk/shared-ini-file-loader/package.json +58 -0
  256. package/publish-notification-lambda/node_modules/@aws-sdk/signature-v4/LICENSE +201 -0
  257. package/publish-notification-lambda/node_modules/@aws-sdk/signature-v4/README.md +4 -0
  258. package/publish-notification-lambda/node_modules/@aws-sdk/signature-v4/package.json +66 -0
  259. package/publish-notification-lambda/node_modules/@aws-sdk/smithy-client/LICENSE +201 -0
  260. package/publish-notification-lambda/node_modules/@aws-sdk/smithy-client/README.md +10 -0
  261. package/publish-notification-lambda/node_modules/@aws-sdk/smithy-client/package.json +59 -0
  262. package/publish-notification-lambda/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
  263. package/publish-notification-lambda/node_modules/@aws-sdk/token-providers/README.md +39 -0
  264. package/publish-notification-lambda/node_modules/@aws-sdk/token-providers/package.json +67 -0
  265. package/publish-notification-lambda/node_modules/@aws-sdk/types/LICENSE +201 -0
  266. package/publish-notification-lambda/node_modules/@aws-sdk/types/README.md +4 -0
  267. package/publish-notification-lambda/node_modules/@aws-sdk/types/package.json +57 -0
  268. package/publish-notification-lambda/node_modules/@aws-sdk/url-parser/LICENSE +201 -0
  269. package/publish-notification-lambda/node_modules/@aws-sdk/url-parser/README.md +10 -0
  270. package/publish-notification-lambda/node_modules/@aws-sdk/url-parser/package.json +54 -0
  271. package/publish-notification-lambda/node_modules/@aws-sdk/util-base64/LICENSE +201 -0
  272. package/publish-notification-lambda/node_modules/@aws-sdk/util-base64/README.md +4 -0
  273. package/publish-notification-lambda/node_modules/@aws-sdk/util-base64/package.json +66 -0
  274. package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-browser/LICENSE +201 -0
  275. package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-browser/README.md +12 -0
  276. package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-browser/package.json +53 -0
  277. package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-node/LICENSE +201 -0
  278. package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-node/README.md +12 -0
  279. package/publish-notification-lambda/node_modules/@aws-sdk/util-body-length-node/package.json +57 -0
  280. package/publish-notification-lambda/node_modules/@aws-sdk/util-buffer-from/LICENSE +201 -0
  281. package/publish-notification-lambda/node_modules/@aws-sdk/util-buffer-from/README.md +10 -0
  282. package/publish-notification-lambda/node_modules/@aws-sdk/util-buffer-from/package.json +57 -0
  283. package/publish-notification-lambda/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
  284. package/publish-notification-lambda/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
  285. package/publish-notification-lambda/node_modules/@aws-sdk/util-config-provider/package.json +58 -0
  286. package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/LICENSE +201 -0
  287. package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/README.md +10 -0
  288. package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +62 -0
  289. package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-node/LICENSE +201 -0
  290. package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-node/README.md +10 -0
  291. package/publish-notification-lambda/node_modules/@aws-sdk/util-defaults-mode-node/package.json +61 -0
  292. package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
  293. package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
  294. package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +203 -0
  295. package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +203 -0
  296. package/publish-notification-lambda/node_modules/@aws-sdk/util-endpoints/package.json +58 -0
  297. package/publish-notification-lambda/node_modules/@aws-sdk/util-hex-encoding/LICENSE +201 -0
  298. package/publish-notification-lambda/node_modules/@aws-sdk/util-hex-encoding/README.md +4 -0
  299. package/publish-notification-lambda/node_modules/@aws-sdk/util-hex-encoding/package.json +56 -0
  300. package/publish-notification-lambda/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
  301. package/publish-notification-lambda/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
  302. package/publish-notification-lambda/node_modules/@aws-sdk/util-locate-window/package.json +56 -0
  303. package/publish-notification-lambda/node_modules/@aws-sdk/util-middleware/LICENSE +201 -0
  304. package/publish-notification-lambda/node_modules/@aws-sdk/util-middleware/README.md +12 -0
  305. package/publish-notification-lambda/node_modules/@aws-sdk/util-middleware/package.json +62 -0
  306. package/publish-notification-lambda/node_modules/@aws-sdk/util-retry/LICENSE +201 -0
  307. package/publish-notification-lambda/node_modules/@aws-sdk/util-retry/README.md +77 -0
  308. package/publish-notification-lambda/node_modules/@aws-sdk/util-retry/package.json +64 -0
  309. package/publish-notification-lambda/node_modules/@aws-sdk/util-uri-escape/LICENSE +201 -0
  310. package/publish-notification-lambda/node_modules/@aws-sdk/util-uri-escape/README.md +10 -0
  311. package/publish-notification-lambda/node_modules/@aws-sdk/util-uri-escape/package.json +55 -0
  312. package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
  313. package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
  314. package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
  315. package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
  316. package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
  317. package/publish-notification-lambda/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
  318. package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8/LICENSE +201 -0
  319. package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8/README.md +4 -0
  320. package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8/package.json +65 -0
  321. package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
  322. package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8-browser/README.md +8 -0
  323. package/publish-notification-lambda/node_modules/@aws-sdk/util-utf8-browser/package.json +50 -0
  324. package/publish-notification-lambda/node_modules/@aws-sdk/util-waiter/LICENSE +201 -0
  325. package/publish-notification-lambda/node_modules/@aws-sdk/util-waiter/README.md +10 -0
  326. package/publish-notification-lambda/node_modules/@aws-sdk/util-waiter/package.json +58 -0
  327. package/publish-notification-lambda/node_modules/@smithy/protocol-http/LICENSE +201 -0
  328. package/publish-notification-lambda/node_modules/@smithy/protocol-http/README.md +4 -0
  329. package/publish-notification-lambda/node_modules/@smithy/protocol-http/package.json +63 -0
  330. package/publish-notification-lambda/node_modules/@smithy/types/LICENSE +201 -0
  331. package/publish-notification-lambda/node_modules/@smithy/types/README.md +4 -0
  332. package/publish-notification-lambda/node_modules/@smithy/types/package.json +62 -0
  333. package/publish-notification-lambda/node_modules/@types/node/LICENSE +21 -0
  334. package/publish-notification-lambda/node_modules/@types/node/README.md +16 -0
  335. package/publish-notification-lambda/node_modules/@types/node/package.json +237 -0
  336. package/publish-notification-lambda/node_modules/ansi-regex/license +9 -0
  337. package/publish-notification-lambda/node_modules/ansi-regex/package.json +55 -0
  338. package/publish-notification-lambda/node_modules/ansi-regex/readme.md +78 -0
  339. package/publish-notification-lambda/node_modules/ansi-styles/license +9 -0
  340. package/publish-notification-lambda/node_modules/ansi-styles/package.json +56 -0
  341. package/publish-notification-lambda/node_modules/ansi-styles/readme.md +152 -0
  342. package/publish-notification-lambda/node_modules/archiver/CHANGELOG.md +228 -0
  343. package/publish-notification-lambda/node_modules/archiver/LICENSE +22 -0
  344. package/publish-notification-lambda/node_modules/archiver/README.md +94 -0
  345. package/publish-notification-lambda/node_modules/archiver/package.json +60 -0
  346. package/publish-notification-lambda/node_modules/archiver-utils/CHANGELOG.md +14 -0
  347. package/publish-notification-lambda/node_modules/archiver-utils/LICENSE +22 -0
  348. package/publish-notification-lambda/node_modules/archiver-utils/README.md +7 -0
  349. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/.travis.yml +34 -0
  350. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  351. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/GOVERNANCE.md +136 -0
  352. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/LICENSE +47 -0
  353. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/README.md +58 -0
  354. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  355. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/readable-stream/package.json +52 -0
  356. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/safe-buffer/LICENSE +21 -0
  357. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/safe-buffer/README.md +584 -0
  358. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/safe-buffer/package.json +37 -0
  359. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/string_decoder/.travis.yml +50 -0
  360. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/string_decoder/LICENSE +48 -0
  361. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/string_decoder/README.md +47 -0
  362. package/publish-notification-lambda/node_modules/archiver-utils/node_modules/string_decoder/package.json +31 -0
  363. package/publish-notification-lambda/node_modules/archiver-utils/package.json +54 -0
  364. package/publish-notification-lambda/node_modules/async/CHANGELOG.md +348 -0
  365. package/publish-notification-lambda/node_modules/async/LICENSE +19 -0
  366. package/publish-notification-lambda/node_modules/async/README.md +59 -0
  367. package/publish-notification-lambda/node_modules/async/bower.json +17 -0
  368. package/publish-notification-lambda/node_modules/async/dist/async.mjs +5947 -0
  369. package/publish-notification-lambda/node_modules/async/package.json +75 -0
  370. package/publish-notification-lambda/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  371. package/publish-notification-lambda/node_modules/balanced-match/LICENSE.md +21 -0
  372. package/publish-notification-lambda/node_modules/balanced-match/README.md +97 -0
  373. package/publish-notification-lambda/node_modules/balanced-match/package.json +48 -0
  374. package/publish-notification-lambda/node_modules/base64-js/LICENSE +21 -0
  375. package/publish-notification-lambda/node_modules/base64-js/README.md +34 -0
  376. package/publish-notification-lambda/node_modules/base64-js/package.json +47 -0
  377. package/publish-notification-lambda/node_modules/bestzip/LICENSE +21 -0
  378. package/publish-notification-lambda/node_modules/bestzip/package.json +46 -0
  379. package/publish-notification-lambda/node_modules/bestzip/readme.md +91 -0
  380. package/publish-notification-lambda/node_modules/bl/.travis.yml +17 -0
  381. package/publish-notification-lambda/node_modules/bl/LICENSE.md +13 -0
  382. package/publish-notification-lambda/node_modules/bl/README.md +247 -0
  383. package/publish-notification-lambda/node_modules/bl/package.json +37 -0
  384. package/publish-notification-lambda/node_modules/bowser/CHANGELOG.md +218 -0
  385. package/publish-notification-lambda/node_modules/bowser/LICENSE +39 -0
  386. package/publish-notification-lambda/node_modules/bowser/README.md +179 -0
  387. package/publish-notification-lambda/node_modules/bowser/package.json +83 -0
  388. package/publish-notification-lambda/node_modules/brace-expansion/LICENSE +21 -0
  389. package/publish-notification-lambda/node_modules/brace-expansion/README.md +129 -0
  390. package/publish-notification-lambda/node_modules/brace-expansion/package.json +47 -0
  391. package/publish-notification-lambda/node_modules/buffer/AUTHORS.md +70 -0
  392. package/publish-notification-lambda/node_modules/buffer/LICENSE +21 -0
  393. package/publish-notification-lambda/node_modules/buffer/README.md +410 -0
  394. package/publish-notification-lambda/node_modules/buffer/package.json +96 -0
  395. package/publish-notification-lambda/node_modules/buffer-crc32/LICENSE +19 -0
  396. package/publish-notification-lambda/node_modules/buffer-crc32/README.md +47 -0
  397. package/publish-notification-lambda/node_modules/buffer-crc32/package.json +39 -0
  398. package/publish-notification-lambda/node_modules/cliui/CHANGELOG.md +121 -0
  399. package/publish-notification-lambda/node_modules/cliui/LICENSE.txt +14 -0
  400. package/publish-notification-lambda/node_modules/cliui/README.md +141 -0
  401. package/publish-notification-lambda/node_modules/cliui/build/index.cjs +302 -0
  402. package/publish-notification-lambda/node_modules/cliui/index.mjs +13 -0
  403. package/publish-notification-lambda/node_modules/cliui/package.json +83 -0
  404. package/publish-notification-lambda/node_modules/color-convert/CHANGELOG.md +54 -0
  405. package/publish-notification-lambda/node_modules/color-convert/LICENSE +21 -0
  406. package/publish-notification-lambda/node_modules/color-convert/README.md +68 -0
  407. package/publish-notification-lambda/node_modules/color-convert/package.json +48 -0
  408. package/publish-notification-lambda/node_modules/color-name/LICENSE +8 -0
  409. package/publish-notification-lambda/node_modules/color-name/README.md +11 -0
  410. package/publish-notification-lambda/node_modules/color-name/package.json +28 -0
  411. package/publish-notification-lambda/node_modules/compress-commons/CHANGELOG.md +58 -0
  412. package/publish-notification-lambda/node_modules/compress-commons/LICENSE +22 -0
  413. package/publish-notification-lambda/node_modules/compress-commons/README.md +25 -0
  414. package/publish-notification-lambda/node_modules/compress-commons/package.json +45 -0
  415. package/publish-notification-lambda/node_modules/concat-map/.travis.yml +4 -0
  416. package/publish-notification-lambda/node_modules/concat-map/LICENSE +18 -0
  417. package/publish-notification-lambda/node_modules/concat-map/README.markdown +62 -0
  418. package/publish-notification-lambda/node_modules/concat-map/package.json +43 -0
  419. package/publish-notification-lambda/node_modules/core-util-is/LICENSE +19 -0
  420. package/publish-notification-lambda/node_modules/core-util-is/README.md +3 -0
  421. package/publish-notification-lambda/node_modules/core-util-is/package.json +38 -0
  422. package/publish-notification-lambda/node_modules/crc-32/LICENSE +201 -0
  423. package/publish-notification-lambda/node_modules/crc-32/README.md +200 -0
  424. package/publish-notification-lambda/node_modules/crc-32/bin/crc32.njs +105 -0
  425. package/publish-notification-lambda/node_modules/crc-32/package.json +43 -0
  426. package/publish-notification-lambda/node_modules/crc-32/types/tsconfig.json +14 -0
  427. package/publish-notification-lambda/node_modules/crc-32/types/tslint.json +11 -0
  428. package/publish-notification-lambda/node_modules/crc32-stream/CHANGELOG.md +57 -0
  429. package/publish-notification-lambda/node_modules/crc32-stream/LICENSE +22 -0
  430. package/publish-notification-lambda/node_modules/crc32-stream/README.md +79 -0
  431. package/publish-notification-lambda/node_modules/crc32-stream/package.json +45 -0
  432. package/publish-notification-lambda/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  433. package/publish-notification-lambda/node_modules/emoji-regex/README.md +73 -0
  434. package/publish-notification-lambda/node_modules/emoji-regex/package.json +50 -0
  435. package/publish-notification-lambda/node_modules/end-of-stream/README.md +54 -0
  436. package/publish-notification-lambda/node_modules/end-of-stream/package.json +37 -0
  437. package/publish-notification-lambda/node_modules/escalade/dist/index.mjs +22 -0
  438. package/publish-notification-lambda/node_modules/escalade/license +9 -0
  439. package/publish-notification-lambda/node_modules/escalade/package.json +61 -0
  440. package/publish-notification-lambda/node_modules/escalade/readme.md +211 -0
  441. package/publish-notification-lambda/node_modules/escalade/sync/index.mjs +18 -0
  442. package/publish-notification-lambda/node_modules/fast-xml-parser/CHANGELOG.md +551 -0
  443. package/publish-notification-lambda/node_modules/fast-xml-parser/LICENSE +21 -0
  444. package/publish-notification-lambda/node_modules/fast-xml-parser/README.md +204 -0
  445. package/publish-notification-lambda/node_modules/fast-xml-parser/package.json +71 -0
  446. package/publish-notification-lambda/node_modules/fs-constants/LICENSE +21 -0
  447. package/publish-notification-lambda/node_modules/fs-constants/README.md +26 -0
  448. package/publish-notification-lambda/node_modules/fs-constants/package.json +19 -0
  449. package/publish-notification-lambda/node_modules/fs.realpath/LICENSE +43 -0
  450. package/publish-notification-lambda/node_modules/fs.realpath/README.md +33 -0
  451. package/publish-notification-lambda/node_modules/fs.realpath/package.json +26 -0
  452. package/publish-notification-lambda/node_modules/get-caller-file/LICENSE.md +6 -0
  453. package/publish-notification-lambda/node_modules/get-caller-file/README.md +41 -0
  454. package/publish-notification-lambda/node_modules/get-caller-file/package.json +42 -0
  455. package/publish-notification-lambda/node_modules/glob/LICENSE +21 -0
  456. package/publish-notification-lambda/node_modules/glob/README.md +378 -0
  457. package/publish-notification-lambda/node_modules/glob/package.json +55 -0
  458. package/publish-notification-lambda/node_modules/graceful-fs/LICENSE +15 -0
  459. package/publish-notification-lambda/node_modules/graceful-fs/README.md +143 -0
  460. package/publish-notification-lambda/node_modules/graceful-fs/package.json +53 -0
  461. package/publish-notification-lambda/node_modules/ieee754/LICENSE +11 -0
  462. package/publish-notification-lambda/node_modules/ieee754/README.md +51 -0
  463. package/publish-notification-lambda/node_modules/ieee754/package.json +52 -0
  464. package/publish-notification-lambda/node_modules/inflight/LICENSE +15 -0
  465. package/publish-notification-lambda/node_modules/inflight/README.md +37 -0
  466. package/publish-notification-lambda/node_modules/inflight/package.json +29 -0
  467. package/publish-notification-lambda/node_modules/inherits/LICENSE +16 -0
  468. package/publish-notification-lambda/node_modules/inherits/README.md +42 -0
  469. package/publish-notification-lambda/node_modules/inherits/package.json +29 -0
  470. package/publish-notification-lambda/node_modules/is-fullwidth-code-point/license +9 -0
  471. package/publish-notification-lambda/node_modules/is-fullwidth-code-point/package.json +42 -0
  472. package/publish-notification-lambda/node_modules/is-fullwidth-code-point/readme.md +39 -0
  473. package/publish-notification-lambda/node_modules/isarray/.travis.yml +4 -0
  474. package/publish-notification-lambda/node_modules/isarray/Makefile +6 -0
  475. package/publish-notification-lambda/node_modules/isarray/README.md +60 -0
  476. package/publish-notification-lambda/node_modules/isarray/component.json +19 -0
  477. package/publish-notification-lambda/node_modules/isarray/package.json +45 -0
  478. package/publish-notification-lambda/node_modules/isexe/README.md +51 -0
  479. package/publish-notification-lambda/node_modules/isexe/package.json +31 -0
  480. package/publish-notification-lambda/node_modules/lazystream/LICENSE +23 -0
  481. package/publish-notification-lambda/node_modules/lazystream/README.md +114 -0
  482. package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/.travis.yml +34 -0
  483. package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  484. package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/GOVERNANCE.md +136 -0
  485. package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/LICENSE +47 -0
  486. package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/README.md +58 -0
  487. package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  488. package/publish-notification-lambda/node_modules/lazystream/node_modules/readable-stream/package.json +52 -0
  489. package/publish-notification-lambda/node_modules/lazystream/node_modules/safe-buffer/LICENSE +21 -0
  490. package/publish-notification-lambda/node_modules/lazystream/node_modules/safe-buffer/README.md +584 -0
  491. package/publish-notification-lambda/node_modules/lazystream/node_modules/safe-buffer/package.json +37 -0
  492. package/publish-notification-lambda/node_modules/lazystream/node_modules/string_decoder/.travis.yml +50 -0
  493. package/publish-notification-lambda/node_modules/lazystream/node_modules/string_decoder/LICENSE +48 -0
  494. package/publish-notification-lambda/node_modules/lazystream/node_modules/string_decoder/README.md +47 -0
  495. package/publish-notification-lambda/node_modules/lazystream/node_modules/string_decoder/package.json +31 -0
  496. package/publish-notification-lambda/node_modules/lazystream/package.json +46 -0
  497. package/publish-notification-lambda/node_modules/lazystream/test/data.md +13 -0
  498. package/publish-notification-lambda/node_modules/lodash.defaults/LICENSE +47 -0
  499. package/publish-notification-lambda/node_modules/lodash.defaults/README.md +18 -0
  500. package/publish-notification-lambda/node_modules/lodash.defaults/package.json +17 -0
  501. package/publish-notification-lambda/node_modules/lodash.difference/LICENSE +47 -0
  502. package/publish-notification-lambda/node_modules/lodash.difference/README.md +18 -0
  503. package/publish-notification-lambda/node_modules/lodash.difference/package.json +17 -0
  504. package/publish-notification-lambda/node_modules/lodash.flatten/LICENSE +47 -0
  505. package/publish-notification-lambda/node_modules/lodash.flatten/README.md +18 -0
  506. package/publish-notification-lambda/node_modules/lodash.flatten/package.json +17 -0
  507. package/publish-notification-lambda/node_modules/lodash.isplainobject/LICENSE +47 -0
  508. package/publish-notification-lambda/node_modules/lodash.isplainobject/README.md +18 -0
  509. package/publish-notification-lambda/node_modules/lodash.isplainobject/package.json +17 -0
  510. package/publish-notification-lambda/node_modules/lodash.union/LICENSE +47 -0
  511. package/publish-notification-lambda/node_modules/lodash.union/README.md +18 -0
  512. package/publish-notification-lambda/node_modules/lodash.union/package.json +17 -0
  513. package/publish-notification-lambda/node_modules/minimatch/README.md +230 -0
  514. package/publish-notification-lambda/node_modules/minimatch/package.json +33 -0
  515. package/publish-notification-lambda/node_modules/normalize-path/LICENSE +21 -0
  516. package/publish-notification-lambda/node_modules/normalize-path/README.md +127 -0
  517. package/publish-notification-lambda/node_modules/normalize-path/package.json +77 -0
  518. package/publish-notification-lambda/node_modules/once/LICENSE +15 -0
  519. package/publish-notification-lambda/node_modules/once/README.md +79 -0
  520. package/publish-notification-lambda/node_modules/once/package.json +33 -0
  521. package/publish-notification-lambda/node_modules/path-is-absolute/license +21 -0
  522. package/publish-notification-lambda/node_modules/path-is-absolute/package.json +43 -0
  523. package/publish-notification-lambda/node_modules/path-is-absolute/readme.md +59 -0
  524. package/publish-notification-lambda/node_modules/process-nextick-args/license.md +19 -0
  525. package/publish-notification-lambda/node_modules/process-nextick-args/package.json +25 -0
  526. package/publish-notification-lambda/node_modules/process-nextick-args/readme.md +18 -0
  527. package/publish-notification-lambda/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  528. package/publish-notification-lambda/node_modules/readable-stream/GOVERNANCE.md +136 -0
  529. package/publish-notification-lambda/node_modules/readable-stream/LICENSE +47 -0
  530. package/publish-notification-lambda/node_modules/readable-stream/README.md +106 -0
  531. package/publish-notification-lambda/node_modules/readable-stream/package.json +68 -0
  532. package/publish-notification-lambda/node_modules/readdir-glob/LICENSE +201 -0
  533. package/publish-notification-lambda/node_modules/readdir-glob/README.md +85 -0
  534. package/publish-notification-lambda/node_modules/readdir-glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
  535. package/publish-notification-lambda/node_modules/readdir-glob/node_modules/brace-expansion/LICENSE +21 -0
  536. package/publish-notification-lambda/node_modules/readdir-glob/node_modules/brace-expansion/README.md +135 -0
  537. package/publish-notification-lambda/node_modules/readdir-glob/node_modules/brace-expansion/package.json +46 -0
  538. package/publish-notification-lambda/node_modules/readdir-glob/node_modules/minimatch/LICENSE +15 -0
  539. package/publish-notification-lambda/node_modules/readdir-glob/node_modules/minimatch/README.md +259 -0
  540. package/publish-notification-lambda/node_modules/readdir-glob/node_modules/minimatch/package.json +35 -0
  541. package/publish-notification-lambda/node_modules/readdir-glob/package.json +43 -0
  542. package/publish-notification-lambda/node_modules/require-directory/.jshintrc +67 -0
  543. package/publish-notification-lambda/node_modules/require-directory/.travis.yml +3 -0
  544. package/publish-notification-lambda/node_modules/require-directory/LICENSE +22 -0
  545. package/publish-notification-lambda/node_modules/require-directory/README.markdown +184 -0
  546. package/publish-notification-lambda/node_modules/require-directory/package.json +40 -0
  547. package/publish-notification-lambda/node_modules/safe-buffer/LICENSE +21 -0
  548. package/publish-notification-lambda/node_modules/safe-buffer/README.md +584 -0
  549. package/publish-notification-lambda/node_modules/safe-buffer/package.json +51 -0
  550. package/publish-notification-lambda/node_modules/string-width/license +9 -0
  551. package/publish-notification-lambda/node_modules/string-width/package.json +56 -0
  552. package/publish-notification-lambda/node_modules/string-width/readme.md +50 -0
  553. package/publish-notification-lambda/node_modules/string_decoder/LICENSE +48 -0
  554. package/publish-notification-lambda/node_modules/string_decoder/README.md +47 -0
  555. package/publish-notification-lambda/node_modules/string_decoder/package.json +34 -0
  556. package/publish-notification-lambda/node_modules/strip-ansi/license +9 -0
  557. package/publish-notification-lambda/node_modules/strip-ansi/package.json +54 -0
  558. package/publish-notification-lambda/node_modules/strip-ansi/readme.md +46 -0
  559. package/publish-notification-lambda/node_modules/strnum/.vscode/launch.json +25 -0
  560. package/publish-notification-lambda/node_modules/strnum/LICENSE +21 -0
  561. package/publish-notification-lambda/node_modules/strnum/README.md +86 -0
  562. package/publish-notification-lambda/node_modules/strnum/package.json +24 -0
  563. package/publish-notification-lambda/node_modules/tar-stream/LICENSE +21 -0
  564. package/publish-notification-lambda/node_modules/tar-stream/README.md +168 -0
  565. package/publish-notification-lambda/node_modules/tar-stream/package.json +58 -0
  566. package/publish-notification-lambda/node_modules/tslib/CopyrightNotice.txt +15 -0
  567. package/publish-notification-lambda/node_modules/tslib/LICENSE.txt +12 -0
  568. package/publish-notification-lambda/node_modules/tslib/README.md +164 -0
  569. package/publish-notification-lambda/node_modules/tslib/SECURITY.md +41 -0
  570. package/publish-notification-lambda/node_modules/tslib/modules/package.json +3 -0
  571. package/publish-notification-lambda/node_modules/tslib/package.json +47 -0
  572. package/publish-notification-lambda/node_modules/tslib/tslib.es6.html +1 -0
  573. package/publish-notification-lambda/node_modules/tslib/tslib.es6.mjs +370 -0
  574. package/publish-notification-lambda/node_modules/tslib/tslib.html +1 -0
  575. package/publish-notification-lambda/node_modules/typescript/LICENSE.txt +55 -0
  576. package/publish-notification-lambda/node_modules/typescript/README.md +51 -0
  577. package/publish-notification-lambda/node_modules/typescript/SECURITY.md +41 -0
  578. package/publish-notification-lambda/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  579. package/publish-notification-lambda/node_modules/typescript/bin/tsc +2 -0
  580. package/publish-notification-lambda/node_modules/typescript/bin/tsserver +2 -0
  581. package/publish-notification-lambda/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
  582. package/publish-notification-lambda/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
  583. package/publish-notification-lambda/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
  584. package/publish-notification-lambda/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
  585. package/publish-notification-lambda/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
  586. package/publish-notification-lambda/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
  587. package/publish-notification-lambda/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
  588. package/publish-notification-lambda/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
  589. package/publish-notification-lambda/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
  590. package/publish-notification-lambda/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
  591. package/publish-notification-lambda/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
  592. package/publish-notification-lambda/node_modules/typescript/lib/typesMap.json +497 -0
  593. package/publish-notification-lambda/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
  594. package/publish-notification-lambda/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
  595. package/publish-notification-lambda/node_modules/typescript/package.json +116 -0
  596. package/publish-notification-lambda/node_modules/util-deprecate/History.md +16 -0
  597. package/publish-notification-lambda/node_modules/util-deprecate/LICENSE +24 -0
  598. package/publish-notification-lambda/node_modules/util-deprecate/README.md +53 -0
  599. package/publish-notification-lambda/node_modules/util-deprecate/package.json +27 -0
  600. package/publish-notification-lambda/node_modules/uuid/CHANGELOG.md +229 -0
  601. package/publish-notification-lambda/node_modules/uuid/CONTRIBUTING.md +18 -0
  602. package/publish-notification-lambda/node_modules/uuid/LICENSE.md +9 -0
  603. package/publish-notification-lambda/node_modules/uuid/README.md +505 -0
  604. package/publish-notification-lambda/node_modules/uuid/dist/bin/uuid +2 -0
  605. package/publish-notification-lambda/node_modules/uuid/package.json +135 -0
  606. package/publish-notification-lambda/node_modules/uuid/wrapper.mjs +10 -0
  607. package/publish-notification-lambda/node_modules/which/CHANGELOG.md +166 -0
  608. package/publish-notification-lambda/node_modules/which/LICENSE +15 -0
  609. package/publish-notification-lambda/node_modules/which/README.md +54 -0
  610. package/publish-notification-lambda/node_modules/which/bin/node-which +52 -0
  611. package/publish-notification-lambda/node_modules/which/package.json +43 -0
  612. package/publish-notification-lambda/node_modules/wrap-ansi/license +9 -0
  613. package/publish-notification-lambda/node_modules/wrap-ansi/package.json +62 -0
  614. package/publish-notification-lambda/node_modules/wrap-ansi/readme.md +91 -0
  615. package/publish-notification-lambda/node_modules/wrappy/LICENSE +15 -0
  616. package/publish-notification-lambda/node_modules/wrappy/README.md +36 -0
  617. package/publish-notification-lambda/node_modules/wrappy/package.json +29 -0
  618. package/publish-notification-lambda/node_modules/y18n/CHANGELOG.md +100 -0
  619. package/publish-notification-lambda/node_modules/y18n/LICENSE +13 -0
  620. package/publish-notification-lambda/node_modules/y18n/README.md +127 -0
  621. package/publish-notification-lambda/node_modules/y18n/build/index.cjs +203 -0
  622. package/publish-notification-lambda/node_modules/y18n/index.mjs +8 -0
  623. package/publish-notification-lambda/node_modules/y18n/package.json +70 -0
  624. package/publish-notification-lambda/node_modules/yargs/CHANGELOG.md +88 -0
  625. package/publish-notification-lambda/node_modules/yargs/LICENSE +21 -0
  626. package/publish-notification-lambda/node_modules/yargs/README.md +202 -0
  627. package/publish-notification-lambda/node_modules/yargs/browser.mjs +7 -0
  628. package/publish-notification-lambda/node_modules/yargs/build/index.cjs +2920 -0
  629. package/publish-notification-lambda/node_modules/yargs/helpers/helpers.mjs +10 -0
  630. package/publish-notification-lambda/node_modules/yargs/helpers/package.json +3 -0
  631. package/publish-notification-lambda/node_modules/yargs/index.cjs +39 -0
  632. package/publish-notification-lambda/node_modules/yargs/index.mjs +8 -0
  633. package/publish-notification-lambda/node_modules/yargs/lib/platform-shims/browser.mjs +92 -0
  634. package/publish-notification-lambda/node_modules/yargs/lib/platform-shims/esm.mjs +67 -0
  635. package/publish-notification-lambda/node_modules/yargs/locales/be.json +46 -0
  636. package/publish-notification-lambda/node_modules/yargs/locales/de.json +46 -0
  637. package/publish-notification-lambda/node_modules/yargs/locales/en.json +51 -0
  638. package/publish-notification-lambda/node_modules/yargs/locales/es.json +46 -0
  639. package/publish-notification-lambda/node_modules/yargs/locales/fi.json +49 -0
  640. package/publish-notification-lambda/node_modules/yargs/locales/fr.json +53 -0
  641. package/publish-notification-lambda/node_modules/yargs/locales/hi.json +49 -0
  642. package/publish-notification-lambda/node_modules/yargs/locales/hu.json +46 -0
  643. package/publish-notification-lambda/node_modules/yargs/locales/id.json +50 -0
  644. package/publish-notification-lambda/node_modules/yargs/locales/it.json +46 -0
  645. package/publish-notification-lambda/node_modules/yargs/locales/ja.json +51 -0
  646. package/publish-notification-lambda/node_modules/yargs/locales/ko.json +49 -0
  647. package/publish-notification-lambda/node_modules/yargs/locales/nb.json +44 -0
  648. package/publish-notification-lambda/node_modules/yargs/locales/nl.json +49 -0
  649. package/publish-notification-lambda/node_modules/yargs/locales/nn.json +44 -0
  650. package/publish-notification-lambda/node_modules/yargs/locales/pirate.json +13 -0
  651. package/publish-notification-lambda/node_modules/yargs/locales/pl.json +49 -0
  652. package/publish-notification-lambda/node_modules/yargs/locales/pt.json +45 -0
  653. package/publish-notification-lambda/node_modules/yargs/locales/pt_BR.json +48 -0
  654. package/publish-notification-lambda/node_modules/yargs/locales/ru.json +46 -0
  655. package/publish-notification-lambda/node_modules/yargs/locales/th.json +46 -0
  656. package/publish-notification-lambda/node_modules/yargs/locales/tr.json +48 -0
  657. package/publish-notification-lambda/node_modules/yargs/locales/zh_CN.json +48 -0
  658. package/publish-notification-lambda/node_modules/yargs/locales/zh_TW.json +47 -0
  659. package/publish-notification-lambda/node_modules/yargs/package.json +122 -0
  660. package/publish-notification-lambda/node_modules/yargs/yargs +9 -0
  661. package/publish-notification-lambda/node_modules/yargs-parser/CHANGELOG.md +263 -0
  662. package/publish-notification-lambda/node_modules/yargs-parser/LICENSE.txt +14 -0
  663. package/publish-notification-lambda/node_modules/yargs-parser/README.md +518 -0
  664. package/publish-notification-lambda/node_modules/yargs-parser/build/index.cjs +1042 -0
  665. package/publish-notification-lambda/node_modules/yargs-parser/package.json +87 -0
  666. package/publish-notification-lambda/node_modules/zip-stream/CHANGELOG.md +110 -0
  667. package/publish-notification-lambda/node_modules/zip-stream/LICENSE +22 -0
  668. package/publish-notification-lambda/node_modules/zip-stream/README.md +45 -0
  669. package/publish-notification-lambda/node_modules/zip-stream/package.json +49 -0
  670. package/publish-notification-lambda/package-lock.json +1944 -0
  671. package/publish-notification-lambda/package.json +23 -0
  672. package/publish-notification-lambda/src/index.ts +101 -0
  673. package/publish-notification-lambda/tsconfig.json +13 -0
  674. package/rds-lambda/handler.ts +52 -3
  675. package/rds-lambda/node_modules/.package-lock.json +824 -692
  676. package/rds-lambda/node_modules/@aws-sdk/abort-controller/package.json +2 -2
  677. package/rds-lambda/node_modules/@aws-sdk/client-ssm/package.json +29 -29
  678. package/rds-lambda/node_modules/@aws-sdk/client-sso/package.json +25 -25
  679. package/rds-lambda/node_modules/@aws-sdk/client-sso-oidc/package.json +25 -25
  680. package/rds-lambda/node_modules/@aws-sdk/client-sts/package.json +29 -29
  681. package/rds-lambda/node_modules/@aws-sdk/config-resolver/package.json +4 -4
  682. package/rds-lambda/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
  683. package/rds-lambda/node_modules/@aws-sdk/credential-provider-imds/package.json +5 -5
  684. package/rds-lambda/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
  685. package/rds-lambda/node_modules/@aws-sdk/credential-provider-node/package.json +10 -10
  686. package/rds-lambda/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
  687. package/rds-lambda/node_modules/@aws-sdk/credential-provider-sso/package.json +6 -6
  688. package/rds-lambda/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
  689. package/rds-lambda/node_modules/@aws-sdk/fetch-http-handler/package.json +5 -5
  690. package/rds-lambda/node_modules/@aws-sdk/hash-node/package.json +3 -2
  691. package/rds-lambda/node_modules/@aws-sdk/invalid-dependency/package.json +2 -2
  692. package/rds-lambda/node_modules/@aws-sdk/middleware-content-length/package.json +3 -3
  693. package/rds-lambda/node_modules/@aws-sdk/middleware-endpoint/package.json +6 -5
  694. package/rds-lambda/node_modules/@aws-sdk/middleware-host-header/package.json +3 -3
  695. package/rds-lambda/node_modules/@aws-sdk/middleware-logger/package.json +2 -2
  696. package/rds-lambda/node_modules/@aws-sdk/middleware-recursion-detection/package.json +3 -3
  697. package/rds-lambda/node_modules/@aws-sdk/middleware-retry/package.json +7 -7
  698. package/rds-lambda/node_modules/@aws-sdk/middleware-sdk-sts/package.json +3 -3
  699. package/rds-lambda/node_modules/@aws-sdk/middleware-serde/package.json +2 -2
  700. package/rds-lambda/node_modules/@aws-sdk/middleware-signing/package.json +6 -6
  701. package/rds-lambda/node_modules/@aws-sdk/middleware-stack/package.json +2 -2
  702. package/rds-lambda/node_modules/@aws-sdk/middleware-user-agent/package.json +4 -4
  703. package/rds-lambda/node_modules/@aws-sdk/node-config-provider/package.json +4 -4
  704. package/rds-lambda/node_modules/@aws-sdk/node-http-handler/package.json +5 -5
  705. package/rds-lambda/node_modules/@aws-sdk/property-provider/package.json +2 -2
  706. package/rds-lambda/node_modules/@aws-sdk/protocol-http/package.json +2 -2
  707. package/rds-lambda/node_modules/@aws-sdk/querystring-builder/package.json +2 -2
  708. package/rds-lambda/node_modules/@aws-sdk/querystring-parser/package.json +2 -2
  709. package/rds-lambda/node_modules/@aws-sdk/service-error-classification/package.json +2 -2
  710. package/rds-lambda/node_modules/@aws-sdk/shared-ini-file-loader/package.json +2 -2
  711. package/rds-lambda/node_modules/@aws-sdk/signature-v4/package.json +4 -5
  712. package/rds-lambda/node_modules/@aws-sdk/smithy-client/package.json +3 -5
  713. package/rds-lambda/node_modules/@aws-sdk/token-providers/package.json +5 -5
  714. package/rds-lambda/node_modules/@aws-sdk/types/package.json +1 -7
  715. package/rds-lambda/node_modules/@aws-sdk/url-parser/package.json +3 -3
  716. package/rds-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +4 -4
  717. package/rds-lambda/node_modules/@aws-sdk/util-defaults-mode-node/package.json +7 -7
  718. package/rds-lambda/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -11
  719. package/rds-lambda/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -11
  720. package/rds-lambda/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
  721. package/rds-lambda/node_modules/@aws-sdk/util-middleware/package.json +2 -2
  722. package/rds-lambda/node_modules/@aws-sdk/util-retry/package.json +3 -3
  723. package/rds-lambda/node_modules/@aws-sdk/util-user-agent-browser/package.json +2 -2
  724. package/rds-lambda/node_modules/@aws-sdk/util-user-agent-node/package.json +3 -3
  725. package/rds-lambda/node_modules/@aws-sdk/util-waiter/package.json +3 -3
  726. package/rds-lambda/node_modules/archiver/CHANGELOG.md +228 -0
  727. package/rds-lambda/node_modules/archiver/LICENSE +22 -0
  728. package/rds-lambda/node_modules/archiver/README.md +94 -0
  729. package/rds-lambda/node_modules/archiver/package.json +60 -0
  730. package/rds-lambda/node_modules/archiver-utils/CHANGELOG.md +14 -0
  731. package/rds-lambda/node_modules/archiver-utils/LICENSE +22 -0
  732. package/rds-lambda/node_modules/archiver-utils/README.md +7 -0
  733. package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/.travis.yml +34 -0
  734. package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  735. package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/GOVERNANCE.md +136 -0
  736. package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/LICENSE +47 -0
  737. package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/README.md +58 -0
  738. package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  739. package/rds-lambda/node_modules/archiver-utils/node_modules/readable-stream/package.json +52 -0
  740. package/rds-lambda/node_modules/archiver-utils/node_modules/safe-buffer/LICENSE +21 -0
  741. package/rds-lambda/node_modules/archiver-utils/node_modules/safe-buffer/README.md +584 -0
  742. package/rds-lambda/node_modules/archiver-utils/node_modules/safe-buffer/package.json +37 -0
  743. package/rds-lambda/node_modules/archiver-utils/node_modules/string_decoder/.travis.yml +50 -0
  744. package/rds-lambda/node_modules/archiver-utils/node_modules/string_decoder/LICENSE +48 -0
  745. package/rds-lambda/node_modules/archiver-utils/node_modules/string_decoder/README.md +47 -0
  746. package/rds-lambda/node_modules/archiver-utils/node_modules/string_decoder/package.json +31 -0
  747. package/rds-lambda/node_modules/archiver-utils/package.json +54 -0
  748. package/rds-lambda/node_modules/async/CHANGELOG.md +348 -0
  749. package/rds-lambda/node_modules/async/LICENSE +19 -0
  750. package/rds-lambda/node_modules/async/README.md +59 -0
  751. package/rds-lambda/node_modules/async/bower.json +17 -0
  752. package/rds-lambda/node_modules/async/dist/async.mjs +5947 -0
  753. package/rds-lambda/node_modules/async/package.json +75 -0
  754. package/rds-lambda/node_modules/base64-js/LICENSE +21 -0
  755. package/rds-lambda/node_modules/base64-js/README.md +34 -0
  756. package/rds-lambda/node_modules/base64-js/package.json +47 -0
  757. package/rds-lambda/node_modules/bestzip/LICENSE +21 -0
  758. package/rds-lambda/node_modules/bestzip/package.json +46 -0
  759. package/rds-lambda/node_modules/bestzip/readme.md +91 -0
  760. package/rds-lambda/node_modules/bl/.travis.yml +17 -0
  761. package/rds-lambda/node_modules/bl/LICENSE.md +13 -0
  762. package/rds-lambda/node_modules/bl/README.md +247 -0
  763. package/rds-lambda/node_modules/bl/package.json +37 -0
  764. package/rds-lambda/node_modules/buffer/AUTHORS.md +70 -0
  765. package/rds-lambda/node_modules/buffer/LICENSE +21 -0
  766. package/rds-lambda/node_modules/buffer/README.md +410 -0
  767. package/rds-lambda/node_modules/buffer/package.json +96 -0
  768. package/rds-lambda/node_modules/buffer-crc32/LICENSE +19 -0
  769. package/rds-lambda/node_modules/buffer-crc32/README.md +47 -0
  770. package/rds-lambda/node_modules/buffer-crc32/package.json +39 -0
  771. package/rds-lambda/node_modules/cliui/CHANGELOG.md +0 -18
  772. package/rds-lambda/node_modules/cliui/package.json +6 -6
  773. package/rds-lambda/node_modules/compress-commons/CHANGELOG.md +58 -0
  774. package/rds-lambda/node_modules/compress-commons/LICENSE +22 -0
  775. package/rds-lambda/node_modules/compress-commons/README.md +25 -0
  776. package/rds-lambda/node_modules/compress-commons/package.json +45 -0
  777. package/rds-lambda/node_modules/core-util-is/LICENSE +19 -0
  778. package/rds-lambda/node_modules/core-util-is/README.md +3 -0
  779. package/rds-lambda/node_modules/core-util-is/package.json +38 -0
  780. package/rds-lambda/node_modules/crc-32/LICENSE +201 -0
  781. package/rds-lambda/node_modules/crc-32/README.md +200 -0
  782. package/rds-lambda/node_modules/crc-32/bin/crc32.njs +105 -0
  783. package/rds-lambda/node_modules/crc-32/package.json +43 -0
  784. package/rds-lambda/node_modules/crc-32/types/tsconfig.json +14 -0
  785. package/rds-lambda/node_modules/crc-32/types/tslint.json +11 -0
  786. package/rds-lambda/node_modules/crc32-stream/CHANGELOG.md +57 -0
  787. package/rds-lambda/node_modules/crc32-stream/LICENSE +22 -0
  788. package/rds-lambda/node_modules/crc32-stream/README.md +79 -0
  789. package/rds-lambda/node_modules/crc32-stream/package.json +45 -0
  790. package/rds-lambda/node_modules/end-of-stream/LICENSE +21 -0
  791. package/rds-lambda/node_modules/end-of-stream/README.md +54 -0
  792. package/rds-lambda/node_modules/end-of-stream/package.json +37 -0
  793. package/rds-lambda/node_modules/fast-xml-parser/CHANGELOG.md +0 -29
  794. package/rds-lambda/node_modules/fast-xml-parser/README.md +0 -1
  795. package/rds-lambda/node_modules/fast-xml-parser/package.json +4 -7
  796. package/rds-lambda/node_modules/fs-constants/LICENSE +21 -0
  797. package/rds-lambda/node_modules/fs-constants/README.md +26 -0
  798. package/rds-lambda/node_modules/fs-constants/package.json +19 -0
  799. package/rds-lambda/node_modules/ieee754/LICENSE +11 -0
  800. package/rds-lambda/node_modules/ieee754/README.md +51 -0
  801. package/rds-lambda/node_modules/ieee754/package.json +52 -0
  802. package/rds-lambda/node_modules/isarray/.travis.yml +4 -0
  803. package/rds-lambda/node_modules/isarray/Makefile +6 -0
  804. package/rds-lambda/node_modules/isarray/README.md +60 -0
  805. package/rds-lambda/node_modules/isarray/component.json +19 -0
  806. package/rds-lambda/node_modules/isarray/package.json +45 -0
  807. package/rds-lambda/node_modules/jest-cli/node_modules/cliui/CHANGELOG.md +139 -0
  808. package/rds-lambda/node_modules/jest-cli/node_modules/cliui/LICENSE.txt +14 -0
  809. package/rds-lambda/node_modules/jest-cli/node_modules/cliui/README.md +141 -0
  810. package/rds-lambda/node_modules/jest-cli/node_modules/cliui/build/index.cjs +302 -0
  811. package/rds-lambda/node_modules/jest-cli/node_modules/cliui/index.mjs +13 -0
  812. package/rds-lambda/node_modules/jest-cli/node_modules/cliui/package.json +83 -0
  813. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/LICENSE +21 -0
  814. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/README.md +204 -0
  815. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/browser.mjs +7 -0
  816. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/build/index.cjs +1 -0
  817. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/helpers/helpers.mjs +10 -0
  818. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/helpers/package.json +3 -0
  819. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/index.cjs +53 -0
  820. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/index.mjs +8 -0
  821. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/lib/platform-shims/browser.mjs +95 -0
  822. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/lib/platform-shims/esm.mjs +73 -0
  823. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/be.json +46 -0
  824. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/de.json +46 -0
  825. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/en.json +55 -0
  826. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/es.json +46 -0
  827. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/fi.json +49 -0
  828. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/fr.json +53 -0
  829. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/hi.json +49 -0
  830. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/hu.json +46 -0
  831. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/id.json +50 -0
  832. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/it.json +46 -0
  833. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/ja.json +51 -0
  834. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/ko.json +49 -0
  835. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/nb.json +44 -0
  836. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/nl.json +49 -0
  837. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/nn.json +44 -0
  838. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/pirate.json +13 -0
  839. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/pl.json +49 -0
  840. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/pt.json +45 -0
  841. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/pt_BR.json +48 -0
  842. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/ru.json +51 -0
  843. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/th.json +46 -0
  844. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/tr.json +48 -0
  845. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/zh_CN.json +48 -0
  846. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/locales/zh_TW.json +51 -0
  847. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/package.json +123 -0
  848. package/rds-lambda/node_modules/jest-cli/node_modules/yargs/yargs +9 -0
  849. package/rds-lambda/node_modules/lazystream/LICENSE +23 -0
  850. package/rds-lambda/node_modules/lazystream/README.md +114 -0
  851. package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/.travis.yml +34 -0
  852. package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  853. package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/GOVERNANCE.md +136 -0
  854. package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/LICENSE +47 -0
  855. package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/README.md +58 -0
  856. package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  857. package/rds-lambda/node_modules/lazystream/node_modules/readable-stream/package.json +52 -0
  858. package/rds-lambda/node_modules/lazystream/node_modules/safe-buffer/LICENSE +21 -0
  859. package/rds-lambda/node_modules/lazystream/node_modules/safe-buffer/README.md +584 -0
  860. package/rds-lambda/node_modules/lazystream/node_modules/safe-buffer/package.json +37 -0
  861. package/rds-lambda/node_modules/lazystream/node_modules/string_decoder/.travis.yml +50 -0
  862. package/rds-lambda/node_modules/lazystream/node_modules/string_decoder/LICENSE +48 -0
  863. package/rds-lambda/node_modules/lazystream/node_modules/string_decoder/README.md +47 -0
  864. package/rds-lambda/node_modules/lazystream/node_modules/string_decoder/package.json +31 -0
  865. package/rds-lambda/node_modules/lazystream/package.json +46 -0
  866. package/rds-lambda/node_modules/lazystream/test/data.md +13 -0
  867. package/rds-lambda/node_modules/lodash.defaults/LICENSE +47 -0
  868. package/rds-lambda/node_modules/lodash.defaults/README.md +18 -0
  869. package/rds-lambda/node_modules/lodash.defaults/package.json +17 -0
  870. package/rds-lambda/node_modules/lodash.difference/LICENSE +47 -0
  871. package/rds-lambda/node_modules/lodash.difference/README.md +18 -0
  872. package/rds-lambda/node_modules/lodash.difference/package.json +17 -0
  873. package/rds-lambda/node_modules/lodash.flatten/LICENSE +47 -0
  874. package/rds-lambda/node_modules/lodash.flatten/README.md +18 -0
  875. package/rds-lambda/node_modules/lodash.flatten/package.json +17 -0
  876. package/rds-lambda/node_modules/lodash.isplainobject/LICENSE +47 -0
  877. package/rds-lambda/node_modules/lodash.isplainobject/README.md +18 -0
  878. package/rds-lambda/node_modules/lodash.isplainobject/package.json +17 -0
  879. package/rds-lambda/node_modules/lodash.union/LICENSE +47 -0
  880. package/rds-lambda/node_modules/lodash.union/README.md +18 -0
  881. package/rds-lambda/node_modules/lodash.union/package.json +17 -0
  882. package/rds-lambda/node_modules/process-nextick-args/license.md +19 -0
  883. package/rds-lambda/node_modules/process-nextick-args/package.json +25 -0
  884. package/rds-lambda/node_modules/process-nextick-args/readme.md +18 -0
  885. package/rds-lambda/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  886. package/rds-lambda/node_modules/readable-stream/GOVERNANCE.md +136 -0
  887. package/rds-lambda/node_modules/readable-stream/LICENSE +47 -0
  888. package/rds-lambda/node_modules/readable-stream/README.md +106 -0
  889. package/rds-lambda/node_modules/readable-stream/package.json +68 -0
  890. package/rds-lambda/node_modules/readdir-glob/LICENSE +201 -0
  891. package/rds-lambda/node_modules/readdir-glob/README.md +85 -0
  892. package/rds-lambda/node_modules/readdir-glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
  893. package/rds-lambda/node_modules/readdir-glob/node_modules/brace-expansion/LICENSE +21 -0
  894. package/rds-lambda/node_modules/readdir-glob/node_modules/brace-expansion/README.md +135 -0
  895. package/rds-lambda/node_modules/readdir-glob/node_modules/brace-expansion/package.json +46 -0
  896. package/rds-lambda/node_modules/readdir-glob/node_modules/minimatch/LICENSE +15 -0
  897. package/rds-lambda/node_modules/readdir-glob/node_modules/minimatch/README.md +259 -0
  898. package/rds-lambda/node_modules/readdir-glob/node_modules/minimatch/package.json +35 -0
  899. package/rds-lambda/node_modules/readdir-glob/package.json +43 -0
  900. package/rds-lambda/node_modules/safe-buffer/LICENSE +21 -0
  901. package/rds-lambda/node_modules/safe-buffer/README.md +584 -0
  902. package/rds-lambda/node_modules/safe-buffer/package.json +51 -0
  903. package/rds-lambda/node_modules/string_decoder/LICENSE +48 -0
  904. package/rds-lambda/node_modules/string_decoder/README.md +47 -0
  905. package/rds-lambda/node_modules/string_decoder/package.json +34 -0
  906. package/rds-lambda/node_modules/tar-stream/LICENSE +21 -0
  907. package/rds-lambda/node_modules/tar-stream/README.md +168 -0
  908. package/rds-lambda/node_modules/tar-stream/package.json +58 -0
  909. package/rds-lambda/node_modules/util-deprecate/History.md +16 -0
  910. package/rds-lambda/node_modules/util-deprecate/LICENSE +24 -0
  911. package/rds-lambda/node_modules/util-deprecate/README.md +53 -0
  912. package/rds-lambda/node_modules/util-deprecate/package.json +27 -0
  913. package/rds-lambda/node_modules/yargs/CHANGELOG.md +88 -0
  914. package/rds-lambda/node_modules/yargs/README.md +6 -8
  915. package/rds-lambda/node_modules/yargs/browser.mjs +2 -2
  916. package/rds-lambda/node_modules/yargs/build/index.cjs +2920 -1
  917. package/rds-lambda/node_modules/yargs/index.cjs +8 -22
  918. package/rds-lambda/node_modules/yargs/index.mjs +2 -2
  919. package/rds-lambda/node_modules/yargs/lib/platform-shims/browser.mjs +0 -3
  920. package/rds-lambda/node_modules/yargs/lib/platform-shims/esm.mjs +3 -9
  921. package/rds-lambda/node_modules/yargs/locales/en.json +0 -4
  922. package/rds-lambda/node_modules/yargs/locales/fi.json +1 -1
  923. package/rds-lambda/node_modules/yargs/locales/ko.json +25 -25
  924. package/rds-lambda/node_modules/yargs/locales/ru.json +1 -6
  925. package/rds-lambda/node_modules/yargs/locales/zh_TW.json +46 -50
  926. package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/CHANGELOG.md +263 -0
  927. package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt +14 -0
  928. package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/README.md +518 -0
  929. package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/build/index.cjs +1042 -0
  930. package/rds-lambda/node_modules/yargs/node_modules/yargs-parser/package.json +87 -0
  931. package/rds-lambda/node_modules/yargs/package.json +24 -25
  932. package/rds-lambda/node_modules/zip-stream/CHANGELOG.md +110 -0
  933. package/rds-lambda/node_modules/zip-stream/LICENSE +22 -0
  934. package/rds-lambda/node_modules/zip-stream/README.md +45 -0
  935. package/rds-lambda/node_modules/zip-stream/package.json +49 -0
  936. package/rds-lambda/package-lock.json +826 -696
  937. package/rds-lambda/package.json +3 -5
  938. package/rds-patching-lambda/node_modules/.package-lock.json +1883 -0
  939. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/CHANGELOG.md +76 -0
  940. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/LICENSE +201 -0
  941. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/README.md +16 -0
  942. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +15 -0
  943. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +12 -0
  944. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +142 -0
  945. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +3 -0
  946. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +37 -0
  947. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  948. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +1 -0
  949. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +1 -0
  950. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/package.json +28 -0
  951. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +24 -0
  952. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/src/index.ts +92 -0
  953. package/rds-patching-lambda/node_modules/@aws-crypto/crc32/tsconfig.json +23 -0
  954. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +46 -0
  955. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/LICENSE +202 -0
  956. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/README.md +20 -0
  957. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +15 -0
  958. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +12 -0
  959. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +142 -0
  960. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +3 -0
  961. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +37 -0
  962. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  963. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +1 -0
  964. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +1 -0
  965. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/package.json +26 -0
  966. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +21 -0
  967. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/Key.ts +12 -0
  968. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +13 -0
  969. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +88 -0
  970. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +59 -0
  971. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/src/index.ts +5 -0
  972. package/rds-patching-lambda/node_modules/@aws-crypto/ie11-detection/tsconfig.json +17 -0
  973. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +88 -0
  974. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
  975. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
  976. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +15 -0
  977. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +12 -0
  978. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +142 -0
  979. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +3 -0
  980. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +37 -0
  981. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  982. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +1 -0
  983. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +1 -0
  984. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
  985. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
  986. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +34 -0
  987. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +108 -0
  988. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/index.ts +3 -0
  989. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
  990. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
  991. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-browser/tsconfig.json +22 -0
  992. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +86 -0
  993. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
  994. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/README.md +29 -0
  995. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +15 -0
  996. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +12 -0
  997. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +142 -0
  998. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +3 -0
  999. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +37 -0
  1000. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  1001. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +1 -0
  1002. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +1 -0
  1003. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/package.json +28 -0
  1004. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
  1005. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
  1006. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
  1007. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
  1008. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
  1009. package/rds-patching-lambda/node_modules/@aws-crypto/sha256-js/tsconfig.json +17 -0
  1010. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +46 -0
  1011. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
  1012. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
  1013. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +15 -0
  1014. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +12 -0
  1015. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +142 -0
  1016. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +3 -0
  1017. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +37 -0
  1018. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  1019. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +1 -0
  1020. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +1 -0
  1021. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/package.json +26 -0
  1022. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
  1023. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
  1024. package/rds-patching-lambda/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +16 -0
  1025. package/rds-patching-lambda/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
  1026. package/rds-patching-lambda/node_modules/@aws-crypto/util/LICENSE +201 -0
  1027. package/rds-patching-lambda/node_modules/@aws-crypto/util/README.md +16 -0
  1028. package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
  1029. package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
  1030. package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
  1031. package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
  1032. package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
  1033. package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  1034. package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
  1035. package/rds-patching-lambda/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
  1036. package/rds-patching-lambda/node_modules/@aws-crypto/util/package.json +31 -0
  1037. package/rds-patching-lambda/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
  1038. package/rds-patching-lambda/node_modules/@aws-crypto/util/src/index.ts +7 -0
  1039. package/rds-patching-lambda/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
  1040. package/rds-patching-lambda/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
  1041. package/rds-patching-lambda/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
  1042. package/rds-patching-lambda/node_modules/@aws-crypto/util/tsconfig.json +23 -0
  1043. package/rds-patching-lambda/node_modules/@aws-sdk/abort-controller/LICENSE +201 -0
  1044. package/rds-patching-lambda/node_modules/@aws-sdk/abort-controller/README.md +4 -0
  1045. package/rds-patching-lambda/node_modules/@aws-sdk/abort-controller/package.json +58 -0
  1046. package/rds-patching-lambda/node_modules/@aws-sdk/client-lambda/LICENSE +201 -0
  1047. package/rds-patching-lambda/node_modules/@aws-sdk/client-lambda/README.md +798 -0
  1048. package/rds-patching-lambda/node_modules/@aws-sdk/client-lambda/package.json +103 -0
  1049. package/rds-patching-lambda/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
  1050. package/rds-patching-lambda/node_modules/@aws-sdk/client-sso/README.md +255 -0
  1051. package/rds-patching-lambda/node_modules/@aws-sdk/client-sso/package.json +96 -0
  1052. package/rds-patching-lambda/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
  1053. package/rds-patching-lambda/node_modules/@aws-sdk/client-sso-oidc/README.md +268 -0
  1054. package/rds-patching-lambda/node_modules/@aws-sdk/client-sso-oidc/package.json +96 -0
  1055. package/rds-patching-lambda/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
  1056. package/rds-patching-lambda/node_modules/@aws-sdk/client-sts/README.md +273 -0
  1057. package/rds-patching-lambda/node_modules/@aws-sdk/client-sts/package.json +102 -0
  1058. package/rds-patching-lambda/node_modules/@aws-sdk/config-resolver/LICENSE +201 -0
  1059. package/rds-patching-lambda/node_modules/@aws-sdk/config-resolver/README.md +10 -0
  1060. package/rds-patching-lambda/node_modules/@aws-sdk/config-resolver/package.json +59 -0
  1061. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
  1062. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
  1063. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
  1064. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-imds/LICENSE +201 -0
  1065. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-imds/README.md +11 -0
  1066. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-imds/package.json +66 -0
  1067. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
  1068. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
  1069. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-ini/package.json +69 -0
  1070. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
  1071. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-node/README.md +101 -0
  1072. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-node/package.json +70 -0
  1073. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
  1074. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
  1075. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
  1076. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
  1077. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
  1078. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
  1079. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
  1080. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
  1081. package/rds-patching-lambda/node_modules/@aws-sdk/credential-provider-web-identity/package.json +71 -0
  1082. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-codec/LICENSE +201 -0
  1083. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-codec/README.md +4 -0
  1084. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-codec/package.json +57 -0
  1085. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-browser/LICENSE +201 -0
  1086. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-browser/README.md +10 -0
  1087. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-browser/package.json +57 -0
  1088. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/LICENSE +201 -0
  1089. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/README.md +10 -0
  1090. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-config-resolver/package.json +56 -0
  1091. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-node/LICENSE +201 -0
  1092. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-node/README.md +10 -0
  1093. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-node/package.json +58 -0
  1094. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-universal/LICENSE +201 -0
  1095. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-universal/README.md +10 -0
  1096. package/rds-patching-lambda/node_modules/@aws-sdk/eventstream-serde-universal/package.json +59 -0
  1097. package/rds-patching-lambda/node_modules/@aws-sdk/fetch-http-handler/LICENSE +201 -0
  1098. package/rds-patching-lambda/node_modules/@aws-sdk/fetch-http-handler/README.md +4 -0
  1099. package/rds-patching-lambda/node_modules/@aws-sdk/fetch-http-handler/package.json +59 -0
  1100. package/rds-patching-lambda/node_modules/@aws-sdk/hash-node/LICENSE +201 -0
  1101. package/rds-patching-lambda/node_modules/@aws-sdk/hash-node/README.md +10 -0
  1102. package/rds-patching-lambda/node_modules/@aws-sdk/hash-node/package.json +60 -0
  1103. package/rds-patching-lambda/node_modules/@aws-sdk/invalid-dependency/LICENSE +201 -0
  1104. package/rds-patching-lambda/node_modules/@aws-sdk/invalid-dependency/README.md +10 -0
  1105. package/rds-patching-lambda/node_modules/@aws-sdk/invalid-dependency/package.json +53 -0
  1106. package/rds-patching-lambda/node_modules/@aws-sdk/is-array-buffer/LICENSE +201 -0
  1107. package/rds-patching-lambda/node_modules/@aws-sdk/is-array-buffer/README.md +10 -0
  1108. package/rds-patching-lambda/node_modules/@aws-sdk/is-array-buffer/package.json +56 -0
  1109. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-content-length/LICENSE +201 -0
  1110. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-content-length/README.md +4 -0
  1111. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-content-length/package.json +58 -0
  1112. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-endpoint/LICENSE +201 -0
  1113. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-endpoint/README.md +10 -0
  1114. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-endpoint/package.json +60 -0
  1115. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
  1116. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
  1117. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-host-header/package.json +58 -0
  1118. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
  1119. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
  1120. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
  1121. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
  1122. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
  1123. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-recursion-detection/package.json +58 -0
  1124. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-retry/LICENSE +201 -0
  1125. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-retry/README.md +4 -0
  1126. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-retry/package.json +65 -0
  1127. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-sdk-sts/LICENSE +201 -0
  1128. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-sdk-sts/README.md +4 -0
  1129. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-sdk-sts/package.json +58 -0
  1130. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-serde/LICENSE +201 -0
  1131. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-serde/README.md +4 -0
  1132. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-serde/package.json +57 -0
  1133. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
  1134. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
  1135. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-signing/package.json +61 -0
  1136. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-stack/LICENSE +201 -0
  1137. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-stack/README.md +78 -0
  1138. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-stack/package.json +60 -0
  1139. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
  1140. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
  1141. package/rds-patching-lambda/node_modules/@aws-sdk/middleware-user-agent/package.json +59 -0
  1142. package/rds-patching-lambda/node_modules/@aws-sdk/node-config-provider/LICENSE +201 -0
  1143. package/rds-patching-lambda/node_modules/@aws-sdk/node-config-provider/README.md +4 -0
  1144. package/rds-patching-lambda/node_modules/@aws-sdk/node-config-provider/package.json +61 -0
  1145. package/rds-patching-lambda/node_modules/@aws-sdk/node-http-handler/LICENSE +201 -0
  1146. package/rds-patching-lambda/node_modules/@aws-sdk/node-http-handler/README.md +4 -0
  1147. package/rds-patching-lambda/node_modules/@aws-sdk/node-http-handler/package.json +63 -0
  1148. package/rds-patching-lambda/node_modules/@aws-sdk/property-provider/LICENSE +201 -0
  1149. package/rds-patching-lambda/node_modules/@aws-sdk/property-provider/README.md +10 -0
  1150. package/rds-patching-lambda/node_modules/@aws-sdk/property-provider/package.json +56 -0
  1151. package/rds-patching-lambda/node_modules/@aws-sdk/protocol-http/LICENSE +201 -0
  1152. package/rds-patching-lambda/node_modules/@aws-sdk/protocol-http/README.md +4 -0
  1153. package/rds-patching-lambda/node_modules/@aws-sdk/protocol-http/package.json +57 -0
  1154. package/rds-patching-lambda/node_modules/@aws-sdk/querystring-builder/LICENSE +201 -0
  1155. package/rds-patching-lambda/node_modules/@aws-sdk/querystring-builder/README.md +10 -0
  1156. package/rds-patching-lambda/node_modules/@aws-sdk/querystring-builder/package.json +57 -0
  1157. package/rds-patching-lambda/node_modules/@aws-sdk/querystring-parser/LICENSE +201 -0
  1158. package/rds-patching-lambda/node_modules/@aws-sdk/querystring-parser/README.md +10 -0
  1159. package/rds-patching-lambda/node_modules/@aws-sdk/querystring-parser/package.json +56 -0
  1160. package/rds-patching-lambda/node_modules/@aws-sdk/service-error-classification/LICENSE +201 -0
  1161. package/rds-patching-lambda/node_modules/@aws-sdk/service-error-classification/README.md +4 -0
  1162. package/rds-patching-lambda/node_modules/@aws-sdk/service-error-classification/package.json +53 -0
  1163. package/rds-patching-lambda/node_modules/@aws-sdk/shared-ini-file-loader/LICENSE +201 -0
  1164. package/rds-patching-lambda/node_modules/@aws-sdk/shared-ini-file-loader/README.md +105 -0
  1165. package/rds-patching-lambda/node_modules/@aws-sdk/shared-ini-file-loader/package.json +58 -0
  1166. package/rds-patching-lambda/node_modules/@aws-sdk/signature-v4/LICENSE +201 -0
  1167. package/rds-patching-lambda/node_modules/@aws-sdk/signature-v4/README.md +4 -0
  1168. package/rds-patching-lambda/node_modules/@aws-sdk/signature-v4/package.json +66 -0
  1169. package/rds-patching-lambda/node_modules/@aws-sdk/smithy-client/LICENSE +201 -0
  1170. package/rds-patching-lambda/node_modules/@aws-sdk/smithy-client/README.md +10 -0
  1171. package/rds-patching-lambda/node_modules/@aws-sdk/smithy-client/package.json +59 -0
  1172. package/rds-patching-lambda/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
  1173. package/rds-patching-lambda/node_modules/@aws-sdk/token-providers/README.md +39 -0
  1174. package/rds-patching-lambda/node_modules/@aws-sdk/token-providers/package.json +67 -0
  1175. package/rds-patching-lambda/node_modules/@aws-sdk/types/LICENSE +201 -0
  1176. package/rds-patching-lambda/node_modules/@aws-sdk/types/README.md +4 -0
  1177. package/rds-patching-lambda/node_modules/@aws-sdk/types/package.json +57 -0
  1178. package/rds-patching-lambda/node_modules/@aws-sdk/url-parser/LICENSE +201 -0
  1179. package/rds-patching-lambda/node_modules/@aws-sdk/url-parser/README.md +10 -0
  1180. package/rds-patching-lambda/node_modules/@aws-sdk/url-parser/package.json +54 -0
  1181. package/rds-patching-lambda/node_modules/@aws-sdk/util-base64/LICENSE +201 -0
  1182. package/rds-patching-lambda/node_modules/@aws-sdk/util-base64/README.md +4 -0
  1183. package/rds-patching-lambda/node_modules/@aws-sdk/util-base64/package.json +66 -0
  1184. package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-browser/LICENSE +201 -0
  1185. package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-browser/README.md +12 -0
  1186. package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-browser/package.json +53 -0
  1187. package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-node/LICENSE +201 -0
  1188. package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-node/README.md +12 -0
  1189. package/rds-patching-lambda/node_modules/@aws-sdk/util-body-length-node/package.json +57 -0
  1190. package/rds-patching-lambda/node_modules/@aws-sdk/util-buffer-from/LICENSE +201 -0
  1191. package/rds-patching-lambda/node_modules/@aws-sdk/util-buffer-from/README.md +10 -0
  1192. package/rds-patching-lambda/node_modules/@aws-sdk/util-buffer-from/package.json +57 -0
  1193. package/rds-patching-lambda/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
  1194. package/rds-patching-lambda/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
  1195. package/rds-patching-lambda/node_modules/@aws-sdk/util-config-provider/package.json +58 -0
  1196. package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/LICENSE +201 -0
  1197. package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/README.md +10 -0
  1198. package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +62 -0
  1199. package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-node/LICENSE +201 -0
  1200. package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-node/README.md +10 -0
  1201. package/rds-patching-lambda/node_modules/@aws-sdk/util-defaults-mode-node/package.json +61 -0
  1202. package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
  1203. package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
  1204. package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +203 -0
  1205. package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +203 -0
  1206. package/rds-patching-lambda/node_modules/@aws-sdk/util-endpoints/package.json +58 -0
  1207. package/rds-patching-lambda/node_modules/@aws-sdk/util-hex-encoding/LICENSE +201 -0
  1208. package/rds-patching-lambda/node_modules/@aws-sdk/util-hex-encoding/README.md +4 -0
  1209. package/rds-patching-lambda/node_modules/@aws-sdk/util-hex-encoding/package.json +56 -0
  1210. package/rds-patching-lambda/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
  1211. package/rds-patching-lambda/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
  1212. package/rds-patching-lambda/node_modules/@aws-sdk/util-locate-window/package.json +56 -0
  1213. package/rds-patching-lambda/node_modules/@aws-sdk/util-middleware/LICENSE +201 -0
  1214. package/rds-patching-lambda/node_modules/@aws-sdk/util-middleware/README.md +12 -0
  1215. package/rds-patching-lambda/node_modules/@aws-sdk/util-middleware/package.json +62 -0
  1216. package/rds-patching-lambda/node_modules/@aws-sdk/util-retry/LICENSE +201 -0
  1217. package/rds-patching-lambda/node_modules/@aws-sdk/util-retry/README.md +77 -0
  1218. package/rds-patching-lambda/node_modules/@aws-sdk/util-retry/package.json +64 -0
  1219. package/rds-patching-lambda/node_modules/@aws-sdk/util-uri-escape/LICENSE +201 -0
  1220. package/rds-patching-lambda/node_modules/@aws-sdk/util-uri-escape/README.md +10 -0
  1221. package/rds-patching-lambda/node_modules/@aws-sdk/util-uri-escape/package.json +55 -0
  1222. package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
  1223. package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
  1224. package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
  1225. package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
  1226. package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
  1227. package/rds-patching-lambda/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
  1228. package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8/LICENSE +201 -0
  1229. package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8/README.md +4 -0
  1230. package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8/package.json +65 -0
  1231. package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
  1232. package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8-browser/README.md +8 -0
  1233. package/rds-patching-lambda/node_modules/@aws-sdk/util-utf8-browser/package.json +50 -0
  1234. package/rds-patching-lambda/node_modules/@aws-sdk/util-waiter/LICENSE +201 -0
  1235. package/rds-patching-lambda/node_modules/@aws-sdk/util-waiter/README.md +10 -0
  1236. package/rds-patching-lambda/node_modules/@aws-sdk/util-waiter/package.json +58 -0
  1237. package/rds-patching-lambda/node_modules/@smithy/protocol-http/LICENSE +201 -0
  1238. package/rds-patching-lambda/node_modules/@smithy/protocol-http/README.md +4 -0
  1239. package/rds-patching-lambda/node_modules/@smithy/protocol-http/package.json +63 -0
  1240. package/rds-patching-lambda/node_modules/@smithy/types/LICENSE +201 -0
  1241. package/rds-patching-lambda/node_modules/@smithy/types/README.md +4 -0
  1242. package/rds-patching-lambda/node_modules/@smithy/types/package.json +62 -0
  1243. package/rds-patching-lambda/node_modules/@types/node/LICENSE +21 -0
  1244. package/rds-patching-lambda/node_modules/@types/node/README.md +16 -0
  1245. package/rds-patching-lambda/node_modules/@types/node/package.json +237 -0
  1246. package/rds-patching-lambda/node_modules/ansi-regex/license +9 -0
  1247. package/rds-patching-lambda/node_modules/ansi-regex/package.json +55 -0
  1248. package/rds-patching-lambda/node_modules/ansi-regex/readme.md +78 -0
  1249. package/rds-patching-lambda/node_modules/ansi-styles/license +9 -0
  1250. package/rds-patching-lambda/node_modules/ansi-styles/package.json +56 -0
  1251. package/rds-patching-lambda/node_modules/ansi-styles/readme.md +152 -0
  1252. package/rds-patching-lambda/node_modules/archiver/CHANGELOG.md +228 -0
  1253. package/rds-patching-lambda/node_modules/archiver/LICENSE +22 -0
  1254. package/rds-patching-lambda/node_modules/archiver/README.md +94 -0
  1255. package/rds-patching-lambda/node_modules/archiver/package.json +60 -0
  1256. package/rds-patching-lambda/node_modules/archiver-utils/CHANGELOG.md +14 -0
  1257. package/rds-patching-lambda/node_modules/archiver-utils/LICENSE +22 -0
  1258. package/rds-patching-lambda/node_modules/archiver-utils/README.md +7 -0
  1259. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/.travis.yml +34 -0
  1260. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  1261. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/GOVERNANCE.md +136 -0
  1262. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/LICENSE +47 -0
  1263. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/README.md +58 -0
  1264. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  1265. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/readable-stream/package.json +52 -0
  1266. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/safe-buffer/LICENSE +21 -0
  1267. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/safe-buffer/README.md +584 -0
  1268. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/safe-buffer/package.json +37 -0
  1269. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/string_decoder/.travis.yml +50 -0
  1270. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/string_decoder/LICENSE +48 -0
  1271. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/string_decoder/README.md +47 -0
  1272. package/rds-patching-lambda/node_modules/archiver-utils/node_modules/string_decoder/package.json +31 -0
  1273. package/rds-patching-lambda/node_modules/archiver-utils/package.json +54 -0
  1274. package/rds-patching-lambda/node_modules/async/CHANGELOG.md +348 -0
  1275. package/rds-patching-lambda/node_modules/async/LICENSE +19 -0
  1276. package/rds-patching-lambda/node_modules/async/README.md +59 -0
  1277. package/rds-patching-lambda/node_modules/async/bower.json +17 -0
  1278. package/rds-patching-lambda/node_modules/async/dist/async.mjs +5947 -0
  1279. package/rds-patching-lambda/node_modules/async/package.json +75 -0
  1280. package/rds-patching-lambda/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  1281. package/rds-patching-lambda/node_modules/balanced-match/LICENSE.md +21 -0
  1282. package/rds-patching-lambda/node_modules/balanced-match/README.md +97 -0
  1283. package/rds-patching-lambda/node_modules/balanced-match/package.json +48 -0
  1284. package/rds-patching-lambda/node_modules/base64-js/LICENSE +21 -0
  1285. package/rds-patching-lambda/node_modules/base64-js/README.md +34 -0
  1286. package/rds-patching-lambda/node_modules/base64-js/package.json +47 -0
  1287. package/rds-patching-lambda/node_modules/bestzip/LICENSE +21 -0
  1288. package/rds-patching-lambda/node_modules/bestzip/package.json +46 -0
  1289. package/rds-patching-lambda/node_modules/bestzip/readme.md +91 -0
  1290. package/rds-patching-lambda/node_modules/bl/.travis.yml +17 -0
  1291. package/rds-patching-lambda/node_modules/bl/LICENSE.md +13 -0
  1292. package/rds-patching-lambda/node_modules/bl/README.md +247 -0
  1293. package/rds-patching-lambda/node_modules/bl/package.json +37 -0
  1294. package/rds-patching-lambda/node_modules/bowser/CHANGELOG.md +218 -0
  1295. package/rds-patching-lambda/node_modules/bowser/LICENSE +39 -0
  1296. package/rds-patching-lambda/node_modules/bowser/README.md +179 -0
  1297. package/rds-patching-lambda/node_modules/bowser/package.json +83 -0
  1298. package/rds-patching-lambda/node_modules/brace-expansion/LICENSE +21 -0
  1299. package/rds-patching-lambda/node_modules/brace-expansion/README.md +129 -0
  1300. package/rds-patching-lambda/node_modules/brace-expansion/package.json +47 -0
  1301. package/rds-patching-lambda/node_modules/buffer/AUTHORS.md +70 -0
  1302. package/rds-patching-lambda/node_modules/buffer/LICENSE +21 -0
  1303. package/rds-patching-lambda/node_modules/buffer/README.md +410 -0
  1304. package/rds-patching-lambda/node_modules/buffer/package.json +96 -0
  1305. package/rds-patching-lambda/node_modules/buffer-crc32/LICENSE +19 -0
  1306. package/rds-patching-lambda/node_modules/buffer-crc32/README.md +47 -0
  1307. package/rds-patching-lambda/node_modules/buffer-crc32/package.json +39 -0
  1308. package/rds-patching-lambda/node_modules/cliui/CHANGELOG.md +121 -0
  1309. package/rds-patching-lambda/node_modules/cliui/LICENSE.txt +14 -0
  1310. package/rds-patching-lambda/node_modules/cliui/README.md +141 -0
  1311. package/rds-patching-lambda/node_modules/cliui/build/index.cjs +302 -0
  1312. package/rds-patching-lambda/node_modules/cliui/index.mjs +13 -0
  1313. package/rds-patching-lambda/node_modules/cliui/package.json +83 -0
  1314. package/rds-patching-lambda/node_modules/color-convert/CHANGELOG.md +54 -0
  1315. package/rds-patching-lambda/node_modules/color-convert/LICENSE +21 -0
  1316. package/rds-patching-lambda/node_modules/color-convert/README.md +68 -0
  1317. package/rds-patching-lambda/node_modules/color-convert/package.json +48 -0
  1318. package/rds-patching-lambda/node_modules/color-name/LICENSE +8 -0
  1319. package/rds-patching-lambda/node_modules/color-name/README.md +11 -0
  1320. package/rds-patching-lambda/node_modules/color-name/package.json +28 -0
  1321. package/rds-patching-lambda/node_modules/compress-commons/CHANGELOG.md +58 -0
  1322. package/rds-patching-lambda/node_modules/compress-commons/LICENSE +22 -0
  1323. package/rds-patching-lambda/node_modules/compress-commons/README.md +25 -0
  1324. package/rds-patching-lambda/node_modules/compress-commons/package.json +45 -0
  1325. package/rds-patching-lambda/node_modules/concat-map/.travis.yml +4 -0
  1326. package/rds-patching-lambda/node_modules/concat-map/LICENSE +18 -0
  1327. package/rds-patching-lambda/node_modules/concat-map/README.markdown +62 -0
  1328. package/rds-patching-lambda/node_modules/concat-map/package.json +43 -0
  1329. package/rds-patching-lambda/node_modules/core-util-is/LICENSE +19 -0
  1330. package/rds-patching-lambda/node_modules/core-util-is/README.md +3 -0
  1331. package/rds-patching-lambda/node_modules/core-util-is/package.json +38 -0
  1332. package/rds-patching-lambda/node_modules/crc-32/LICENSE +201 -0
  1333. package/rds-patching-lambda/node_modules/crc-32/README.md +200 -0
  1334. package/rds-patching-lambda/node_modules/crc-32/bin/crc32.njs +105 -0
  1335. package/rds-patching-lambda/node_modules/crc-32/package.json +43 -0
  1336. package/rds-patching-lambda/node_modules/crc-32/types/tsconfig.json +14 -0
  1337. package/rds-patching-lambda/node_modules/crc-32/types/tslint.json +11 -0
  1338. package/rds-patching-lambda/node_modules/crc32-stream/CHANGELOG.md +57 -0
  1339. package/rds-patching-lambda/node_modules/crc32-stream/LICENSE +22 -0
  1340. package/rds-patching-lambda/node_modules/crc32-stream/README.md +79 -0
  1341. package/rds-patching-lambda/node_modules/crc32-stream/package.json +45 -0
  1342. package/rds-patching-lambda/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  1343. package/rds-patching-lambda/node_modules/emoji-regex/README.md +73 -0
  1344. package/rds-patching-lambda/node_modules/emoji-regex/package.json +50 -0
  1345. package/rds-patching-lambda/node_modules/end-of-stream/LICENSE +21 -0
  1346. package/rds-patching-lambda/node_modules/end-of-stream/README.md +54 -0
  1347. package/rds-patching-lambda/node_modules/end-of-stream/package.json +37 -0
  1348. package/rds-patching-lambda/node_modules/escalade/dist/index.mjs +22 -0
  1349. package/rds-patching-lambda/node_modules/escalade/license +9 -0
  1350. package/rds-patching-lambda/node_modules/escalade/package.json +61 -0
  1351. package/rds-patching-lambda/node_modules/escalade/readme.md +211 -0
  1352. package/rds-patching-lambda/node_modules/escalade/sync/index.mjs +18 -0
  1353. package/rds-patching-lambda/node_modules/fast-xml-parser/CHANGELOG.md +551 -0
  1354. package/rds-patching-lambda/node_modules/fast-xml-parser/LICENSE +21 -0
  1355. package/rds-patching-lambda/node_modules/fast-xml-parser/README.md +204 -0
  1356. package/rds-patching-lambda/node_modules/fast-xml-parser/package.json +71 -0
  1357. package/rds-patching-lambda/node_modules/fs-constants/LICENSE +21 -0
  1358. package/rds-patching-lambda/node_modules/fs-constants/README.md +26 -0
  1359. package/rds-patching-lambda/node_modules/fs-constants/package.json +19 -0
  1360. package/rds-patching-lambda/node_modules/fs.realpath/LICENSE +43 -0
  1361. package/rds-patching-lambda/node_modules/fs.realpath/README.md +33 -0
  1362. package/rds-patching-lambda/node_modules/fs.realpath/package.json +26 -0
  1363. package/rds-patching-lambda/node_modules/get-caller-file/LICENSE.md +6 -0
  1364. package/rds-patching-lambda/node_modules/get-caller-file/README.md +41 -0
  1365. package/rds-patching-lambda/node_modules/get-caller-file/package.json +42 -0
  1366. package/rds-patching-lambda/node_modules/glob/LICENSE +21 -0
  1367. package/rds-patching-lambda/node_modules/glob/README.md +378 -0
  1368. package/rds-patching-lambda/node_modules/glob/package.json +55 -0
  1369. package/rds-patching-lambda/node_modules/graceful-fs/LICENSE +15 -0
  1370. package/rds-patching-lambda/node_modules/graceful-fs/README.md +143 -0
  1371. package/rds-patching-lambda/node_modules/graceful-fs/package.json +53 -0
  1372. package/rds-patching-lambda/node_modules/ieee754/LICENSE +11 -0
  1373. package/rds-patching-lambda/node_modules/ieee754/README.md +51 -0
  1374. package/rds-patching-lambda/node_modules/ieee754/package.json +52 -0
  1375. package/rds-patching-lambda/node_modules/inflight/LICENSE +15 -0
  1376. package/rds-patching-lambda/node_modules/inflight/README.md +37 -0
  1377. package/rds-patching-lambda/node_modules/inflight/package.json +29 -0
  1378. package/rds-patching-lambda/node_modules/inherits/LICENSE +16 -0
  1379. package/rds-patching-lambda/node_modules/inherits/README.md +42 -0
  1380. package/rds-patching-lambda/node_modules/inherits/package.json +29 -0
  1381. package/rds-patching-lambda/node_modules/is-fullwidth-code-point/license +9 -0
  1382. package/rds-patching-lambda/node_modules/is-fullwidth-code-point/package.json +42 -0
  1383. package/rds-patching-lambda/node_modules/is-fullwidth-code-point/readme.md +39 -0
  1384. package/rds-patching-lambda/node_modules/isarray/.travis.yml +4 -0
  1385. package/rds-patching-lambda/node_modules/isarray/Makefile +6 -0
  1386. package/rds-patching-lambda/node_modules/isarray/README.md +60 -0
  1387. package/rds-patching-lambda/node_modules/isarray/component.json +19 -0
  1388. package/rds-patching-lambda/node_modules/isarray/package.json +45 -0
  1389. package/rds-patching-lambda/node_modules/isexe/LICENSE +15 -0
  1390. package/rds-patching-lambda/node_modules/isexe/README.md +51 -0
  1391. package/rds-patching-lambda/node_modules/isexe/package.json +31 -0
  1392. package/rds-patching-lambda/node_modules/lazystream/LICENSE +23 -0
  1393. package/rds-patching-lambda/node_modules/lazystream/README.md +114 -0
  1394. package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/.travis.yml +34 -0
  1395. package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  1396. package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/GOVERNANCE.md +136 -0
  1397. package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/LICENSE +47 -0
  1398. package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/README.md +58 -0
  1399. package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  1400. package/rds-patching-lambda/node_modules/lazystream/node_modules/readable-stream/package.json +52 -0
  1401. package/rds-patching-lambda/node_modules/lazystream/node_modules/safe-buffer/LICENSE +21 -0
  1402. package/rds-patching-lambda/node_modules/lazystream/node_modules/safe-buffer/README.md +584 -0
  1403. package/rds-patching-lambda/node_modules/lazystream/node_modules/safe-buffer/package.json +37 -0
  1404. package/rds-patching-lambda/node_modules/lazystream/node_modules/string_decoder/.travis.yml +50 -0
  1405. package/rds-patching-lambda/node_modules/lazystream/node_modules/string_decoder/LICENSE +48 -0
  1406. package/rds-patching-lambda/node_modules/lazystream/node_modules/string_decoder/README.md +47 -0
  1407. package/rds-patching-lambda/node_modules/lazystream/node_modules/string_decoder/package.json +31 -0
  1408. package/rds-patching-lambda/node_modules/lazystream/package.json +46 -0
  1409. package/rds-patching-lambda/node_modules/lazystream/test/data.md +13 -0
  1410. package/rds-patching-lambda/node_modules/lodash.defaults/LICENSE +47 -0
  1411. package/rds-patching-lambda/node_modules/lodash.defaults/README.md +18 -0
  1412. package/rds-patching-lambda/node_modules/lodash.defaults/package.json +17 -0
  1413. package/rds-patching-lambda/node_modules/lodash.difference/LICENSE +47 -0
  1414. package/rds-patching-lambda/node_modules/lodash.difference/README.md +18 -0
  1415. package/rds-patching-lambda/node_modules/lodash.difference/package.json +17 -0
  1416. package/rds-patching-lambda/node_modules/lodash.flatten/LICENSE +47 -0
  1417. package/rds-patching-lambda/node_modules/lodash.flatten/README.md +18 -0
  1418. package/rds-patching-lambda/node_modules/lodash.flatten/package.json +17 -0
  1419. package/rds-patching-lambda/node_modules/lodash.isplainobject/LICENSE +47 -0
  1420. package/rds-patching-lambda/node_modules/lodash.isplainobject/README.md +18 -0
  1421. package/rds-patching-lambda/node_modules/lodash.isplainobject/package.json +17 -0
  1422. package/rds-patching-lambda/node_modules/lodash.union/LICENSE +47 -0
  1423. package/rds-patching-lambda/node_modules/lodash.union/README.md +18 -0
  1424. package/rds-patching-lambda/node_modules/lodash.union/package.json +17 -0
  1425. package/rds-patching-lambda/node_modules/minimatch/LICENSE +15 -0
  1426. package/rds-patching-lambda/node_modules/minimatch/README.md +230 -0
  1427. package/rds-patching-lambda/node_modules/minimatch/package.json +33 -0
  1428. package/rds-patching-lambda/node_modules/normalize-path/LICENSE +21 -0
  1429. package/rds-patching-lambda/node_modules/normalize-path/README.md +127 -0
  1430. package/rds-patching-lambda/node_modules/normalize-path/package.json +77 -0
  1431. package/rds-patching-lambda/node_modules/once/LICENSE +15 -0
  1432. package/rds-patching-lambda/node_modules/once/README.md +79 -0
  1433. package/rds-patching-lambda/node_modules/once/package.json +33 -0
  1434. package/rds-patching-lambda/node_modules/path-is-absolute/license +21 -0
  1435. package/rds-patching-lambda/node_modules/path-is-absolute/package.json +43 -0
  1436. package/rds-patching-lambda/node_modules/path-is-absolute/readme.md +59 -0
  1437. package/rds-patching-lambda/node_modules/process-nextick-args/license.md +19 -0
  1438. package/rds-patching-lambda/node_modules/process-nextick-args/package.json +25 -0
  1439. package/rds-patching-lambda/node_modules/process-nextick-args/readme.md +18 -0
  1440. package/rds-patching-lambda/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  1441. package/rds-patching-lambda/node_modules/readable-stream/GOVERNANCE.md +136 -0
  1442. package/rds-patching-lambda/node_modules/readable-stream/LICENSE +47 -0
  1443. package/rds-patching-lambda/node_modules/readable-stream/README.md +106 -0
  1444. package/rds-patching-lambda/node_modules/readable-stream/package.json +68 -0
  1445. package/rds-patching-lambda/node_modules/readdir-glob/LICENSE +201 -0
  1446. package/rds-patching-lambda/node_modules/readdir-glob/README.md +85 -0
  1447. package/rds-patching-lambda/node_modules/readdir-glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
  1448. package/rds-patching-lambda/node_modules/readdir-glob/node_modules/brace-expansion/LICENSE +21 -0
  1449. package/rds-patching-lambda/node_modules/readdir-glob/node_modules/brace-expansion/README.md +135 -0
  1450. package/rds-patching-lambda/node_modules/readdir-glob/node_modules/brace-expansion/package.json +46 -0
  1451. package/rds-patching-lambda/node_modules/readdir-glob/node_modules/minimatch/LICENSE +15 -0
  1452. package/rds-patching-lambda/node_modules/readdir-glob/node_modules/minimatch/README.md +259 -0
  1453. package/rds-patching-lambda/node_modules/readdir-glob/node_modules/minimatch/package.json +35 -0
  1454. package/rds-patching-lambda/node_modules/readdir-glob/package.json +43 -0
  1455. package/rds-patching-lambda/node_modules/require-directory/.jshintrc +67 -0
  1456. package/rds-patching-lambda/node_modules/require-directory/.travis.yml +3 -0
  1457. package/rds-patching-lambda/node_modules/require-directory/LICENSE +22 -0
  1458. package/rds-patching-lambda/node_modules/require-directory/README.markdown +184 -0
  1459. package/rds-patching-lambda/node_modules/require-directory/package.json +40 -0
  1460. package/rds-patching-lambda/node_modules/safe-buffer/LICENSE +21 -0
  1461. package/rds-patching-lambda/node_modules/safe-buffer/README.md +584 -0
  1462. package/rds-patching-lambda/node_modules/safe-buffer/package.json +51 -0
  1463. package/rds-patching-lambda/node_modules/string-width/license +9 -0
  1464. package/rds-patching-lambda/node_modules/string-width/package.json +56 -0
  1465. package/rds-patching-lambda/node_modules/string-width/readme.md +50 -0
  1466. package/rds-patching-lambda/node_modules/string_decoder/LICENSE +48 -0
  1467. package/rds-patching-lambda/node_modules/string_decoder/README.md +47 -0
  1468. package/rds-patching-lambda/node_modules/string_decoder/package.json +34 -0
  1469. package/rds-patching-lambda/node_modules/strip-ansi/license +9 -0
  1470. package/rds-patching-lambda/node_modules/strip-ansi/package.json +54 -0
  1471. package/rds-patching-lambda/node_modules/strip-ansi/readme.md +46 -0
  1472. package/rds-patching-lambda/node_modules/strnum/.vscode/launch.json +25 -0
  1473. package/rds-patching-lambda/node_modules/strnum/LICENSE +21 -0
  1474. package/rds-patching-lambda/node_modules/strnum/README.md +86 -0
  1475. package/rds-patching-lambda/node_modules/strnum/package.json +24 -0
  1476. package/rds-patching-lambda/node_modules/tar-stream/LICENSE +21 -0
  1477. package/rds-patching-lambda/node_modules/tar-stream/README.md +168 -0
  1478. package/rds-patching-lambda/node_modules/tar-stream/package.json +58 -0
  1479. package/rds-patching-lambda/node_modules/tslib/CopyrightNotice.txt +15 -0
  1480. package/rds-patching-lambda/node_modules/tslib/LICENSE.txt +12 -0
  1481. package/rds-patching-lambda/node_modules/tslib/README.md +164 -0
  1482. package/rds-patching-lambda/node_modules/tslib/SECURITY.md +41 -0
  1483. package/rds-patching-lambda/node_modules/tslib/modules/package.json +3 -0
  1484. package/rds-patching-lambda/node_modules/tslib/package.json +47 -0
  1485. package/rds-patching-lambda/node_modules/tslib/tslib.es6.html +1 -0
  1486. package/rds-patching-lambda/node_modules/tslib/tslib.es6.mjs +370 -0
  1487. package/rds-patching-lambda/node_modules/tslib/tslib.html +1 -0
  1488. package/rds-patching-lambda/node_modules/typescript/LICENSE.txt +55 -0
  1489. package/rds-patching-lambda/node_modules/typescript/README.md +51 -0
  1490. package/rds-patching-lambda/node_modules/typescript/SECURITY.md +41 -0
  1491. package/rds-patching-lambda/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  1492. package/rds-patching-lambda/node_modules/typescript/bin/tsc +2 -0
  1493. package/rds-patching-lambda/node_modules/typescript/bin/tsserver +2 -0
  1494. package/rds-patching-lambda/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
  1495. package/rds-patching-lambda/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
  1496. package/rds-patching-lambda/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
  1497. package/rds-patching-lambda/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
  1498. package/rds-patching-lambda/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
  1499. package/rds-patching-lambda/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
  1500. package/rds-patching-lambda/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
  1501. package/rds-patching-lambda/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
  1502. package/rds-patching-lambda/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
  1503. package/rds-patching-lambda/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
  1504. package/rds-patching-lambda/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
  1505. package/rds-patching-lambda/node_modules/typescript/lib/typesMap.json +497 -0
  1506. package/rds-patching-lambda/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
  1507. package/rds-patching-lambda/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
  1508. package/rds-patching-lambda/node_modules/typescript/package.json +116 -0
  1509. package/rds-patching-lambda/node_modules/util-deprecate/History.md +16 -0
  1510. package/rds-patching-lambda/node_modules/util-deprecate/LICENSE +24 -0
  1511. package/rds-patching-lambda/node_modules/util-deprecate/README.md +53 -0
  1512. package/rds-patching-lambda/node_modules/util-deprecate/package.json +27 -0
  1513. package/rds-patching-lambda/node_modules/uuid/CHANGELOG.md +229 -0
  1514. package/rds-patching-lambda/node_modules/uuid/CONTRIBUTING.md +18 -0
  1515. package/rds-patching-lambda/node_modules/uuid/LICENSE.md +9 -0
  1516. package/rds-patching-lambda/node_modules/uuid/README.md +505 -0
  1517. package/rds-patching-lambda/node_modules/uuid/dist/bin/uuid +2 -0
  1518. package/rds-patching-lambda/node_modules/uuid/package.json +135 -0
  1519. package/rds-patching-lambda/node_modules/uuid/wrapper.mjs +10 -0
  1520. package/rds-patching-lambda/node_modules/which/CHANGELOG.md +166 -0
  1521. package/rds-patching-lambda/node_modules/which/LICENSE +15 -0
  1522. package/rds-patching-lambda/node_modules/which/README.md +54 -0
  1523. package/rds-patching-lambda/node_modules/which/bin/node-which +52 -0
  1524. package/rds-patching-lambda/node_modules/which/package.json +43 -0
  1525. package/rds-patching-lambda/node_modules/wrap-ansi/license +9 -0
  1526. package/rds-patching-lambda/node_modules/wrap-ansi/package.json +62 -0
  1527. package/rds-patching-lambda/node_modules/wrap-ansi/readme.md +91 -0
  1528. package/rds-patching-lambda/node_modules/wrappy/LICENSE +15 -0
  1529. package/rds-patching-lambda/node_modules/wrappy/README.md +36 -0
  1530. package/rds-patching-lambda/node_modules/wrappy/package.json +29 -0
  1531. package/rds-patching-lambda/node_modules/y18n/CHANGELOG.md +100 -0
  1532. package/rds-patching-lambda/node_modules/y18n/LICENSE +13 -0
  1533. package/rds-patching-lambda/node_modules/y18n/README.md +127 -0
  1534. package/rds-patching-lambda/node_modules/y18n/build/index.cjs +203 -0
  1535. package/rds-patching-lambda/node_modules/y18n/index.mjs +8 -0
  1536. package/rds-patching-lambda/node_modules/y18n/package.json +70 -0
  1537. package/rds-patching-lambda/node_modules/yargs/CHANGELOG.md +88 -0
  1538. package/rds-patching-lambda/node_modules/yargs/LICENSE +21 -0
  1539. package/rds-patching-lambda/node_modules/yargs/README.md +202 -0
  1540. package/rds-patching-lambda/node_modules/yargs/browser.mjs +7 -0
  1541. package/rds-patching-lambda/node_modules/yargs/build/index.cjs +2920 -0
  1542. package/rds-patching-lambda/node_modules/yargs/helpers/helpers.mjs +10 -0
  1543. package/rds-patching-lambda/node_modules/yargs/helpers/package.json +3 -0
  1544. package/rds-patching-lambda/node_modules/yargs/index.cjs +39 -0
  1545. package/rds-patching-lambda/node_modules/yargs/index.mjs +8 -0
  1546. package/rds-patching-lambda/node_modules/yargs/lib/platform-shims/browser.mjs +92 -0
  1547. package/rds-patching-lambda/node_modules/yargs/lib/platform-shims/esm.mjs +67 -0
  1548. package/rds-patching-lambda/node_modules/yargs/locales/be.json +46 -0
  1549. package/rds-patching-lambda/node_modules/yargs/locales/de.json +46 -0
  1550. package/rds-patching-lambda/node_modules/yargs/locales/en.json +51 -0
  1551. package/rds-patching-lambda/node_modules/yargs/locales/es.json +46 -0
  1552. package/rds-patching-lambda/node_modules/yargs/locales/fi.json +49 -0
  1553. package/rds-patching-lambda/node_modules/yargs/locales/fr.json +53 -0
  1554. package/rds-patching-lambda/node_modules/yargs/locales/hi.json +49 -0
  1555. package/rds-patching-lambda/node_modules/yargs/locales/hu.json +46 -0
  1556. package/rds-patching-lambda/node_modules/yargs/locales/id.json +50 -0
  1557. package/rds-patching-lambda/node_modules/yargs/locales/it.json +46 -0
  1558. package/rds-patching-lambda/node_modules/yargs/locales/ja.json +51 -0
  1559. package/rds-patching-lambda/node_modules/yargs/locales/ko.json +49 -0
  1560. package/rds-patching-lambda/node_modules/yargs/locales/nb.json +44 -0
  1561. package/rds-patching-lambda/node_modules/yargs/locales/nl.json +49 -0
  1562. package/rds-patching-lambda/node_modules/yargs/locales/nn.json +44 -0
  1563. package/rds-patching-lambda/node_modules/yargs/locales/pirate.json +13 -0
  1564. package/rds-patching-lambda/node_modules/yargs/locales/pl.json +49 -0
  1565. package/rds-patching-lambda/node_modules/yargs/locales/pt.json +45 -0
  1566. package/rds-patching-lambda/node_modules/yargs/locales/pt_BR.json +48 -0
  1567. package/rds-patching-lambda/node_modules/yargs/locales/ru.json +46 -0
  1568. package/rds-patching-lambda/node_modules/yargs/locales/th.json +46 -0
  1569. package/rds-patching-lambda/node_modules/yargs/locales/tr.json +48 -0
  1570. package/rds-patching-lambda/node_modules/yargs/locales/zh_CN.json +48 -0
  1571. package/rds-patching-lambda/node_modules/yargs/locales/zh_TW.json +47 -0
  1572. package/rds-patching-lambda/node_modules/yargs/package.json +122 -0
  1573. package/rds-patching-lambda/node_modules/yargs/yargs +9 -0
  1574. package/rds-patching-lambda/node_modules/yargs-parser/CHANGELOG.md +263 -0
  1575. package/rds-patching-lambda/node_modules/yargs-parser/LICENSE.txt +14 -0
  1576. package/rds-patching-lambda/node_modules/yargs-parser/README.md +518 -0
  1577. package/rds-patching-lambda/node_modules/yargs-parser/build/index.cjs +1042 -0
  1578. package/rds-patching-lambda/node_modules/yargs-parser/package.json +87 -0
  1579. package/rds-patching-lambda/node_modules/zip-stream/CHANGELOG.md +110 -0
  1580. package/rds-patching-lambda/node_modules/zip-stream/LICENSE +22 -0
  1581. package/rds-patching-lambda/node_modules/zip-stream/README.md +45 -0
  1582. package/rds-patching-lambda/node_modules/zip-stream/package.json +49 -0
  1583. package/rds-patching-lambda/package-lock.json +1896 -0
  1584. package/rds-patching-lambda/package.json +22 -0
  1585. package/rds-patching-lambda/src/index.ts +76 -0
  1586. package/rds-patching-lambda/tsconfig.json +13 -0
  1587. package/src/__tests__/model-transformer.test.ts +5 -13
  1588. package/src/definitions.ts +0 -2
  1589. package/src/graphql-model-transformer.ts +1 -1
  1590. package/src/resolvers/dynamodb/mutation.ts +1 -1
  1591. package/src/resolvers/generators/dynamodb-vtl-generator.ts +2 -2
  1592. package/src/resolvers/generators/rds-vtl-generator.ts +2 -2
  1593. package/src/resolvers/generators/vtl-generator.ts +1 -1
  1594. package/src/resolvers/rds/mutation.ts +73 -67
  1595. package/src/resolvers/rds/resolver.ts +263 -50
  1596. package/src/resources/dynamo-model-resource-generator.ts +1 -1
  1597. package/src/resources/model-resource-generator.ts +5 -4
  1598. package/src/resources/rds-model-resource-generator.ts +52 -4
  1599. package/tsconfig.tsbuildinfo +1 -1
  1600. package/rds-lambda/clients/DBClient.ts +0 -31
  1601. package/rds-lambda/clients/mysql/MySQLClient.ts +0 -118
  1602. package/rds-lambda/clients/mysql/MySQLPasswordClient.ts +0 -58
  1603. package/rds-lambda/context/DataSourceContext.ts +0 -8
  1604. package/rds-lambda/interfaces/BaseRequest.ts +0 -22
  1605. package/rds-lambda/interfaces/ListRequest.ts +0 -31
  1606. package/rds-lambda/node_modules/@aws-sdk/eventstream-codec/package.json +0 -57
  1607. package/rds-lambda/node_modules/@aws-sdk/util-stream/README.md +0 -12
  1608. package/rds-lambda/node_modules/@aws-sdk/util-stream/package.json +0 -71
  1609. package/rds-lambda/node_modules/buffer-writer/.travis.yml +0 -7
  1610. package/rds-lambda/node_modules/buffer-writer/LICENSE +0 -19
  1611. package/rds-lambda/node_modules/buffer-writer/README.md +0 -48
  1612. package/rds-lambda/node_modules/buffer-writer/package.json +0 -26
  1613. package/rds-lambda/node_modules/buffer-writer/test/mocha.opts +0 -1
  1614. package/rds-lambda/node_modules/denque/CHANGELOG.md +0 -29
  1615. package/rds-lambda/node_modules/denque/LICENSE +0 -201
  1616. package/rds-lambda/node_modules/denque/README.md +0 -77
  1617. package/rds-lambda/node_modules/denque/package.json +0 -58
  1618. package/rds-lambda/node_modules/generate-function/.travis.yml +0 -3
  1619. package/rds-lambda/node_modules/generate-function/README.md +0 -89
  1620. package/rds-lambda/node_modules/generate-function/package.json +0 -32
  1621. package/rds-lambda/node_modules/iconv-lite/.github/dependabot.yml +0 -11
  1622. package/rds-lambda/node_modules/iconv-lite/.idea/codeStyles/Project.xml +0 -47
  1623. package/rds-lambda/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +0 -5
  1624. package/rds-lambda/node_modules/iconv-lite/.idea/iconv-lite.iml +0 -12
  1625. package/rds-lambda/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +0 -6
  1626. package/rds-lambda/node_modules/iconv-lite/.idea/modules.xml +0 -8
  1627. package/rds-lambda/node_modules/iconv-lite/.idea/vcs.xml +0 -6
  1628. package/rds-lambda/node_modules/iconv-lite/Changelog.md +0 -212
  1629. package/rds-lambda/node_modules/iconv-lite/LICENSE +0 -21
  1630. package/rds-lambda/node_modules/iconv-lite/README.md +0 -130
  1631. package/rds-lambda/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
  1632. package/rds-lambda/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
  1633. package/rds-lambda/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
  1634. package/rds-lambda/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
  1635. package/rds-lambda/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
  1636. package/rds-lambda/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
  1637. package/rds-lambda/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
  1638. package/rds-lambda/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
  1639. package/rds-lambda/node_modules/iconv-lite/package.json +0 -44
  1640. package/rds-lambda/node_modules/is-property/LICENSE +0 -22
  1641. package/rds-lambda/node_modules/is-property/README.md +0 -28
  1642. package/rds-lambda/node_modules/is-property/package.json +0 -36
  1643. package/rds-lambda/node_modules/long/LICENSE +0 -202
  1644. package/rds-lambda/node_modules/long/README.md +0 -246
  1645. package/rds-lambda/node_modules/long/package.json +0 -34
  1646. package/rds-lambda/node_modules/mysql2/License +0 -19
  1647. package/rds-lambda/node_modules/mysql2/README.md +0 -281
  1648. package/rds-lambda/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +0 -18
  1649. package/rds-lambda/node_modules/mysql2/node_modules/lru-cache/README.md +0 -166
  1650. package/rds-lambda/node_modules/mysql2/node_modules/lru-cache/package.json +0 -34
  1651. package/rds-lambda/node_modules/mysql2/node_modules/yallist/README.md +0 -204
  1652. package/rds-lambda/node_modules/mysql2/node_modules/yallist/package.json +0 -29
  1653. package/rds-lambda/node_modules/mysql2/package.json +0 -86
  1654. package/rds-lambda/node_modules/mysql2/typings/mysql/LICENSE.txt +0 -15
  1655. package/rds-lambda/node_modules/mysql2/typings/mysql/info.txt +0 -1
  1656. package/rds-lambda/node_modules/named-placeholders/LICENSE +0 -21
  1657. package/rds-lambda/node_modules/named-placeholders/README.md +0 -29
  1658. package/rds-lambda/node_modules/named-placeholders/node_modules/lru-cache/LICENSE +0 -15
  1659. package/rds-lambda/node_modules/named-placeholders/node_modules/lru-cache/README.md +0 -1117
  1660. package/rds-lambda/node_modules/named-placeholders/node_modules/lru-cache/index.mjs +0 -1227
  1661. package/rds-lambda/node_modules/named-placeholders/node_modules/lru-cache/package.json +0 -96
  1662. package/rds-lambda/node_modules/named-placeholders/package.json +0 -32
  1663. package/rds-lambda/node_modules/packet-reader/.travis.yml +0 -8
  1664. package/rds-lambda/node_modules/packet-reader/README.md +0 -87
  1665. package/rds-lambda/node_modules/packet-reader/package.json +0 -25
  1666. package/rds-lambda/node_modules/pg/LICENSE +0 -21
  1667. package/rds-lambda/node_modules/pg/README.md +0 -89
  1668. package/rds-lambda/node_modules/pg/node_modules/pg-connection-string/LICENSE +0 -21
  1669. package/rds-lambda/node_modules/pg/node_modules/pg-connection-string/README.md +0 -77
  1670. package/rds-lambda/node_modules/pg/node_modules/pg-connection-string/package.json +0 -40
  1671. package/rds-lambda/node_modules/pg/package.json +0 -64
  1672. package/rds-lambda/node_modules/pg-cloudflare/LICENSE +0 -21
  1673. package/rds-lambda/node_modules/pg-cloudflare/README.md +0 -33
  1674. package/rds-lambda/node_modules/pg-cloudflare/package.json +0 -32
  1675. package/rds-lambda/node_modules/pg-cloudflare/src/empty.ts +0 -3
  1676. package/rds-lambda/node_modules/pg-cloudflare/src/index.ts +0 -164
  1677. package/rds-lambda/node_modules/pg-int8/LICENSE +0 -13
  1678. package/rds-lambda/node_modules/pg-int8/README.md +0 -16
  1679. package/rds-lambda/node_modules/pg-int8/package.json +0 -24
  1680. package/rds-lambda/node_modules/pg-pool/LICENSE +0 -21
  1681. package/rds-lambda/node_modules/pg-pool/README.md +0 -376
  1682. package/rds-lambda/node_modules/pg-pool/package.json +0 -41
  1683. package/rds-lambda/node_modules/pg-protocol/LICENSE +0 -21
  1684. package/rds-lambda/node_modules/pg-protocol/README.md +0 -3
  1685. package/rds-lambda/node_modules/pg-protocol/package.json +0 -35
  1686. package/rds-lambda/node_modules/pg-protocol/src/b.ts +0 -28
  1687. package/rds-lambda/node_modules/pg-protocol/src/buffer-reader.ts +0 -53
  1688. package/rds-lambda/node_modules/pg-protocol/src/buffer-writer.ts +0 -85
  1689. package/rds-lambda/node_modules/pg-protocol/src/inbound-parser.test.ts +0 -557
  1690. package/rds-lambda/node_modules/pg-protocol/src/index.ts +0 -11
  1691. package/rds-lambda/node_modules/pg-protocol/src/messages.ts +0 -230
  1692. package/rds-lambda/node_modules/pg-protocol/src/outbound-serializer.test.ts +0 -272
  1693. package/rds-lambda/node_modules/pg-protocol/src/parser.ts +0 -389
  1694. package/rds-lambda/node_modules/pg-protocol/src/serializer.ts +0 -274
  1695. package/rds-lambda/node_modules/pg-protocol/src/testing/buffer-list.ts +0 -75
  1696. package/rds-lambda/node_modules/pg-protocol/src/testing/test-buffers.ts +0 -166
  1697. package/rds-lambda/node_modules/pg-types/.travis.yml +0 -7
  1698. package/rds-lambda/node_modules/pg-types/Makefile +0 -14
  1699. package/rds-lambda/node_modules/pg-types/README.md +0 -75
  1700. package/rds-lambda/node_modules/pg-types/index.test-d.ts +0 -21
  1701. package/rds-lambda/node_modules/pg-types/package.json +0 -42
  1702. package/rds-lambda/node_modules/pgpass/README.md +0 -74
  1703. package/rds-lambda/node_modules/pgpass/package.json +0 -41
  1704. package/rds-lambda/node_modules/postgres-array/license +0 -21
  1705. package/rds-lambda/node_modules/postgres-array/package.json +0 -35
  1706. package/rds-lambda/node_modules/postgres-array/readme.md +0 -43
  1707. package/rds-lambda/node_modules/postgres-bytea/license +0 -21
  1708. package/rds-lambda/node_modules/postgres-bytea/package.json +0 -34
  1709. package/rds-lambda/node_modules/postgres-bytea/readme.md +0 -34
  1710. package/rds-lambda/node_modules/postgres-date/license +0 -21
  1711. package/rds-lambda/node_modules/postgres-date/package.json +0 -33
  1712. package/rds-lambda/node_modules/postgres-date/readme.md +0 -49
  1713. package/rds-lambda/node_modules/postgres-interval/license +0 -21
  1714. package/rds-lambda/node_modules/postgres-interval/package.json +0 -36
  1715. package/rds-lambda/node_modules/postgres-interval/readme.md +0 -48
  1716. package/rds-lambda/node_modules/safer-buffer/LICENSE +0 -21
  1717. package/rds-lambda/node_modules/safer-buffer/Porting-Buffer.md +0 -268
  1718. package/rds-lambda/node_modules/safer-buffer/Readme.md +0 -156
  1719. package/rds-lambda/node_modules/safer-buffer/package.json +0 -34
  1720. package/rds-lambda/node_modules/seq-queue/.jshintrc +0 -19
  1721. package/rds-lambda/node_modules/seq-queue/AUTHORS +0 -1
  1722. package/rds-lambda/node_modules/seq-queue/LICENSE +0 -22
  1723. package/rds-lambda/node_modules/seq-queue/Makefile +0 -9
  1724. package/rds-lambda/node_modules/seq-queue/README.md +0 -75
  1725. package/rds-lambda/node_modules/seq-queue/package.json +0 -17
  1726. package/rds-lambda/node_modules/split2/LICENSE +0 -13
  1727. package/rds-lambda/node_modules/split2/README.md +0 -85
  1728. package/rds-lambda/node_modules/split2/package.json +0 -39
  1729. package/rds-lambda/node_modules/sqlstring/HISTORY.md +0 -53
  1730. package/rds-lambda/node_modules/sqlstring/LICENSE +0 -19
  1731. package/rds-lambda/node_modules/sqlstring/README.md +0 -205
  1732. package/rds-lambda/node_modules/sqlstring/package.json +0 -47
  1733. package/rds-lambda/node_modules/xtend/.jshintrc +0 -30
  1734. package/rds-lambda/node_modules/xtend/LICENSE +0 -20
  1735. package/rds-lambda/node_modules/xtend/README.md +0 -32
  1736. package/rds-lambda/node_modules/xtend/package.json +0 -55
  1737. package/rds-lambda/utils/rds_utils.ts +0 -145
  1738. package/src/__tests__/test-utils/rds_utils.test.ts +0 -372
  1739. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -0
  1740. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/LICENSE +0 -0
  1741. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/README.md +0 -0
  1742. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +0 -0
  1743. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +0 -0
  1744. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +0 -0
  1745. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +0 -0
  1746. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +0 -0
  1747. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -0
  1748. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +0 -0
  1749. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +0 -0
  1750. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/package.json +0 -0
  1751. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -0
  1752. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/src/index.ts +0 -0
  1753. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-crypto/crc32/tsconfig.json +0 -0
  1754. /package/{rds-lambda/node_modules/@aws-sdk/util-stream → publish-notification-lambda/node_modules/@aws-sdk/abort-controller}/LICENSE +0 -0
  1755. /package/{rds-lambda/node_modules/@aws-sdk/eventstream-codec → publish-notification-lambda/node_modules/@aws-sdk/client-lambda}/LICENSE +0 -0
  1756. /package/{rds-lambda → publish-notification-lambda}/node_modules/@aws-sdk/eventstream-codec/README.md +0 -0
  1757. /package/{rds-lambda/node_modules/generate-function → publish-notification-lambda/node_modules/end-of-stream}/LICENSE +0 -0
  1758. /package/{rds-lambda/node_modules/mysql2/node_modules/lru-cache → publish-notification-lambda/node_modules/isexe}/LICENSE +0 -0
  1759. /package/{rds-lambda/node_modules/mysql2/node_modules/yallist → publish-notification-lambda/node_modules/minimatch}/LICENSE +0 -0
  1760. /package/rds-lambda/node_modules/{cliui → jest-cli/node_modules/cliui}/build/index.d.cts +0 -0
  1761. /package/rds-lambda/node_modules/{yargs → jest-cli/node_modules/yargs}/locales/cs.json +0 -0
  1762. /package/rds-lambda/node_modules/{yargs → jest-cli/node_modules/yargs}/locales/uk_UA.json +0 -0
  1763. /package/rds-lambda/node_modules/{yargs → jest-cli/node_modules/yargs}/locales/uz.json +0 -0
  1764. /package/rds-lambda/node_modules/{yargs → jest-cli/node_modules/yargs}/yargs.mjs +0 -0
package/API.md CHANGED
@@ -47,7 +47,7 @@ export const createEnumModelFilters: (ctx: TransformerTransformSchemaStepContext
47
47
  // @public (undocumented)
48
48
  export class DynamoDBModelVTLGenerator implements ModelVTLGenerator {
49
49
  // (undocumented)
50
- generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
50
+ generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string;
51
51
  // (undocumented)
52
52
  generateCreateRequestTemplate(config: ModelCreateRequestConfig): string;
53
53
  // (undocumented)
@@ -282,7 +282,7 @@ export type ModelUpdateRequestConfig = ModelRequestConfig & {
282
282
  // @public (undocumented)
283
283
  export interface ModelVTLGenerator {
284
284
  // (undocumented)
285
- generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
285
+ generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string;
286
286
  // (undocumented)
287
287
  generateCreateRequestTemplate(config: ModelCreateRequestConfig): string;
288
288
  // (undocumented)
@@ -316,7 +316,7 @@ export const propagateApiKeyToNestedTypes: (ctx: TransformerContextProvider, def
316
316
  // @public (undocumented)
317
317
  export class RDSModelVTLGenerator implements ModelVTLGenerator {
318
318
  // (undocumented)
319
- generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
319
+ generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string;
320
320
  // (undocumented)
321
321
  generateCreateRequestTemplate(config: ModelCreateRequestConfig): string;
322
322
  // (undocumented)
package/CHANGELOG.md CHANGED
@@ -3,17 +3,26 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [1.3.5-agqlac.0](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-model-transformer@1.3.3...@aws-amplify/graphql-model-transformer@1.3.5-agqlac.0) (2023-06-26)
6
+ # [1.4.0-rds.3](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-model-transformer@1.4.0-rds.2...@aws-amplify/graphql-model-transformer@1.4.0-rds.3) (2023-06-26)
7
7
 
8
+ **Note:** Version bump only for package @aws-amplify/graphql-model-transformer
8
9
 
9
- ### Bug Fixes
10
+ # [1.4.0-rds.2](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-model-transformer@1.4.0-rds.1...@aws-amplify/graphql-model-transformer@1.4.0-rds.2) (2023-06-26)
10
11
 
11
- * handling of all floating promises ([#1577](https://github.com/aws-amplify/amplify-category-api/issues/1577)) ([d5981b2](https://github.com/aws-amplify/amplify-category-api/commit/d5981b2f912d03b44e1269ca704816dd250ff501))
12
- * use addDependency instead of addDependsOn ([7fd1333](https://github.com/aws-amplify/amplify-category-api/commit/7fd13336732159ba560020e92eff90a9fc179098))
12
+ **Note:** Version bump only for package @aws-amplify/graphql-model-transformer
13
13
 
14
+ # [1.4.0-rds.1](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-model-transformer@1.4.0-rds.0...@aws-amplify/graphql-model-transformer@1.4.0-rds.1) (2023-06-26)
14
15
 
16
+ ### Bug Fixes
15
17
 
18
+ - **api:** add delay to rds patching ([3785b8e](https://github.com/aws-amplify/amplify-category-api/commit/3785b8e1ad22716c89e9ffdc375ae13a081c30c9))
19
+
20
+ # [1.4.0-rds.0](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-model-transformer@1.3.3...@aws-amplify/graphql-model-transformer@1.4.0-rds.0) (2023-06-21)
21
+
22
+ ### Features
16
23
 
24
+ - **graphql:** patching rds lambda layer ([a751fcb](https://github.com/aws-amplify/amplify-category-api/commit/a751fcbe75daf1fd8a1ce37b97379ad6ca3d6cec))
25
+ - **graphql:** vpc support for sql lambda ([9cc4407](https://github.com/aws-amplify/amplify-category-api/commit/9cc4407bdc4799fe548919808961911a3d5995c7))
17
26
 
18
27
  ## [1.3.3](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-model-transformer@1.3.2...@aws-amplify/graphql-model-transformer@1.3.3) (2023-06-20)
19
28
 
@@ -1 +1 @@
1
- {"version":3,"file":"definitions.d.ts","sourceRoot":"","sources":["../src/definitions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB,UAA2F,CAAC;AAC1H,eAAO,MAAM,aAAa,UAA2F,CAAC;AACtH,eAAO,MAAM,cAAc,UAAkD,CAAC;AAC9E,eAAO,MAAM,gBAAgB,UAAkD,CAAC;AAChF,eAAO,MAAM,kBAAkB,UAAe,CAAC;AAC/C,eAAO,MAAM,eAAe,UAAkD,CAAC;AAE/E,eAAO,MAAM,8BAA8B,UAA0G,CAAC;AACtJ,eAAO,MAAM,0BAA0B,UAA0G,CAAC;AAClJ,eAAO,MAAM,2BAA2B,UAAiE,CAAC;AAC1G,eAAO,MAAM,6BAA6B,UAAiE,CAAC;AAC5G,eAAO,MAAM,+BAA+B,UAAe,CAAC;AAE5D,eAAO,MAAM,gBAAgB,aAAgE,CAAC;AAC9F,eAAO,MAAM,YAAY,aAAgE,CAAC;AAC1F,eAAO,MAAM,aAAa,aAAwD,CAAC;AACnF,eAAO,MAAM,eAAe,aAAwD,CAAC;AACrF,eAAO,MAAM,iBAAiB,aAAwD,CAAC;AAEvF,eAAO,MAAM,eAAe,UAAwG,CAAC;AAErI,eAAO,MAAM,aAAa,gBAAgB,CAAC;AAE3C,eAAO,MAAM,iBAAiB,gBAAgB,CAAC"}
1
+ {"version":3,"file":"definitions.d.ts","sourceRoot":"","sources":["../src/definitions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB,UAA2F,CAAC;AAC1H,eAAO,MAAM,aAAa,UAA2F,CAAC;AACtH,eAAO,MAAM,cAAc,UAAkD,CAAC;AAC9E,eAAO,MAAM,gBAAgB,UAAkD,CAAC;AAChF,eAAO,MAAM,kBAAkB,UAAe,CAAC;AAC/C,eAAO,MAAM,eAAe,UAAkD,CAAC;AAE/E,eAAO,MAAM,8BAA8B,UAA0G,CAAC;AACtJ,eAAO,MAAM,0BAA0B,UAA0G,CAAC;AAClJ,eAAO,MAAM,2BAA2B,UAAiE,CAAC;AAC1G,eAAO,MAAM,6BAA6B,UAAiE,CAAC;AAC5G,eAAO,MAAM,+BAA+B,UAAe,CAAC;AAE5D,eAAO,MAAM,gBAAgB,aAAgE,CAAC;AAC9F,eAAO,MAAM,YAAY,aAAgE,CAAC;AAC1F,eAAO,MAAM,aAAa,aAAwD,CAAC;AACnF,eAAO,MAAM,eAAe,aAAwD,CAAC;AACrF,eAAO,MAAM,iBAAiB,aAAwD,CAAC;AAEvF,eAAO,MAAM,eAAe,UAAwG,CAAC;AACrI,eAAO,MAAM,aAAa,gBAAgB,CAAC;AAC3C,eAAO,MAAM,iBAAiB,gBAAgB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"definitions.js","sourceRoot":"","sources":["../src/definitions.ts"],"names":[],"mappings":";;;AAAa,QAAA,iBAAiB,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC;AAC7G,QAAA,aAAa,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC;AACzG,QAAA,cAAc,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;AACjE,QAAA,gBAAgB,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;AACnE,QAAA,kBAAkB,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAClC,QAAA,eAAe,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;AAElE,QAAA,8BAA8B,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,EAAE,YAAY,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AACzI,QAAA,0BAA0B,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,EAAE,YAAY,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AACrI,QAAA,2BAA2B,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AAC7F,QAAA,6BAA6B,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AAC/F,QAAA,+BAA+B,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAE/C,QAAA,gBAAgB,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,EAAE,MAAM,CAAC,CAAC,CAAC;AACjF,QAAA,YAAY,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,EAAE,MAAM,CAAC,CAAC,CAAC;AAC7E,QAAA,aAAa,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,CAAC,CAAC,CAAC;AACtE,QAAA,eAAe,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,CAAC,CAAC,CAAC;AACxE,QAAA,iBAAiB,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,CAAC,CAAC,CAAC;AAE1E,QAAA,eAAe,GAAG,CAAC,QAAQ,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE,WAAW,EAAE,OAAO,CAAC,CAAC;AAExH,QAAA,aAAa,GAAG,aAAa,CAAC;AAE9B,QAAA,iBAAiB,GAAG,aAAa,CAAC"}
1
+ {"version":3,"file":"definitions.js","sourceRoot":"","sources":["../src/definitions.ts"],"names":[],"mappings":";;;AAAa,QAAA,iBAAiB,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC;AAC7G,QAAA,aAAa,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC;AACzG,QAAA,cAAc,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;AACjE,QAAA,gBAAgB,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;AACnE,QAAA,kBAAkB,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAClC,QAAA,eAAe,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;AAElE,QAAA,8BAA8B,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,EAAE,YAAY,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AACzI,QAAA,0BAA0B,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,EAAE,YAAY,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AACrI,QAAA,2BAA2B,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AAC7F,QAAA,6BAA6B,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AAC/F,QAAA,+BAA+B,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAE/C,QAAA,gBAAgB,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,EAAE,MAAM,CAAC,CAAC,CAAC;AACjF,QAAA,YAAY,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,EAAE,MAAM,CAAC,CAAC,CAAC;AAC7E,QAAA,aAAa,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,CAAC,CAAC,CAAC;AACtE,QAAA,eAAe,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,CAAC,CAAC,CAAC;AACxE,QAAA,iBAAiB,GAAG,IAAI,GAAG,CAAS,CAAC,iBAAiB,EAAE,eAAe,CAAC,CAAC,CAAC;AAE1E,QAAA,eAAe,GAAG,CAAC,QAAQ,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE,WAAW,EAAE,OAAO,CAAC,CAAC;AACxH,QAAA,aAAa,GAAG,aAAa,CAAC;AAC9B,QAAA,iBAAiB,GAAG,aAAa,CAAC"}
@@ -171,7 +171,7 @@ class ModelTransformer extends graphql_transformer_core_1.TransformerModelBase {
171
171
  this.addModelSyncFields(ctx, type);
172
172
  }
173
173
  }
174
- if (!hasAuth && ctx.transformParameters.sandboxModeEnabled && ctx.authConfig.defaultAuthentication.authenticationType !== 'API_KEY') {
174
+ if (!hasAuth && ctx.sandboxModeEnabled && ctx.authConfig.defaultAuthentication.authenticationType !== 'API_KEY') {
175
175
  const apiKeyDirArray = [(0, graphql_transformer_common_1.makeDirective)(definitions_1.API_KEY_DIRECTIVE, [])];
176
176
  (0, graphql_types_1.extendTypeWithDirectives)(ctx, def.name.value, apiKeyDirArray);
177
177
  (0, graphql_types_1.propagateApiKeyToNestedTypes)(ctx, def, new Set());
@@ -1 +1 @@
1
- {"version":3,"file":"graphql-model-transformer.js","sourceRoot":"","sources":["../src/graphql-model-transformer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"graphql-model-transformer.js","sourceRoot":"","sources":["../src/graphql-model-transformer.ts"],"names":[],"mappings":"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"}
Binary file
Binary file
Binary file
@@ -2,7 +2,7 @@ import { Expression } from 'graphql-mapping-template';
2
2
  import { ModelDirectiveConfiguration } from '../../directive';
3
3
  export declare const generateUpdateRequestTemplate: (modelName: string, isSyncEnabled: boolean) => string;
4
4
  export declare const generateCreateRequestTemplate: (modelName: string, modelIndexFields: string[]) => string;
5
- export declare const generateCreateInitSlotTemplate: (modelConfig: ModelDirectiveConfiguration) => string;
5
+ export declare const generateCreateInitSlotTemplate: (modelConfig: ModelDirectiveConfiguration, initializeIdField: boolean) => string;
6
6
  export declare const generateDeleteRequestTemplate: (modelName: string, isSyncEnabled: boolean) => string;
7
7
  export declare const generateUpdateInitSlotTemplate: (modelConfig: ModelDirectiveConfiguration) => string;
8
8
  export declare const generateApplyDefaultsToInputTemplate: (target: string) => Expression;
@@ -1 +1 @@
1
- {"version":3,"file":"mutation.d.ts","sourceRoot":"","sources":["../../../src/resolvers/dynamodb/mutation.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EAgBX,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,2BAA2B,EAAE,MAAM,iBAAiB,CAAC;AAO9D,eAAO,MAAM,6BAA6B,cAAe,MAAM,iBAAiB,OAAO,KAAG,MAwHzF,CAAC;AAMF,eAAO,MAAM,6BAA6B,cAAe,MAAM,oBAAoB,MAAM,EAAE,KAAG,MA8D7F,CAAC;AAMF,eAAO,MAAM,8BAA8B,gBAAiB,2BAA2B,KAAG,MA+BzF,CAAC;AAKF,eAAO,MAAM,6BAA6B,cAAc,MAAM,iBAAiB,OAAO,KAAG,MAmCxF,CAAC;AAMF,eAAO,MAAM,8BAA8B,gBAAiB,2BAA2B,KAAG,MA0BzF,CAAC;AAKF,eAAO,MAAM,oCAAoC,WAAY,MAAM,KAAG,UAGpE,CAAC"}
1
+ {"version":3,"file":"mutation.d.ts","sourceRoot":"","sources":["../../../src/resolvers/dynamodb/mutation.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EAgBX,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,2BAA2B,EAAE,MAAM,iBAAiB,CAAC;AAO9D,eAAO,MAAM,6BAA6B,cAAe,MAAM,iBAAiB,OAAO,KAAG,MAwHzF,CAAC;AAMF,eAAO,MAAM,6BAA6B,cAAe,MAAM,oBAAoB,MAAM,EAAE,KAAG,MA8D7F,CAAC;AAMF,eAAO,MAAM,8BAA8B,gBAAiB,2BAA2B,qBAAqB,OAAO,KAAG,MA+BrH,CAAC;AAKF,eAAO,MAAM,6BAA6B,cAAc,MAAM,iBAAiB,OAAO,KAAG,MAmCxF,CAAC;AAMF,eAAO,MAAM,8BAA8B,gBAAiB,2BAA2B,KAAG,MA0BzF,CAAC;AAKF,eAAO,MAAM,oCAAoC,WAAY,MAAM,KAAG,UAGpE,CAAC"}
@@ -128,7 +128,7 @@ const generateCreateRequestTemplate = (modelName, modelIndexFields) => {
128
128
  return (0, graphql_mapping_template_1.printBlock)('Create Request template')((0, graphql_mapping_template_1.compoundExpression)(statements));
129
129
  };
130
130
  exports.generateCreateRequestTemplate = generateCreateRequestTemplate;
131
- const generateCreateInitSlotTemplate = (modelConfig) => {
131
+ const generateCreateInitSlotTemplate = (modelConfig, initializeIdField) => {
132
132
  const statements = [
133
133
  (0, graphql_mapping_template_1.qref)((0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('ctx.stash.put'), (0, graphql_mapping_template_1.str)('defaultValues'), (0, graphql_mapping_template_1.methodCall)((0, graphql_mapping_template_1.ref)('util.defaultIfNull'), (0, graphql_mapping_template_1.ref)('ctx.stash.defaultValues'), (0, graphql_mapping_template_1.obj)({})))),
134
134
  ];
@@ -1 +1 @@
1
- {"version":3,"file":"mutation.js","sourceRoot":"","sources":["../../../src/resolvers/dynamodb/mutation.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"mutation.js","sourceRoot":"","sources":["../../../src/resolvers/dynamodb/mutation.ts"],"names":[],"mappings":"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"}
@@ -2,7 +2,7 @@ import { ModelCreateInitSlotConfig, ModelCreateRequestConfig, ModelDefaultRespon
2
2
  export declare class DynamoDBModelVTLGenerator implements ModelVTLGenerator {
3
3
  generateUpdateRequestTemplate(config: ModelUpdateRequestConfig): string;
4
4
  generateCreateRequestTemplate(config: ModelCreateRequestConfig): string;
5
- generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
5
+ generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string;
6
6
  generateDeleteRequestTemplate(config: ModelUpdateRequestConfig): string;
7
7
  generateUpdateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
8
8
  generateGetRequestTemplate(config: ModelRequestConfig): string;
@@ -1 +1 @@
1
- {"version":3,"file":"dynamodb-vtl-generator.d.ts","sourceRoot":"","sources":["../../../src/resolvers/generators/dynamodb-vtl-generator.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACxB,0BAA0B,EAC1B,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EAClB,MAAM,iBAAiB,CAAC;AAgBzB,qBAAa,yBAA0B,YAAW,iBAAiB;IACjE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM;IAGzE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM;IAGzE,0BAA0B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG9D,2BAA2B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGrE,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG/D,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG/D,mCAAmC,IAAI,MAAM;IAG7C,oCAAoC,IAAI,MAAM;IAG9C,sCAAsC,CAAC,MAAM,EAAE,0BAA0B,GAAG,MAAM;CAGnF"}
1
+ {"version":3,"file":"dynamodb-vtl-generator.d.ts","sourceRoot":"","sources":["../../../src/resolvers/generators/dynamodb-vtl-generator.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACxB,0BAA0B,EAC1B,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EAClB,MAAM,iBAAiB,CAAC;AAgBzB,qBAAa,yBAA0B,YAAW,iBAAiB;IACjE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,EAAE,iBAAiB,EAAE,OAAO,GAAG,MAAM;IAGrG,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM;IAGzE,0BAA0B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG9D,2BAA2B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGrE,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG/D,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG/D,mCAAmC,IAAI,MAAM;IAG7C,oCAAoC,IAAI,MAAM;IAG9C,sCAAsC,CAAC,MAAM,EAAE,0BAA0B,GAAG,MAAM;CAGnF"}
@@ -9,8 +9,8 @@ class DynamoDBModelVTLGenerator {
9
9
  generateCreateRequestTemplate(config) {
10
10
  return (0, dynamodb_1.generateCreateRequestTemplate)(config.modelName, config.modelIndexFields);
11
11
  }
12
- generateCreateInitSlotTemplate(config) {
13
- return (0, dynamodb_1.generateCreateInitSlotTemplate)(config.modelConfig);
12
+ generateCreateInitSlotTemplate(config, initializeIdField) {
13
+ return (0, dynamodb_1.generateCreateInitSlotTemplate)(config.modelConfig, initializeIdField);
14
14
  }
15
15
  generateDeleteRequestTemplate(config) {
16
16
  return (0, dynamodb_1.generateDeleteRequestTemplate)(config.modelName, config.isSyncEnabled);
@@ -1 +1 @@
1
- {"version":3,"file":"dynamodb-vtl-generator.js","sourceRoot":"","sources":["../../../src/resolvers/generators/dynamodb-vtl-generator.ts"],"names":[],"mappings":";;;AAQA,0CAaqB;AAErB,MAAa,yBAAyB;IACpC,6BAA6B,CAAC,MAAgC;QAC5D,OAAO,IAAA,wCAA6B,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IAC/E,CAAC;IACD,6BAA6B,CAAC,MAAgC;QAC5D,OAAO,IAAA,wCAA6B,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC;IAClF,CAAC;IACD,8BAA8B,CAAC,MAAiC;QAC9D,OAAO,IAAA,yCAA8B,EAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAC5D,CAAC;IACD,6BAA6B,CAAC,MAAgC;QAC5D,OAAO,IAAA,wCAA6B,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IAC/E,CAAC;IACD,8BAA8B,CAAC,MAAiC;QAC9D,OAAO,IAAA,yCAA8B,EAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAC5D,CAAC;IACD,0BAA0B,CAAC,MAA0B;QACnD,OAAO,IAAA,qCAA0B,GAAE,CAAC;IACtC,CAAC;IACD,2BAA2B,CAAC,MAAgC;QAC1D,OAAO,IAAA,sCAA2B,EAAC,MAAM,CAAC,aAAa,CAAC,CAAC;IAC3D,CAAC;IACD,2BAA2B,CAAC,MAA0B;QACpD,OAAO,IAAA,sCAA2B,GAAE,CAAC;IACvC,CAAC;IACD,2BAA2B,CAAC,MAA0B;QACpD,OAAO,IAAA,sCAA2B,GAAE,CAAC;IACvC,CAAC;IACD,mCAAmC;QACjC,OAAO,IAAA,8CAAmC,GAAE,CAAC;IAC/C,CAAC;IACD,oCAAoC;QAClC,OAAO,IAAA,+CAAoC,GAAE,CAAC;IAChD,CAAC;IACD,sCAAsC,CAAC,MAAkC;QACvE,OAAO,IAAA,iDAAsC,EAAC,MAAM,CAAC,aAAa,EAAE,MAAM,CAAC,QAAQ,CAAC,CAAC;IACvF,CAAC;CACF;AArCD,8DAqCC"}
1
+ {"version":3,"file":"dynamodb-vtl-generator.js","sourceRoot":"","sources":["../../../src/resolvers/generators/dynamodb-vtl-generator.ts"],"names":[],"mappings":";;;AAQA,0CAaqB;AAErB,MAAa,yBAAyB;IACpC,6BAA6B,CAAC,MAAgC;QAC5D,OAAO,IAAA,wCAA6B,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IAC/E,CAAC;IACD,6BAA6B,CAAC,MAAgC;QAC5D,OAAO,IAAA,wCAA6B,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC;IAClF,CAAC;IACD,8BAA8B,CAAC,MAAiC,EAAE,iBAA0B;QAC1F,OAAO,IAAA,yCAA8B,EAAC,MAAM,CAAC,WAAW,EAAE,iBAAiB,CAAC,CAAC;IAC/E,CAAC;IACD,6BAA6B,CAAC,MAAgC;QAC5D,OAAO,IAAA,wCAA6B,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IAC/E,CAAC;IACD,8BAA8B,CAAC,MAAiC;QAC9D,OAAO,IAAA,yCAA8B,EAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAC5D,CAAC;IACD,0BAA0B,CAAC,MAA0B;QACnD,OAAO,IAAA,qCAA0B,GAAE,CAAC;IACtC,CAAC;IACD,2BAA2B,CAAC,MAAgC;QAC1D,OAAO,IAAA,sCAA2B,EAAC,MAAM,CAAC,aAAa,CAAC,CAAC;IAC3D,CAAC;IACD,2BAA2B,CAAC,MAA0B;QACpD,OAAO,IAAA,sCAA2B,GAAE,CAAC;IACvC,CAAC;IACD,2BAA2B,CAAC,MAA0B;QACpD,OAAO,IAAA,sCAA2B,GAAE,CAAC;IACvC,CAAC;IACD,mCAAmC;QACjC,OAAO,IAAA,8CAAmC,GAAE,CAAC;IAC/C,CAAC;IACD,oCAAoC;QAClC,OAAO,IAAA,+CAAoC,GAAE,CAAC;IAChD,CAAC;IACD,sCAAsC,CAAC,MAAkC;QACvE,OAAO,IAAA,iDAAsC,EAAC,MAAM,CAAC,aAAa,EAAE,MAAM,CAAC,QAAQ,CAAC,CAAC;IACvF,CAAC;CACF;AArCD,8DAqCC"}
@@ -2,7 +2,7 @@ import { ModelCreateInitSlotConfig, ModelCreateRequestConfig, ModelDefaultRespon
2
2
  export declare class RDSModelVTLGenerator implements ModelVTLGenerator {
3
3
  generateUpdateRequestTemplate(config: ModelUpdateRequestConfig): string;
4
4
  generateCreateRequestTemplate(config: ModelCreateRequestConfig): string;
5
- generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
5
+ generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string;
6
6
  generateDeleteRequestTemplate(config: ModelUpdateRequestConfig): string;
7
7
  generateUpdateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
8
8
  generateGetRequestTemplate(config: ModelRequestConfig): string;
@@ -1 +1 @@
1
- {"version":3,"file":"rds-vtl-generator.d.ts","sourceRoot":"","sources":["../../../src/resolvers/generators/rds-vtl-generator.ts"],"names":[],"mappings":"AAeA,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACxB,0BAA0B,EAC1B,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EAClB,MAAM,iBAAiB,CAAC;AAGzB,qBAAa,oBAAqB,YAAW,iBAAiB;IAC5D,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM;IAGzE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM;IAGzE,0BAA0B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG9D,2BAA2B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGrE,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG/D,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG/D,mCAAmC,IAAI,MAAM;IAG7C,oCAAoC,IAAI,MAAM;IAG9C,sCAAsC,CAAC,MAAM,EAAE,0BAA0B,GAAG,MAAM;CAGnF"}
1
+ {"version":3,"file":"rds-vtl-generator.d.ts","sourceRoot":"","sources":["../../../src/resolvers/generators/rds-vtl-generator.ts"],"names":[],"mappings":"AAeA,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACxB,0BAA0B,EAC1B,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EAClB,MAAM,iBAAiB,CAAC;AAGzB,qBAAa,oBAAqB,YAAW,iBAAiB;IAC5D,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,EAAE,iBAAiB,EAAE,OAAO,GAAG,MAAM;IAGrG,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGvE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM;IAGzE,0BAA0B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG9D,2BAA2B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAGrE,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG/D,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;IAG/D,mCAAmC,IAAI,MAAM;IAG7C,oCAAoC,IAAI,MAAM;IAG9C,sCAAsC,CAAC,MAAM,EAAE,0BAA0B,GAAG,MAAM;CAGnF"}
@@ -11,8 +11,8 @@ class RDSModelVTLGenerator {
11
11
  generateCreateRequestTemplate(config) {
12
12
  return (0, rds_1.generateLambdaCreateRequestTemplate)(config.modelName, config.operationName);
13
13
  }
14
- generateCreateInitSlotTemplate(config) {
15
- return (0, rds_1.generateCreateInitSlotTemplate)(config.modelConfig);
14
+ generateCreateInitSlotTemplate(config, initializeIdField) {
15
+ return (0, rds_1.generateCreateInitSlotTemplate)(config.modelConfig, initializeIdField);
16
16
  }
17
17
  generateDeleteRequestTemplate(config) {
18
18
  var _a;
@@ -1 +1 @@
1
- {"version":3,"file":"rds-vtl-generator.js","sourceRoot":"","sources":["../../../src/resolvers/generators/rds-vtl-generator.ts"],"names":[],"mappings":";;;AAAA,gCAUgB;AAChB,0CAGqB;AAWrB,MAAa,oBAAoB;IAC/B,6BAA6B,CAAC,MAAgC;;QAC5D,OAAO,IAAA,yCAAmC,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,EAAE,MAAA,MAAM,CAAC,gBAAgB,mCAAI,CAAC,IAAI,CAAC,CAAC,CAAC;IACxH,CAAC;IACD,6BAA6B,CAAC,MAAgC;QAC5D,OAAO,IAAA,yCAAmC,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IACrF,CAAC;IACD,8BAA8B,CAAC,MAAiC;QAC9D,OAAO,IAAA,oCAA8B,EAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAC5D,CAAC;IACD,6BAA6B,CAAC,MAAgC;;QAC5D,OAAO,IAAA,yCAAmC,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,EAAE,MAAA,MAAM,CAAC,gBAAgB,mCAAI,CAAC,IAAI,CAAC,CAAC,CAAC;IACxH,CAAC;IACD,8BAA8B,CAAC,MAAiC;QAC9D,OAAO,IAAA,oCAA8B,EAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAC5D,CAAC;IACD,0BAA0B,CAAC,MAA0B;QACnD,OAAO,IAAA,mCAA6B,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IACjG,CAAC;IACD,2BAA2B,CAAC,MAAgC;QAC1D,OAAO,IAAA,uCAAiC,EAAC,KAAK,CAAC,CAAC;IAClD,CAAC;IACD,2BAA2B,CAAC,MAA0B;QACpD,OAAO,IAAA,uCAAiC,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IACrG,CAAC;IACD,2BAA2B,CAAC,MAA0B;QACpD,OAAO,IAAA,kDAA4C,EAAC,KAAK,CAAC,CAAC;IAC7D,CAAC;IACD,mCAAmC;QACjC,OAAO,IAAA,8CAAmC,GAAE,CAAC;IAC/C,CAAC;IACD,oCAAoC;QAClC,OAAO,IAAA,+CAAoC,GAAE,CAAC;IAChD,CAAC;IACD,sCAAsC,CAAC,MAAkC;QACvE,OAAO,IAAA,kDAA4C,EAAC,KAAK,CAAC,CAAC;IAC7D,CAAC;CACF;AArCD,oDAqCC"}
1
+ {"version":3,"file":"rds-vtl-generator.js","sourceRoot":"","sources":["../../../src/resolvers/generators/rds-vtl-generator.ts"],"names":[],"mappings":";;;AAAA,gCAUgB;AAChB,0CAGqB;AAWrB,MAAa,oBAAoB;IAC/B,6BAA6B,CAAC,MAAgC;;QAC5D,OAAO,IAAA,yCAAmC,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,EAAE,MAAA,MAAM,CAAC,gBAAgB,mCAAI,CAAC,IAAI,CAAC,CAAC,CAAC;IACxH,CAAC;IACD,6BAA6B,CAAC,MAAgC;QAC5D,OAAO,IAAA,yCAAmC,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IACrF,CAAC;IACD,8BAA8B,CAAC,MAAiC,EAAE,iBAA0B;QAC1F,OAAO,IAAA,oCAA8B,EAAC,MAAM,CAAC,WAAW,EAAE,iBAAiB,CAAC,CAAC;IAC/E,CAAC;IACD,6BAA6B,CAAC,MAAgC;;QAC5D,OAAO,IAAA,yCAAmC,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,EAAE,MAAA,MAAM,CAAC,gBAAgB,mCAAI,CAAC,IAAI,CAAC,CAAC,CAAC;IACxH,CAAC;IACD,8BAA8B,CAAC,MAAiC;QAC9D,OAAO,IAAA,oCAA8B,EAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAC5D,CAAC;IACD,0BAA0B,CAAC,MAA0B;QACnD,OAAO,IAAA,mCAA6B,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IACjG,CAAC;IACD,2BAA2B,CAAC,MAAgC;QAC1D,OAAO,IAAA,uCAAiC,EAAC,KAAK,CAAC,CAAC;IAClD,CAAC;IACD,2BAA2B,CAAC,MAA0B;QACpD,OAAO,IAAA,uCAAiC,EAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;IACrG,CAAC;IACD,2BAA2B,CAAC,MAA0B;QACpD,OAAO,IAAA,kDAA4C,EAAC,KAAK,CAAC,CAAC;IAC7D,CAAC;IACD,mCAAmC;QACjC,OAAO,IAAA,8CAAmC,GAAE,CAAC;IAC/C,CAAC;IACD,oCAAoC;QAClC,OAAO,IAAA,+CAAoC,GAAE,CAAC;IAChD,CAAC;IACD,sCAAsC,CAAC,MAAkC;QACvE,OAAO,IAAA,kDAA4C,EAAC,KAAK,CAAC,CAAC;IAC7D,CAAC;CACF;AArCD,oDAqCC"}
@@ -24,7 +24,7 @@ export type ModelDefaultResponseConfig = ModelRequestConfig & {
24
24
  export interface ModelVTLGenerator {
25
25
  generateUpdateRequestTemplate(config: ModelUpdateRequestConfig): string;
26
26
  generateCreateRequestTemplate(config: ModelCreateRequestConfig): string;
27
- generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig): string;
27
+ generateCreateInitSlotTemplate(config: ModelCreateInitSlotConfig, initializeIdField: boolean): string;
28
28
  generateDeleteRequestTemplate(config: ModelDeleteRequestConfig): string;
29
29
  generateUpdateInitSlotTemplate(config: ModelUpdateInitSlotConfig): string;
30
30
  generateGetRequestTemplate(config: ModelRequestConfig): string;
@@ -1 +1 @@
1
- {"version":3,"file":"vtl-generator.d.ts","sourceRoot":"","sources":["../../../src/resolvers/generators/vtl-generator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iBAAiB,CAAC;AAE9D,MAAM,MAAM,kBAAkB,GAAG;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;CACvB,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG,kBAAkB,GAAG;IAC1D,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,aAAa,EAAE,OAAO,CAAC;CACxB,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG,wBAAwB,CAAC;AAEhE,MAAM,MAAM,wBAAwB,GAAG,kBAAkB,GAAG;IAC1D,gBAAgB,EAAE,MAAM,EAAE,CAAC;CAC5B,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG;IACtC,WAAW,EAAE,2BAA2B,CAAC;CAC1C,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG,yBAAyB,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,wBAAwB,CAAC;AAE9D,MAAM,MAAM,0BAA0B,GAAG,kBAAkB,GAAG;IAC5D,aAAa,EAAE,OAAO,CAAC;IACvB,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAA;AAED,MAAM,WAAW,iBAAiB;IAChC,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM,CAAC;IACxE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM,CAAC;IACxE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM,CAAC;IAC1E,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM,CAAC;IACxE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM,CAAC;IAC1E,0BAA0B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM,CAAC;IAC/D,2BAA2B,CAAC,MAAM,EAAE,sBAAsB,GAAG,MAAM,CAAC;IACpE,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM,CAAC;IAChE,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM,CAAC;IAChE,mCAAmC,IAAI,MAAM,CAAC;IAC9C,oCAAoC,IAAI,MAAM,CAAC;IAC/C,sCAAsC,CAAC,MAAM,EAAE,0BAA0B,GAAG,MAAM,CAAC;CACpF"}
1
+ {"version":3,"file":"vtl-generator.d.ts","sourceRoot":"","sources":["../../../src/resolvers/generators/vtl-generator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iBAAiB,CAAC;AAE9D,MAAM,MAAM,kBAAkB,GAAG;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;CACvB,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG,kBAAkB,GAAG;IAC1D,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,aAAa,EAAE,OAAO,CAAC;CACxB,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG,wBAAwB,CAAC;AAEhE,MAAM,MAAM,wBAAwB,GAAG,kBAAkB,GAAG;IAC1D,gBAAgB,EAAE,MAAM,EAAE,CAAC;CAC5B,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG;IACtC,WAAW,EAAE,2BAA2B,CAAC;CAC1C,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG,yBAAyB,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,wBAAwB,CAAC;AAE9D,MAAM,MAAM,0BAA0B,GAAG,kBAAkB,GAAG;IAC5D,aAAa,EAAE,OAAO,CAAC;IACvB,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAA;AAED,MAAM,WAAW,iBAAiB;IAChC,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM,CAAC;IACxE,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM,CAAC;IACxE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,EAAE,iBAAiB,EAAE,OAAO,GAAG,MAAM,CAAC;IACtG,6BAA6B,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM,CAAC;IACxE,8BAA8B,CAAC,MAAM,EAAE,yBAAyB,GAAG,MAAM,CAAC;IAC1E,0BAA0B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM,CAAC;IAC/D,2BAA2B,CAAC,MAAM,EAAE,sBAAsB,GAAG,MAAM,CAAC;IACpE,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM,CAAC;IAChE,2BAA2B,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM,CAAC;IAChE,mCAAmC,IAAI,MAAM,CAAC;IAC9C,oCAAoC,IAAI,MAAM,CAAC;IAC/C,sCAAsC,CAAC,MAAM,EAAE,0BAA0B,GAAG,MAAM,CAAC;CACpF"}
@@ -1,5 +1,5 @@
1
1
  import { ModelDirectiveConfiguration } from '../../directive';
2
- export declare const generateCreateInitSlotTemplate: (modelConfig: ModelDirectiveConfiguration) => string;
2
+ export declare const generateCreateInitSlotTemplate: (modelConfig: ModelDirectiveConfiguration, initializeIdField: boolean) => string;
3
3
  export declare const generateLambdaCreateRequestTemplate: (tableName: string, operationName: string) => string;
4
4
  export declare const generateUpdateInitSlotTemplate: (modelConfig: ModelDirectiveConfiguration) => string;
5
5
  export declare const generateLambdaUpdateRequestTemplate: (tableName: string, operationName: string, modelIndexFields: string[]) => string;
@@ -1 +1 @@
1
- {"version":3,"file":"mutation.d.ts","sourceRoot":"","sources":["../../../src/resolvers/rds/mutation.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iBAAiB,CAAC;AAM9D,eAAO,MAAM,8BAA8B,gBAAiB,2BAA2B,KAAG,MA+BzF,CAAC;AAEF,eAAO,MAAM,mCAAmC,cAAe,MAAM,iBAAiB,MAAM,KAAG,MAsB9F,CAAC;AAMF,eAAO,MAAM,8BAA8B,gBAAiB,2BAA2B,KAAG,MA0BzF,CAAC;AAKF,eAAO,MAAM,mCAAmC,cAAe,MAAM,iBAAiB,MAAM,oBAAoB,MAAM,EAAE,WAsBvH,CAAC;AAKF,eAAO,MAAM,mCAAmC,cAAe,MAAM,iBAAiB,MAAM,oBAAoB,MAAM,EAAE,WAkBvH,CAAC"}
1
+ {"version":3,"file":"mutation.d.ts","sourceRoot":"","sources":["../../../src/resolvers/rds/mutation.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iBAAiB,CAAC;AAM9D,eAAO,MAAM,8BAA8B,gBAAiB,2BAA2B,qBAAqB,OAAO,KAAG,MAiCrH,CAAC;AAEF,eAAO,MAAM,mCAAmC,cAAe,MAAM,iBAAiB,MAAM,KAAG,MAoB9F,CAAC;AAMF,eAAO,MAAM,8BAA8B,gBAAiB,2BAA2B,KAAG,MA0BzF,CAAC;AAKF,eAAO,MAAM,mCAAmC,cACnC,MAAM,iBACF,MAAM,oBACH,MAAM,EAAE,KACzB,MAqBF,CAAC;AAKF,eAAO,MAAM,mCAAmC,cACnC,MAAM,iBACF,MAAM,oBACH,MAAM,EAAE,KACzB,MAiBF,CAAC"}