immosquare-cleaner 0.1.32 → 0.1.33

Sign up to get free protection for your applications and to get access to all the features.
Files changed (376) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/node_modules/@eslint/eslintrc/README.md +15 -4
  4. data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +57 -18
  5. data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -1
  6. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +60 -34
  7. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -1
  8. data/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +3 -16
  9. data/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +63 -18
  10. data/node_modules/@eslint/eslintrc/package.json +4 -4
  11. data/node_modules/@eslint/js/package.json +2 -2
  12. data/node_modules/@eslint/js/src/configs/eslint-all.js +9 -1
  13. data/node_modules/@eslint/js/src/configs/eslint-recommended.js +12 -5
  14. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +201 -0
  15. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/README.md +105 -0
  16. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +384 -0
  17. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +27 -0
  18. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  19. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  20. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js +65 -0
  21. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.js +315 -0
  22. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json +74 -0
  23. data/node_modules/@humanwhocodes/config-array/api.js +114 -16
  24. data/node_modules/@humanwhocodes/config-array/package.json +5 -3
  25. data/node_modules/@humanwhocodes/object-schema/CHANGELOG.md +7 -0
  26. data/node_modules/@humanwhocodes/object-schema/package.json +6 -1
  27. data/node_modules/@humanwhocodes/retry/LICENSE +201 -0
  28. data/node_modules/@humanwhocodes/retry/README.md +122 -0
  29. data/node_modules/@humanwhocodes/retry/dist/retrier.cjs +267 -0
  30. data/node_modules/@humanwhocodes/retry/dist/retrier.d.ts +24 -0
  31. data/node_modules/@humanwhocodes/retry/dist/retrier.js +265 -0
  32. data/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -0
  33. data/node_modules/@humanwhocodes/retry/dist/retrier.mjs +265 -0
  34. data/node_modules/@humanwhocodes/retry/package.json +74 -0
  35. data/node_modules/@types/semver-utils/LICENSE +21 -0
  36. data/node_modules/@types/semver-utils/README.md +34 -0
  37. data/node_modules/@types/semver-utils/index.d.ts +15 -0
  38. data/node_modules/@types/semver-utils/package.json +25 -0
  39. data/node_modules/acorn/CHANGELOG.md +36 -0
  40. data/node_modules/acorn/README.md +8 -3
  41. data/node_modules/acorn/dist/acorn.d.mts +857 -26
  42. data/node_modules/acorn/dist/acorn.d.ts +833 -268
  43. data/node_modules/acorn/dist/acorn.js +33 -21
  44. data/node_modules/acorn/dist/acorn.mjs +33 -21
  45. data/node_modules/acorn/package.json +1 -1
  46. data/node_modules/cacheable-request/node_modules/keyv/README.md +429 -0
  47. data/node_modules/cacheable-request/node_modules/keyv/package.json +57 -0
  48. data/node_modules/cacheable-request/node_modules/keyv/src/index.d.ts +112 -0
  49. data/node_modules/cacheable-request/node_modules/keyv/src/index.js +264 -0
  50. data/node_modules/doctrine/CHANGELOG.md +0 -7
  51. data/node_modules/doctrine/lib/doctrine.js +1 -0
  52. data/node_modules/doctrine/package.json +8 -9
  53. data/node_modules/eslint/README.md +31 -28
  54. data/node_modules/eslint/bin/eslint.js +4 -3
  55. data/node_modules/eslint/conf/ecma-version.js +16 -0
  56. data/node_modules/eslint/conf/globals.js +1 -0
  57. data/node_modules/eslint/conf/rule-type-list.json +3 -1
  58. data/node_modules/eslint/lib/api.js +7 -11
  59. data/node_modules/eslint/lib/cli-engine/cli-engine.js +14 -3
  60. data/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +1 -29
  61. data/node_modules/eslint/lib/cli-engine/lint-result-cache.js +2 -2
  62. data/node_modules/eslint/lib/cli.js +115 -36
  63. data/node_modules/eslint/lib/config/default-config.js +3 -0
  64. data/node_modules/eslint/lib/config/flat-config-array.js +110 -24
  65. data/node_modules/eslint/lib/config/flat-config-helpers.js +41 -20
  66. data/node_modules/eslint/lib/config/flat-config-schema.js +1 -7
  67. data/node_modules/eslint/lib/config/rule-validator.js +42 -6
  68. data/node_modules/eslint/lib/eslint/eslint-helpers.js +116 -58
  69. data/node_modules/eslint/lib/eslint/eslint.js +892 -377
  70. data/node_modules/eslint/lib/eslint/index.js +2 -2
  71. data/node_modules/eslint/lib/eslint/legacy-eslint.js +728 -0
  72. data/node_modules/eslint/lib/linter/apply-disable-directives.js +59 -31
  73. data/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +0 -1
  74. data/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +32 -30
  75. data/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +1 -1
  76. data/node_modules/eslint/lib/linter/config-comment-parser.js +8 -11
  77. data/node_modules/eslint/lib/linter/index.js +1 -3
  78. data/node_modules/eslint/lib/linter/interpolate.js +24 -2
  79. data/node_modules/eslint/lib/linter/linter.js +428 -207
  80. data/node_modules/eslint/lib/linter/report-translator.js +3 -3
  81. data/node_modules/eslint/lib/linter/rules.js +6 -15
  82. data/node_modules/eslint/lib/linter/source-code-fixer.js +1 -1
  83. data/node_modules/eslint/lib/linter/timing.js +16 -8
  84. data/node_modules/eslint/lib/options.js +35 -3
  85. data/node_modules/eslint/lib/rule-tester/index.js +3 -1
  86. data/node_modules/eslint/lib/rule-tester/rule-tester.js +424 -347
  87. data/node_modules/eslint/lib/rules/array-bracket-newline.js +1 -1
  88. data/node_modules/eslint/lib/rules/array-bracket-spacing.js +1 -1
  89. data/node_modules/eslint/lib/rules/block-scoped-var.js +1 -1
  90. data/node_modules/eslint/lib/rules/callback-return.js +2 -2
  91. data/node_modules/eslint/lib/rules/camelcase.js +3 -5
  92. data/node_modules/eslint/lib/rules/capitalized-comments.js +10 -7
  93. data/node_modules/eslint/lib/rules/comma-dangle.js +1 -1
  94. data/node_modules/eslint/lib/rules/comma-style.js +2 -2
  95. data/node_modules/eslint/lib/rules/complexity.js +14 -1
  96. data/node_modules/eslint/lib/rules/constructor-super.js +99 -100
  97. data/node_modules/eslint/lib/rules/default-case.js +1 -1
  98. data/node_modules/eslint/lib/rules/eol-last.js +2 -2
  99. data/node_modules/eslint/lib/rules/function-paren-newline.js +2 -2
  100. data/node_modules/eslint/lib/rules/indent-legacy.js +5 -5
  101. data/node_modules/eslint/lib/rules/indent.js +5 -5
  102. data/node_modules/eslint/lib/rules/index.js +1 -2
  103. data/node_modules/eslint/lib/rules/key-spacing.js +2 -2
  104. data/node_modules/eslint/lib/rules/line-comment-position.js +1 -1
  105. data/node_modules/eslint/lib/rules/lines-around-directive.js +2 -2
  106. data/node_modules/eslint/lib/rules/max-depth.js +1 -1
  107. data/node_modules/eslint/lib/rules/max-len.js +3 -3
  108. data/node_modules/eslint/lib/rules/max-lines.js +3 -3
  109. data/node_modules/eslint/lib/rules/max-nested-callbacks.js +1 -1
  110. data/node_modules/eslint/lib/rules/max-params.js +1 -1
  111. data/node_modules/eslint/lib/rules/max-statements.js +1 -1
  112. data/node_modules/eslint/lib/rules/multiline-comment-style.js +7 -7
  113. data/node_modules/eslint/lib/rules/new-cap.js +1 -1
  114. data/node_modules/eslint/lib/rules/newline-after-var.js +1 -1
  115. data/node_modules/eslint/lib/rules/newline-before-return.js +1 -1
  116. data/node_modules/eslint/lib/rules/no-case-declarations.js +13 -1
  117. data/node_modules/eslint/lib/rules/no-constant-binary-expression.js +7 -8
  118. data/node_modules/eslint/lib/rules/no-constant-condition.js +18 -7
  119. data/node_modules/eslint/lib/rules/no-constructor-return.js +2 -2
  120. data/node_modules/eslint/lib/rules/no-dupe-class-members.js +2 -2
  121. data/node_modules/eslint/lib/rules/no-else-return.js +1 -1
  122. data/node_modules/eslint/lib/rules/no-empty-function.js +2 -2
  123. data/node_modules/eslint/lib/rules/no-empty-static-block.js +1 -1
  124. data/node_modules/eslint/lib/rules/no-extend-native.js +1 -2
  125. data/node_modules/eslint/lib/rules/no-extra-semi.js +1 -1
  126. data/node_modules/eslint/lib/rules/no-fallthrough.js +41 -16
  127. data/node_modules/eslint/lib/rules/no-implicit-coercion.js +66 -24
  128. data/node_modules/eslint/lib/rules/no-inner-declarations.js +23 -2
  129. data/node_modules/eslint/lib/rules/no-invalid-regexp.js +1 -1
  130. data/node_modules/eslint/lib/rules/no-invalid-this.js +1 -1
  131. data/node_modules/eslint/lib/rules/no-lone-blocks.js +3 -3
  132. data/node_modules/eslint/lib/rules/no-loss-of-precision.js +1 -1
  133. data/node_modules/eslint/lib/rules/no-misleading-character-class.js +225 -69
  134. data/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +1 -1
  135. data/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +1 -1
  136. data/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +1 -1
  137. data/node_modules/eslint/lib/rules/no-new-symbol.js +8 -1
  138. data/node_modules/eslint/lib/rules/no-restricted-globals.js +1 -1
  139. data/node_modules/eslint/lib/rules/no-restricted-imports.js +186 -40
  140. data/node_modules/eslint/lib/rules/no-restricted-modules.js +2 -2
  141. data/node_modules/eslint/lib/rules/no-return-await.js +1 -1
  142. data/node_modules/eslint/lib/rules/no-sequences.js +1 -0
  143. data/node_modules/eslint/lib/rules/no-this-before-super.js +45 -13
  144. data/node_modules/eslint/lib/rules/no-trailing-spaces.js +2 -3
  145. data/node_modules/eslint/lib/rules/no-unneeded-ternary.js +1 -1
  146. data/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +1 -1
  147. data/node_modules/eslint/lib/rules/no-unused-private-class-members.js +1 -1
  148. data/node_modules/eslint/lib/rules/no-unused-vars.js +197 -36
  149. data/node_modules/eslint/lib/rules/no-useless-assignment.js +566 -0
  150. data/node_modules/eslint/lib/rules/no-useless-backreference.js +1 -1
  151. data/node_modules/eslint/lib/rules/no-useless-computed-key.js +2 -2
  152. data/node_modules/eslint/lib/rules/no-useless-return.js +7 -2
  153. data/node_modules/eslint/lib/rules/object-curly-spacing.js +3 -3
  154. data/node_modules/eslint/lib/rules/object-property-newline.js +1 -1
  155. data/node_modules/eslint/lib/rules/one-var.js +5 -5
  156. data/node_modules/eslint/lib/rules/padded-blocks.js +7 -7
  157. data/node_modules/eslint/lib/rules/prefer-arrow-callback.js +3 -3
  158. data/node_modules/eslint/lib/rules/prefer-reflect.js +1 -1
  159. data/node_modules/eslint/lib/rules/prefer-regex-literals.js +1 -1
  160. data/node_modules/eslint/lib/rules/prefer-template.js +1 -1
  161. data/node_modules/eslint/lib/rules/radix.js +2 -2
  162. data/node_modules/eslint/lib/rules/semi-style.js +1 -1
  163. data/node_modules/eslint/lib/rules/sort-imports.js +1 -1
  164. data/node_modules/eslint/lib/rules/sort-keys.js +1 -1
  165. data/node_modules/eslint/lib/rules/sort-vars.js +1 -1
  166. data/node_modules/eslint/lib/rules/space-unary-ops.js +1 -1
  167. data/node_modules/eslint/lib/rules/strict.js +1 -1
  168. data/node_modules/eslint/lib/rules/use-isnan.js +101 -7
  169. data/node_modules/eslint/lib/rules/utils/ast-utils.js +16 -7
  170. data/node_modules/eslint/lib/rules/utils/char-source.js +240 -0
  171. data/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +1 -1
  172. data/node_modules/eslint/lib/rules/utils/unicode/index.js +9 -4
  173. data/node_modules/eslint/lib/rules/yield-star-spacing.js +1 -1
  174. data/node_modules/eslint/lib/shared/runtime-info.js +1 -0
  175. data/node_modules/eslint/lib/shared/serialization.js +55 -0
  176. data/node_modules/eslint/lib/shared/stats.js +30 -0
  177. data/node_modules/eslint/lib/shared/string-utils.js +9 -11
  178. data/node_modules/eslint/lib/shared/types.js +35 -1
  179. data/node_modules/eslint/lib/source-code/index.js +3 -1
  180. data/node_modules/eslint/lib/source-code/source-code.js +299 -85
  181. data/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +3 -3
  182. data/node_modules/eslint/lib/source-code/token-store/cursors.js +4 -2
  183. data/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +3 -3
  184. data/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +3 -3
  185. data/node_modules/eslint/lib/source-code/token-store/index.js +2 -2
  186. data/node_modules/eslint/lib/unsupported-api.js +3 -5
  187. data/node_modules/eslint/messages/no-config-found.js +1 -1
  188. data/node_modules/eslint/messages/plugin-conflict.js +1 -1
  189. data/node_modules/eslint/messages/plugin-invalid.js +1 -1
  190. data/node_modules/eslint/messages/plugin-missing.js +1 -1
  191. data/node_modules/eslint/package.json +32 -29
  192. data/node_modules/eslint-scope/README.md +23 -2
  193. data/node_modules/eslint-scope/dist/eslint-scope.cjs +84 -58
  194. data/node_modules/eslint-scope/lib/index.js +0 -3
  195. data/node_modules/eslint-scope/lib/pattern-visitor.js +4 -3
  196. data/node_modules/eslint-scope/lib/referencer.js +13 -11
  197. data/node_modules/eslint-scope/lib/scope-manager.js +2 -8
  198. data/node_modules/eslint-scope/lib/scope.js +64 -43
  199. data/node_modules/eslint-scope/lib/version.js +1 -1
  200. data/node_modules/eslint-scope/package.json +21 -19
  201. data/node_modules/eslint-visitor-keys/README.md +1 -1
  202. data/node_modules/eslint-visitor-keys/package.json +2 -2
  203. data/node_modules/espree/README.md +1 -1
  204. data/node_modules/espree/dist/espree.cjs +1 -1
  205. data/node_modules/espree/lib/version.js +1 -1
  206. data/node_modules/espree/package.json +18 -20
  207. data/node_modules/file-entry-cache/LICENSE +1 -1
  208. data/node_modules/file-entry-cache/README.md +6 -3
  209. data/node_modules/file-entry-cache/package.json +19 -43
  210. data/node_modules/flat-cache/README.md +8 -6
  211. data/node_modules/flat-cache/changelog.md +155 -205
  212. data/node_modules/flat-cache/package.json +16 -39
  213. data/node_modules/flat-cache/src/cache.js +22 -26
  214. data/node_modules/flat-cache/src/del.js +28 -11
  215. data/node_modules/flat-cache/src/utils.js +39 -41
  216. data/node_modules/globals/globals.json +25 -0
  217. data/node_modules/globals/index.d.ts +2074 -3
  218. data/node_modules/globals/package.json +10 -7
  219. data/node_modules/globals/readme.md +2 -14
  220. data/node_modules/keyv/package.json +4 -4
  221. data/node_modules/keyv/src/index.js +6 -11
  222. data/node_modules/npm-check-updates/build/cli.js +22 -21
  223. data/node_modules/npm-check-updates/build/cli.js.map +1 -1
  224. data/node_modules/npm-check-updates/build/index-5sFb3Tvv.js +66 -0
  225. data/node_modules/npm-check-updates/build/index-5sFb3Tvv.js.map +1 -0
  226. data/node_modules/npm-check-updates/build/index-BmUFwMVL.js +6 -0
  227. data/node_modules/npm-check-updates/build/index-BmUFwMVL.js.map +1 -0
  228. data/node_modules/npm-check-updates/build/index.d.ts +5 -2
  229. data/node_modules/npm-check-updates/build/index.js +560 -1
  230. data/node_modules/npm-check-updates/build/index.js.map +1 -1
  231. data/node_modules/npm-check-updates/build/package.json +4 -3
  232. data/node_modules/npm-check-updates/build/src/index.js +1 -1
  233. data/node_modules/npm-check-updates/build/src/index.js.map +1 -1
  234. data/node_modules/npm-check-updates/build/src/lib/libnpmconfig/index.js +2 -2
  235. data/node_modules/npm-check-updates/build/src/lib/libnpmconfig/index.js.map +1 -1
  236. data/node_modules/npm-check-updates/build/src/package-managers/bun.js +0 -6
  237. data/node_modules/npm-check-updates/build/src/package-managers/bun.js.map +1 -1
  238. data/node_modules/npm-check-updates/package.json +4 -3
  239. data/node_modules/type-fest/index.d.ts +95 -2
  240. data/node_modules/type-fest/package.json +12 -18
  241. data/node_modules/type-fest/readme.md +299 -52
  242. data/node_modules/type-fest/source/async-return-type.d.ts +4 -2
  243. data/node_modules/type-fest/source/asyncify.d.ts +5 -3
  244. data/node_modules/type-fest/source/basic.d.ts +21 -43
  245. data/node_modules/type-fest/{ts41 → source}/camel-case.d.ts +18 -17
  246. data/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +54 -0
  247. data/node_modules/type-fest/source/camel-cased-properties.d.ts +36 -0
  248. data/node_modules/type-fest/source/conditional-except.d.ts +6 -4
  249. data/node_modules/type-fest/source/conditional-keys.d.ts +5 -1
  250. data/node_modules/type-fest/source/conditional-pick.d.ts +5 -3
  251. data/node_modules/type-fest/{ts41 → source}/delimiter-case.d.ts +16 -8
  252. data/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +60 -0
  253. data/node_modules/type-fest/source/delimiter-cased-properties.d.ts +37 -0
  254. data/node_modules/type-fest/source/entries.d.ts +8 -3
  255. data/node_modules/type-fest/source/entry.d.ts +8 -3
  256. data/node_modules/type-fest/source/exact.d.ts +73 -0
  257. data/node_modules/type-fest/source/except.d.ts +38 -3
  258. data/node_modules/type-fest/source/fixed-length-array.d.ts +6 -1
  259. data/node_modules/type-fest/source/get.d.ts +184 -0
  260. data/node_modules/type-fest/source/has-optional-keys.d.ts +21 -0
  261. data/node_modules/type-fest/source/has-required-keys.d.ts +59 -0
  262. data/node_modules/type-fest/source/includes.d.ts +22 -0
  263. data/node_modules/type-fest/source/internal.d.ts +59 -0
  264. data/node_modules/type-fest/source/invariant-of.d.ts +76 -0
  265. data/node_modules/type-fest/source/iterable-element.d.ts +8 -0
  266. data/node_modules/type-fest/source/join.d.ts +30 -0
  267. data/node_modules/type-fest/source/jsonify.d.ts +90 -0
  268. data/node_modules/type-fest/{ts41 → source}/kebab-case.d.ts +7 -5
  269. data/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +47 -0
  270. data/node_modules/type-fest/source/kebab-cased-properties.d.ts +30 -0
  271. data/node_modules/type-fest/source/last-array-element.d.ts +28 -0
  272. data/node_modules/type-fest/source/literal-to-primitive.d.ts +36 -0
  273. data/node_modules/type-fest/source/literal-union.d.ts +7 -5
  274. data/node_modules/type-fest/source/merge-exclusive.d.ts +3 -1
  275. data/node_modules/type-fest/source/merge.d.ts +8 -3
  276. data/node_modules/type-fest/source/multidimensional-array.d.ts +43 -0
  277. data/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +47 -0
  278. data/node_modules/type-fest/source/mutable.d.ts +4 -21
  279. data/node_modules/type-fest/source/numeric.d.ts +170 -0
  280. data/node_modules/type-fest/source/observable-like.d.ts +62 -0
  281. data/node_modules/type-fest/source/opaque.d.ts +45 -3
  282. data/node_modules/type-fest/source/optional-keys-of.d.ts +38 -0
  283. data/node_modules/type-fest/source/package-json.d.ts +64 -12
  284. data/node_modules/type-fest/source/partial-deep.d.ts +57 -16
  285. data/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +70 -0
  286. data/node_modules/type-fest/{ts41 → source}/pascal-case.d.ts +6 -4
  287. data/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +54 -0
  288. data/node_modules/type-fest/source/pascal-cased-properties.d.ts +34 -0
  289. data/node_modules/type-fest/source/primitive.d.ts +13 -0
  290. data/node_modules/type-fest/source/promisable.d.ts +5 -3
  291. data/node_modules/type-fest/source/promise-value.d.ts +9 -7
  292. data/node_modules/type-fest/source/readonly-deep.d.ts +33 -7
  293. data/node_modules/type-fest/source/readonly-tuple.d.ts +41 -0
  294. data/node_modules/type-fest/source/remove-index-signature.d.ts +104 -0
  295. data/node_modules/type-fest/source/replace.d.ts +67 -0
  296. data/node_modules/type-fest/source/require-all-or-none.d.ts +36 -0
  297. data/node_modules/type-fest/source/require-at-least-one.d.ts +5 -3
  298. data/node_modules/type-fest/source/require-exactly-one.d.ts +4 -5
  299. data/node_modules/type-fest/source/required-keys-of.d.ts +29 -0
  300. data/node_modules/type-fest/source/schema.d.ts +72 -0
  301. data/node_modules/type-fest/source/screaming-snake-case.d.ts +33 -0
  302. data/node_modules/type-fest/source/set-non-nullable.d.ts +35 -0
  303. data/node_modules/type-fest/source/set-optional.d.ts +12 -11
  304. data/node_modules/type-fest/source/set-required.d.ts +12 -11
  305. data/node_modules/type-fest/source/set-return-type.d.ts +3 -1
  306. data/node_modules/type-fest/source/simplify.d.ts +83 -0
  307. data/node_modules/type-fest/{ts41 → source}/snake-case.d.ts +7 -4
  308. data/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +47 -0
  309. data/node_modules/type-fest/source/snake-cased-properties.d.ts +30 -0
  310. data/node_modules/type-fest/source/split.d.ts +29 -0
  311. data/node_modules/type-fest/source/spread.d.ts +85 -0
  312. data/node_modules/type-fest/source/string-key-of.d.ts +25 -0
  313. data/node_modules/type-fest/source/stringified.d.ts +3 -1
  314. data/node_modules/type-fest/source/trim.d.ts +25 -0
  315. data/node_modules/type-fest/source/tsconfig-json.d.ts +316 -14
  316. data/node_modules/type-fest/source/typed-array.d.ts +17 -0
  317. data/node_modules/type-fest/source/union-to-intersection.d.ts +4 -2
  318. data/node_modules/type-fest/source/value-of.d.ts +3 -1
  319. data/node_modules/type-fest/source/writable.d.ts +40 -0
  320. data/package.json +2 -2
  321. metadata +86 -63
  322. data/linters/rubocop-2.7.6.yml +0 -86
  323. data/node_modules/@humanwhocodes/object-schema/tests/merge-strategy.js +0 -66
  324. data/node_modules/@humanwhocodes/object-schema/tests/object-schema.js +0 -659
  325. data/node_modules/@humanwhocodes/object-schema/tests/validation-strategy.js +0 -186
  326. data/node_modules/eslint/conf/config-schema.js +0 -93
  327. data/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +0 -60
  328. data/node_modules/eslint/lib/cli-engine/formatters/compact.js +0 -60
  329. data/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +0 -41
  330. data/node_modules/eslint/lib/cli-engine/formatters/junit.js +0 -82
  331. data/node_modules/eslint/lib/cli-engine/formatters/tap.js +0 -95
  332. data/node_modules/eslint/lib/cli-engine/formatters/unix.js +0 -58
  333. data/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +0 -63
  334. data/node_modules/eslint/lib/cli-engine/xml-escape.js +0 -34
  335. data/node_modules/eslint/lib/eslint/flat-eslint.js +0 -1155
  336. data/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +0 -1131
  337. data/node_modules/eslint/lib/rules/require-jsdoc.js +0 -122
  338. data/node_modules/eslint/lib/rules/utils/patterns/letters.js +0 -36
  339. data/node_modules/eslint/lib/rules/valid-jsdoc.js +0 -516
  340. data/node_modules/eslint/lib/shared/config-validator.js +0 -347
  341. data/node_modules/eslint/lib/shared/deprecation-warnings.js +0 -58
  342. data/node_modules/eslint/lib/shared/relative-module-resolver.js +0 -50
  343. data/node_modules/file-entry-cache/changelog.md +0 -163
  344. data/node_modules/flat-cache/node_modules/rimraf/CHANGELOG.md +0 -65
  345. data/node_modules/flat-cache/node_modules/rimraf/LICENSE +0 -15
  346. data/node_modules/flat-cache/node_modules/rimraf/README.md +0 -101
  347. data/node_modules/flat-cache/node_modules/rimraf/bin.js +0 -68
  348. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/LICENSE +0 -21
  349. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/README.md +0 -378
  350. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/common.js +0 -238
  351. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/glob.js +0 -790
  352. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/node_modules/minimatch/LICENSE +0 -15
  353. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/node_modules/minimatch/README.md +0 -230
  354. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/node_modules/minimatch/minimatch.js +0 -947
  355. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/LICENSE +0 -21
  356. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +0 -129
  357. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +0 -201
  358. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +0 -47
  359. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/node_modules/minimatch/package.json +0 -33
  360. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/package.json +0 -55
  361. data/node_modules/flat-cache/node_modules/rimraf/node_modules/glob/sync.js +0 -486
  362. data/node_modules/flat-cache/node_modules/rimraf/package.json +0 -32
  363. data/node_modules/flat-cache/node_modules/rimraf/rimraf.js +0 -360
  364. data/node_modules/npm-check-updates/build/index-CI_x-D21.js +0 -593
  365. data/node_modules/npm-check-updates/build/index-CI_x-D21.js.map +0 -1
  366. data/node_modules/npm-check-updates/build/index-Ci8A2QXv.js +0 -6
  367. data/node_modules/npm-check-updates/build/index-Ci8A2QXv.js.map +0 -1
  368. data/node_modules/npm-check-updates/build/index-DgVn3Gax.js +0 -36
  369. data/node_modules/npm-check-updates/build/index-DgVn3Gax.js.map +0 -1
  370. data/node_modules/npm-check-updates/build/src/types/SpawnPleaseOptions.d.ts +0 -6
  371. data/node_modules/npm-check-updates/build/src/types/SpawnPleaseOptions.js +0 -3
  372. data/node_modules/npm-check-updates/build/src/types/SpawnPleaseOptions.js.map +0 -1
  373. data/node_modules/type-fest/base.d.ts +0 -38
  374. data/node_modules/type-fest/license +0 -9
  375. data/node_modules/type-fest/source/utilities.d.ts +0 -3
  376. data/node_modules/type-fest/ts41/index.d.ts +0 -9
@@ -0,0 +1,429 @@
1
+ <h1 align="center">
2
+ <img width="250" src="https://jaredwray.com/images/keyv.svg" alt="keyv">
3
+ <br>
4
+ <br>
5
+ </h1>
6
+
7
+ > Simple key-value storage with support for multiple backends
8
+
9
+ [![build](https://github.com/jaredwray/keyv/actions/workflows/tests.yaml/badge.svg)](https://github.com/jaredwray/keyv/actions/workflows/tests.yaml)
10
+ [![codecov](https://codecov.io/gh/jaredwray/keyv/branch/main/graph/badge.svg?token=bRzR3RyOXZ)](https://codecov.io/gh/jaredwray/keyv)
11
+ [![npm](https://img.shields.io/npm/dm/keyv.svg)](https://www.npmjs.com/package/keyv)
12
+ [![npm](https://img.shields.io/npm/v/keyv.svg)](https://www.npmjs.com/package/keyv)
13
+
14
+ Keyv provides a consistent interface for key-value storage across multiple backends via storage adapters. It supports TTL based expiry, making it suitable as a cache or a persistent key-value store.
15
+
16
+ ## Features
17
+
18
+ There are a few existing modules similar to Keyv, however Keyv is different because it:
19
+
20
+ - Isn't bloated
21
+ - Has a simple Promise based API
22
+ - Suitable as a TTL based cache or persistent key-value store
23
+ - [Easily embeddable](#add-cache-support-to-your-module) inside another module
24
+ - Works with any storage that implements the [`Map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) API
25
+ - Handles all JSON types plus `Buffer`
26
+ - Supports namespaces
27
+ - Wide range of [**efficient, well tested**](#official-storage-adapters) storage adapters
28
+ - Connection errors are passed through (db failures won't kill your app)
29
+ - Supports the current active LTS version of Node.js or higher
30
+
31
+ ## Usage
32
+
33
+ Install Keyv.
34
+
35
+ ```
36
+ npm install --save keyv
37
+ ```
38
+
39
+ By default everything is stored in memory, you can optionally also install a storage adapter.
40
+
41
+ ```
42
+ npm install --save @keyv/redis
43
+ npm install --save @keyv/mongo
44
+ npm install --save @keyv/sqlite
45
+ npm install --save @keyv/postgres
46
+ npm install --save @keyv/mysql
47
+ npm install --save @keyv/etcd
48
+ ```
49
+
50
+ Create a new Keyv instance, passing your connection string if applicable. Keyv will automatically load the correct storage adapter.
51
+
52
+ ```js
53
+ const Keyv = require('keyv');
54
+
55
+ // One of the following
56
+ const keyv = new Keyv();
57
+ const keyv = new Keyv('redis://user:pass@localhost:6379');
58
+ const keyv = new Keyv('mongodb://user:pass@localhost:27017/dbname');
59
+ const keyv = new Keyv('sqlite://path/to/database.sqlite');
60
+ const keyv = new Keyv('postgresql://user:pass@localhost:5432/dbname');
61
+ const keyv = new Keyv('mysql://user:pass@localhost:3306/dbname');
62
+ const keyv = new Keyv('etcd://localhost:2379');
63
+
64
+ // Handle DB connection errors
65
+ keyv.on('error', err => console.log('Connection Error', err));
66
+
67
+ await keyv.set('foo', 'expires in 1 second', 1000); // true
68
+ await keyv.set('foo', 'never expires'); // true
69
+ await keyv.get('foo'); // 'never expires'
70
+ await keyv.delete('foo'); // true
71
+ await keyv.clear(); // undefined
72
+ ```
73
+
74
+ ### Namespaces
75
+
76
+ You can namespace your Keyv instance to avoid key collisions and allow you to clear only a certain namespace while using the same database.
77
+
78
+ ```js
79
+ const users = new Keyv('redis://user:pass@localhost:6379', { namespace: 'users' });
80
+ const cache = new Keyv('redis://user:pass@localhost:6379', { namespace: 'cache' });
81
+
82
+ await users.set('foo', 'users'); // true
83
+ await cache.set('foo', 'cache'); // true
84
+ await users.get('foo'); // 'users'
85
+ await cache.get('foo'); // 'cache'
86
+ await users.clear(); // undefined
87
+ await users.get('foo'); // undefined
88
+ await cache.get('foo'); // 'cache'
89
+ ```
90
+
91
+ ### Custom Serializers
92
+
93
+ Keyv uses [`json-buffer`](https://github.com/dominictarr/json-buffer) for data serialization to ensure consistency across different backends.
94
+
95
+ You can optionally provide your own serialization functions to support extra data types or to serialize to something other than JSON.
96
+
97
+ ```js
98
+ const keyv = new Keyv({ serialize: JSON.stringify, deserialize: JSON.parse });
99
+ ```
100
+
101
+ **Warning:** Using custom serializers means you lose any guarantee of data consistency. You should do extensive testing with your serialisation functions and chosen storage engine.
102
+
103
+ ## Official Storage Adapters
104
+
105
+ The official storage adapters are covered by [over 150 integration tests](https://github.com/jaredwray/keyv/actions/workflows/tests.yaml) to guarantee consistent behaviour. They are lightweight, efficient wrappers over the DB clients making use of indexes and native TTLs where available.
106
+
107
+ Database | Adapter | Native TTL
108
+ ---|---|---
109
+ Redis | [@keyv/redis](https://github.com/jaredwray/keyv/tree/master/packages/redis) | Yes
110
+ MongoDB | [@keyv/mongo](https://github.com/jaredwray/keyv/tree/master/packages/mongo) | Yes
111
+ SQLite | [@keyv/sqlite](https://github.com/jaredwray/keyv/tree/master/packages/sqlite) | No
112
+ PostgreSQL | [@keyv/postgres](https://github.com/jaredwray/keyv/tree/master/packages/postgres) | No
113
+ MySQL | [@keyv/mysql](https://github.com/jaredwray/keyv/tree/master/packages/mysql) | No
114
+ Etcd | [@keyv/etcd](https://github.com/jaredwray/keyv/tree/master/packages/etcd) | Yes
115
+ Memcache | [@keyv/memcache](https://github.com/jaredwray/keyv/tree/master/packages/memcache) | Yes
116
+
117
+ ## Third-party Storage Adapters
118
+
119
+ You can also use third-party storage adapters or build your own. Keyv will wrap these storage adapters in TTL functionality and handle complex types internally.
120
+
121
+ ```js
122
+ const Keyv = require('keyv');
123
+ const myAdapter = require('./my-storage-adapter');
124
+
125
+ const keyv = new Keyv({ store: myAdapter });
126
+ ```
127
+
128
+ Any store that follows the [`Map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) api will work.
129
+
130
+ ```js
131
+ new Keyv({ store: new Map() });
132
+ ```
133
+
134
+ For example, [`quick-lru`](https://github.com/sindresorhus/quick-lru) is a completely unrelated module that implements the Map API.
135
+
136
+ ```js
137
+ const Keyv = require('keyv');
138
+ const QuickLRU = require('quick-lru');
139
+
140
+ const lru = new QuickLRU({ maxSize: 1000 });
141
+ const keyv = new Keyv({ store: lru });
142
+ ```
143
+
144
+ The following are third-party storage adapters compatible with Keyv:
145
+
146
+ - [quick-lru](https://github.com/sindresorhus/quick-lru) - Simple "Least Recently Used" (LRU) cache
147
+ - [keyv-file](https://github.com/zaaack/keyv-file) - File system storage adapter for Keyv
148
+ - [keyv-dynamodb](https://www.npmjs.com/package/keyv-dynamodb) - DynamoDB storage adapter for Keyv
149
+ - [keyv-lru](https://www.npmjs.com/package/keyv-lru) - LRU storage adapter for Keyv
150
+ - [keyv-null](https://www.npmjs.com/package/keyv-null) - Null storage adapter for Keyv
151
+ - [keyv-firestore ](https://github.com/goto-bus-stop/keyv-firestore) – Firebase Cloud Firestore adapter for Keyv
152
+ - [keyv-mssql](https://github.com/pmorgan3/keyv-mssql) - Microsoft Sql Server adapter for Keyv
153
+ - [keyv-azuretable](https://github.com/howlowck/keyv-azuretable) - Azure Table Storage/API adapter for Keyv
154
+ - [keyv-arango](https://github.com/TimMikeladze/keyv-arango) - ArangoDB storage adapter for Keyv
155
+ - [keyv-momento](https://github.com/momentohq/node-keyv-adaptor/) - Momento storage adapter for Keyv
156
+
157
+ ## Add Cache Support to your Module
158
+
159
+ Keyv is designed to be easily embedded into other modules to add cache support. The recommended pattern is to expose a `cache` option in your modules options which is passed through to Keyv. Caching will work in memory by default and users have the option to also install a Keyv storage adapter and pass in a connection string, or any other storage that implements the `Map` API.
160
+
161
+ You should also set a namespace for your module so you can safely call `.clear()` without clearing unrelated app data.
162
+
163
+ Inside your module:
164
+
165
+ ```js
166
+ class AwesomeModule {
167
+ constructor(opts) {
168
+ this.cache = new Keyv({
169
+ uri: typeof opts.cache === 'string' && opts.cache,
170
+ store: typeof opts.cache !== 'string' && opts.cache,
171
+ namespace: 'awesome-module'
172
+ });
173
+ }
174
+ }
175
+ ```
176
+
177
+ Now it can be consumed like this:
178
+
179
+ ```js
180
+ const AwesomeModule = require('awesome-module');
181
+
182
+ // Caches stuff in memory by default
183
+ const awesomeModule = new AwesomeModule();
184
+
185
+ // After npm install --save keyv-redis
186
+ const awesomeModule = new AwesomeModule({ cache: 'redis://localhost' });
187
+
188
+ // Some third-party module that implements the Map API
189
+ const awesomeModule = new AwesomeModule({ cache: some3rdPartyStore });
190
+ ```
191
+
192
+ ## Compression
193
+
194
+ Keyv supports `gzip` and `brotli` compression. To enable compression, pass the `compress` option to the constructor.
195
+
196
+ ```js
197
+ const KeyvGzip = require('@keyv/compress-gzip');
198
+ const Keyv = require('keyv');
199
+
200
+ const keyvGzip = new KeyvGzip();
201
+ const keyv = new Keyv({ compression: KeyvGzip });
202
+ ```
203
+
204
+ You can also pass a custom compression function to the `compression` option. Following the pattern of the official compression adapters.
205
+
206
+ ### Want to build your own?
207
+
208
+ Great! Keyv is designed to be easily extended. You can build your own compression adapter by following the pattern of the official compression adapters based on this interface:
209
+
210
+ ```typescript
211
+ interface CompressionAdapter {
212
+ async compress(value: any, options?: any);
213
+ async decompress(value: any, options?: any);
214
+ async serialize(value: any);
215
+ async deserialize(value: any);
216
+ }
217
+ ```
218
+
219
+ In addition to the interface, you can test it with our compression test suite using @keyv/test-suite:
220
+
221
+ ```js
222
+ const {keyvCompresstionTests} = require('@keyv/test-suite');
223
+ const KeyvGzip = require('@keyv/compress-gzip');
224
+
225
+ keyvCompresstionTests(test, new KeyvGzip());
226
+ ```
227
+
228
+ ## API
229
+
230
+ ### new Keyv([uri], [options])
231
+
232
+ Returns a new Keyv instance.
233
+
234
+ The Keyv instance is also an `EventEmitter` that will emit an `'error'` event if the storage adapter connection fails.
235
+
236
+ ### uri
237
+
238
+ Type: `String`<br>
239
+ Default: `undefined`
240
+
241
+ The connection string URI.
242
+
243
+ Merged into the options object as options.uri.
244
+
245
+ ### options
246
+
247
+ Type: `Object`
248
+
249
+ The options object is also passed through to the storage adapter. Check your storage adapter docs for any extra options.
250
+
251
+ #### options.namespace
252
+
253
+ Type: `String`<br>
254
+ Default: `'keyv'`
255
+
256
+ Namespace for the current instance.
257
+
258
+ #### options.ttl
259
+
260
+ Type: `Number`<br>
261
+ Default: `undefined`
262
+
263
+ Default TTL. Can be overridden by specififying a TTL on `.set()`.
264
+
265
+ #### options.compression
266
+
267
+ Type: `@keyv/compress-<compression_package_name>`<br>
268
+ Default: `undefined`
269
+
270
+ Compression package to use. See [Compression](#compression) for more details.
271
+
272
+ #### options.serialize
273
+
274
+ Type: `Function`<br>
275
+ Default: `JSONB.stringify`
276
+
277
+ A custom serialization function.
278
+
279
+ #### options.deserialize
280
+
281
+ Type: `Function`<br>
282
+ Default: `JSONB.parse`
283
+
284
+ A custom deserialization function.
285
+
286
+ #### options.store
287
+
288
+ Type: `Storage adapter instance`<br>
289
+ Default: `new Map()`
290
+
291
+ The storage adapter instance to be used by Keyv.
292
+
293
+ #### options.adapter
294
+
295
+ Type: `String`<br>
296
+ Default: `undefined`
297
+
298
+ Specify an adapter to use. e.g `'redis'` or `'mongodb'`.
299
+
300
+ ### Instance
301
+
302
+ Keys must always be strings. Values can be of any type.
303
+
304
+ #### .set(key, value, [ttl])
305
+
306
+ Set a value.
307
+
308
+ By default keys are persistent. You can set an expiry TTL in milliseconds.
309
+
310
+ Returns a promise which resolves to `true`.
311
+
312
+ #### .get(key, [options])
313
+
314
+ Returns a promise which resolves to the retrieved value.
315
+
316
+ ##### options.raw
317
+
318
+ Type: `Boolean`<br>
319
+ Default: `false`
320
+
321
+ If set to true the raw DB object Keyv stores internally will be returned instead of just the value.
322
+
323
+ This contains the TTL timestamp.
324
+
325
+ #### .delete(key)
326
+
327
+ Deletes an entry.
328
+
329
+ Returns a promise which resolves to `true` if the key existed, `false` if not.
330
+
331
+ #### .clear()
332
+
333
+ Delete all entries in the current namespace.
334
+
335
+ Returns a promise which is resolved when the entries have been cleared.
336
+
337
+ #### .iterator()
338
+
339
+ Iterate over all entries of the current namespace.
340
+
341
+ Returns a iterable that can be iterated by for-of loops. For example:
342
+
343
+ ```js
344
+ // please note that the "await" keyword should be used here
345
+ for await (const [key, value] of this.keyv.iterator()) {
346
+ console.log(key, value);
347
+ };
348
+ ```
349
+
350
+ # How to Contribute
351
+
352
+ In this section of the documentation we will cover:
353
+
354
+ 1) How to set up this repository locally
355
+ 2) How to get started with running commands
356
+ 3) How to contribute changes using Pull Requests
357
+
358
+ ## Dependencies
359
+
360
+ This package requires the following dependencies to run:
361
+
362
+ 1) [Yarn V1](https://yarnpkg.com/getting-started/install)
363
+ 3) [Docker](https://docs.docker.com/get-docker/)
364
+
365
+ ## Setting up your workspace
366
+
367
+ To contribute to this repository, start by setting up this project locally:
368
+
369
+ 1) Fork this repository into your Git account
370
+ 2) Clone the forked repository to your local directory using `git clone`
371
+ 3) Install any of the above missing dependencies
372
+
373
+ ## Launching the project
374
+
375
+ Once the project is installed locally, you are ready to start up its services:
376
+
377
+ 1) Ensure that your Docker service is running.
378
+ 2) From the root directory of your project, run the `yarn` command in the command prompt to install yarn.
379
+ 3) Run the `yarn bootstrap` command to install any necessary dependencies.
380
+ 4) Run `yarn test:services:start` to start up this project's Docker container. The container will launch all services within your workspace.
381
+
382
+ ## Available Commands
383
+
384
+ Once the project is running, you can execute a variety of commands. The root workspace and each subpackage contain a `package.json` file with a `scripts` field listing all the commands that can be executed from that directory. This project also supports native `yarn`, and `docker` commands.
385
+
386
+ Here, we'll cover the primary commands that can be executed from the root directory. Unless otherwise noted, these commands can also be executed from a subpackage. If executed from a subpackage, they will only affect that subpackage, rather than the entire workspace.
387
+
388
+ ### `yarn`
389
+
390
+ The `yarn` command installs yarn in the workspace.
391
+
392
+ ### `yarn bootstrap`
393
+
394
+ The `yarn bootstrap` command installs all dependencies in the workspace.
395
+
396
+ ### `yarn test:services:start`
397
+
398
+ The `yarn test:services:start` command starts up the project's Docker container, launching all services in the workspace. This command must be executed from the root directory.
399
+
400
+ ### `yarn test:services:stop`
401
+
402
+ The `yarn test:services:stop` command brings down the project's Docker container, halting all services. This command must be executed from the root directory.
403
+
404
+ ### `yarn test`
405
+
406
+ The `yarn test` command runs all tests in the workspace.
407
+
408
+ ### `yarn clean`
409
+
410
+ The `yarn clean` command removes yarn and all dependencies installed by yarn. After executing this command, you must repeat the steps in *Setting up your workspace* to rebuild your workspace.
411
+
412
+ ## Contributing Changes
413
+
414
+ Now that you've set up your workspace, you're ready to contribute changes to the `keyv` repository.
415
+
416
+ 1) Make any changes that you would like to contribute in your local workspace.
417
+ 2) After making these changes, ensure that the project's tests still pass by executing the `yarn test` command in the root directory.
418
+ 3) Commit your changes and push them to your forked repository.
419
+ 4) Navigate to the original `keyv` repository and go the *Pull Requests* tab.
420
+ 5) Click the *New pull request* button, and open a pull request for the branch in your repository that contains your changes.
421
+ 6) Once your pull request is created, ensure that all checks have passed and that your branch has no conflicts with the base branch. If there are any issues, resolve these changes in your local repository, and then commit and push them to git.
422
+ 7) Similarly, respond to any reviewer comments or requests for changes by making edits to your local repository and pushing them to Git.
423
+ 8) Once the pull request has been reviewed, those with write access to the branch will be able to merge your changes into the `keyv` repository.
424
+
425
+ If you need more information on the steps to create a pull request, you can find a detailed walkthrough in the [Github documentation](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)
426
+
427
+ ## License
428
+
429
+ MIT © Jared Wray
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "keyv",
3
+ "version": "4.5.3",
4
+ "description": "Simple key-value storage with support for multiple backends",
5
+ "main": "src/index.js",
6
+ "scripts": {
7
+ "build": "echo 'No build step required.'",
8
+ "prepare": "yarn build",
9
+ "test": "xo && c8 ava --serial",
10
+ "test:ci": "xo && ava --serial",
11
+ "clean": "rm -rf node_modules && rm -rf ./coverage && rm -rf ./test/testdb.sqlite"
12
+ },
13
+ "xo": {
14
+ "rules": {
15
+ "unicorn/prefer-module": 0,
16
+ "unicorn/prefer-node-protocol": 0,
17
+ "@typescript-eslint/consistent-type-definitions": 0,
18
+ "unicorn/no-typeof-undefined": 0,
19
+ "unicorn/prefer-event-target": 0
20
+ }
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/jaredwray/keyv.git"
25
+ },
26
+ "keywords": [
27
+ "key",
28
+ "value",
29
+ "store",
30
+ "cache",
31
+ "ttl"
32
+ ],
33
+ "author": "Jared Wray <me@jaredwray.com> (http://jaredwray.com)",
34
+ "license": "MIT",
35
+ "bugs": {
36
+ "url": "https://github.com/jaredwray/keyv/issues"
37
+ },
38
+ "homepage": "https://github.com/jaredwray/keyv",
39
+ "dependencies": {
40
+ "json-buffer": "3.0.1"
41
+ },
42
+ "devDependencies": {
43
+ "@keyv/test-suite": "*",
44
+ "eslint": "^8.42.0",
45
+ "eslint-plugin-promise": "^6.1.1",
46
+ "pify": "^5.0.0",
47
+ "timekeeper": "^2.2.0",
48
+ "tsd": "^0.28.1"
49
+ },
50
+ "tsd": {
51
+ "directory": "test"
52
+ },
53
+ "types": "./src/index.d.ts",
54
+ "files": [
55
+ "src"
56
+ ]
57
+ }
@@ -0,0 +1,112 @@
1
+ import {EventEmitter} from 'events';
2
+
3
+ type WithRequiredProperties<T, K extends keyof T> = T & Required<Pick<T, K>>;
4
+
5
+ declare class Keyv<Value = any, Options extends Record<string, any> = Record<string, unknown>> extends EventEmitter {
6
+ /**
7
+ * `this.opts` is an object containing at least the properties listed
8
+ * below. However, `Keyv.Options` allows arbitrary properties as well.
9
+ * These properties can be specified as the second type parameter to `Keyv`.
10
+ */
11
+ opts: WithRequiredProperties<
12
+ Keyv.Options<Value>,
13
+ 'deserialize' | 'namespace' | 'serialize' | 'store' | 'uri'
14
+ > &
15
+ Options;
16
+
17
+ /**
18
+ * @param opts The options object is also passed through to the storage adapter. Check your storage adapter docs for any extra options.
19
+ */
20
+ constructor(options?: Keyv.Options<Value> & Options);
21
+ /**
22
+ * @param uri The connection string URI.
23
+ *
24
+ * Merged into the options object as options.uri.
25
+ * @param opts The options object is also passed through to the storage adapter. Check your storage adapter docs for any extra options.
26
+ */
27
+ constructor(uri?: string, options?: Keyv.Options<Value> & Options);
28
+
29
+ /** Returns the value. */
30
+ get(key: string, options?: {raw?: false}): Promise<Value | undefined>;
31
+ /** Returns the raw value. */
32
+ get(key: string, options: {raw: true}): Promise<Keyv.DeserializedData<Value> | undefined>;
33
+
34
+ /** Returns an array of values. Uses `store.getMany` if it exists, otherwise uses parallel calls to `store.get`. */
35
+ get(key: string[], options?: {raw?: false}): Promise<Array<Value | undefined>>;
36
+ /** Returns an array of raw values. Uses `store.getMany` if it exists, otherwise uses parallel calls to `store.get`. */
37
+ get(key: string[], options: {raw: true}): Promise<Array<Keyv.DeserializedData<Value> | undefined>>;
38
+
39
+ /**
40
+ * Set a value.
41
+ *
42
+ * By default keys are persistent. You can set an expiry TTL in milliseconds.
43
+ */
44
+ set(key: string, value: Value, ttl?: number): Promise<true>;
45
+ /**
46
+ * Deletes an entry.
47
+ *
48
+ * Returns `true` if the key existed, `false` if not.
49
+ */
50
+ delete(key: string | string[]): Promise<boolean>;
51
+ /** Delete all entries in the current namespace. */
52
+ clear(): Promise<void>;
53
+ /** Check if key exists in current namespace. */
54
+ has(key: string): Promise<boolean>;
55
+ /** Iterator */
56
+ iterator(namespace?: string): AsyncGenerator<any, void, any>;
57
+ /**
58
+ * Closes the connection.
59
+ *
60
+ * Returns `undefined` when the connection closes.
61
+ */
62
+ disconnect(): Promise<void>;
63
+ }
64
+
65
+ declare namespace Keyv {
66
+ interface Options<Value> {
67
+ [key: string]: any;
68
+
69
+ /** Namespace for the current instance. */
70
+ namespace?: string | undefined;
71
+ /** A custom serialization function. */
72
+ serialize?: ((data: DeserializedData<Value>) => string) | undefined;
73
+ /** A custom deserialization function. */
74
+ deserialize?: ((data: string) => DeserializedData<Value> | undefined) | undefined;
75
+ /** The connection string URI. */
76
+ uri?: string | undefined;
77
+ /** The storage adapter instance to be used by Keyv. */
78
+ store?: Store<string | undefined> | undefined;
79
+ /** Default TTL. Can be overridden by specififying a TTL on `.set()`. */
80
+ ttl?: number | undefined;
81
+ /** Specify an adapter to use. e.g `'redis'` or `'mongodb'`. */
82
+ adapter?: 'redis' | 'mongodb' | 'mongo' | 'sqlite' | 'postgresql' | 'postgres' | 'mysql' | undefined;
83
+ /** Enable compression option **/
84
+ compression?: CompressionAdapter | undefined;
85
+ }
86
+
87
+ interface CompressionAdapter {
88
+ compress(value: any, options?: any): Promise<any>;
89
+ decompress(value: any, options?: any): Promise<any>;
90
+ serialize(value: any): Promise<any>;
91
+ deserialize(value: any): Promise<any>;
92
+ }
93
+
94
+ interface DeserializedData<Value> {
95
+ value: Value; expires: number | undefined;
96
+ }
97
+
98
+ type StoredData<Value> = DeserializedData<Value> | string | undefined;
99
+
100
+ interface Store<Value> {
101
+ get(key: string): Value | Promise<Value | undefined> | undefined;
102
+ set(key: string, value: Value, ttl?: number): any;
103
+ delete(key: string): boolean | Promise<boolean>;
104
+ clear(): void | Promise<void>;
105
+ has?(key: string): boolean | Promise<boolean>;
106
+ getMany?(
107
+ keys: string[]
108
+ ): Array<StoredData<Value>> | Promise<Array<StoredData<Value>>> | undefined;
109
+ }
110
+ }
111
+
112
+ export = Keyv;