@gradientedge/cdk-utils 4.4.6 → 4.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (325) hide show
  1. package/app/api-destined-function/node_modules/.yarn-integrity +1 -1
  2. package/app/api-destined-function/node_modules/minimatch/README.md +1 -1
  3. package/app/api-destined-function/node_modules/minimatch/minimatch.js +74 -45
  4. package/app/api-destined-function/node_modules/minimatch/package.json +3 -3
  5. package/app/api-destined-function/node_modules/uuid/dist/bin/uuid +2 -0
  6. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/index.js +9 -0
  7. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  8. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  9. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  10. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  11. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  12. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  13. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  14. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  15. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  16. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  17. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  18. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  19. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  20. package/app/api-destined-function/node_modules/uuid/dist/esm-browser/version.js +11 -0
  21. package/app/api-destined-function/node_modules/uuid/dist/esm-node/index.js +9 -0
  22. package/app/api-destined-function/node_modules/uuid/dist/esm-node/md5.js +13 -0
  23. package/app/api-destined-function/node_modules/uuid/dist/esm-node/nil.js +1 -0
  24. package/app/api-destined-function/node_modules/uuid/dist/esm-node/parse.js +35 -0
  25. package/app/api-destined-function/node_modules/uuid/dist/esm-node/regex.js +1 -0
  26. package/app/api-destined-function/node_modules/uuid/dist/esm-node/rng.js +12 -0
  27. package/app/api-destined-function/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  28. package/app/api-destined-function/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  29. package/app/api-destined-function/node_modules/uuid/dist/esm-node/v1.js +95 -0
  30. package/app/api-destined-function/node_modules/uuid/dist/esm-node/v3.js +4 -0
  31. package/app/api-destined-function/node_modules/uuid/dist/esm-node/v35.js +64 -0
  32. package/app/api-destined-function/node_modules/uuid/dist/esm-node/v4.js +24 -0
  33. package/app/api-destined-function/node_modules/uuid/dist/esm-node/v5.js +4 -0
  34. package/app/api-destined-function/node_modules/uuid/dist/esm-node/validate.js +7 -0
  35. package/app/api-destined-function/node_modules/uuid/dist/esm-node/version.js +11 -0
  36. package/app/api-destined-function/node_modules/uuid/dist/index.js +79 -0
  37. package/app/api-destined-function/node_modules/uuid/dist/md5-browser.js +223 -0
  38. package/app/api-destined-function/node_modules/uuid/dist/md5.js +23 -0
  39. package/app/api-destined-function/node_modules/uuid/dist/nil.js +8 -0
  40. package/app/api-destined-function/node_modules/uuid/dist/parse.js +45 -0
  41. package/app/api-destined-function/node_modules/uuid/dist/regex.js +8 -0
  42. package/app/api-destined-function/node_modules/uuid/dist/rng-browser.js +26 -0
  43. package/app/api-destined-function/node_modules/uuid/dist/rng.js +24 -0
  44. package/app/api-destined-function/node_modules/uuid/dist/sha1-browser.js +104 -0
  45. package/app/api-destined-function/node_modules/uuid/dist/sha1.js +23 -0
  46. package/app/api-destined-function/node_modules/uuid/dist/stringify.js +39 -0
  47. package/app/api-destined-function/node_modules/uuid/dist/umd/uuid.min.js +1 -0
  48. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
  49. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
  50. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
  51. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
  52. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
  53. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
  54. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
  55. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
  56. package/app/api-destined-function/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
  57. package/app/api-destined-function/node_modules/uuid/dist/uuid-bin.js +85 -0
  58. package/app/api-destined-function/node_modules/uuid/dist/v1.js +107 -0
  59. package/app/api-destined-function/node_modules/uuid/dist/v3.js +16 -0
  60. package/app/api-destined-function/node_modules/uuid/dist/v35.js +78 -0
  61. package/app/api-destined-function/node_modules/uuid/dist/v4.js +37 -0
  62. package/app/api-destined-function/node_modules/uuid/dist/v5.js +16 -0
  63. package/app/api-destined-function/node_modules/uuid/dist/validate.js +17 -0
  64. package/app/api-destined-function/node_modules/uuid/dist/version.js +21 -0
  65. package/app/api-destined-function/package.json +2 -1
  66. package/dist/app/api-destined-function/layers/nodejs/node_modules/.bin/uuid +2 -0
  67. package/dist/app/api-destined-function/layers/nodejs/node_modules/.yarn-integrity +109 -0
  68. package/dist/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/LICENSE +21 -0
  69. package/dist/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/README.md +16 -0
  70. package/dist/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/index.d.mts +10 -0
  71. package/dist/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/index.d.ts +80 -0
  72. package/dist/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/package.json +54 -0
  73. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/LICENSE.md +9 -0
  74. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/README.md +505 -0
  75. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/bin/uuid +2 -0
  76. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/index.js +9 -0
  77. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  78. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  79. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  80. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  81. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  82. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  83. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  84. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  85. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  86. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  87. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  88. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  89. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  90. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/version.js +11 -0
  91. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/index.js +9 -0
  92. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/md5.js +13 -0
  93. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/nil.js +1 -0
  94. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/parse.js +35 -0
  95. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/regex.js +1 -0
  96. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/rng.js +12 -0
  97. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  98. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  99. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v1.js +95 -0
  100. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v3.js +4 -0
  101. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v35.js +64 -0
  102. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v4.js +24 -0
  103. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v5.js +4 -0
  104. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/validate.js +7 -0
  105. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/version.js +11 -0
  106. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/index.js +79 -0
  107. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/md5-browser.js +223 -0
  108. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/md5.js +23 -0
  109. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/nil.js +8 -0
  110. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/parse.js +45 -0
  111. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/regex.js +8 -0
  112. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/rng-browser.js +26 -0
  113. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/rng.js +24 -0
  114. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/sha1-browser.js +104 -0
  115. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/sha1.js +23 -0
  116. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/stringify.js +39 -0
  117. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuid.min.js +1 -0
  118. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
  119. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
  120. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
  121. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
  122. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
  123. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
  124. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
  125. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
  126. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
  127. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/uuid-bin.js +85 -0
  128. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v1.js +107 -0
  129. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v3.js +16 -0
  130. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v35.js +78 -0
  131. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v4.js +37 -0
  132. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v5.js +16 -0
  133. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/validate.js +17 -0
  134. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/version.js +21 -0
  135. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/package.json +135 -0
  136. package/dist/app/api-destined-function/layers/nodejs/node_modules/uuid/wrapper.mjs +10 -0
  137. package/dist/app/api-destined-function/layers/nodejs/package.json +30 -0
  138. package/dist/app/api-destined-function/src/lib/lambda.d.ts +19 -0
  139. package/dist/app/api-destined-function/src/lib/lambda.d.ts.map +1 -0
  140. package/dist/app/api-destined-function/src/lib/lambda.js +34 -0
  141. package/dist/app/api-destined-function/src/lib/lambda.js.map +1 -0
  142. package/dist/index.d.ts +6 -0
  143. package/dist/index.d.ts.map +1 -0
  144. package/dist/index.js.map +1 -0
  145. package/dist/src/lib/common/construct.d.ts +81 -0
  146. package/dist/src/lib/common/construct.d.ts.map +1 -0
  147. package/dist/src/lib/common/construct.js +136 -0
  148. package/dist/src/lib/common/construct.js.map +1 -0
  149. package/dist/src/lib/common/index.d.ts +3 -0
  150. package/dist/src/lib/common/index.d.ts.map +1 -0
  151. package/dist/src/lib/common/index.js +15 -0
  152. package/dist/src/lib/common/index.js.map +1 -0
  153. package/dist/src/lib/common/stack.d.ts +55 -0
  154. package/dist/src/lib/common/stack.d.ts.map +1 -0
  155. package/dist/src/lib/common/stack.js +148 -0
  156. package/dist/src/lib/common/stack.js.map +1 -0
  157. package/dist/src/lib/construct/api-to-eventbridge-target/api-destination-event.d.ts +17 -0
  158. package/dist/src/lib/construct/api-to-eventbridge-target/api-destination-event.d.ts.map +1 -0
  159. package/dist/src/lib/construct/api-to-eventbridge-target/api-destination-event.js +18 -0
  160. package/dist/src/lib/construct/api-to-eventbridge-target/api-destination-event.js.map +1 -0
  161. package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-lambda.d.ts +20 -0
  162. package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-lambda.d.ts.map +1 -0
  163. package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-lambda.js +20 -0
  164. package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-lambda.js.map +1 -0
  165. package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-rest-api.d.ts +36 -0
  166. package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-rest-api.d.ts.map +1 -0
  167. package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-rest-api.js +30 -0
  168. package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-rest-api.js.map +1 -0
  169. package/dist/src/lib/construct/api-to-eventbridge-target/index.d.ts +5 -0
  170. package/dist/src/lib/construct/api-to-eventbridge-target/index.d.ts.map +1 -0
  171. package/dist/src/lib/construct/api-to-eventbridge-target/index.js +17 -0
  172. package/dist/src/lib/construct/api-to-eventbridge-target/index.js.map +1 -0
  173. package/dist/src/lib/construct/api-to-eventbridge-target/main.d.ts +135 -0
  174. package/dist/src/lib/construct/api-to-eventbridge-target/main.d.ts.map +1 -0
  175. package/dist/src/lib/construct/api-to-eventbridge-target/main.js +488 -0
  176. package/dist/src/lib/construct/api-to-eventbridge-target/main.js.map +1 -0
  177. package/dist/src/lib/construct/graphql-api-lambda/index.d.ts +2 -0
  178. package/dist/src/lib/construct/graphql-api-lambda/index.d.ts.map +1 -0
  179. package/dist/src/lib/construct/graphql-api-lambda/index.js +14 -0
  180. package/dist/src/lib/construct/graphql-api-lambda/index.js.map +1 -0
  181. package/dist/src/lib/construct/graphql-api-lambda/main.d.ts +113 -0
  182. package/dist/src/lib/construct/graphql-api-lambda/main.d.ts.map +1 -0
  183. package/dist/src/lib/construct/graphql-api-lambda/main.js +202 -0
  184. package/dist/src/lib/construct/graphql-api-lambda/main.js.map +1 -0
  185. package/dist/src/lib/construct/index.d.ts +5 -0
  186. package/dist/src/lib/construct/index.d.ts.map +1 -0
  187. package/dist/src/lib/construct/index.js +17 -0
  188. package/dist/src/lib/construct/index.js.map +1 -0
  189. package/dist/src/lib/construct/site-with-ecs-backend/index.d.ts +2 -0
  190. package/dist/src/lib/construct/site-with-ecs-backend/index.d.ts.map +1 -0
  191. package/dist/src/lib/construct/site-with-ecs-backend/index.js +14 -0
  192. package/dist/src/lib/construct/site-with-ecs-backend/index.js.map +1 -0
  193. package/dist/src/lib/construct/site-with-ecs-backend/main.d.ts +168 -0
  194. package/dist/src/lib/construct/site-with-ecs-backend/main.d.ts.map +1 -0
  195. package/dist/src/lib/construct/site-with-ecs-backend/main.js +328 -0
  196. package/dist/src/lib/construct/site-with-ecs-backend/main.js.map +1 -0
  197. package/dist/src/lib/construct/static-site/index.d.ts +2 -0
  198. package/dist/src/lib/construct/static-site/index.d.ts.map +1 -0
  199. package/dist/src/lib/construct/static-site/index.js +14 -0
  200. package/dist/src/lib/construct/static-site/index.js.map +1 -0
  201. package/dist/src/lib/construct/static-site/main.d.ts +95 -0
  202. package/dist/src/lib/construct/static-site/main.d.ts.map +1 -0
  203. package/dist/src/lib/construct/static-site/main.js +169 -0
  204. package/dist/src/lib/construct/static-site/main.js.map +1 -0
  205. package/dist/src/lib/manager/aws/acm-manager.d.ts +47 -0
  206. package/dist/src/lib/manager/aws/acm-manager.d.ts.map +1 -0
  207. package/dist/src/lib/manager/aws/acm-manager.js +91 -0
  208. package/dist/src/lib/manager/aws/acm-manager.js.map +1 -0
  209. package/dist/src/lib/manager/aws/api-manager.d.ts +44 -0
  210. package/dist/src/lib/manager/aws/api-manager.d.ts.map +1 -0
  211. package/dist/src/lib/manager/aws/api-manager.js +112 -0
  212. package/dist/src/lib/manager/aws/api-manager.js.map +1 -0
  213. package/dist/src/lib/manager/aws/app-config-manager.d.ts +66 -0
  214. package/dist/src/lib/manager/aws/app-config-manager.d.ts.map +1 -0
  215. package/dist/src/lib/manager/aws/app-config-manager.js +149 -0
  216. package/dist/src/lib/manager/aws/app-config-manager.js.map +1 -0
  217. package/dist/src/lib/manager/aws/cloudfront-manager.d.ts +113 -0
  218. package/dist/src/lib/manager/aws/cloudfront-manager.d.ts.map +1 -0
  219. package/dist/src/lib/manager/aws/cloudfront-manager.js +283 -0
  220. package/dist/src/lib/manager/aws/cloudfront-manager.js.map +1 -0
  221. package/dist/src/lib/manager/aws/cloudtrail-manager.d.ts +49 -0
  222. package/dist/src/lib/manager/aws/cloudtrail-manager.d.ts.map +1 -0
  223. package/dist/src/lib/manager/aws/cloudtrail-manager.js +100 -0
  224. package/dist/src/lib/manager/aws/cloudtrail-manager.js.map +1 -0
  225. package/dist/src/lib/manager/aws/cloudwatch-manager.d.ts +122 -0
  226. package/dist/src/lib/manager/aws/cloudwatch-manager.d.ts.map +1 -0
  227. package/dist/src/lib/manager/aws/cloudwatch-manager.js +353 -0
  228. package/dist/src/lib/manager/aws/cloudwatch-manager.js.map +1 -0
  229. package/dist/src/lib/manager/aws/codebuild-manager.d.ts +41 -0
  230. package/dist/src/lib/manager/aws/codebuild-manager.d.ts.map +1 -0
  231. package/dist/src/lib/manager/aws/codebuild-manager.js +95 -0
  232. package/dist/src/lib/manager/aws/codebuild-manager.js.map +1 -0
  233. package/dist/src/lib/manager/aws/dynamodb-manager.d.ts +33 -0
  234. package/dist/src/lib/manager/aws/dynamodb-manager.d.ts.map +1 -0
  235. package/dist/src/lib/manager/aws/dynamodb-manager.js +80 -0
  236. package/dist/src/lib/manager/aws/dynamodb-manager.js.map +1 -0
  237. package/dist/src/lib/manager/aws/ecr-manager.d.ts +32 -0
  238. package/dist/src/lib/manager/aws/ecr-manager.d.ts.map +1 -0
  239. package/dist/src/lib/manager/aws/ecr-manager.js +61 -0
  240. package/dist/src/lib/manager/aws/ecr-manager.js.map +1 -0
  241. package/dist/src/lib/manager/aws/ecs-manager.d.ts +49 -0
  242. package/dist/src/lib/manager/aws/ecs-manager.d.ts.map +1 -0
  243. package/dist/src/lib/manager/aws/ecs-manager.js +104 -0
  244. package/dist/src/lib/manager/aws/ecs-manager.js.map +1 -0
  245. package/dist/src/lib/manager/aws/eks-manager.d.ts +37 -0
  246. package/dist/src/lib/manager/aws/eks-manager.d.ts.map +1 -0
  247. package/dist/src/lib/manager/aws/eks-manager.js +110 -0
  248. package/dist/src/lib/manager/aws/eks-manager.js.map +1 -0
  249. package/dist/src/lib/manager/aws/elasticache-manager.d.ts +43 -0
  250. package/dist/src/lib/manager/aws/elasticache-manager.d.ts.map +1 -0
  251. package/dist/src/lib/manager/aws/elasticache-manager.js +103 -0
  252. package/dist/src/lib/manager/aws/elasticache-manager.js.map +1 -0
  253. package/dist/src/lib/manager/aws/event-manager.d.ts +68 -0
  254. package/dist/src/lib/manager/aws/event-manager.d.ts.map +1 -0
  255. package/dist/src/lib/manager/aws/event-manager.js +163 -0
  256. package/dist/src/lib/manager/aws/event-manager.js.map +1 -0
  257. package/dist/src/lib/manager/aws/iam-manager.d.ts +155 -0
  258. package/dist/src/lib/manager/aws/iam-manager.d.ts.map +1 -0
  259. package/dist/src/lib/manager/aws/iam-manager.js +381 -0
  260. package/dist/src/lib/manager/aws/iam-manager.js.map +1 -0
  261. package/dist/src/lib/manager/aws/index.d.ts +24 -0
  262. package/dist/src/lib/manager/aws/index.d.ts.map +1 -0
  263. package/dist/src/lib/manager/aws/index.js +36 -0
  264. package/dist/src/lib/manager/aws/index.js.map +1 -0
  265. package/dist/src/lib/manager/aws/lambda-manager.d.ts +95 -0
  266. package/dist/src/lib/manager/aws/lambda-manager.d.ts.map +1 -0
  267. package/dist/src/lib/manager/aws/lambda-manager.js +197 -0
  268. package/dist/src/lib/manager/aws/lambda-manager.js.map +1 -0
  269. package/dist/src/lib/manager/aws/log-manager.d.ts +52 -0
  270. package/dist/src/lib/manager/aws/log-manager.d.ts.map +1 -0
  271. package/dist/src/lib/manager/aws/log-manager.js +109 -0
  272. package/dist/src/lib/manager/aws/log-manager.js.map +1 -0
  273. package/dist/src/lib/manager/aws/route53-manager.d.ts +69 -0
  274. package/dist/src/lib/manager/aws/route53-manager.d.ts.map +1 -0
  275. package/dist/src/lib/manager/aws/route53-manager.js +159 -0
  276. package/dist/src/lib/manager/aws/route53-manager.js.map +1 -0
  277. package/dist/src/lib/manager/aws/s3-manager.d.ts +74 -0
  278. package/dist/src/lib/manager/aws/s3-manager.d.ts.map +1 -0
  279. package/dist/src/lib/manager/aws/s3-manager.js +203 -0
  280. package/dist/src/lib/manager/aws/s3-manager.js.map +1 -0
  281. package/dist/src/lib/manager/aws/secrets-manager.d.ts +58 -0
  282. package/dist/src/lib/manager/aws/secrets-manager.d.ts.map +1 -0
  283. package/dist/src/lib/manager/aws/secrets-manager.js +117 -0
  284. package/dist/src/lib/manager/aws/secrets-manager.js.map +1 -0
  285. package/dist/src/lib/manager/aws/sns-manager.d.ts +43 -0
  286. package/dist/src/lib/manager/aws/sns-manager.d.ts.map +1 -0
  287. package/dist/src/lib/manager/aws/sns-manager.js +91 -0
  288. package/dist/src/lib/manager/aws/sns-manager.js.map +1 -0
  289. package/dist/src/lib/manager/aws/ssm-manager.d.ts +61 -0
  290. package/dist/src/lib/manager/aws/ssm-manager.d.ts.map +1 -0
  291. package/dist/src/lib/manager/aws/ssm-manager.js +125 -0
  292. package/dist/src/lib/manager/aws/ssm-manager.js.map +1 -0
  293. package/dist/src/lib/manager/aws/vpc-manager.d.ts +46 -0
  294. package/dist/src/lib/manager/aws/vpc-manager.d.ts.map +1 -0
  295. package/dist/src/lib/manager/aws/vpc-manager.js +95 -0
  296. package/dist/src/lib/manager/aws/vpc-manager.js.map +1 -0
  297. package/dist/src/lib/manager/aws/waf-manager.d.ts +40 -0
  298. package/dist/src/lib/manager/aws/waf-manager.d.ts.map +1 -0
  299. package/dist/src/lib/manager/aws/waf-manager.js +90 -0
  300. package/dist/src/lib/manager/aws/waf-manager.js.map +1 -0
  301. package/dist/src/lib/manager/index.d.ts +2 -0
  302. package/dist/src/lib/manager/index.d.ts.map +1 -0
  303. package/dist/src/lib/manager/index.js +14 -0
  304. package/dist/src/lib/manager/index.js.map +1 -0
  305. package/dist/src/lib/types/aws/index.d.ts +487 -0
  306. package/dist/src/lib/types/aws/index.d.ts.map +1 -0
  307. package/dist/src/lib/types/aws/index.js +3 -0
  308. package/dist/src/lib/types/aws/index.js.map +1 -0
  309. package/dist/src/lib/types/index.d.ts +2 -0
  310. package/dist/src/lib/types/index.d.ts.map +1 -0
  311. package/dist/src/lib/types/index.js +14 -0
  312. package/dist/src/lib/types/index.js.map +1 -0
  313. package/dist/src/lib/utils/aws/index.d.ts +16 -0
  314. package/dist/src/lib/utils/aws/index.d.ts.map +1 -0
  315. package/dist/src/lib/utils/aws/index.js +50 -0
  316. package/dist/src/lib/utils/aws/index.js.map +1 -0
  317. package/dist/src/lib/utils/index.d.ts +63 -0
  318. package/dist/src/lib/utils/index.d.ts.map +1 -0
  319. package/dist/src/lib/utils/index.js +85 -0
  320. package/dist/src/lib/utils/index.js.map +1 -0
  321. package/package.json +8 -7
  322. package/src/lib/common/construct.ts +2 -0
  323. package/src/lib/manager/aws/elasticache-manager.ts +98 -0
  324. package/src/lib/manager/aws/index.ts +1 -0
  325. package/src/lib/types/aws/index.ts +7 -0
@@ -0,0 +1,96 @@
1
+ // Adapted from Chris Veness' SHA1 code at
2
+ // http://www.movable-type.co.uk/scripts/sha1.html
3
+ function f(s, x, y, z) {
4
+ switch (s) {
5
+ case 0:
6
+ return x & y ^ ~x & z;
7
+
8
+ case 1:
9
+ return x ^ y ^ z;
10
+
11
+ case 2:
12
+ return x & y ^ x & z ^ y & z;
13
+
14
+ case 3:
15
+ return x ^ y ^ z;
16
+ }
17
+ }
18
+
19
+ function ROTL(x, n) {
20
+ return x << n | x >>> 32 - n;
21
+ }
22
+
23
+ function sha1(bytes) {
24
+ var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];
25
+ var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];
26
+
27
+ if (typeof bytes === 'string') {
28
+ var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
29
+
30
+ bytes = [];
31
+
32
+ for (var i = 0; i < msg.length; ++i) {
33
+ bytes.push(msg.charCodeAt(i));
34
+ }
35
+ } else if (!Array.isArray(bytes)) {
36
+ // Convert Array-like to Array
37
+ bytes = Array.prototype.slice.call(bytes);
38
+ }
39
+
40
+ bytes.push(0x80);
41
+ var l = bytes.length / 4 + 2;
42
+ var N = Math.ceil(l / 16);
43
+ var M = new Array(N);
44
+
45
+ for (var _i = 0; _i < N; ++_i) {
46
+ var arr = new Uint32Array(16);
47
+
48
+ for (var j = 0; j < 16; ++j) {
49
+ arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3];
50
+ }
51
+
52
+ M[_i] = arr;
53
+ }
54
+
55
+ M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);
56
+ M[N - 1][14] = Math.floor(M[N - 1][14]);
57
+ M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;
58
+
59
+ for (var _i2 = 0; _i2 < N; ++_i2) {
60
+ var W = new Uint32Array(80);
61
+
62
+ for (var t = 0; t < 16; ++t) {
63
+ W[t] = M[_i2][t];
64
+ }
65
+
66
+ for (var _t = 16; _t < 80; ++_t) {
67
+ W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1);
68
+ }
69
+
70
+ var a = H[0];
71
+ var b = H[1];
72
+ var c = H[2];
73
+ var d = H[3];
74
+ var e = H[4];
75
+
76
+ for (var _t2 = 0; _t2 < 80; ++_t2) {
77
+ var s = Math.floor(_t2 / 20);
78
+ var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0;
79
+ e = d;
80
+ d = c;
81
+ c = ROTL(b, 30) >>> 0;
82
+ b = a;
83
+ a = T;
84
+ }
85
+
86
+ H[0] = H[0] + a >>> 0;
87
+ H[1] = H[1] + b >>> 0;
88
+ H[2] = H[2] + c >>> 0;
89
+ H[3] = H[3] + d >>> 0;
90
+ H[4] = H[4] + e >>> 0;
91
+ }
92
+
93
+ return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];
94
+ }
95
+
96
+ export default sha1;
@@ -0,0 +1,30 @@
1
+ import validate from './validate.js';
2
+ /**
3
+ * Convert array of 16 byte values to UUID string format of the form:
4
+ * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
5
+ */
6
+
7
+ var byteToHex = [];
8
+
9
+ for (var i = 0; i < 256; ++i) {
10
+ byteToHex.push((i + 0x100).toString(16).substr(1));
11
+ }
12
+
13
+ function stringify(arr) {
14
+ var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
15
+ // Note: Be careful editing this code! It's been tuned for performance
16
+ // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
17
+ var uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one
18
+ // of the following:
19
+ // - One or more input array values don't map to a hex octet (leading to
20
+ // "undefined" in the uuid)
21
+ // - Invalid input values for the RFC `version` or `variant` fields
22
+
23
+ if (!validate(uuid)) {
24
+ throw TypeError('Stringified UUID is invalid');
25
+ }
26
+
27
+ return uuid;
28
+ }
29
+
30
+ export default stringify;
@@ -0,0 +1,95 @@
1
+ import rng from './rng.js';
2
+ import stringify from './stringify.js'; // **`v1()` - Generate time-based UUID**
3
+ //
4
+ // Inspired by https://github.com/LiosK/UUID.js
5
+ // and http://docs.python.org/library/uuid.html
6
+
7
+ var _nodeId;
8
+
9
+ var _clockseq; // Previous uuid creation time
10
+
11
+
12
+ var _lastMSecs = 0;
13
+ var _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details
14
+
15
+ function v1(options, buf, offset) {
16
+ var i = buf && offset || 0;
17
+ var b = buf || new Array(16);
18
+ options = options || {};
19
+ var node = options.node || _nodeId;
20
+ var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not
21
+ // specified. We do this lazily to minimize issues related to insufficient
22
+ // system entropy. See #189
23
+
24
+ if (node == null || clockseq == null) {
25
+ var seedBytes = options.random || (options.rng || rng)();
26
+
27
+ if (node == null) {
28
+ // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
29
+ node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];
30
+ }
31
+
32
+ if (clockseq == null) {
33
+ // Per 4.2.2, randomize (14 bit) clockseq
34
+ clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
35
+ }
36
+ } // UUID timestamps are 100 nano-second units since the Gregorian epoch,
37
+ // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
38
+ // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
39
+ // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
40
+
41
+
42
+ var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock
43
+ // cycle to simulate higher resolution clock
44
+
45
+ var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)
46
+
47
+ var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression
48
+
49
+ if (dt < 0 && options.clockseq === undefined) {
50
+ clockseq = clockseq + 1 & 0x3fff;
51
+ } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
52
+ // time interval
53
+
54
+
55
+ if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
56
+ nsecs = 0;
57
+ } // Per 4.2.1.2 Throw error if too many uuids are requested
58
+
59
+
60
+ if (nsecs >= 10000) {
61
+ throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
62
+ }
63
+
64
+ _lastMSecs = msecs;
65
+ _lastNSecs = nsecs;
66
+ _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
67
+
68
+ msecs += 12219292800000; // `time_low`
69
+
70
+ var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
71
+ b[i++] = tl >>> 24 & 0xff;
72
+ b[i++] = tl >>> 16 & 0xff;
73
+ b[i++] = tl >>> 8 & 0xff;
74
+ b[i++] = tl & 0xff; // `time_mid`
75
+
76
+ var tmh = msecs / 0x100000000 * 10000 & 0xfffffff;
77
+ b[i++] = tmh >>> 8 & 0xff;
78
+ b[i++] = tmh & 0xff; // `time_high_and_version`
79
+
80
+ b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
81
+
82
+ b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
83
+
84
+ b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`
85
+
86
+ b[i++] = clockseq & 0xff; // `node`
87
+
88
+ for (var n = 0; n < 6; ++n) {
89
+ b[i + n] = node[n];
90
+ }
91
+
92
+ return buf || stringify(b);
93
+ }
94
+
95
+ export default v1;
@@ -0,0 +1,4 @@
1
+ import v35 from './v35.js';
2
+ import md5 from './md5.js';
3
+ var v3 = v35('v3', 0x30, md5);
4
+ export default v3;
@@ -0,0 +1,64 @@
1
+ import stringify from './stringify.js';
2
+ import parse from './parse.js';
3
+
4
+ function stringToBytes(str) {
5
+ str = unescape(encodeURIComponent(str)); // UTF8 escape
6
+
7
+ var bytes = [];
8
+
9
+ for (var i = 0; i < str.length; ++i) {
10
+ bytes.push(str.charCodeAt(i));
11
+ }
12
+
13
+ return bytes;
14
+ }
15
+
16
+ export var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
17
+ export var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
18
+ export default function (name, version, hashfunc) {
19
+ function generateUUID(value, namespace, buf, offset) {
20
+ if (typeof value === 'string') {
21
+ value = stringToBytes(value);
22
+ }
23
+
24
+ if (typeof namespace === 'string') {
25
+ namespace = parse(namespace);
26
+ }
27
+
28
+ if (namespace.length !== 16) {
29
+ throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');
30
+ } // Compute hash of namespace and value, Per 4.3
31
+ // Future: Use spread syntax when supported on all platforms, e.g. `bytes =
32
+ // hashfunc([...namespace, ... value])`
33
+
34
+
35
+ var bytes = new Uint8Array(16 + value.length);
36
+ bytes.set(namespace);
37
+ bytes.set(value, namespace.length);
38
+ bytes = hashfunc(bytes);
39
+ bytes[6] = bytes[6] & 0x0f | version;
40
+ bytes[8] = bytes[8] & 0x3f | 0x80;
41
+
42
+ if (buf) {
43
+ offset = offset || 0;
44
+
45
+ for (var i = 0; i < 16; ++i) {
46
+ buf[offset + i] = bytes[i];
47
+ }
48
+
49
+ return buf;
50
+ }
51
+
52
+ return stringify(bytes);
53
+ } // Function#name is not settable on some platforms (#270)
54
+
55
+
56
+ try {
57
+ generateUUID.name = name; // eslint-disable-next-line no-empty
58
+ } catch (err) {} // For CommonJS default export support
59
+
60
+
61
+ generateUUID.DNS = DNS;
62
+ generateUUID.URL = URL;
63
+ return generateUUID;
64
+ }
@@ -0,0 +1,24 @@
1
+ import rng from './rng.js';
2
+ import stringify from './stringify.js';
3
+
4
+ function v4(options, buf, offset) {
5
+ options = options || {};
6
+ var rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
7
+
8
+ rnds[6] = rnds[6] & 0x0f | 0x40;
9
+ rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided
10
+
11
+ if (buf) {
12
+ offset = offset || 0;
13
+
14
+ for (var i = 0; i < 16; ++i) {
15
+ buf[offset + i] = rnds[i];
16
+ }
17
+
18
+ return buf;
19
+ }
20
+
21
+ return stringify(rnds);
22
+ }
23
+
24
+ export default v4;
@@ -0,0 +1,4 @@
1
+ import v35 from './v35.js';
2
+ import sha1 from './sha1.js';
3
+ var v5 = v35('v5', 0x50, sha1);
4
+ export default v5;
@@ -0,0 +1,7 @@
1
+ import REGEX from './regex.js';
2
+
3
+ function validate(uuid) {
4
+ return typeof uuid === 'string' && REGEX.test(uuid);
5
+ }
6
+
7
+ export default validate;
@@ -0,0 +1,11 @@
1
+ import validate from './validate.js';
2
+
3
+ function version(uuid) {
4
+ if (!validate(uuid)) {
5
+ throw TypeError('Invalid UUID');
6
+ }
7
+
8
+ return parseInt(uuid.substr(14, 1), 16);
9
+ }
10
+
11
+ export default version;
@@ -0,0 +1,9 @@
1
+ export { default as v1 } from './v1.js';
2
+ export { default as v3 } from './v3.js';
3
+ export { default as v4 } from './v4.js';
4
+ export { default as v5 } from './v5.js';
5
+ export { default as NIL } from './nil.js';
6
+ export { default as version } from './version.js';
7
+ export { default as validate } from './validate.js';
8
+ export { default as stringify } from './stringify.js';
9
+ export { default as parse } from './parse.js';
@@ -0,0 +1,13 @@
1
+ import crypto from 'crypto';
2
+
3
+ function md5(bytes) {
4
+ if (Array.isArray(bytes)) {
5
+ bytes = Buffer.from(bytes);
6
+ } else if (typeof bytes === 'string') {
7
+ bytes = Buffer.from(bytes, 'utf8');
8
+ }
9
+
10
+ return crypto.createHash('md5').update(bytes).digest();
11
+ }
12
+
13
+ export default md5;
@@ -0,0 +1 @@
1
+ export default '00000000-0000-0000-0000-000000000000';
@@ -0,0 +1,35 @@
1
+ import validate from './validate.js';
2
+
3
+ function parse(uuid) {
4
+ if (!validate(uuid)) {
5
+ throw TypeError('Invalid UUID');
6
+ }
7
+
8
+ let v;
9
+ const arr = new Uint8Array(16); // Parse ########-....-....-....-............
10
+
11
+ arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;
12
+ arr[1] = v >>> 16 & 0xff;
13
+ arr[2] = v >>> 8 & 0xff;
14
+ arr[3] = v & 0xff; // Parse ........-####-....-....-............
15
+
16
+ arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;
17
+ arr[5] = v & 0xff; // Parse ........-....-####-....-............
18
+
19
+ arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;
20
+ arr[7] = v & 0xff; // Parse ........-....-....-####-............
21
+
22
+ arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;
23
+ arr[9] = v & 0xff; // Parse ........-....-....-....-############
24
+ // (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes)
25
+
26
+ arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;
27
+ arr[11] = v / 0x100000000 & 0xff;
28
+ arr[12] = v >>> 24 & 0xff;
29
+ arr[13] = v >>> 16 & 0xff;
30
+ arr[14] = v >>> 8 & 0xff;
31
+ arr[15] = v & 0xff;
32
+ return arr;
33
+ }
34
+
35
+ export default parse;
@@ -0,0 +1 @@
1
+ export default /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;
@@ -0,0 +1,12 @@
1
+ import crypto from 'crypto';
2
+ const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate
3
+
4
+ let poolPtr = rnds8Pool.length;
5
+ export default function rng() {
6
+ if (poolPtr > rnds8Pool.length - 16) {
7
+ crypto.randomFillSync(rnds8Pool);
8
+ poolPtr = 0;
9
+ }
10
+
11
+ return rnds8Pool.slice(poolPtr, poolPtr += 16);
12
+ }
@@ -0,0 +1,13 @@
1
+ import crypto from 'crypto';
2
+
3
+ function sha1(bytes) {
4
+ if (Array.isArray(bytes)) {
5
+ bytes = Buffer.from(bytes);
6
+ } else if (typeof bytes === 'string') {
7
+ bytes = Buffer.from(bytes, 'utf8');
8
+ }
9
+
10
+ return crypto.createHash('sha1').update(bytes).digest();
11
+ }
12
+
13
+ export default sha1;
@@ -0,0 +1,29 @@
1
+ import validate from './validate.js';
2
+ /**
3
+ * Convert array of 16 byte values to UUID string format of the form:
4
+ * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
5
+ */
6
+
7
+ const byteToHex = [];
8
+
9
+ for (let i = 0; i < 256; ++i) {
10
+ byteToHex.push((i + 0x100).toString(16).substr(1));
11
+ }
12
+
13
+ function stringify(arr, offset = 0) {
14
+ // Note: Be careful editing this code! It's been tuned for performance
15
+ // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
16
+ const uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one
17
+ // of the following:
18
+ // - One or more input array values don't map to a hex octet (leading to
19
+ // "undefined" in the uuid)
20
+ // - Invalid input values for the RFC `version` or `variant` fields
21
+
22
+ if (!validate(uuid)) {
23
+ throw TypeError('Stringified UUID is invalid');
24
+ }
25
+
26
+ return uuid;
27
+ }
28
+
29
+ export default stringify;
@@ -0,0 +1,95 @@
1
+ import rng from './rng.js';
2
+ import stringify from './stringify.js'; // **`v1()` - Generate time-based UUID**
3
+ //
4
+ // Inspired by https://github.com/LiosK/UUID.js
5
+ // and http://docs.python.org/library/uuid.html
6
+
7
+ let _nodeId;
8
+
9
+ let _clockseq; // Previous uuid creation time
10
+
11
+
12
+ let _lastMSecs = 0;
13
+ let _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details
14
+
15
+ function v1(options, buf, offset) {
16
+ let i = buf && offset || 0;
17
+ const b = buf || new Array(16);
18
+ options = options || {};
19
+ let node = options.node || _nodeId;
20
+ let clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not
21
+ // specified. We do this lazily to minimize issues related to insufficient
22
+ // system entropy. See #189
23
+
24
+ if (node == null || clockseq == null) {
25
+ const seedBytes = options.random || (options.rng || rng)();
26
+
27
+ if (node == null) {
28
+ // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
29
+ node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];
30
+ }
31
+
32
+ if (clockseq == null) {
33
+ // Per 4.2.2, randomize (14 bit) clockseq
34
+ clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
35
+ }
36
+ } // UUID timestamps are 100 nano-second units since the Gregorian epoch,
37
+ // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
38
+ // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
39
+ // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
40
+
41
+
42
+ let msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock
43
+ // cycle to simulate higher resolution clock
44
+
45
+ let nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)
46
+
47
+ const dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression
48
+
49
+ if (dt < 0 && options.clockseq === undefined) {
50
+ clockseq = clockseq + 1 & 0x3fff;
51
+ } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
52
+ // time interval
53
+
54
+
55
+ if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
56
+ nsecs = 0;
57
+ } // Per 4.2.1.2 Throw error if too many uuids are requested
58
+
59
+
60
+ if (nsecs >= 10000) {
61
+ throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
62
+ }
63
+
64
+ _lastMSecs = msecs;
65
+ _lastNSecs = nsecs;
66
+ _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
67
+
68
+ msecs += 12219292800000; // `time_low`
69
+
70
+ const tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
71
+ b[i++] = tl >>> 24 & 0xff;
72
+ b[i++] = tl >>> 16 & 0xff;
73
+ b[i++] = tl >>> 8 & 0xff;
74
+ b[i++] = tl & 0xff; // `time_mid`
75
+
76
+ const tmh = msecs / 0x100000000 * 10000 & 0xfffffff;
77
+ b[i++] = tmh >>> 8 & 0xff;
78
+ b[i++] = tmh & 0xff; // `time_high_and_version`
79
+
80
+ b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
81
+
82
+ b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
83
+
84
+ b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`
85
+
86
+ b[i++] = clockseq & 0xff; // `node`
87
+
88
+ for (let n = 0; n < 6; ++n) {
89
+ b[i + n] = node[n];
90
+ }
91
+
92
+ return buf || stringify(b);
93
+ }
94
+
95
+ export default v1;
@@ -0,0 +1,4 @@
1
+ import v35 from './v35.js';
2
+ import md5 from './md5.js';
3
+ const v3 = v35('v3', 0x30, md5);
4
+ export default v3;
@@ -0,0 +1,64 @@
1
+ import stringify from './stringify.js';
2
+ import parse from './parse.js';
3
+
4
+ function stringToBytes(str) {
5
+ str = unescape(encodeURIComponent(str)); // UTF8 escape
6
+
7
+ const bytes = [];
8
+
9
+ for (let i = 0; i < str.length; ++i) {
10
+ bytes.push(str.charCodeAt(i));
11
+ }
12
+
13
+ return bytes;
14
+ }
15
+
16
+ export const DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
17
+ export const URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
18
+ export default function (name, version, hashfunc) {
19
+ function generateUUID(value, namespace, buf, offset) {
20
+ if (typeof value === 'string') {
21
+ value = stringToBytes(value);
22
+ }
23
+
24
+ if (typeof namespace === 'string') {
25
+ namespace = parse(namespace);
26
+ }
27
+
28
+ if (namespace.length !== 16) {
29
+ throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');
30
+ } // Compute hash of namespace and value, Per 4.3
31
+ // Future: Use spread syntax when supported on all platforms, e.g. `bytes =
32
+ // hashfunc([...namespace, ... value])`
33
+
34
+
35
+ let bytes = new Uint8Array(16 + value.length);
36
+ bytes.set(namespace);
37
+ bytes.set(value, namespace.length);
38
+ bytes = hashfunc(bytes);
39
+ bytes[6] = bytes[6] & 0x0f | version;
40
+ bytes[8] = bytes[8] & 0x3f | 0x80;
41
+
42
+ if (buf) {
43
+ offset = offset || 0;
44
+
45
+ for (let i = 0; i < 16; ++i) {
46
+ buf[offset + i] = bytes[i];
47
+ }
48
+
49
+ return buf;
50
+ }
51
+
52
+ return stringify(bytes);
53
+ } // Function#name is not settable on some platforms (#270)
54
+
55
+
56
+ try {
57
+ generateUUID.name = name; // eslint-disable-next-line no-empty
58
+ } catch (err) {} // For CommonJS default export support
59
+
60
+
61
+ generateUUID.DNS = DNS;
62
+ generateUUID.URL = URL;
63
+ return generateUUID;
64
+ }
@@ -0,0 +1,24 @@
1
+ import rng from './rng.js';
2
+ import stringify from './stringify.js';
3
+
4
+ function v4(options, buf, offset) {
5
+ options = options || {};
6
+ const rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
7
+
8
+ rnds[6] = rnds[6] & 0x0f | 0x40;
9
+ rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided
10
+
11
+ if (buf) {
12
+ offset = offset || 0;
13
+
14
+ for (let i = 0; i < 16; ++i) {
15
+ buf[offset + i] = rnds[i];
16
+ }
17
+
18
+ return buf;
19
+ }
20
+
21
+ return stringify(rnds);
22
+ }
23
+
24
+ export default v4;
@@ -0,0 +1,4 @@
1
+ import v35 from './v35.js';
2
+ import sha1 from './sha1.js';
3
+ const v5 = v35('v5', 0x50, sha1);
4
+ export default v5;
@@ -0,0 +1,7 @@
1
+ import REGEX from './regex.js';
2
+
3
+ function validate(uuid) {
4
+ return typeof uuid === 'string' && REGEX.test(uuid);
5
+ }
6
+
7
+ export default validate;