@daiso-tech/core 0.6.0 → 0.8.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 (1464) hide show
  1. package/dist/cjs/_module.js +8 -5
  2. package/dist/cjs/_module.js.map +1 -1
  3. package/dist/cjs/_shared/utilities.js +9 -0
  4. package/dist/cjs/_shared/utilities.js.map +1 -1
  5. package/dist/cjs/collection/contracts/_module.js +20 -0
  6. package/dist/cjs/collection/contracts/_module.js.map +1 -0
  7. package/dist/cjs/collection/contracts/_shared.js.map +1 -0
  8. package/dist/cjs/collection/contracts/async-collection.contract.js.map +1 -0
  9. package/dist/cjs/collection/contracts/collection.contract.js.map +1 -0
  10. package/dist/cjs/collection/implementations/_module.js +21 -0
  11. package/dist/cjs/collection/implementations/_module.js.map +1 -0
  12. package/dist/cjs/collection/implementations/_shared.js.map +1 -0
  13. package/dist/cjs/collection/implementations/async-iterable-collection/_module.js +18 -0
  14. package/dist/cjs/collection/implementations/async-iterable-collection/_module.js.map +1 -0
  15. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/_module.js +50 -0
  16. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/_module.js.map +1 -0
  17. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js.map +1 -0
  18. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +1 -0
  19. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js +22 -0
  20. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js.map +1 -0
  21. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js.map +1 -0
  22. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js +35 -0
  23. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js.map +1 -0
  24. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js.map +1 -0
  25. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-error-handler-iterable.js.map +1 -0
  26. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js.map +1 -0
  27. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js.map +1 -0
  28. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js.map +1 -0
  29. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js.map +1 -0
  30. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js.map +1 -0
  31. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js.map +1 -0
  32. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js.map +1 -0
  33. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js.map +1 -0
  34. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js.map +1 -0
  35. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js.map +1 -0
  36. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js.map +1 -0
  37. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js.map +1 -0
  38. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js.map +1 -0
  39. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js.map +1 -0
  40. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js.map +1 -0
  41. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js.map +1 -0
  42. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js.map +1 -0
  43. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js.map +1 -0
  44. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js.map +1 -0
  45. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js.map +1 -0
  46. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js.map +1 -0
  47. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js.map +1 -0
  48. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js.map +1 -0
  49. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js.map +1 -0
  50. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js.map +1 -0
  51. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js +37 -0
  52. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js.map +1 -0
  53. package/dist/cjs/collection/implementations/async-iterable-collection/async-iterable-collection.js +547 -0
  54. package/dist/cjs/collection/implementations/async-iterable-collection/async-iterable-collection.js.map +1 -0
  55. package/dist/cjs/collection/implementations/iterable-collection/_module.js +18 -0
  56. package/dist/cjs/collection/implementations/iterable-collection/_module.js.map +1 -0
  57. package/dist/cjs/collection/implementations/iterable-collection/_shared/_module.js +49 -0
  58. package/dist/cjs/collection/implementations/iterable-collection/_shared/_module.js.map +1 -0
  59. package/dist/cjs/collection/implementations/iterable-collection/_shared/chunk-iterable.js.map +1 -0
  60. package/dist/cjs/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js.map +1 -0
  61. package/dist/cjs/collection/implementations/iterable-collection/_shared/collapse-iterable.js +22 -0
  62. package/dist/cjs/collection/implementations/iterable-collection/_shared/collapse-iterable.js.map +1 -0
  63. package/dist/cjs/collection/implementations/iterable-collection/_shared/count-by-iterable.js.map +1 -0
  64. package/dist/cjs/collection/implementations/iterable-collection/_shared/cross-join-iterable.js +37 -0
  65. package/dist/cjs/collection/implementations/iterable-collection/_shared/cross-join-iterable.js.map +1 -0
  66. package/dist/cjs/collection/implementations/iterable-collection/_shared/entries-iterable.js.map +1 -0
  67. package/dist/cjs/collection/implementations/iterable-collection/_shared/filter-iterable.js.map +1 -0
  68. package/dist/cjs/collection/implementations/iterable-collection/_shared/flat-map-iterable.js.map +1 -0
  69. package/dist/cjs/collection/implementations/iterable-collection/_shared/group-by-iterable.js.map +1 -0
  70. package/dist/cjs/collection/implementations/iterable-collection/_shared/insert-after-iterable.js.map +1 -0
  71. package/dist/cjs/collection/implementations/iterable-collection/_shared/insert-before-iterable.js.map +1 -0
  72. package/dist/cjs/collection/implementations/iterable-collection/_shared/map-iterable.js.map +1 -0
  73. package/dist/cjs/collection/implementations/iterable-collection/_shared/merge-iterable.js.map +1 -0
  74. package/dist/cjs/collection/implementations/iterable-collection/_shared/pad-end-iterable.js.map +1 -0
  75. package/dist/cjs/collection/implementations/iterable-collection/_shared/pad-start-iterable.js.map +1 -0
  76. package/dist/cjs/collection/implementations/iterable-collection/_shared/partion-iterable.js.map +1 -0
  77. package/dist/cjs/collection/implementations/iterable-collection/_shared/repeat-iterable.js.map +1 -0
  78. package/dist/cjs/collection/implementations/iterable-collection/_shared/reverse-iterable.js.map +1 -0
  79. package/dist/cjs/collection/implementations/iterable-collection/_shared/shuffle-iterable.js.map +1 -0
  80. package/dist/cjs/collection/implementations/iterable-collection/_shared/skip-iterable.js.map +1 -0
  81. package/dist/cjs/collection/implementations/iterable-collection/_shared/skip-until-iterable.js.map +1 -0
  82. package/dist/cjs/collection/implementations/iterable-collection/_shared/slice-iterable.js.map +1 -0
  83. package/dist/cjs/collection/implementations/iterable-collection/_shared/sliding-iterable.js.map +1 -0
  84. package/dist/cjs/collection/implementations/iterable-collection/_shared/sort-iterable.js.map +1 -0
  85. package/dist/cjs/collection/implementations/iterable-collection/_shared/split-iterable.js.map +1 -0
  86. package/dist/cjs/collection/implementations/iterable-collection/_shared/take-iterable.js.map +1 -0
  87. package/dist/cjs/collection/implementations/iterable-collection/_shared/take-until-iterable.js.map +1 -0
  88. package/dist/cjs/collection/implementations/iterable-collection/_shared/tap-iterable.js.map +1 -0
  89. package/dist/cjs/collection/implementations/iterable-collection/_shared/unique-iterable.js.map +1 -0
  90. package/dist/cjs/collection/implementations/iterable-collection/_shared/update-iterable.js.map +1 -0
  91. package/dist/cjs/collection/implementations/iterable-collection/_shared/when-iterable.js.map +1 -0
  92. package/dist/cjs/collection/implementations/iterable-collection/_shared/zip-iterable.js.map +1 -0
  93. package/dist/cjs/collection/implementations/iterable-collection/iterable-collection.js +493 -0
  94. package/dist/cjs/collection/implementations/iterable-collection/iterable-collection.js.map +1 -0
  95. package/dist/cjs/collection/implementations/list-collection/_module.js +18 -0
  96. package/dist/cjs/collection/implementations/list-collection/_module.js.map +1 -0
  97. package/dist/cjs/collection/implementations/list-collection/list-collection.js +628 -0
  98. package/dist/cjs/collection/implementations/list-collection/list-collection.js.map +1 -0
  99. package/dist/cjs/event-bus/contracts/_module.js +21 -0
  100. package/dist/cjs/event-bus/contracts/_module.js.map +1 -0
  101. package/dist/cjs/event-bus/contracts/_shared.js +32 -0
  102. package/dist/cjs/event-bus/contracts/_shared.js.map +1 -0
  103. package/dist/cjs/event-bus/contracts/event-bus-adapter.contract.js +3 -0
  104. package/dist/cjs/event-bus/contracts/event-bus-adapter.contract.js.map +1 -0
  105. package/dist/cjs/event-bus/contracts/event-bus-manager.contract.js +3 -0
  106. package/dist/cjs/event-bus/contracts/event-bus-manager.contract.js.map +1 -0
  107. package/dist/cjs/event-bus/contracts/event-bus.contract.js +3 -0
  108. package/dist/cjs/event-bus/contracts/event-bus.contract.js.map +1 -0
  109. package/dist/cjs/event-bus/implementations/_module.js +22 -0
  110. package/dist/cjs/event-bus/implementations/_module.js.map +1 -0
  111. package/dist/cjs/event-bus/implementations/_shared/test-utilities/_module.js +18 -0
  112. package/dist/cjs/event-bus/implementations/_shared/test-utilities/_module.js.map +1 -0
  113. package/dist/cjs/event-bus/implementations/_shared/test-utilities/event-bus-adapter.test-suite.js +51 -0
  114. package/dist/cjs/event-bus/implementations/_shared/test-utilities/event-bus-adapter.test-suite.js.map +1 -0
  115. package/dist/cjs/event-bus/implementations/event-bus/_module.js +19 -0
  116. package/dist/cjs/event-bus/implementations/event-bus/_module.js.map +1 -0
  117. package/dist/cjs/event-bus/implementations/event-bus/event-bus-manager.js +24 -0
  118. package/dist/cjs/event-bus/implementations/event-bus/event-bus-manager.js.map +1 -0
  119. package/dist/cjs/event-bus/implementations/event-bus/event-bus.js +104 -0
  120. package/dist/cjs/event-bus/implementations/event-bus/event-bus.js.map +1 -0
  121. package/dist/cjs/event-bus/implementations/event-bus/with-namespace-event-bus-adapter.js +41 -0
  122. package/dist/cjs/event-bus/implementations/event-bus/with-namespace-event-bus-adapter.js.map +1 -0
  123. package/dist/cjs/event-bus/implementations/event-bus/with-validation-event-bus-adapter.js +35 -0
  124. package/dist/cjs/event-bus/implementations/event-bus/with-validation-event-bus-adapter.js.map +1 -0
  125. package/dist/cjs/event-bus/implementations/memory-event-bus-adapter/_module.js +18 -0
  126. package/dist/cjs/event-bus/implementations/memory-event-bus-adapter/_module.js.map +1 -0
  127. package/dist/cjs/event-bus/implementations/memory-event-bus-adapter/memory-event-bus-adapter.js +23 -0
  128. package/dist/cjs/event-bus/implementations/memory-event-bus-adapter/memory-event-bus-adapter.js.map +1 -0
  129. package/dist/cjs/event-bus/implementations/no-op-event-bus-adapter/_module.js +18 -0
  130. package/dist/cjs/event-bus/implementations/no-op-event-bus-adapter/_module.js.map +1 -0
  131. package/dist/cjs/event-bus/implementations/no-op-event-bus-adapter/no-op-event-bus-adapter.js +16 -0
  132. package/dist/cjs/event-bus/implementations/no-op-event-bus-adapter/no-op-event-bus-adapter.js.map +1 -0
  133. package/dist/cjs/event-bus/implementations/redis-event-bus-adapter/_module.js +18 -0
  134. package/dist/cjs/event-bus/implementations/redis-event-bus-adapter/_module.js.map +1 -0
  135. package/dist/cjs/event-bus/implementations/redis-event-bus-adapter/redis-event-bus-adapter.js +45 -0
  136. package/dist/cjs/event-bus/implementations/redis-event-bus-adapter/redis-event-bus-adapter.js.map +1 -0
  137. package/dist/cjs/serializer/contracts/_module.js +18 -0
  138. package/dist/cjs/serializer/contracts/_module.js.map +1 -0
  139. package/dist/cjs/serializer/contracts/serializer.contract.js.map +1 -0
  140. package/dist/cjs/serializer/implementations/_module.js +22 -0
  141. package/dist/cjs/serializer/implementations/_module.js.map +1 -0
  142. package/dist/cjs/serializer/implementations/_shared/test-utilities/_module.js +18 -0
  143. package/dist/cjs/serializer/implementations/_shared/test-utilities/_module.js.map +1 -0
  144. package/dist/cjs/serializer/implementations/_shared/test-utilities/serializer.test-suite.js.map +1 -0
  145. package/dist/cjs/serializer/implementations/mongodb-serializer/_module.js +18 -0
  146. package/dist/cjs/serializer/implementations/mongodb-serializer/_module.js.map +1 -0
  147. package/dist/cjs/serializer/implementations/mongodb-serializer/mongodb-serializer.js +36 -0
  148. package/dist/cjs/serializer/implementations/mongodb-serializer/mongodb-serializer.js.map +1 -0
  149. package/dist/cjs/serializer/implementations/redis-serializer/_module.js +18 -0
  150. package/dist/cjs/serializer/implementations/redis-serializer/_module.js.map +1 -0
  151. package/dist/cjs/serializer/implementations/redis-serializer/redis-serializer.js +37 -0
  152. package/dist/cjs/serializer/implementations/redis-serializer/redis-serializer.js.map +1 -0
  153. package/dist/cjs/serializer/implementations/sql-serializer/_module.js +18 -0
  154. package/dist/cjs/serializer/implementations/sql-serializer/_module.js.map +1 -0
  155. package/dist/cjs/serializer/implementations/sql-serializer/sql-serializer.js +37 -0
  156. package/dist/cjs/serializer/implementations/sql-serializer/sql-serializer.js.map +1 -0
  157. package/dist/cjs/serializer/implementations/super-json-serializer/_module.js +18 -0
  158. package/dist/cjs/serializer/implementations/super-json-serializer/_module.js.map +1 -0
  159. package/dist/cjs/serializer/implementations/super-json-serializer/super-json-serializer.js +304 -0
  160. package/dist/cjs/serializer/implementations/super-json-serializer/super-json-serializer.js.map +1 -0
  161. package/dist/cjs/storage/contracts/_module.js +22 -0
  162. package/dist/cjs/storage/contracts/_module.js.map +1 -0
  163. package/dist/cjs/storage/contracts/_shared.js.map +1 -0
  164. package/dist/cjs/storage/contracts/storage-adapter.contract.js.map +1 -0
  165. package/dist/cjs/storage/contracts/storage-events.contract.js +14 -0
  166. package/dist/cjs/storage/contracts/storage-events.contract.js.map +1 -0
  167. package/dist/cjs/storage/contracts/storage-manager.contract.js +3 -0
  168. package/dist/cjs/storage/contracts/storage-manager.contract.js.map +1 -0
  169. package/dist/cjs/storage/contracts/storage.contract.js.map +1 -0
  170. package/dist/cjs/storage/implementations/_module.js +23 -0
  171. package/dist/cjs/storage/implementations/_module.js.map +1 -0
  172. package/dist/cjs/storage/implementations/_shared/test-utilities/_module.js +18 -0
  173. package/dist/cjs/storage/implementations/_shared/test-utilities/_module.js.map +1 -0
  174. package/dist/cjs/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.js +298 -0
  175. package/dist/cjs/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.js.map +1 -0
  176. package/dist/cjs/storage/implementations/memory-storage-adapter/_module.js +18 -0
  177. package/dist/cjs/storage/implementations/memory-storage-adapter/_module.js.map +1 -0
  178. package/dist/cjs/storage/implementations/memory-storage-adapter/memory-storage-adapter.js +85 -0
  179. package/dist/cjs/storage/implementations/memory-storage-adapter/memory-storage-adapter.js.map +1 -0
  180. package/dist/cjs/storage/implementations/mongodb-storage-adapter/_module.js +6 -0
  181. package/dist/cjs/storage/implementations/mongodb-storage-adapter/_module.js.map +1 -0
  182. package/dist/cjs/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.js +203 -0
  183. package/dist/cjs/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.js.map +1 -0
  184. package/dist/cjs/storage/implementations/redis-storage-adapter/_module.js +18 -0
  185. package/dist/cjs/storage/implementations/redis-storage-adapter/_module.js.map +1 -0
  186. package/dist/cjs/storage/implementations/redis-storage-adapter/redis-storage-adapter.js +228 -0
  187. package/dist/cjs/storage/implementations/redis-storage-adapter/redis-storage-adapter.js.map +1 -0
  188. package/dist/cjs/storage/implementations/sqlite/_module.js +19 -0
  189. package/dist/cjs/storage/implementations/sqlite/_module.js.map +1 -0
  190. package/dist/cjs/storage/implementations/sqlite/_shared/_module.js +18 -0
  191. package/dist/cjs/storage/implementations/sqlite/_shared/_module.js.map +1 -0
  192. package/dist/cjs/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.js +190 -0
  193. package/dist/cjs/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.js.map +1 -0
  194. package/dist/cjs/storage/implementations/sqlite/libsql-storage-adapter/_module.js +18 -0
  195. package/dist/cjs/storage/implementations/sqlite/libsql-storage-adapter/_module.js.map +1 -0
  196. package/dist/cjs/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +53 -0
  197. package/dist/cjs/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +1 -0
  198. package/dist/cjs/storage/implementations/sqlite/sqlite-storage-adapter/_module.js +18 -0
  199. package/dist/cjs/storage/implementations/sqlite/sqlite-storage-adapter/_module.js.map +1 -0
  200. package/dist/cjs/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +52 -0
  201. package/dist/cjs/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +1 -0
  202. package/dist/cjs/storage/implementations/storage/_module.js +19 -0
  203. package/dist/cjs/storage/implementations/storage/_module.js.map +1 -0
  204. package/dist/cjs/storage/implementations/storage/storage-manager.js +24 -0
  205. package/dist/cjs/storage/implementations/storage/storage-manager.js.map +1 -0
  206. package/dist/cjs/storage/implementations/storage/storage.js +265 -0
  207. package/dist/cjs/storage/implementations/storage/storage.js.map +1 -0
  208. package/dist/cjs/storage/implementations/storage/with-event-storage-adapter.js +254 -0
  209. package/dist/cjs/storage/implementations/storage/with-event-storage-adapter.js.map +1 -0
  210. package/dist/cjs/storage/implementations/storage/with-namespace-storage-adapter.js +53 -0
  211. package/dist/cjs/storage/implementations/storage/with-namespace-storage-adapter.js.map +1 -0
  212. package/dist/cjs/storage/implementations/storage/with-validation-storage-adapter.js +48 -0
  213. package/dist/cjs/storage/implementations/storage/with-validation-storage-adapter.js.map +1 -0
  214. package/dist/cjs/utilities/_module.js +3 -0
  215. package/dist/cjs/utilities/_module.js.map +1 -1
  216. package/dist/cjs/utilities/async/_module.js +29 -0
  217. package/dist/cjs/utilities/async/_module.js.map +1 -0
  218. package/dist/cjs/utilities/async/_shared.js.map +1 -0
  219. package/dist/cjs/utilities/async/abortable/_module.js +18 -0
  220. package/dist/cjs/utilities/async/abortable/_module.js.map +1 -0
  221. package/dist/cjs/utilities/async/abortable/abortable.js +48 -0
  222. package/dist/cjs/utilities/async/abortable/abortable.js.map +1 -0
  223. package/dist/cjs/utilities/async/abortable-iterable/_module.js +18 -0
  224. package/dist/cjs/utilities/async/abortable-iterable/_module.js.map +1 -0
  225. package/dist/cjs/utilities/async/abortable-iterable/abortable-iterable.js +32 -0
  226. package/dist/cjs/utilities/async/abortable-iterable/abortable-iterable.js.map +1 -0
  227. package/dist/cjs/utilities/async/delay/_module.js +18 -0
  228. package/dist/cjs/utilities/async/delay/_module.js.map +1 -0
  229. package/dist/cjs/utilities/async/delay/delay.js +24 -0
  230. package/dist/cjs/utilities/async/delay/delay.js.map +1 -0
  231. package/dist/cjs/utilities/async/delay-iterable/_module.js +18 -0
  232. package/dist/cjs/utilities/async/delay-iterable/_module.js.map +1 -0
  233. package/dist/cjs/utilities/async/delay-iterable/delay-iterable.js +36 -0
  234. package/dist/cjs/utilities/async/delay-iterable/delay-iterable.js.map +1 -0
  235. package/dist/cjs/utilities/async/lazy-promise/_module.js +18 -0
  236. package/dist/cjs/utilities/async/lazy-promise/_module.js.map +1 -0
  237. package/dist/cjs/utilities/async/lazy-promise/lazy-promise.js.map +1 -0
  238. package/dist/cjs/utilities/async/retry/_module.js +18 -0
  239. package/dist/cjs/utilities/async/retry/_module.js.map +1 -0
  240. package/dist/cjs/utilities/async/retry/retry.js +43 -0
  241. package/dist/cjs/utilities/async/retry/retry.js.map +1 -0
  242. package/dist/cjs/utilities/async/retry-iterable/_module.js +18 -0
  243. package/dist/cjs/utilities/async/retry-iterable/_module.js.map +1 -0
  244. package/dist/cjs/utilities/async/retry-iterable/retry-iterable.js +32 -0
  245. package/dist/cjs/utilities/async/retry-iterable/retry-iterable.js.map +1 -0
  246. package/dist/cjs/utilities/async/timeout/_module.js +18 -0
  247. package/dist/cjs/utilities/async/timeout/_module.js.map +1 -0
  248. package/dist/cjs/utilities/async/timeout/timeout.js +28 -0
  249. package/dist/cjs/utilities/async/timeout/timeout.js.map +1 -0
  250. package/dist/cjs/utilities/async/timeout-iterable/_module.js +18 -0
  251. package/dist/cjs/utilities/async/timeout-iterable/_module.js.map +1 -0
  252. package/dist/cjs/utilities/async/timeout-iterable/timeout-iterable.js +11 -0
  253. package/dist/cjs/utilities/async/timeout-iterable/timeout-iterable.js.map +1 -0
  254. package/dist/cjs/utilities/backof-policies/_module.js +21 -0
  255. package/dist/cjs/utilities/backof-policies/_module.js.map +1 -0
  256. package/dist/cjs/utilities/backof-policies/_shared.js.map +1 -0
  257. package/dist/cjs/utilities/backof-policies/constant-backoff-policy/_module.js +18 -0
  258. package/dist/cjs/utilities/backof-policies/constant-backoff-policy/_module.js.map +1 -0
  259. package/dist/cjs/utilities/backof-policies/constant-backoff-policy/constant-backoff-policy.js +19 -0
  260. package/dist/cjs/utilities/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +1 -0
  261. package/dist/cjs/utilities/backof-policies/exponential-backoff-policy/_module.js +18 -0
  262. package/dist/cjs/utilities/backof-policies/exponential-backoff-policy/_module.js.map +1 -0
  263. package/dist/cjs/utilities/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +23 -0
  264. package/dist/cjs/utilities/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +1 -0
  265. package/dist/cjs/utilities/backof-policies/linear-backoff-policy/_module.js +18 -0
  266. package/dist/cjs/utilities/backof-policies/linear-backoff-policy/_module.js.map +1 -0
  267. package/dist/cjs/utilities/backof-policies/linear-backoff-policy/linear-backoff-policy.js +23 -0
  268. package/dist/cjs/utilities/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +1 -0
  269. package/dist/cjs/utilities/backof-policies/polynomial-backoff-policy/_module.js +18 -0
  270. package/dist/cjs/utilities/backof-policies/polynomial-backoff-policy/_module.js.map +1 -0
  271. package/dist/cjs/utilities/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +23 -0
  272. package/dist/cjs/utilities/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +1 -0
  273. package/dist/cjs/utilities/time-span/time-span.js +2 -2
  274. package/dist/cjs/utilities/time-span/time-span.js.map +1 -1
  275. package/dist/cjs/utilities/validation/_module.js +22 -0
  276. package/dist/cjs/utilities/validation/_module.js.map +1 -0
  277. package/dist/esm/_module.js +8 -5
  278. package/dist/esm/_module.js.map +1 -1
  279. package/dist/esm/_shared/utilities.js +7 -0
  280. package/dist/esm/_shared/utilities.js.map +1 -1
  281. package/dist/esm/collection/contracts/_module.js +4 -0
  282. package/dist/esm/collection/contracts/_module.js.map +1 -0
  283. package/dist/esm/collection/contracts/_shared.js.map +1 -0
  284. package/dist/esm/collection/contracts/async-collection.contract.js.map +1 -0
  285. package/dist/esm/collection/contracts/collection.contract.js.map +1 -0
  286. package/dist/esm/collection/implementations/_module.js +5 -0
  287. package/dist/esm/collection/implementations/_module.js.map +1 -0
  288. package/dist/esm/collection/implementations/_shared.js.map +1 -0
  289. package/dist/esm/collection/implementations/async-iterable-collection/_module.js +2 -0
  290. package/dist/esm/collection/implementations/async-iterable-collection/_module.js.map +1 -0
  291. package/dist/esm/collection/implementations/async-iterable-collection/_shared/_module.js +34 -0
  292. package/dist/esm/collection/implementations/async-iterable-collection/_shared/_module.js.map +1 -0
  293. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js.map +1 -0
  294. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +1 -0
  295. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js +18 -0
  296. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js.map +1 -0
  297. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js.map +1 -0
  298. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js +31 -0
  299. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js.map +1 -0
  300. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js.map +1 -0
  301. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-error-handler-iterable.js.map +1 -0
  302. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js.map +1 -0
  303. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js.map +1 -0
  304. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js.map +1 -0
  305. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js.map +1 -0
  306. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js.map +1 -0
  307. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js.map +1 -0
  308. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js.map +1 -0
  309. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js.map +1 -0
  310. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js.map +1 -0
  311. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js.map +1 -0
  312. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js.map +1 -0
  313. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js.map +1 -0
  314. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js.map +1 -0
  315. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js.map +1 -0
  316. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js.map +1 -0
  317. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js.map +1 -0
  318. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js.map +1 -0
  319. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js.map +1 -0
  320. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js.map +1 -0
  321. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js.map +1 -0
  322. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js.map +1 -0
  323. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js.map +1 -0
  324. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js.map +1 -0
  325. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js.map +1 -0
  326. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js.map +1 -0
  327. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js +33 -0
  328. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js.map +1 -0
  329. package/dist/esm/collection/implementations/async-iterable-collection/async-iterable-collection.js +543 -0
  330. package/dist/esm/collection/implementations/async-iterable-collection/async-iterable-collection.js.map +1 -0
  331. package/dist/esm/collection/implementations/iterable-collection/_module.js +2 -0
  332. package/dist/esm/collection/implementations/iterable-collection/_module.js.map +1 -0
  333. package/dist/esm/collection/implementations/iterable-collection/_shared/_module.js +33 -0
  334. package/dist/esm/collection/implementations/iterable-collection/_shared/_module.js.map +1 -0
  335. package/dist/esm/collection/implementations/iterable-collection/_shared/chunk-iterable.js.map +1 -0
  336. package/dist/esm/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js.map +1 -0
  337. package/dist/esm/collection/implementations/iterable-collection/_shared/collapse-iterable.js +18 -0
  338. package/dist/esm/collection/implementations/iterable-collection/_shared/collapse-iterable.js.map +1 -0
  339. package/dist/esm/collection/implementations/iterable-collection/_shared/count-by-iterable.js.map +1 -0
  340. package/dist/esm/collection/implementations/iterable-collection/_shared/cross-join-iterable.js +33 -0
  341. package/dist/esm/collection/implementations/iterable-collection/_shared/cross-join-iterable.js.map +1 -0
  342. package/dist/esm/collection/implementations/iterable-collection/_shared/entries-iterable.js.map +1 -0
  343. package/dist/esm/collection/implementations/iterable-collection/_shared/filter-iterable.js.map +1 -0
  344. package/dist/esm/collection/implementations/iterable-collection/_shared/flat-map-iterable.js.map +1 -0
  345. package/dist/esm/collection/implementations/iterable-collection/_shared/group-by-iterable.js.map +1 -0
  346. package/dist/esm/collection/implementations/iterable-collection/_shared/insert-after-iterable.js.map +1 -0
  347. package/dist/esm/collection/implementations/iterable-collection/_shared/insert-before-iterable.js.map +1 -0
  348. package/dist/esm/collection/implementations/iterable-collection/_shared/map-iterable.js.map +1 -0
  349. package/dist/esm/collection/implementations/iterable-collection/_shared/merge-iterable.js.map +1 -0
  350. package/dist/esm/collection/implementations/iterable-collection/_shared/pad-end-iterable.js.map +1 -0
  351. package/dist/esm/collection/implementations/iterable-collection/_shared/pad-start-iterable.js.map +1 -0
  352. package/dist/esm/collection/implementations/iterable-collection/_shared/partion-iterable.js.map +1 -0
  353. package/dist/esm/collection/implementations/iterable-collection/_shared/repeat-iterable.js.map +1 -0
  354. package/dist/esm/collection/implementations/iterable-collection/_shared/reverse-iterable.js.map +1 -0
  355. package/dist/esm/collection/implementations/iterable-collection/_shared/shuffle-iterable.js.map +1 -0
  356. package/dist/esm/collection/implementations/iterable-collection/_shared/skip-iterable.js.map +1 -0
  357. package/dist/esm/collection/implementations/iterable-collection/_shared/skip-until-iterable.js.map +1 -0
  358. package/dist/esm/collection/implementations/iterable-collection/_shared/slice-iterable.js.map +1 -0
  359. package/dist/esm/collection/implementations/iterable-collection/_shared/sliding-iterable.js.map +1 -0
  360. package/dist/esm/collection/implementations/iterable-collection/_shared/sort-iterable.js.map +1 -0
  361. package/dist/esm/collection/implementations/iterable-collection/_shared/split-iterable.js.map +1 -0
  362. package/dist/esm/collection/implementations/iterable-collection/_shared/take-iterable.js.map +1 -0
  363. package/dist/esm/collection/implementations/iterable-collection/_shared/take-until-iterable.js.map +1 -0
  364. package/dist/esm/collection/implementations/iterable-collection/_shared/tap-iterable.js.map +1 -0
  365. package/dist/esm/collection/implementations/iterable-collection/_shared/unique-iterable.js.map +1 -0
  366. package/dist/esm/collection/implementations/iterable-collection/_shared/update-iterable.js.map +1 -0
  367. package/dist/esm/collection/implementations/iterable-collection/_shared/when-iterable.js.map +1 -0
  368. package/dist/esm/collection/implementations/iterable-collection/_shared/zip-iterable.js.map +1 -0
  369. package/dist/esm/collection/implementations/iterable-collection/iterable-collection.js +489 -0
  370. package/dist/esm/collection/implementations/iterable-collection/iterable-collection.js.map +1 -0
  371. package/dist/esm/collection/implementations/list-collection/_module.js +2 -0
  372. package/dist/esm/collection/implementations/list-collection/_module.js.map +1 -0
  373. package/dist/esm/collection/implementations/list-collection/list-collection.js +624 -0
  374. package/dist/esm/collection/implementations/list-collection/list-collection.js.map +1 -0
  375. package/dist/esm/event-bus/contracts/_module.js +5 -0
  376. package/dist/esm/event-bus/contracts/_module.js.map +1 -0
  377. package/dist/esm/event-bus/contracts/_shared.js +25 -0
  378. package/dist/esm/event-bus/contracts/_shared.js.map +1 -0
  379. package/dist/esm/event-bus/contracts/event-bus-adapter.contract.js +1 -0
  380. package/dist/esm/event-bus/contracts/event-bus-adapter.contract.js.map +1 -0
  381. package/dist/esm/event-bus/contracts/event-bus-manager.contract.js +1 -0
  382. package/dist/esm/event-bus/contracts/event-bus-manager.contract.js.map +1 -0
  383. package/dist/esm/event-bus/contracts/event-bus.contract.js +1 -0
  384. package/dist/esm/event-bus/contracts/event-bus.contract.js.map +1 -0
  385. package/dist/esm/event-bus/implementations/_module.js +6 -0
  386. package/dist/esm/event-bus/implementations/_module.js.map +1 -0
  387. package/dist/esm/event-bus/implementations/_shared/test-utilities/_module.js +2 -0
  388. package/dist/esm/event-bus/implementations/_shared/test-utilities/_module.js.map +1 -0
  389. package/dist/esm/event-bus/implementations/_shared/test-utilities/event-bus-adapter.test-suite.js +48 -0
  390. package/dist/esm/event-bus/implementations/_shared/test-utilities/event-bus-adapter.test-suite.js.map +1 -0
  391. package/dist/esm/event-bus/implementations/event-bus/_module.js +3 -0
  392. package/dist/esm/event-bus/implementations/event-bus/_module.js.map +1 -0
  393. package/dist/esm/event-bus/implementations/event-bus/event-bus-manager.js +20 -0
  394. package/dist/esm/event-bus/implementations/event-bus/event-bus-manager.js.map +1 -0
  395. package/dist/esm/event-bus/implementations/event-bus/event-bus.js +100 -0
  396. package/dist/esm/event-bus/implementations/event-bus/event-bus.js.map +1 -0
  397. package/dist/esm/event-bus/implementations/event-bus/with-namespace-event-bus-adapter.js +37 -0
  398. package/dist/esm/event-bus/implementations/event-bus/with-namespace-event-bus-adapter.js.map +1 -0
  399. package/dist/esm/event-bus/implementations/event-bus/with-validation-event-bus-adapter.js +31 -0
  400. package/dist/esm/event-bus/implementations/event-bus/with-validation-event-bus-adapter.js.map +1 -0
  401. package/dist/esm/event-bus/implementations/memory-event-bus-adapter/_module.js +2 -0
  402. package/dist/esm/event-bus/implementations/memory-event-bus-adapter/_module.js.map +1 -0
  403. package/dist/esm/event-bus/implementations/memory-event-bus-adapter/memory-event-bus-adapter.js +19 -0
  404. package/dist/esm/event-bus/implementations/memory-event-bus-adapter/memory-event-bus-adapter.js.map +1 -0
  405. package/dist/esm/event-bus/implementations/no-op-event-bus-adapter/_module.js +2 -0
  406. package/dist/esm/event-bus/implementations/no-op-event-bus-adapter/_module.js.map +1 -0
  407. package/dist/esm/event-bus/implementations/no-op-event-bus-adapter/no-op-event-bus-adapter.js +12 -0
  408. package/dist/esm/event-bus/implementations/no-op-event-bus-adapter/no-op-event-bus-adapter.js.map +1 -0
  409. package/dist/esm/event-bus/implementations/redis-event-bus-adapter/_module.js +2 -0
  410. package/dist/esm/event-bus/implementations/redis-event-bus-adapter/_module.js.map +1 -0
  411. package/dist/esm/event-bus/implementations/redis-event-bus-adapter/redis-event-bus-adapter.js +41 -0
  412. package/dist/esm/event-bus/implementations/redis-event-bus-adapter/redis-event-bus-adapter.js.map +1 -0
  413. package/dist/esm/serializer/contracts/_module.js +2 -0
  414. package/dist/esm/serializer/contracts/_module.js.map +1 -0
  415. package/dist/esm/serializer/contracts/serializer.contract.js.map +1 -0
  416. package/dist/esm/serializer/implementations/_module.js +6 -0
  417. package/dist/esm/serializer/implementations/_module.js.map +1 -0
  418. package/dist/esm/serializer/implementations/_shared/test-utilities/_module.js +2 -0
  419. package/dist/esm/serializer/implementations/_shared/test-utilities/_module.js.map +1 -0
  420. package/dist/esm/serializer/implementations/_shared/test-utilities/serializer.test-suite.js.map +1 -0
  421. package/dist/esm/serializer/implementations/mongodb-serializer/_module.js +2 -0
  422. package/dist/esm/serializer/implementations/mongodb-serializer/_module.js.map +1 -0
  423. package/dist/esm/serializer/implementations/mongodb-serializer/mongodb-serializer.js +32 -0
  424. package/dist/esm/serializer/implementations/mongodb-serializer/mongodb-serializer.js.map +1 -0
  425. package/dist/esm/serializer/implementations/redis-serializer/_module.js +2 -0
  426. package/dist/esm/serializer/implementations/redis-serializer/_module.js.map +1 -0
  427. package/dist/esm/serializer/implementations/redis-serializer/redis-serializer.js +33 -0
  428. package/dist/esm/serializer/implementations/redis-serializer/redis-serializer.js.map +1 -0
  429. package/dist/esm/serializer/implementations/sql-serializer/_module.js +2 -0
  430. package/dist/esm/serializer/implementations/sql-serializer/_module.js.map +1 -0
  431. package/dist/esm/serializer/implementations/sql-serializer/sql-serializer.js +33 -0
  432. package/dist/esm/serializer/implementations/sql-serializer/sql-serializer.js.map +1 -0
  433. package/dist/esm/serializer/implementations/super-json-serializer/_module.js +2 -0
  434. package/dist/esm/serializer/implementations/super-json-serializer/_module.js.map +1 -0
  435. package/dist/esm/serializer/implementations/super-json-serializer/super-json-serializer.js +277 -0
  436. package/dist/esm/serializer/implementations/super-json-serializer/super-json-serializer.js.map +1 -0
  437. package/dist/esm/storage/contracts/_module.js +6 -0
  438. package/dist/esm/storage/contracts/_module.js.map +1 -0
  439. package/dist/esm/storage/contracts/_shared.js.map +1 -0
  440. package/dist/esm/storage/contracts/storage-adapter.contract.js.map +1 -0
  441. package/dist/esm/storage/contracts/storage-events.contract.js +11 -0
  442. package/dist/esm/storage/contracts/storage-events.contract.js.map +1 -0
  443. package/dist/esm/storage/contracts/storage-manager.contract.js +1 -0
  444. package/dist/esm/storage/contracts/storage-manager.contract.js.map +1 -0
  445. package/dist/esm/storage/contracts/storage.contract.js.map +1 -0
  446. package/dist/esm/storage/implementations/_module.js +7 -0
  447. package/dist/esm/storage/implementations/_module.js.map +1 -0
  448. package/dist/esm/storage/implementations/_shared/test-utilities/_module.js +2 -0
  449. package/dist/esm/storage/implementations/_shared/test-utilities/_module.js.map +1 -0
  450. package/dist/esm/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.js +295 -0
  451. package/dist/esm/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.js.map +1 -0
  452. package/dist/esm/storage/implementations/memory-storage-adapter/_module.js +2 -0
  453. package/dist/esm/storage/implementations/memory-storage-adapter/_module.js.map +1 -0
  454. package/dist/esm/storage/implementations/memory-storage-adapter/memory-storage-adapter.js +81 -0
  455. package/dist/esm/storage/implementations/memory-storage-adapter/memory-storage-adapter.js.map +1 -0
  456. package/dist/esm/storage/implementations/mongodb-storage-adapter/_module.js +2 -0
  457. package/dist/esm/storage/implementations/mongodb-storage-adapter/_module.js.map +1 -0
  458. package/dist/esm/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.js +196 -0
  459. package/dist/esm/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.js.map +1 -0
  460. package/dist/esm/storage/implementations/redis-storage-adapter/_module.js +2 -0
  461. package/dist/esm/storage/implementations/redis-storage-adapter/_module.js.map +1 -0
  462. package/dist/esm/storage/implementations/redis-storage-adapter/redis-storage-adapter.js +224 -0
  463. package/dist/esm/storage/implementations/redis-storage-adapter/redis-storage-adapter.js.map +1 -0
  464. package/dist/esm/storage/implementations/sqlite/_module.js +3 -0
  465. package/dist/esm/storage/implementations/sqlite/_module.js.map +1 -0
  466. package/dist/esm/storage/implementations/sqlite/_shared/_module.js +2 -0
  467. package/dist/esm/storage/implementations/sqlite/_shared/_module.js.map +1 -0
  468. package/dist/esm/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.js +186 -0
  469. package/dist/esm/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.js.map +1 -0
  470. package/dist/esm/storage/implementations/sqlite/libsql-storage-adapter/_module.js +2 -0
  471. package/dist/esm/storage/implementations/sqlite/libsql-storage-adapter/_module.js.map +1 -0
  472. package/dist/esm/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +49 -0
  473. package/dist/esm/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +1 -0
  474. package/dist/esm/storage/implementations/sqlite/sqlite-storage-adapter/_module.js +2 -0
  475. package/dist/esm/storage/implementations/sqlite/sqlite-storage-adapter/_module.js.map +1 -0
  476. package/dist/esm/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +48 -0
  477. package/dist/esm/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +1 -0
  478. package/dist/esm/storage/implementations/storage/_module.js +3 -0
  479. package/dist/esm/storage/implementations/storage/_module.js.map +1 -0
  480. package/dist/esm/storage/implementations/storage/storage-manager.js +20 -0
  481. package/dist/esm/storage/implementations/storage/storage-manager.js.map +1 -0
  482. package/dist/esm/storage/implementations/storage/storage.js +261 -0
  483. package/dist/esm/storage/implementations/storage/storage.js.map +1 -0
  484. package/dist/esm/storage/implementations/storage/with-event-storage-adapter.js +250 -0
  485. package/dist/esm/storage/implementations/storage/with-event-storage-adapter.js.map +1 -0
  486. package/dist/esm/storage/implementations/storage/with-namespace-storage-adapter.js +49 -0
  487. package/dist/esm/storage/implementations/storage/with-namespace-storage-adapter.js.map +1 -0
  488. package/dist/esm/storage/implementations/storage/with-validation-storage-adapter.js +44 -0
  489. package/dist/esm/storage/implementations/storage/with-validation-storage-adapter.js.map +1 -0
  490. package/dist/esm/utilities/_module.js +3 -0
  491. package/dist/esm/utilities/_module.js.map +1 -1
  492. package/dist/esm/utilities/async/_module.js +11 -0
  493. package/dist/esm/utilities/async/_module.js.map +1 -0
  494. package/dist/esm/utilities/async/_shared.js.map +1 -0
  495. package/dist/esm/utilities/async/abortable/_module.js +2 -0
  496. package/dist/esm/utilities/async/abortable/_module.js.map +1 -0
  497. package/dist/esm/utilities/async/abortable/abortable.js +45 -0
  498. package/dist/esm/utilities/async/abortable/abortable.js.map +1 -0
  499. package/dist/esm/utilities/async/abortable-iterable/_module.js +2 -0
  500. package/dist/esm/utilities/async/abortable-iterable/_module.js.map +1 -0
  501. package/dist/esm/utilities/async/abortable-iterable/abortable-iterable.js +29 -0
  502. package/dist/esm/utilities/async/abortable-iterable/abortable-iterable.js.map +1 -0
  503. package/dist/esm/utilities/async/delay/_module.js +2 -0
  504. package/dist/esm/utilities/async/delay/_module.js.map +1 -0
  505. package/dist/esm/utilities/async/delay/delay.js +21 -0
  506. package/dist/esm/utilities/async/delay/delay.js.map +1 -0
  507. package/dist/esm/utilities/async/delay-iterable/_module.js +2 -0
  508. package/dist/esm/utilities/async/delay-iterable/_module.js.map +1 -0
  509. package/dist/esm/utilities/async/delay-iterable/delay-iterable.js +33 -0
  510. package/dist/esm/utilities/async/delay-iterable/delay-iterable.js.map +1 -0
  511. package/dist/esm/utilities/async/lazy-promise/_module.js +2 -0
  512. package/dist/esm/utilities/async/lazy-promise/_module.js.map +1 -0
  513. package/dist/esm/utilities/async/lazy-promise/lazy-promise.js.map +1 -0
  514. package/dist/esm/utilities/async/retry/_module.js +2 -0
  515. package/dist/esm/utilities/async/retry/_module.js.map +1 -0
  516. package/dist/esm/utilities/async/retry/retry.js +40 -0
  517. package/dist/esm/utilities/async/retry/retry.js.map +1 -0
  518. package/dist/esm/utilities/async/retry-iterable/_module.js +2 -0
  519. package/dist/esm/utilities/async/retry-iterable/_module.js.map +1 -0
  520. package/dist/esm/utilities/async/retry-iterable/retry-iterable.js +29 -0
  521. package/dist/esm/utilities/async/retry-iterable/retry-iterable.js.map +1 -0
  522. package/dist/esm/utilities/async/timeout/_module.js +2 -0
  523. package/dist/esm/utilities/async/timeout/_module.js.map +1 -0
  524. package/dist/esm/utilities/async/timeout/timeout.js +25 -0
  525. package/dist/esm/utilities/async/timeout/timeout.js.map +1 -0
  526. package/dist/esm/utilities/async/timeout-iterable/_module.js +2 -0
  527. package/dist/esm/utilities/async/timeout-iterable/_module.js.map +1 -0
  528. package/dist/esm/utilities/async/timeout-iterable/timeout-iterable.js +8 -0
  529. package/dist/esm/utilities/async/timeout-iterable/timeout-iterable.js.map +1 -0
  530. package/dist/esm/utilities/backof-policies/_module.js +5 -0
  531. package/dist/esm/utilities/backof-policies/_module.js.map +1 -0
  532. package/dist/esm/utilities/backof-policies/_shared.js.map +1 -0
  533. package/dist/esm/utilities/backof-policies/constant-backoff-policy/_module.js +2 -0
  534. package/dist/esm/utilities/backof-policies/constant-backoff-policy/_module.js.map +1 -0
  535. package/dist/esm/utilities/backof-policies/constant-backoff-policy/constant-backoff-policy.js +16 -0
  536. package/dist/esm/utilities/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +1 -0
  537. package/dist/esm/utilities/backof-policies/exponential-backoff-policy/_module.js +2 -0
  538. package/dist/esm/utilities/backof-policies/exponential-backoff-policy/_module.js.map +1 -0
  539. package/dist/esm/utilities/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +20 -0
  540. package/dist/esm/utilities/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +1 -0
  541. package/dist/esm/utilities/backof-policies/linear-backoff-policy/_module.js +2 -0
  542. package/dist/esm/utilities/backof-policies/linear-backoff-policy/_module.js.map +1 -0
  543. package/dist/esm/utilities/backof-policies/linear-backoff-policy/linear-backoff-policy.js +20 -0
  544. package/dist/esm/utilities/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +1 -0
  545. package/dist/esm/utilities/backof-policies/polynomial-backoff-policy/_module.js +2 -0
  546. package/dist/esm/utilities/backof-policies/polynomial-backoff-policy/_module.js.map +1 -0
  547. package/dist/esm/utilities/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +20 -0
  548. package/dist/esm/utilities/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +1 -0
  549. package/dist/esm/utilities/time-span/time-span.js +2 -2
  550. package/dist/esm/utilities/time-span/time-span.js.map +1 -1
  551. package/dist/esm/utilities/validation/_module.js +17 -0
  552. package/dist/esm/utilities/validation/_module.js.map +1 -0
  553. package/dist/types/_module.d.ts +8 -5
  554. package/dist/types/_shared/types.d.ts +1 -1
  555. package/dist/types/_shared/utilities.d.ts +8 -0
  556. package/dist/types/collection/contracts/_module.d.ts +3 -0
  557. package/dist/types/collection/contracts/async-collection.contract.d.ts +1310 -0
  558. package/dist/types/collection/contracts/collection.contract.d.ts +1270 -0
  559. package/dist/types/collection/implementations/_module.d.ts +4 -0
  560. package/dist/types/collection/implementations/async-iterable-collection/_module.d.ts +1 -0
  561. package/dist/types/collection/implementations/async-iterable-collection/_shared/_module.d.ts +33 -0
  562. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.d.ts +15 -0
  563. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.d.ts +15 -0
  564. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.d.ts +12 -0
  565. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.d.ts +14 -0
  566. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.d.ts +16 -0
  567. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.d.ts +13 -0
  568. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-error-handler-iterable.d.ts +9 -0
  569. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.d.ts +13 -0
  570. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.d.ts +13 -0
  571. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.d.ts +15 -0
  572. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.d.ts +15 -0
  573. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.d.ts +15 -0
  574. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-map-iterable.d.ts +13 -0
  575. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.d.ts +13 -0
  576. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.d.ts +16 -0
  577. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.d.ts +16 -0
  578. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.d.ts +15 -0
  579. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.d.ts +15 -0
  580. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.d.ts +15 -0
  581. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.d.ts +13 -0
  582. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.d.ts +13 -0
  583. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.d.ts +13 -0
  584. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.d.ts +14 -0
  585. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.d.ts +14 -0
  586. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.d.ts +13 -0
  587. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-split-iterable.d.ts +15 -0
  588. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-iterable.d.ts +13 -0
  589. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.d.ts +13 -0
  590. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.d.ts +13 -0
  591. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.d.ts +13 -0
  592. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-update-iterable.d.ts +14 -0
  593. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-when-iterable.d.ts +14 -0
  594. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.d.ts +14 -0
  595. package/dist/types/collection/implementations/async-iterable-collection/async-iterable-collection.d.ts +106 -0
  596. package/dist/types/collection/implementations/iterable-collection/_module.d.ts +1 -0
  597. package/dist/types/collection/implementations/iterable-collection/_shared/_module.d.ts +32 -0
  598. package/dist/types/collection/implementations/iterable-collection/_shared/chunk-iterable.d.ts +14 -0
  599. package/dist/types/collection/implementations/iterable-collection/_shared/chunk-while-iterable.d.ts +14 -0
  600. package/dist/types/collection/implementations/iterable-collection/_shared/collapse-iterable.d.ts +12 -0
  601. package/dist/types/collection/implementations/iterable-collection/_shared/count-by-iterable.d.ts +14 -0
  602. package/dist/types/collection/implementations/iterable-collection/_shared/cross-join-iterable.d.ts +11 -0
  603. package/dist/types/collection/implementations/iterable-collection/_shared/entries-iterable.d.ts +12 -0
  604. package/dist/types/collection/implementations/iterable-collection/_shared/filter-iterable.d.ts +13 -0
  605. package/dist/types/collection/implementations/iterable-collection/_shared/flat-map-iterable.d.ts +13 -0
  606. package/dist/types/collection/implementations/iterable-collection/_shared/group-by-iterable.d.ts +15 -0
  607. package/dist/types/collection/implementations/iterable-collection/_shared/insert-after-iterable.d.ts +14 -0
  608. package/dist/types/collection/implementations/iterable-collection/_shared/insert-before-iterable.d.ts +14 -0
  609. package/dist/types/collection/implementations/iterable-collection/_shared/map-iterable.d.ts +13 -0
  610. package/dist/types/collection/implementations/iterable-collection/_shared/merge-iterable.d.ts +12 -0
  611. package/dist/types/collection/implementations/iterable-collection/_shared/pad-end-iterable.d.ts +15 -0
  612. package/dist/types/collection/implementations/iterable-collection/_shared/pad-start-iterable.d.ts +15 -0
  613. package/dist/types/collection/implementations/iterable-collection/_shared/partion-iterable.d.ts +14 -0
  614. package/dist/types/collection/implementations/iterable-collection/_shared/repeat-iterable.d.ts +14 -0
  615. package/dist/types/collection/implementations/iterable-collection/_shared/reverse-iterable.d.ts +14 -0
  616. package/dist/types/collection/implementations/iterable-collection/_shared/shuffle-iterable.d.ts +12 -0
  617. package/dist/types/collection/implementations/iterable-collection/_shared/skip-iterable.d.ts +13 -0
  618. package/dist/types/collection/implementations/iterable-collection/_shared/skip-until-iterable.d.ts +13 -0
  619. package/dist/types/collection/implementations/iterable-collection/_shared/slice-iterable.d.ts +14 -0
  620. package/dist/types/collection/implementations/iterable-collection/_shared/sliding-iterable.d.ts +14 -0
  621. package/dist/types/collection/implementations/iterable-collection/_shared/sort-iterable.d.ts +13 -0
  622. package/dist/types/collection/implementations/iterable-collection/_shared/split-iterable.d.ts +14 -0
  623. package/dist/types/collection/implementations/iterable-collection/_shared/take-iterable.d.ts +13 -0
  624. package/dist/types/collection/implementations/iterable-collection/_shared/take-until-iterable.d.ts +13 -0
  625. package/dist/types/collection/implementations/iterable-collection/_shared/tap-iterable.d.ts +13 -0
  626. package/dist/types/collection/implementations/iterable-collection/_shared/unique-iterable.d.ts +13 -0
  627. package/dist/types/collection/implementations/iterable-collection/_shared/update-iterable.d.ts +14 -0
  628. package/dist/types/collection/implementations/iterable-collection/_shared/when-iterable.d.ts +14 -0
  629. package/dist/types/collection/implementations/iterable-collection/_shared/zip-iterable.d.ts +13 -0
  630. package/dist/types/collection/implementations/iterable-collection/iterable-collection.d.ts +100 -0
  631. package/dist/types/collection/implementations/list-collection/_module.d.ts +1 -0
  632. package/dist/types/collection/implementations/list-collection/list-collection.d.ts +97 -0
  633. package/dist/types/event-bus/contracts/_module.d.ts +4 -0
  634. package/dist/types/event-bus/contracts/_shared.d.ts +32 -0
  635. package/dist/types/event-bus/contracts/event-bus-adapter.contract.d.ts +23 -0
  636. package/dist/types/event-bus/contracts/event-bus-manager.contract.d.ts +20 -0
  637. package/dist/types/event-bus/contracts/event-bus.contract.d.ts +91 -0
  638. package/dist/types/event-bus/implementations/_module.d.ts +5 -0
  639. package/dist/types/event-bus/implementations/_shared/test-utilities/_module.d.ts +1 -0
  640. package/dist/types/event-bus/implementations/_shared/test-utilities/event-bus-adapter.test-suite.d.ts +20 -0
  641. package/dist/types/event-bus/implementations/event-bus/_module.d.ts +2 -0
  642. package/dist/types/event-bus/implementations/event-bus/event-bus-manager.d.ts +23 -0
  643. package/dist/types/event-bus/implementations/event-bus/event-bus.d.ts +102 -0
  644. package/dist/types/event-bus/implementations/event-bus/with-namespace-event-bus-adapter.d.ts +16 -0
  645. package/dist/types/event-bus/implementations/event-bus/with-validation-event-bus-adapter.d.ts +17 -0
  646. package/dist/types/event-bus/implementations/memory-event-bus-adapter/_module.d.ts +1 -0
  647. package/dist/types/event-bus/implementations/memory-event-bus-adapter/memory-event-bus-adapter.d.ts +15 -0
  648. package/dist/types/event-bus/implementations/no-op-event-bus-adapter/_module.d.ts +1 -0
  649. package/dist/types/event-bus/implementations/no-op-event-bus-adapter/no-op-event-bus-adapter.d.ts +14 -0
  650. package/dist/types/event-bus/implementations/redis-event-bus-adapter/_module.d.ts +1 -0
  651. package/dist/types/event-bus/implementations/redis-event-bus-adapter/redis-event-bus-adapter.d.ts +28 -0
  652. package/dist/types/serializer/contracts/_module.d.ts +1 -0
  653. package/dist/types/serializer/implementations/_module.d.ts +5 -0
  654. package/dist/types/serializer/implementations/_shared/test-utilities/_module.d.ts +1 -0
  655. package/dist/types/serializer/implementations/_shared/test-utilities/serializer.test-suite.d.ts +18 -0
  656. package/dist/types/serializer/implementations/mongodb-serializer/_module.d.ts +1 -0
  657. package/dist/types/serializer/implementations/mongodb-serializer/mongodb-serializer.d.ts +13 -0
  658. package/dist/types/serializer/implementations/redis-serializer/_module.d.ts +1 -0
  659. package/dist/types/serializer/implementations/redis-serializer/redis-serializer.d.ts +13 -0
  660. package/dist/types/serializer/implementations/sql-serializer/_module.d.ts +1 -0
  661. package/dist/types/serializer/implementations/sql-serializer/sql-serializer.d.ts +13 -0
  662. package/dist/types/serializer/implementations/super-json-serializer/_module.d.ts +1 -0
  663. package/dist/types/serializer/implementations/super-json-serializer/super-json-serializer.d.ts +37 -0
  664. package/dist/types/storage/contracts/_module.d.ts +5 -0
  665. package/dist/types/storage/contracts/storage-adapter.contract.d.ts +58 -0
  666. package/dist/types/storage/contracts/storage-events.contract.d.ts +90 -0
  667. package/dist/types/storage/contracts/storage-manager.contract.d.ts +19 -0
  668. package/dist/types/storage/contracts/storage.contract.d.ts +176 -0
  669. package/dist/types/storage/implementations/_module.d.ts +6 -0
  670. package/dist/types/storage/implementations/_shared/test-utilities/_module.d.ts +1 -0
  671. package/dist/types/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.d.ts +20 -0
  672. package/dist/types/storage/implementations/memory-storage-adapter/_module.d.ts +1 -0
  673. package/dist/types/storage/implementations/memory-storage-adapter/memory-storage-adapter.d.ts +18 -0
  674. package/dist/types/storage/implementations/mongodb-storage-adapter/_module.d.ts +1 -0
  675. package/dist/types/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.d.ts +43 -0
  676. package/dist/types/storage/implementations/redis-storage-adapter/_module.d.ts +1 -0
  677. package/dist/types/storage/implementations/redis-storage-adapter/redis-storage-adapter.d.ts +38 -0
  678. package/dist/types/storage/implementations/sqlite/_module.d.ts +2 -0
  679. package/dist/types/storage/implementations/sqlite/_shared/_module.d.ts +1 -0
  680. package/dist/types/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.d.ts +39 -0
  681. package/dist/types/storage/implementations/sqlite/libsql-storage-adapter/_module.d.ts +1 -0
  682. package/dist/types/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.d.ts +30 -0
  683. package/dist/types/storage/implementations/sqlite/sqlite-storage-adapter/_module.d.ts +1 -0
  684. package/dist/types/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.d.ts +30 -0
  685. package/dist/types/storage/implementations/storage/_module.d.ts +2 -0
  686. package/dist/types/storage/implementations/storage/storage-manager.d.ts +23 -0
  687. package/dist/types/storage/implementations/storage/storage.d.ts +114 -0
  688. package/dist/types/storage/implementations/storage/with-event-storage-adapter.d.ts +31 -0
  689. package/dist/types/storage/implementations/storage/with-namespace-storage-adapter.d.ts +24 -0
  690. package/dist/types/storage/implementations/storage/with-validation-storage-adapter.d.ts +22 -0
  691. package/dist/types/utilities/_module.d.ts +3 -0
  692. package/dist/types/utilities/async/_module.d.ts +10 -0
  693. package/dist/types/utilities/async/_shared.d.ts +35 -0
  694. package/dist/types/utilities/async/abortable/_module.d.ts +1 -0
  695. package/dist/types/utilities/async/abortable/abortable.d.ts +39 -0
  696. package/dist/types/utilities/async/abortable-iterable/_module.d.ts +1 -0
  697. package/dist/types/utilities/async/abortable-iterable/abortable-iterable.d.ts +36 -0
  698. package/dist/types/utilities/async/delay/_module.d.ts +1 -0
  699. package/dist/types/utilities/async/delay/delay.d.ts +38 -0
  700. package/dist/types/utilities/async/delay-iterable/_module.d.ts +1 -0
  701. package/dist/types/utilities/async/delay-iterable/delay-iterable.d.ts +57 -0
  702. package/dist/types/utilities/async/lazy-promise/_module.d.ts +1 -0
  703. package/dist/types/utilities/async/lazy-promise/lazy-promise.d.ts +28 -0
  704. package/dist/types/utilities/async/retry/_module.d.ts +1 -0
  705. package/dist/types/utilities/async/retry/retry.d.ts +89 -0
  706. package/dist/types/utilities/async/retry-iterable/_module.d.ts +1 -0
  707. package/dist/types/utilities/async/retry-iterable/retry-iterable.d.ts +86 -0
  708. package/dist/types/utilities/async/timeout/_module.d.ts +1 -0
  709. package/dist/types/utilities/async/timeout/timeout.d.ts +40 -0
  710. package/dist/types/utilities/async/timeout-iterable/_module.d.ts +1 -0
  711. package/dist/types/utilities/async/timeout-iterable/timeout-iterable.d.ts +64 -0
  712. package/dist/types/utilities/backof-policies/_module.d.ts +5 -0
  713. package/dist/types/utilities/backof-policies/_shared.d.ts +12 -0
  714. package/dist/types/utilities/backof-policies/constant-backoff-policy/_module.d.ts +1 -0
  715. package/dist/types/utilities/backof-policies/constant-backoff-policy/constant-backoff-policy.d.ts +28 -0
  716. package/dist/types/utilities/backof-policies/exponential-backoff-policy/_module.d.ts +1 -0
  717. package/dist/types/utilities/backof-policies/exponential-backoff-policy/exponential-backoff-policy.d.ts +36 -0
  718. package/dist/types/utilities/backof-policies/linear-backoff-policy/_module.d.ts +1 -0
  719. package/dist/types/utilities/backof-policies/linear-backoff-policy/linear-backoff-policy.d.ts +32 -0
  720. package/dist/types/utilities/backof-policies/polynomial-backoff-policy/_module.d.ts +1 -0
  721. package/dist/types/utilities/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.d.ts +36 -0
  722. package/dist/types/utilities/time-span/time-span.d.ts +3 -2
  723. package/dist/types/utilities/validation/_module.d.ts +32 -0
  724. package/package.json +10 -6
  725. package/dist/cjs/async/_module.js +0 -30
  726. package/dist/cjs/async/_module.js.map +0 -1
  727. package/dist/cjs/async/_shared.js.map +0 -1
  728. package/dist/cjs/async/abortable/_module.js +0 -18
  729. package/dist/cjs/async/abortable/_module.js.map +0 -1
  730. package/dist/cjs/async/abortable/abortable.js +0 -48
  731. package/dist/cjs/async/abortable/abortable.js.map +0 -1
  732. package/dist/cjs/async/abortable-iterable/_module.js +0 -18
  733. package/dist/cjs/async/abortable-iterable/_module.js.map +0 -1
  734. package/dist/cjs/async/abortable-iterable/abortable-iterable.js +0 -32
  735. package/dist/cjs/async/abortable-iterable/abortable-iterable.js.map +0 -1
  736. package/dist/cjs/async/backof-policies/_module.js +0 -21
  737. package/dist/cjs/async/backof-policies/_module.js.map +0 -1
  738. package/dist/cjs/async/backof-policies/_shared.js.map +0 -1
  739. package/dist/cjs/async/backof-policies/constant-backoff-policy/_module.js +0 -18
  740. package/dist/cjs/async/backof-policies/constant-backoff-policy/_module.js.map +0 -1
  741. package/dist/cjs/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +0 -19
  742. package/dist/cjs/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +0 -1
  743. package/dist/cjs/async/backof-policies/exponential-backoff-policy/_module.js +0 -18
  744. package/dist/cjs/async/backof-policies/exponential-backoff-policy/_module.js.map +0 -1
  745. package/dist/cjs/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +0 -23
  746. package/dist/cjs/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +0 -1
  747. package/dist/cjs/async/backof-policies/linear-backoff-policy/_module.js +0 -18
  748. package/dist/cjs/async/backof-policies/linear-backoff-policy/_module.js.map +0 -1
  749. package/dist/cjs/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +0 -23
  750. package/dist/cjs/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +0 -1
  751. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/_module.js +0 -18
  752. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/_module.js.map +0 -1
  753. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +0 -23
  754. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +0 -1
  755. package/dist/cjs/async/delay/_module.js +0 -18
  756. package/dist/cjs/async/delay/_module.js.map +0 -1
  757. package/dist/cjs/async/delay/delay.js +0 -24
  758. package/dist/cjs/async/delay/delay.js.map +0 -1
  759. package/dist/cjs/async/delay-iterable/_module.js +0 -18
  760. package/dist/cjs/async/delay-iterable/_module.js.map +0 -1
  761. package/dist/cjs/async/delay-iterable/delay-iterable.js +0 -36
  762. package/dist/cjs/async/delay-iterable/delay-iterable.js.map +0 -1
  763. package/dist/cjs/async/lazy-promise/_module.js +0 -18
  764. package/dist/cjs/async/lazy-promise/_module.js.map +0 -1
  765. package/dist/cjs/async/lazy-promise/lazy-promise.js.map +0 -1
  766. package/dist/cjs/async/retry/_module.js +0 -18
  767. package/dist/cjs/async/retry/_module.js.map +0 -1
  768. package/dist/cjs/async/retry/retry.js +0 -43
  769. package/dist/cjs/async/retry/retry.js.map +0 -1
  770. package/dist/cjs/async/retry-iterable/_module.js +0 -18
  771. package/dist/cjs/async/retry-iterable/_module.js.map +0 -1
  772. package/dist/cjs/async/retry-iterable/retry-iterable.js +0 -32
  773. package/dist/cjs/async/retry-iterable/retry-iterable.js.map +0 -1
  774. package/dist/cjs/async/timeout/_module.js +0 -18
  775. package/dist/cjs/async/timeout/_module.js.map +0 -1
  776. package/dist/cjs/async/timeout/timeout.js +0 -28
  777. package/dist/cjs/async/timeout/timeout.js.map +0 -1
  778. package/dist/cjs/async/timeout-iterable/_module.js +0 -18
  779. package/dist/cjs/async/timeout-iterable/_module.js.map +0 -1
  780. package/dist/cjs/async/timeout-iterable/timeout-iterable.js +0 -11
  781. package/dist/cjs/async/timeout-iterable/timeout-iterable.js.map +0 -1
  782. package/dist/cjs/collection/_module.js +0 -21
  783. package/dist/cjs/collection/_module.js.map +0 -1
  784. package/dist/cjs/collection/_shared.js.map +0 -1
  785. package/dist/cjs/collection/async-iterable-collection/_module.js +0 -18
  786. package/dist/cjs/collection/async-iterable-collection/_module.js.map +0 -1
  787. package/dist/cjs/collection/async-iterable-collection/_shared/_module.js +0 -50
  788. package/dist/cjs/collection/async-iterable-collection/_shared/_module.js.map +0 -1
  789. package/dist/cjs/collection/async-iterable-collection/_shared/async-chunk-iterable.js.map +0 -1
  790. package/dist/cjs/collection/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +0 -1
  791. package/dist/cjs/collection/async-iterable-collection/_shared/async-collapse-iterable.js +0 -22
  792. package/dist/cjs/collection/async-iterable-collection/_shared/async-collapse-iterable.js.map +0 -1
  793. package/dist/cjs/collection/async-iterable-collection/_shared/async-count-by-iterable.js.map +0 -1
  794. package/dist/cjs/collection/async-iterable-collection/_shared/async-cross-join-iterable.js +0 -35
  795. package/dist/cjs/collection/async-iterable-collection/_shared/async-cross-join-iterable.js.map +0 -1
  796. package/dist/cjs/collection/async-iterable-collection/_shared/async-entries-iterable.js.map +0 -1
  797. package/dist/cjs/collection/async-iterable-collection/_shared/async-error-handler-iterable.js.map +0 -1
  798. package/dist/cjs/collection/async-iterable-collection/_shared/async-filter-iterable.js.map +0 -1
  799. package/dist/cjs/collection/async-iterable-collection/_shared/async-flat-map-iterable.js.map +0 -1
  800. package/dist/cjs/collection/async-iterable-collection/_shared/async-group-by-iterable.js.map +0 -1
  801. package/dist/cjs/collection/async-iterable-collection/_shared/async-insert-after-iterable.js.map +0 -1
  802. package/dist/cjs/collection/async-iterable-collection/_shared/async-insert-before-iterable.js.map +0 -1
  803. package/dist/cjs/collection/async-iterable-collection/_shared/async-map-iterable.js.map +0 -1
  804. package/dist/cjs/collection/async-iterable-collection/_shared/async-merge-iterable.js.map +0 -1
  805. package/dist/cjs/collection/async-iterable-collection/_shared/async-pad-end-iterable.js.map +0 -1
  806. package/dist/cjs/collection/async-iterable-collection/_shared/async-pad-start-iterable.js.map +0 -1
  807. package/dist/cjs/collection/async-iterable-collection/_shared/async-partion-iterable.js.map +0 -1
  808. package/dist/cjs/collection/async-iterable-collection/_shared/async-repeat-iterable.js.map +0 -1
  809. package/dist/cjs/collection/async-iterable-collection/_shared/async-reverse-iterable.js.map +0 -1
  810. package/dist/cjs/collection/async-iterable-collection/_shared/async-shuffle-iterable.js.map +0 -1
  811. package/dist/cjs/collection/async-iterable-collection/_shared/async-skip-iterable.js.map +0 -1
  812. package/dist/cjs/collection/async-iterable-collection/_shared/async-skip-until-iterable.js.map +0 -1
  813. package/dist/cjs/collection/async-iterable-collection/_shared/async-slice-iterable.js.map +0 -1
  814. package/dist/cjs/collection/async-iterable-collection/_shared/async-sliding-iterable.js.map +0 -1
  815. package/dist/cjs/collection/async-iterable-collection/_shared/async-sort-iterable.js.map +0 -1
  816. package/dist/cjs/collection/async-iterable-collection/_shared/async-split-iterable.js.map +0 -1
  817. package/dist/cjs/collection/async-iterable-collection/_shared/async-take-iterable.js.map +0 -1
  818. package/dist/cjs/collection/async-iterable-collection/_shared/async-take-until-iterable.js.map +0 -1
  819. package/dist/cjs/collection/async-iterable-collection/_shared/async-tap-iterable.js.map +0 -1
  820. package/dist/cjs/collection/async-iterable-collection/_shared/async-unique-iterable.js.map +0 -1
  821. package/dist/cjs/collection/async-iterable-collection/_shared/async-update-iterable.js.map +0 -1
  822. package/dist/cjs/collection/async-iterable-collection/_shared/async-when-iterable.js.map +0 -1
  823. package/dist/cjs/collection/async-iterable-collection/_shared/async-zip-iterable.js +0 -37
  824. package/dist/cjs/collection/async-iterable-collection/_shared/async-zip-iterable.js.map +0 -1
  825. package/dist/cjs/collection/async-iterable-collection/async-iterable-collection.js +0 -547
  826. package/dist/cjs/collection/async-iterable-collection/async-iterable-collection.js.map +0 -1
  827. package/dist/cjs/collection/iterable-collection/_module.js +0 -18
  828. package/dist/cjs/collection/iterable-collection/_module.js.map +0 -1
  829. package/dist/cjs/collection/iterable-collection/_shared/_module.js +0 -49
  830. package/dist/cjs/collection/iterable-collection/_shared/_module.js.map +0 -1
  831. package/dist/cjs/collection/iterable-collection/_shared/chunk-iterable.js.map +0 -1
  832. package/dist/cjs/collection/iterable-collection/_shared/chunk-while-iterable.js.map +0 -1
  833. package/dist/cjs/collection/iterable-collection/_shared/collapse-iterable.js +0 -22
  834. package/dist/cjs/collection/iterable-collection/_shared/collapse-iterable.js.map +0 -1
  835. package/dist/cjs/collection/iterable-collection/_shared/count-by-iterable.js.map +0 -1
  836. package/dist/cjs/collection/iterable-collection/_shared/cross-join-iterable.js +0 -37
  837. package/dist/cjs/collection/iterable-collection/_shared/cross-join-iterable.js.map +0 -1
  838. package/dist/cjs/collection/iterable-collection/_shared/entries-iterable.js.map +0 -1
  839. package/dist/cjs/collection/iterable-collection/_shared/filter-iterable.js.map +0 -1
  840. package/dist/cjs/collection/iterable-collection/_shared/flat-map-iterable.js.map +0 -1
  841. package/dist/cjs/collection/iterable-collection/_shared/group-by-iterable.js.map +0 -1
  842. package/dist/cjs/collection/iterable-collection/_shared/insert-after-iterable.js.map +0 -1
  843. package/dist/cjs/collection/iterable-collection/_shared/insert-before-iterable.js.map +0 -1
  844. package/dist/cjs/collection/iterable-collection/_shared/map-iterable.js.map +0 -1
  845. package/dist/cjs/collection/iterable-collection/_shared/merge-iterable.js.map +0 -1
  846. package/dist/cjs/collection/iterable-collection/_shared/pad-end-iterable.js.map +0 -1
  847. package/dist/cjs/collection/iterable-collection/_shared/pad-start-iterable.js.map +0 -1
  848. package/dist/cjs/collection/iterable-collection/_shared/partion-iterable.js.map +0 -1
  849. package/dist/cjs/collection/iterable-collection/_shared/repeat-iterable.js.map +0 -1
  850. package/dist/cjs/collection/iterable-collection/_shared/reverse-iterable.js.map +0 -1
  851. package/dist/cjs/collection/iterable-collection/_shared/shuffle-iterable.js.map +0 -1
  852. package/dist/cjs/collection/iterable-collection/_shared/skip-iterable.js.map +0 -1
  853. package/dist/cjs/collection/iterable-collection/_shared/skip-until-iterable.js.map +0 -1
  854. package/dist/cjs/collection/iterable-collection/_shared/slice-iterable.js.map +0 -1
  855. package/dist/cjs/collection/iterable-collection/_shared/sliding-iterable.js.map +0 -1
  856. package/dist/cjs/collection/iterable-collection/_shared/sort-iterable.js.map +0 -1
  857. package/dist/cjs/collection/iterable-collection/_shared/split-iterable.js.map +0 -1
  858. package/dist/cjs/collection/iterable-collection/_shared/take-iterable.js.map +0 -1
  859. package/dist/cjs/collection/iterable-collection/_shared/take-until-iterable.js.map +0 -1
  860. package/dist/cjs/collection/iterable-collection/_shared/tap-iterable.js.map +0 -1
  861. package/dist/cjs/collection/iterable-collection/_shared/unique-iterable.js.map +0 -1
  862. package/dist/cjs/collection/iterable-collection/_shared/update-iterable.js.map +0 -1
  863. package/dist/cjs/collection/iterable-collection/_shared/when-iterable.js.map +0 -1
  864. package/dist/cjs/collection/iterable-collection/_shared/zip-iterable.js.map +0 -1
  865. package/dist/cjs/collection/iterable-collection/iterable-collection.js +0 -493
  866. package/dist/cjs/collection/iterable-collection/iterable-collection.js.map +0 -1
  867. package/dist/cjs/collection/list-collection/_module.js +0 -18
  868. package/dist/cjs/collection/list-collection/_module.js.map +0 -1
  869. package/dist/cjs/collection/list-collection/list-collection.js +0 -627
  870. package/dist/cjs/collection/list-collection/list-collection.js.map +0 -1
  871. package/dist/cjs/contracts/_module.js +0 -20
  872. package/dist/cjs/contracts/_module.js.map +0 -1
  873. package/dist/cjs/contracts/collection/_module.js +0 -20
  874. package/dist/cjs/contracts/collection/_module.js.map +0 -1
  875. package/dist/cjs/contracts/collection/_shared.js.map +0 -1
  876. package/dist/cjs/contracts/collection/async-collection.contract.js.map +0 -1
  877. package/dist/cjs/contracts/collection/collection.contract.js.map +0 -1
  878. package/dist/cjs/contracts/serializer/_module.js +0 -18
  879. package/dist/cjs/contracts/serializer/_module.js.map +0 -1
  880. package/dist/cjs/contracts/serializer/serializer.contract.js.map +0 -1
  881. package/dist/cjs/contracts/storage/_module.js +0 -20
  882. package/dist/cjs/contracts/storage/_module.js.map +0 -1
  883. package/dist/cjs/contracts/storage/_shared.js.map +0 -1
  884. package/dist/cjs/contracts/storage/storage-adapter.contract.js.map +0 -1
  885. package/dist/cjs/contracts/storage/storage.contract.js.map +0 -1
  886. package/dist/cjs/serializer/_module.js +0 -22
  887. package/dist/cjs/serializer/_module.js.map +0 -1
  888. package/dist/cjs/serializer/_shared/test-utilities/_module.js +0 -18
  889. package/dist/cjs/serializer/_shared/test-utilities/_module.js.map +0 -1
  890. package/dist/cjs/serializer/_shared/test-utilities/serializer.test-suite.js.map +0 -1
  891. package/dist/cjs/serializer/mongodb-serializer/_module.js +0 -18
  892. package/dist/cjs/serializer/mongodb-serializer/_module.js.map +0 -1
  893. package/dist/cjs/serializer/mongodb-serializer/mongodb-serializer.js +0 -36
  894. package/dist/cjs/serializer/mongodb-serializer/mongodb-serializer.js.map +0 -1
  895. package/dist/cjs/serializer/redis-serializer/_module.js +0 -18
  896. package/dist/cjs/serializer/redis-serializer/_module.js.map +0 -1
  897. package/dist/cjs/serializer/redis-serializer/redis-serializer.js +0 -37
  898. package/dist/cjs/serializer/redis-serializer/redis-serializer.js.map +0 -1
  899. package/dist/cjs/serializer/sql-serializer/_module.js +0 -18
  900. package/dist/cjs/serializer/sql-serializer/_module.js.map +0 -1
  901. package/dist/cjs/serializer/sql-serializer/sql-serializer.js +0 -37
  902. package/dist/cjs/serializer/sql-serializer/sql-serializer.js.map +0 -1
  903. package/dist/cjs/serializer/super-json-serializer/_module.js +0 -18
  904. package/dist/cjs/serializer/super-json-serializer/_module.js.map +0 -1
  905. package/dist/cjs/serializer/super-json-serializer/super-json-serializer.js +0 -304
  906. package/dist/cjs/serializer/super-json-serializer/super-json-serializer.js.map +0 -1
  907. package/dist/cjs/storage/_module.js +0 -23
  908. package/dist/cjs/storage/_module.js.map +0 -1
  909. package/dist/cjs/storage/_shared/test-utilities/_module.js +0 -18
  910. package/dist/cjs/storage/_shared/test-utilities/_module.js.map +0 -1
  911. package/dist/cjs/storage/_shared/test-utilities/storage-api.test-suite.js +0 -572
  912. package/dist/cjs/storage/_shared/test-utilities/storage-api.test-suite.js.map +0 -1
  913. package/dist/cjs/storage/_shared/test-utilities/storage-namespace.test-suite.js +0 -241
  914. package/dist/cjs/storage/_shared/test-utilities/storage-namespace.test-suite.js.map +0 -1
  915. package/dist/cjs/storage/_shared/test-utilities/storage-value.test-suite.js +0 -4172
  916. package/dist/cjs/storage/_shared/test-utilities/storage-value.test-suite.js.map +0 -1
  917. package/dist/cjs/storage/_shared/test-utilities/storage.test-suite.js +0 -12
  918. package/dist/cjs/storage/_shared/test-utilities/storage.test-suite.js.map +0 -1
  919. package/dist/cjs/storage/memory-storage-adapter/_module.js +0 -18
  920. package/dist/cjs/storage/memory-storage-adapter/_module.js.map +0 -1
  921. package/dist/cjs/storage/memory-storage-adapter/memory-storage-adapter.js +0 -85
  922. package/dist/cjs/storage/memory-storage-adapter/memory-storage-adapter.js.map +0 -1
  923. package/dist/cjs/storage/mongodb-storage-adapter/_module.js +0 -6
  924. package/dist/cjs/storage/mongodb-storage-adapter/_module.js.map +0 -1
  925. package/dist/cjs/storage/mongodb-storage-adapter/mongodb-storage-adapter.js +0 -203
  926. package/dist/cjs/storage/mongodb-storage-adapter/mongodb-storage-adapter.js.map +0 -1
  927. package/dist/cjs/storage/namespace-storage-adapter.js +0 -56
  928. package/dist/cjs/storage/namespace-storage-adapter.js.map +0 -1
  929. package/dist/cjs/storage/redis-storage-adapter/_module.js +0 -18
  930. package/dist/cjs/storage/redis-storage-adapter/_module.js.map +0 -1
  931. package/dist/cjs/storage/redis-storage-adapter/redis-storage-adapter.js +0 -228
  932. package/dist/cjs/storage/redis-storage-adapter/redis-storage-adapter.js.map +0 -1
  933. package/dist/cjs/storage/sqlite/_module.js +0 -19
  934. package/dist/cjs/storage/sqlite/_module.js.map +0 -1
  935. package/dist/cjs/storage/sqlite/_shared/_module.js +0 -18
  936. package/dist/cjs/storage/sqlite/_shared/_module.js.map +0 -1
  937. package/dist/cjs/storage/sqlite/_shared/base-sqlite-storage-adapter.js +0 -190
  938. package/dist/cjs/storage/sqlite/_shared/base-sqlite-storage-adapter.js.map +0 -1
  939. package/dist/cjs/storage/sqlite/libsql-storage-adapter/_module.js +0 -18
  940. package/dist/cjs/storage/sqlite/libsql-storage-adapter/_module.js.map +0 -1
  941. package/dist/cjs/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +0 -53
  942. package/dist/cjs/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +0 -1
  943. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/_module.js +0 -18
  944. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/_module.js.map +0 -1
  945. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +0 -52
  946. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +0 -1
  947. package/dist/cjs/storage/storage.js +0 -217
  948. package/dist/cjs/storage/storage.js.map +0 -1
  949. package/dist/esm/async/_module.js +0 -12
  950. package/dist/esm/async/_module.js.map +0 -1
  951. package/dist/esm/async/_shared.js.map +0 -1
  952. package/dist/esm/async/abortable/_module.js +0 -2
  953. package/dist/esm/async/abortable/_module.js.map +0 -1
  954. package/dist/esm/async/abortable/abortable.js +0 -45
  955. package/dist/esm/async/abortable/abortable.js.map +0 -1
  956. package/dist/esm/async/abortable-iterable/_module.js +0 -2
  957. package/dist/esm/async/abortable-iterable/_module.js.map +0 -1
  958. package/dist/esm/async/abortable-iterable/abortable-iterable.js +0 -29
  959. package/dist/esm/async/abortable-iterable/abortable-iterable.js.map +0 -1
  960. package/dist/esm/async/backof-policies/_module.js +0 -5
  961. package/dist/esm/async/backof-policies/_module.js.map +0 -1
  962. package/dist/esm/async/backof-policies/_shared.js.map +0 -1
  963. package/dist/esm/async/backof-policies/constant-backoff-policy/_module.js +0 -2
  964. package/dist/esm/async/backof-policies/constant-backoff-policy/_module.js.map +0 -1
  965. package/dist/esm/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +0 -16
  966. package/dist/esm/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +0 -1
  967. package/dist/esm/async/backof-policies/exponential-backoff-policy/_module.js +0 -2
  968. package/dist/esm/async/backof-policies/exponential-backoff-policy/_module.js.map +0 -1
  969. package/dist/esm/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +0 -20
  970. package/dist/esm/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +0 -1
  971. package/dist/esm/async/backof-policies/linear-backoff-policy/_module.js +0 -2
  972. package/dist/esm/async/backof-policies/linear-backoff-policy/_module.js.map +0 -1
  973. package/dist/esm/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +0 -20
  974. package/dist/esm/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +0 -1
  975. package/dist/esm/async/backof-policies/polynomial-backoff-policy/_module.js +0 -2
  976. package/dist/esm/async/backof-policies/polynomial-backoff-policy/_module.js.map +0 -1
  977. package/dist/esm/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +0 -20
  978. package/dist/esm/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +0 -1
  979. package/dist/esm/async/delay/_module.js +0 -2
  980. package/dist/esm/async/delay/_module.js.map +0 -1
  981. package/dist/esm/async/delay/delay.js +0 -21
  982. package/dist/esm/async/delay/delay.js.map +0 -1
  983. package/dist/esm/async/delay-iterable/_module.js +0 -2
  984. package/dist/esm/async/delay-iterable/_module.js.map +0 -1
  985. package/dist/esm/async/delay-iterable/delay-iterable.js +0 -33
  986. package/dist/esm/async/delay-iterable/delay-iterable.js.map +0 -1
  987. package/dist/esm/async/lazy-promise/_module.js +0 -2
  988. package/dist/esm/async/lazy-promise/_module.js.map +0 -1
  989. package/dist/esm/async/lazy-promise/lazy-promise.js.map +0 -1
  990. package/dist/esm/async/retry/_module.js +0 -2
  991. package/dist/esm/async/retry/_module.js.map +0 -1
  992. package/dist/esm/async/retry/retry.js +0 -40
  993. package/dist/esm/async/retry/retry.js.map +0 -1
  994. package/dist/esm/async/retry-iterable/_module.js +0 -2
  995. package/dist/esm/async/retry-iterable/_module.js.map +0 -1
  996. package/dist/esm/async/retry-iterable/retry-iterable.js +0 -29
  997. package/dist/esm/async/retry-iterable/retry-iterable.js.map +0 -1
  998. package/dist/esm/async/timeout/_module.js +0 -2
  999. package/dist/esm/async/timeout/_module.js.map +0 -1
  1000. package/dist/esm/async/timeout/timeout.js +0 -25
  1001. package/dist/esm/async/timeout/timeout.js.map +0 -1
  1002. package/dist/esm/async/timeout-iterable/_module.js +0 -2
  1003. package/dist/esm/async/timeout-iterable/_module.js.map +0 -1
  1004. package/dist/esm/async/timeout-iterable/timeout-iterable.js +0 -8
  1005. package/dist/esm/async/timeout-iterable/timeout-iterable.js.map +0 -1
  1006. package/dist/esm/collection/_module.js +0 -5
  1007. package/dist/esm/collection/_module.js.map +0 -1
  1008. package/dist/esm/collection/_shared.js.map +0 -1
  1009. package/dist/esm/collection/async-iterable-collection/_module.js +0 -2
  1010. package/dist/esm/collection/async-iterable-collection/_module.js.map +0 -1
  1011. package/dist/esm/collection/async-iterable-collection/_shared/_module.js +0 -34
  1012. package/dist/esm/collection/async-iterable-collection/_shared/_module.js.map +0 -1
  1013. package/dist/esm/collection/async-iterable-collection/_shared/async-chunk-iterable.js.map +0 -1
  1014. package/dist/esm/collection/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +0 -1
  1015. package/dist/esm/collection/async-iterable-collection/_shared/async-collapse-iterable.js +0 -18
  1016. package/dist/esm/collection/async-iterable-collection/_shared/async-collapse-iterable.js.map +0 -1
  1017. package/dist/esm/collection/async-iterable-collection/_shared/async-count-by-iterable.js.map +0 -1
  1018. package/dist/esm/collection/async-iterable-collection/_shared/async-cross-join-iterable.js +0 -31
  1019. package/dist/esm/collection/async-iterable-collection/_shared/async-cross-join-iterable.js.map +0 -1
  1020. package/dist/esm/collection/async-iterable-collection/_shared/async-entries-iterable.js.map +0 -1
  1021. package/dist/esm/collection/async-iterable-collection/_shared/async-error-handler-iterable.js.map +0 -1
  1022. package/dist/esm/collection/async-iterable-collection/_shared/async-filter-iterable.js.map +0 -1
  1023. package/dist/esm/collection/async-iterable-collection/_shared/async-flat-map-iterable.js.map +0 -1
  1024. package/dist/esm/collection/async-iterable-collection/_shared/async-group-by-iterable.js.map +0 -1
  1025. package/dist/esm/collection/async-iterable-collection/_shared/async-insert-after-iterable.js.map +0 -1
  1026. package/dist/esm/collection/async-iterable-collection/_shared/async-insert-before-iterable.js.map +0 -1
  1027. package/dist/esm/collection/async-iterable-collection/_shared/async-map-iterable.js.map +0 -1
  1028. package/dist/esm/collection/async-iterable-collection/_shared/async-merge-iterable.js.map +0 -1
  1029. package/dist/esm/collection/async-iterable-collection/_shared/async-pad-end-iterable.js.map +0 -1
  1030. package/dist/esm/collection/async-iterable-collection/_shared/async-pad-start-iterable.js.map +0 -1
  1031. package/dist/esm/collection/async-iterable-collection/_shared/async-partion-iterable.js.map +0 -1
  1032. package/dist/esm/collection/async-iterable-collection/_shared/async-repeat-iterable.js.map +0 -1
  1033. package/dist/esm/collection/async-iterable-collection/_shared/async-reverse-iterable.js.map +0 -1
  1034. package/dist/esm/collection/async-iterable-collection/_shared/async-shuffle-iterable.js.map +0 -1
  1035. package/dist/esm/collection/async-iterable-collection/_shared/async-skip-iterable.js.map +0 -1
  1036. package/dist/esm/collection/async-iterable-collection/_shared/async-skip-until-iterable.js.map +0 -1
  1037. package/dist/esm/collection/async-iterable-collection/_shared/async-slice-iterable.js.map +0 -1
  1038. package/dist/esm/collection/async-iterable-collection/_shared/async-sliding-iterable.js.map +0 -1
  1039. package/dist/esm/collection/async-iterable-collection/_shared/async-sort-iterable.js.map +0 -1
  1040. package/dist/esm/collection/async-iterable-collection/_shared/async-split-iterable.js.map +0 -1
  1041. package/dist/esm/collection/async-iterable-collection/_shared/async-take-iterable.js.map +0 -1
  1042. package/dist/esm/collection/async-iterable-collection/_shared/async-take-until-iterable.js.map +0 -1
  1043. package/dist/esm/collection/async-iterable-collection/_shared/async-tap-iterable.js.map +0 -1
  1044. package/dist/esm/collection/async-iterable-collection/_shared/async-unique-iterable.js.map +0 -1
  1045. package/dist/esm/collection/async-iterable-collection/_shared/async-update-iterable.js.map +0 -1
  1046. package/dist/esm/collection/async-iterable-collection/_shared/async-when-iterable.js.map +0 -1
  1047. package/dist/esm/collection/async-iterable-collection/_shared/async-zip-iterable.js +0 -33
  1048. package/dist/esm/collection/async-iterable-collection/_shared/async-zip-iterable.js.map +0 -1
  1049. package/dist/esm/collection/async-iterable-collection/async-iterable-collection.js +0 -543
  1050. package/dist/esm/collection/async-iterable-collection/async-iterable-collection.js.map +0 -1
  1051. package/dist/esm/collection/iterable-collection/_module.js +0 -2
  1052. package/dist/esm/collection/iterable-collection/_module.js.map +0 -1
  1053. package/dist/esm/collection/iterable-collection/_shared/_module.js +0 -33
  1054. package/dist/esm/collection/iterable-collection/_shared/_module.js.map +0 -1
  1055. package/dist/esm/collection/iterable-collection/_shared/chunk-iterable.js.map +0 -1
  1056. package/dist/esm/collection/iterable-collection/_shared/chunk-while-iterable.js.map +0 -1
  1057. package/dist/esm/collection/iterable-collection/_shared/collapse-iterable.js +0 -18
  1058. package/dist/esm/collection/iterable-collection/_shared/collapse-iterable.js.map +0 -1
  1059. package/dist/esm/collection/iterable-collection/_shared/count-by-iterable.js.map +0 -1
  1060. package/dist/esm/collection/iterable-collection/_shared/cross-join-iterable.js +0 -33
  1061. package/dist/esm/collection/iterable-collection/_shared/cross-join-iterable.js.map +0 -1
  1062. package/dist/esm/collection/iterable-collection/_shared/entries-iterable.js.map +0 -1
  1063. package/dist/esm/collection/iterable-collection/_shared/filter-iterable.js.map +0 -1
  1064. package/dist/esm/collection/iterable-collection/_shared/flat-map-iterable.js.map +0 -1
  1065. package/dist/esm/collection/iterable-collection/_shared/group-by-iterable.js.map +0 -1
  1066. package/dist/esm/collection/iterable-collection/_shared/insert-after-iterable.js.map +0 -1
  1067. package/dist/esm/collection/iterable-collection/_shared/insert-before-iterable.js.map +0 -1
  1068. package/dist/esm/collection/iterable-collection/_shared/map-iterable.js.map +0 -1
  1069. package/dist/esm/collection/iterable-collection/_shared/merge-iterable.js.map +0 -1
  1070. package/dist/esm/collection/iterable-collection/_shared/pad-end-iterable.js.map +0 -1
  1071. package/dist/esm/collection/iterable-collection/_shared/pad-start-iterable.js.map +0 -1
  1072. package/dist/esm/collection/iterable-collection/_shared/partion-iterable.js.map +0 -1
  1073. package/dist/esm/collection/iterable-collection/_shared/repeat-iterable.js.map +0 -1
  1074. package/dist/esm/collection/iterable-collection/_shared/reverse-iterable.js.map +0 -1
  1075. package/dist/esm/collection/iterable-collection/_shared/shuffle-iterable.js.map +0 -1
  1076. package/dist/esm/collection/iterable-collection/_shared/skip-iterable.js.map +0 -1
  1077. package/dist/esm/collection/iterable-collection/_shared/skip-until-iterable.js.map +0 -1
  1078. package/dist/esm/collection/iterable-collection/_shared/slice-iterable.js.map +0 -1
  1079. package/dist/esm/collection/iterable-collection/_shared/sliding-iterable.js.map +0 -1
  1080. package/dist/esm/collection/iterable-collection/_shared/sort-iterable.js.map +0 -1
  1081. package/dist/esm/collection/iterable-collection/_shared/split-iterable.js.map +0 -1
  1082. package/dist/esm/collection/iterable-collection/_shared/take-iterable.js.map +0 -1
  1083. package/dist/esm/collection/iterable-collection/_shared/take-until-iterable.js.map +0 -1
  1084. package/dist/esm/collection/iterable-collection/_shared/tap-iterable.js.map +0 -1
  1085. package/dist/esm/collection/iterable-collection/_shared/unique-iterable.js.map +0 -1
  1086. package/dist/esm/collection/iterable-collection/_shared/update-iterable.js.map +0 -1
  1087. package/dist/esm/collection/iterable-collection/_shared/when-iterable.js.map +0 -1
  1088. package/dist/esm/collection/iterable-collection/_shared/zip-iterable.js.map +0 -1
  1089. package/dist/esm/collection/iterable-collection/iterable-collection.js +0 -489
  1090. package/dist/esm/collection/iterable-collection/iterable-collection.js.map +0 -1
  1091. package/dist/esm/collection/list-collection/_module.js +0 -2
  1092. package/dist/esm/collection/list-collection/_module.js.map +0 -1
  1093. package/dist/esm/collection/list-collection/list-collection.js +0 -623
  1094. package/dist/esm/collection/list-collection/list-collection.js.map +0 -1
  1095. package/dist/esm/contracts/_module.js +0 -4
  1096. package/dist/esm/contracts/_module.js.map +0 -1
  1097. package/dist/esm/contracts/collection/_module.js +0 -4
  1098. package/dist/esm/contracts/collection/_module.js.map +0 -1
  1099. package/dist/esm/contracts/collection/_shared.js.map +0 -1
  1100. package/dist/esm/contracts/collection/async-collection.contract.js.map +0 -1
  1101. package/dist/esm/contracts/collection/collection.contract.js.map +0 -1
  1102. package/dist/esm/contracts/serializer/_module.js +0 -2
  1103. package/dist/esm/contracts/serializer/_module.js.map +0 -1
  1104. package/dist/esm/contracts/serializer/serializer.contract.js.map +0 -1
  1105. package/dist/esm/contracts/storage/_module.js +0 -4
  1106. package/dist/esm/contracts/storage/_module.js.map +0 -1
  1107. package/dist/esm/contracts/storage/_shared.js.map +0 -1
  1108. package/dist/esm/contracts/storage/storage-adapter.contract.js.map +0 -1
  1109. package/dist/esm/contracts/storage/storage.contract.js.map +0 -1
  1110. package/dist/esm/serializer/_module.js +0 -6
  1111. package/dist/esm/serializer/_module.js.map +0 -1
  1112. package/dist/esm/serializer/_shared/test-utilities/_module.js +0 -2
  1113. package/dist/esm/serializer/_shared/test-utilities/_module.js.map +0 -1
  1114. package/dist/esm/serializer/_shared/test-utilities/serializer.test-suite.js.map +0 -1
  1115. package/dist/esm/serializer/mongodb-serializer/_module.js +0 -2
  1116. package/dist/esm/serializer/mongodb-serializer/_module.js.map +0 -1
  1117. package/dist/esm/serializer/mongodb-serializer/mongodb-serializer.js +0 -32
  1118. package/dist/esm/serializer/mongodb-serializer/mongodb-serializer.js.map +0 -1
  1119. package/dist/esm/serializer/redis-serializer/_module.js +0 -2
  1120. package/dist/esm/serializer/redis-serializer/_module.js.map +0 -1
  1121. package/dist/esm/serializer/redis-serializer/redis-serializer.js +0 -33
  1122. package/dist/esm/serializer/redis-serializer/redis-serializer.js.map +0 -1
  1123. package/dist/esm/serializer/sql-serializer/_module.js +0 -2
  1124. package/dist/esm/serializer/sql-serializer/_module.js.map +0 -1
  1125. package/dist/esm/serializer/sql-serializer/sql-serializer.js +0 -33
  1126. package/dist/esm/serializer/sql-serializer/sql-serializer.js.map +0 -1
  1127. package/dist/esm/serializer/super-json-serializer/_module.js +0 -2
  1128. package/dist/esm/serializer/super-json-serializer/_module.js.map +0 -1
  1129. package/dist/esm/serializer/super-json-serializer/super-json-serializer.js +0 -277
  1130. package/dist/esm/serializer/super-json-serializer/super-json-serializer.js.map +0 -1
  1131. package/dist/esm/storage/_module.js +0 -7
  1132. package/dist/esm/storage/_module.js.map +0 -1
  1133. package/dist/esm/storage/_shared/test-utilities/_module.js +0 -2
  1134. package/dist/esm/storage/_shared/test-utilities/_module.js.map +0 -1
  1135. package/dist/esm/storage/_shared/test-utilities/storage-api.test-suite.js +0 -569
  1136. package/dist/esm/storage/_shared/test-utilities/storage-api.test-suite.js.map +0 -1
  1137. package/dist/esm/storage/_shared/test-utilities/storage-namespace.test-suite.js +0 -238
  1138. package/dist/esm/storage/_shared/test-utilities/storage-namespace.test-suite.js.map +0 -1
  1139. package/dist/esm/storage/_shared/test-utilities/storage-value.test-suite.js +0 -4169
  1140. package/dist/esm/storage/_shared/test-utilities/storage-value.test-suite.js.map +0 -1
  1141. package/dist/esm/storage/_shared/test-utilities/storage.test-suite.js +0 -9
  1142. package/dist/esm/storage/_shared/test-utilities/storage.test-suite.js.map +0 -1
  1143. package/dist/esm/storage/memory-storage-adapter/_module.js +0 -2
  1144. package/dist/esm/storage/memory-storage-adapter/_module.js.map +0 -1
  1145. package/dist/esm/storage/memory-storage-adapter/memory-storage-adapter.js +0 -81
  1146. package/dist/esm/storage/memory-storage-adapter/memory-storage-adapter.js.map +0 -1
  1147. package/dist/esm/storage/mongodb-storage-adapter/_module.js +0 -2
  1148. package/dist/esm/storage/mongodb-storage-adapter/_module.js.map +0 -1
  1149. package/dist/esm/storage/mongodb-storage-adapter/mongodb-storage-adapter.js +0 -196
  1150. package/dist/esm/storage/mongodb-storage-adapter/mongodb-storage-adapter.js.map +0 -1
  1151. package/dist/esm/storage/namespace-storage-adapter.js +0 -52
  1152. package/dist/esm/storage/namespace-storage-adapter.js.map +0 -1
  1153. package/dist/esm/storage/redis-storage-adapter/_module.js +0 -2
  1154. package/dist/esm/storage/redis-storage-adapter/_module.js.map +0 -1
  1155. package/dist/esm/storage/redis-storage-adapter/redis-storage-adapter.js +0 -224
  1156. package/dist/esm/storage/redis-storage-adapter/redis-storage-adapter.js.map +0 -1
  1157. package/dist/esm/storage/sqlite/_module.js +0 -3
  1158. package/dist/esm/storage/sqlite/_module.js.map +0 -1
  1159. package/dist/esm/storage/sqlite/_shared/_module.js +0 -2
  1160. package/dist/esm/storage/sqlite/_shared/_module.js.map +0 -1
  1161. package/dist/esm/storage/sqlite/_shared/base-sqlite-storage-adapter.js +0 -186
  1162. package/dist/esm/storage/sqlite/_shared/base-sqlite-storage-adapter.js.map +0 -1
  1163. package/dist/esm/storage/sqlite/libsql-storage-adapter/_module.js +0 -2
  1164. package/dist/esm/storage/sqlite/libsql-storage-adapter/_module.js.map +0 -1
  1165. package/dist/esm/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +0 -49
  1166. package/dist/esm/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +0 -1
  1167. package/dist/esm/storage/sqlite/sqlite-storage-adapter/_module.js +0 -2
  1168. package/dist/esm/storage/sqlite/sqlite-storage-adapter/_module.js.map +0 -1
  1169. package/dist/esm/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +0 -48
  1170. package/dist/esm/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +0 -1
  1171. package/dist/esm/storage/storage.js +0 -213
  1172. package/dist/esm/storage/storage.js.map +0 -1
  1173. package/dist/types/async/_module.d.ts +0 -11
  1174. package/dist/types/async/_shared.d.ts +0 -35
  1175. package/dist/types/async/abortable/_module.d.ts +0 -1
  1176. package/dist/types/async/abortable/abortable.d.ts +0 -39
  1177. package/dist/types/async/abortable-iterable/_module.d.ts +0 -1
  1178. package/dist/types/async/abortable-iterable/abortable-iterable.d.ts +0 -36
  1179. package/dist/types/async/backof-policies/_module.d.ts +0 -5
  1180. package/dist/types/async/backof-policies/_shared.d.ts +0 -12
  1181. package/dist/types/async/backof-policies/constant-backoff-policy/_module.d.ts +0 -1
  1182. package/dist/types/async/backof-policies/constant-backoff-policy/constant-backoff-policy.d.ts +0 -28
  1183. package/dist/types/async/backof-policies/exponential-backoff-policy/_module.d.ts +0 -1
  1184. package/dist/types/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.d.ts +0 -36
  1185. package/dist/types/async/backof-policies/linear-backoff-policy/_module.d.ts +0 -1
  1186. package/dist/types/async/backof-policies/linear-backoff-policy/linear-backoff-policy.d.ts +0 -32
  1187. package/dist/types/async/backof-policies/polynomial-backoff-policy/_module.d.ts +0 -1
  1188. package/dist/types/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.d.ts +0 -36
  1189. package/dist/types/async/delay/_module.d.ts +0 -1
  1190. package/dist/types/async/delay/delay.d.ts +0 -38
  1191. package/dist/types/async/delay-iterable/_module.d.ts +0 -1
  1192. package/dist/types/async/delay-iterable/delay-iterable.d.ts +0 -57
  1193. package/dist/types/async/lazy-promise/_module.d.ts +0 -1
  1194. package/dist/types/async/lazy-promise/lazy-promise.d.ts +0 -28
  1195. package/dist/types/async/retry/_module.d.ts +0 -1
  1196. package/dist/types/async/retry/retry.d.ts +0 -86
  1197. package/dist/types/async/retry-iterable/_module.d.ts +0 -1
  1198. package/dist/types/async/retry-iterable/retry-iterable.d.ts +0 -86
  1199. package/dist/types/async/timeout/_module.d.ts +0 -1
  1200. package/dist/types/async/timeout/timeout.d.ts +0 -40
  1201. package/dist/types/async/timeout-iterable/_module.d.ts +0 -1
  1202. package/dist/types/async/timeout-iterable/timeout-iterable.d.ts +0 -64
  1203. package/dist/types/collection/_module.d.ts +0 -4
  1204. package/dist/types/collection/async-iterable-collection/_module.d.ts +0 -1
  1205. package/dist/types/collection/async-iterable-collection/_shared/_module.d.ts +0 -33
  1206. package/dist/types/collection/async-iterable-collection/_shared/async-chunk-iterable.d.ts +0 -12
  1207. package/dist/types/collection/async-iterable-collection/_shared/async-chunk-while-iterable.d.ts +0 -12
  1208. package/dist/types/collection/async-iterable-collection/_shared/async-collapse-iterable.d.ts +0 -9
  1209. package/dist/types/collection/async-iterable-collection/_shared/async-count-by-iterable.d.ts +0 -11
  1210. package/dist/types/collection/async-iterable-collection/_shared/async-cross-join-iterable.d.ts +0 -13
  1211. package/dist/types/collection/async-iterable-collection/_shared/async-entries-iterable.d.ts +0 -10
  1212. package/dist/types/collection/async-iterable-collection/_shared/async-error-handler-iterable.d.ts +0 -6
  1213. package/dist/types/collection/async-iterable-collection/_shared/async-filter-iterable.d.ts +0 -10
  1214. package/dist/types/collection/async-iterable-collection/_shared/async-flat-map-iterable.d.ts +0 -10
  1215. package/dist/types/collection/async-iterable-collection/_shared/async-group-by-iterable.d.ts +0 -12
  1216. package/dist/types/collection/async-iterable-collection/_shared/async-insert-after-iterable.d.ts +0 -12
  1217. package/dist/types/collection/async-iterable-collection/_shared/async-insert-before-iterable.d.ts +0 -12
  1218. package/dist/types/collection/async-iterable-collection/_shared/async-map-iterable.d.ts +0 -10
  1219. package/dist/types/collection/async-iterable-collection/_shared/async-merge-iterable.d.ts +0 -10
  1220. package/dist/types/collection/async-iterable-collection/_shared/async-pad-end-iterable.d.ts +0 -13
  1221. package/dist/types/collection/async-iterable-collection/_shared/async-pad-start-iterable.d.ts +0 -13
  1222. package/dist/types/collection/async-iterable-collection/_shared/async-partion-iterable.d.ts +0 -12
  1223. package/dist/types/collection/async-iterable-collection/_shared/async-repeat-iterable.d.ts +0 -12
  1224. package/dist/types/collection/async-iterable-collection/_shared/async-reverse-iterable.d.ts +0 -12
  1225. package/dist/types/collection/async-iterable-collection/_shared/async-shuffle-iterable.d.ts +0 -10
  1226. package/dist/types/collection/async-iterable-collection/_shared/async-skip-iterable.d.ts +0 -10
  1227. package/dist/types/collection/async-iterable-collection/_shared/async-skip-until-iterable.d.ts +0 -10
  1228. package/dist/types/collection/async-iterable-collection/_shared/async-slice-iterable.d.ts +0 -11
  1229. package/dist/types/collection/async-iterable-collection/_shared/async-sliding-iterable.d.ts +0 -11
  1230. package/dist/types/collection/async-iterable-collection/_shared/async-sort-iterable.d.ts +0 -10
  1231. package/dist/types/collection/async-iterable-collection/_shared/async-split-iterable.d.ts +0 -12
  1232. package/dist/types/collection/async-iterable-collection/_shared/async-take-iterable.d.ts +0 -10
  1233. package/dist/types/collection/async-iterable-collection/_shared/async-take-until-iterable.d.ts +0 -10
  1234. package/dist/types/collection/async-iterable-collection/_shared/async-tap-iterable.d.ts +0 -10
  1235. package/dist/types/collection/async-iterable-collection/_shared/async-unique-iterable.d.ts +0 -10
  1236. package/dist/types/collection/async-iterable-collection/_shared/async-update-iterable.d.ts +0 -11
  1237. package/dist/types/collection/async-iterable-collection/_shared/async-when-iterable.d.ts +0 -11
  1238. package/dist/types/collection/async-iterable-collection/_shared/async-zip-iterable.d.ts +0 -11
  1239. package/dist/types/collection/async-iterable-collection/async-iterable-collection.d.ts +0 -105
  1240. package/dist/types/collection/iterable-collection/_module.d.ts +0 -1
  1241. package/dist/types/collection/iterable-collection/_shared/_module.d.ts +0 -32
  1242. package/dist/types/collection/iterable-collection/_shared/chunk-iterable.d.ts +0 -11
  1243. package/dist/types/collection/iterable-collection/_shared/chunk-while-iterable.d.ts +0 -11
  1244. package/dist/types/collection/iterable-collection/_shared/collapse-iterable.d.ts +0 -9
  1245. package/dist/types/collection/iterable-collection/_shared/count-by-iterable.d.ts +0 -11
  1246. package/dist/types/collection/iterable-collection/_shared/cross-join-iterable.d.ts +0 -8
  1247. package/dist/types/collection/iterable-collection/_shared/entries-iterable.d.ts +0 -9
  1248. package/dist/types/collection/iterable-collection/_shared/filter-iterable.d.ts +0 -10
  1249. package/dist/types/collection/iterable-collection/_shared/flat-map-iterable.d.ts +0 -10
  1250. package/dist/types/collection/iterable-collection/_shared/group-by-iterable.d.ts +0 -12
  1251. package/dist/types/collection/iterable-collection/_shared/insert-after-iterable.d.ts +0 -11
  1252. package/dist/types/collection/iterable-collection/_shared/insert-before-iterable.d.ts +0 -11
  1253. package/dist/types/collection/iterable-collection/_shared/map-iterable.d.ts +0 -10
  1254. package/dist/types/collection/iterable-collection/_shared/merge-iterable.d.ts +0 -9
  1255. package/dist/types/collection/iterable-collection/_shared/pad-end-iterable.d.ts +0 -12
  1256. package/dist/types/collection/iterable-collection/_shared/pad-start-iterable.d.ts +0 -12
  1257. package/dist/types/collection/iterable-collection/_shared/partion-iterable.d.ts +0 -11
  1258. package/dist/types/collection/iterable-collection/_shared/repeat-iterable.d.ts +0 -11
  1259. package/dist/types/collection/iterable-collection/_shared/reverse-iterable.d.ts +0 -11
  1260. package/dist/types/collection/iterable-collection/_shared/shuffle-iterable.d.ts +0 -9
  1261. package/dist/types/collection/iterable-collection/_shared/skip-iterable.d.ts +0 -10
  1262. package/dist/types/collection/iterable-collection/_shared/skip-until-iterable.d.ts +0 -10
  1263. package/dist/types/collection/iterable-collection/_shared/slice-iterable.d.ts +0 -11
  1264. package/dist/types/collection/iterable-collection/_shared/sliding-iterable.d.ts +0 -11
  1265. package/dist/types/collection/iterable-collection/_shared/sort-iterable.d.ts +0 -10
  1266. package/dist/types/collection/iterable-collection/_shared/split-iterable.d.ts +0 -11
  1267. package/dist/types/collection/iterable-collection/_shared/take-iterable.d.ts +0 -10
  1268. package/dist/types/collection/iterable-collection/_shared/take-until-iterable.d.ts +0 -10
  1269. package/dist/types/collection/iterable-collection/_shared/tap-iterable.d.ts +0 -10
  1270. package/dist/types/collection/iterable-collection/_shared/unique-iterable.d.ts +0 -10
  1271. package/dist/types/collection/iterable-collection/_shared/update-iterable.d.ts +0 -11
  1272. package/dist/types/collection/iterable-collection/_shared/when-iterable.d.ts +0 -11
  1273. package/dist/types/collection/iterable-collection/_shared/zip-iterable.d.ts +0 -10
  1274. package/dist/types/collection/iterable-collection/iterable-collection.d.ts +0 -100
  1275. package/dist/types/collection/list-collection/_module.d.ts +0 -1
  1276. package/dist/types/collection/list-collection/list-collection.d.ts +0 -97
  1277. package/dist/types/contracts/_module.d.ts +0 -3
  1278. package/dist/types/contracts/collection/_module.d.ts +0 -3
  1279. package/dist/types/contracts/collection/async-collection.contract.d.ts +0 -1309
  1280. package/dist/types/contracts/collection/collection.contract.d.ts +0 -1269
  1281. package/dist/types/contracts/serializer/_module.d.ts +0 -1
  1282. package/dist/types/contracts/storage/_module.d.ts +0 -3
  1283. package/dist/types/contracts/storage/storage-adapter.contract.d.ts +0 -53
  1284. package/dist/types/contracts/storage/storage.contract.d.ts +0 -148
  1285. package/dist/types/serializer/_module.d.ts +0 -5
  1286. package/dist/types/serializer/_shared/test-utilities/_module.d.ts +0 -1
  1287. package/dist/types/serializer/_shared/test-utilities/serializer.test-suite.d.ts +0 -18
  1288. package/dist/types/serializer/mongodb-serializer/_module.d.ts +0 -1
  1289. package/dist/types/serializer/mongodb-serializer/mongodb-serializer.d.ts +0 -13
  1290. package/dist/types/serializer/redis-serializer/_module.d.ts +0 -1
  1291. package/dist/types/serializer/redis-serializer/redis-serializer.d.ts +0 -13
  1292. package/dist/types/serializer/sql-serializer/_module.d.ts +0 -1
  1293. package/dist/types/serializer/sql-serializer/sql-serializer.d.ts +0 -13
  1294. package/dist/types/serializer/super-json-serializer/_module.d.ts +0 -1
  1295. package/dist/types/serializer/super-json-serializer/super-json-serializer.d.ts +0 -37
  1296. package/dist/types/storage/_module.d.ts +0 -6
  1297. package/dist/types/storage/_shared/test-utilities/_module.d.ts +0 -1
  1298. package/dist/types/storage/_shared/test-utilities/storage-api.test-suite.d.ts +0 -20
  1299. package/dist/types/storage/_shared/test-utilities/storage-namespace.test-suite.d.ts +0 -20
  1300. package/dist/types/storage/_shared/test-utilities/storage-value.test-suite.d.ts +0 -20
  1301. package/dist/types/storage/_shared/test-utilities/storage.test-suite.d.ts +0 -20
  1302. package/dist/types/storage/memory-storage-adapter/_module.d.ts +0 -1
  1303. package/dist/types/storage/memory-storage-adapter/memory-storage-adapter.d.ts +0 -18
  1304. package/dist/types/storage/mongodb-storage-adapter/_module.d.ts +0 -1
  1305. package/dist/types/storage/mongodb-storage-adapter/mongodb-storage-adapter.d.ts +0 -43
  1306. package/dist/types/storage/namespace-storage-adapter.d.ts +0 -25
  1307. package/dist/types/storage/redis-storage-adapter/_module.d.ts +0 -1
  1308. package/dist/types/storage/redis-storage-adapter/redis-storage-adapter.d.ts +0 -38
  1309. package/dist/types/storage/sqlite/_module.d.ts +0 -2
  1310. package/dist/types/storage/sqlite/_shared/_module.d.ts +0 -1
  1311. package/dist/types/storage/sqlite/_shared/base-sqlite-storage-adapter.d.ts +0 -39
  1312. package/dist/types/storage/sqlite/libsql-storage-adapter/_module.d.ts +0 -1
  1313. package/dist/types/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.d.ts +0 -30
  1314. package/dist/types/storage/sqlite/sqlite-storage-adapter/_module.d.ts +0 -1
  1315. package/dist/types/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.d.ts +0 -30
  1316. package/dist/types/storage/storage.d.ts +0 -39
  1317. /package/dist/cjs/{contracts/collection → collection/contracts}/_shared.js +0 -0
  1318. /package/dist/cjs/{contracts/collection → collection/contracts}/async-collection.contract.js +0 -0
  1319. /package/dist/cjs/{contracts/collection → collection/contracts}/collection.contract.js +0 -0
  1320. /package/dist/cjs/collection/{_shared.js → implementations/_shared.js} +0 -0
  1321. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-iterable.js +0 -0
  1322. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-while-iterable.js +0 -0
  1323. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-count-by-iterable.js +0 -0
  1324. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-entries-iterable.js +0 -0
  1325. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-error-handler-iterable.js +0 -0
  1326. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-filter-iterable.js +0 -0
  1327. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-flat-map-iterable.js +0 -0
  1328. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-group-by-iterable.js +0 -0
  1329. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-after-iterable.js +0 -0
  1330. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-before-iterable.js +0 -0
  1331. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-map-iterable.js +0 -0
  1332. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-merge-iterable.js +0 -0
  1333. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-end-iterable.js +0 -0
  1334. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-start-iterable.js +0 -0
  1335. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-partion-iterable.js +0 -0
  1336. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-repeat-iterable.js +0 -0
  1337. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-reverse-iterable.js +0 -0
  1338. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-shuffle-iterable.js +0 -0
  1339. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-iterable.js +0 -0
  1340. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-until-iterable.js +0 -0
  1341. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-slice-iterable.js +0 -0
  1342. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sliding-iterable.js +0 -0
  1343. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sort-iterable.js +0 -0
  1344. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-split-iterable.js +0 -0
  1345. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-iterable.js +0 -0
  1346. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-until-iterable.js +0 -0
  1347. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-tap-iterable.js +0 -0
  1348. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-unique-iterable.js +0 -0
  1349. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-update-iterable.js +0 -0
  1350. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-when-iterable.js +0 -0
  1351. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-iterable.js +0 -0
  1352. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-while-iterable.js +0 -0
  1353. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/count-by-iterable.js +0 -0
  1354. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/entries-iterable.js +0 -0
  1355. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/filter-iterable.js +0 -0
  1356. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/flat-map-iterable.js +0 -0
  1357. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/group-by-iterable.js +0 -0
  1358. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-after-iterable.js +0 -0
  1359. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-before-iterable.js +0 -0
  1360. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/map-iterable.js +0 -0
  1361. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/merge-iterable.js +0 -0
  1362. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-end-iterable.js +0 -0
  1363. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-start-iterable.js +0 -0
  1364. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/partion-iterable.js +0 -0
  1365. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/repeat-iterable.js +0 -0
  1366. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/reverse-iterable.js +0 -0
  1367. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/shuffle-iterable.js +0 -0
  1368. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-iterable.js +0 -0
  1369. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-until-iterable.js +0 -0
  1370. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/slice-iterable.js +0 -0
  1371. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/sliding-iterable.js +0 -0
  1372. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/sort-iterable.js +0 -0
  1373. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/split-iterable.js +0 -0
  1374. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-iterable.js +0 -0
  1375. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-until-iterable.js +0 -0
  1376. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/tap-iterable.js +0 -0
  1377. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/unique-iterable.js +0 -0
  1378. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/update-iterable.js +0 -0
  1379. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/when-iterable.js +0 -0
  1380. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/zip-iterable.js +0 -0
  1381. /package/dist/cjs/{contracts/serializer → serializer/contracts}/serializer.contract.js +0 -0
  1382. /package/dist/cjs/serializer/{_shared → implementations/_shared}/test-utilities/serializer.test-suite.js +0 -0
  1383. /package/dist/cjs/{contracts/storage → storage/contracts}/_shared.js +0 -0
  1384. /package/dist/cjs/{contracts/storage → storage/contracts}/storage-adapter.contract.js +0 -0
  1385. /package/dist/cjs/{contracts/storage → storage/contracts}/storage.contract.js +0 -0
  1386. /package/dist/cjs/{async → utilities/async}/_shared.js +0 -0
  1387. /package/dist/cjs/{async → utilities/async}/lazy-promise/lazy-promise.js +0 -0
  1388. /package/dist/cjs/{async → utilities}/backof-policies/_shared.js +0 -0
  1389. /package/dist/esm/{contracts/collection → collection/contracts}/_shared.js +0 -0
  1390. /package/dist/esm/{contracts/collection → collection/contracts}/async-collection.contract.js +0 -0
  1391. /package/dist/esm/{contracts/collection → collection/contracts}/collection.contract.js +0 -0
  1392. /package/dist/esm/collection/{_shared.js → implementations/_shared.js} +0 -0
  1393. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-iterable.js +0 -0
  1394. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-while-iterable.js +0 -0
  1395. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-count-by-iterable.js +0 -0
  1396. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-entries-iterable.js +0 -0
  1397. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-error-handler-iterable.js +0 -0
  1398. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-filter-iterable.js +0 -0
  1399. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-flat-map-iterable.js +0 -0
  1400. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-group-by-iterable.js +0 -0
  1401. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-after-iterable.js +0 -0
  1402. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-before-iterable.js +0 -0
  1403. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-map-iterable.js +0 -0
  1404. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-merge-iterable.js +0 -0
  1405. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-end-iterable.js +0 -0
  1406. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-start-iterable.js +0 -0
  1407. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-partion-iterable.js +0 -0
  1408. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-repeat-iterable.js +0 -0
  1409. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-reverse-iterable.js +0 -0
  1410. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-shuffle-iterable.js +0 -0
  1411. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-iterable.js +0 -0
  1412. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-until-iterable.js +0 -0
  1413. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-slice-iterable.js +0 -0
  1414. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sliding-iterable.js +0 -0
  1415. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sort-iterable.js +0 -0
  1416. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-split-iterable.js +0 -0
  1417. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-iterable.js +0 -0
  1418. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-until-iterable.js +0 -0
  1419. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-tap-iterable.js +0 -0
  1420. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-unique-iterable.js +0 -0
  1421. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-update-iterable.js +0 -0
  1422. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-when-iterable.js +0 -0
  1423. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-iterable.js +0 -0
  1424. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-while-iterable.js +0 -0
  1425. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/count-by-iterable.js +0 -0
  1426. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/entries-iterable.js +0 -0
  1427. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/filter-iterable.js +0 -0
  1428. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/flat-map-iterable.js +0 -0
  1429. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/group-by-iterable.js +0 -0
  1430. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-after-iterable.js +0 -0
  1431. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-before-iterable.js +0 -0
  1432. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/map-iterable.js +0 -0
  1433. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/merge-iterable.js +0 -0
  1434. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-end-iterable.js +0 -0
  1435. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-start-iterable.js +0 -0
  1436. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/partion-iterable.js +0 -0
  1437. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/repeat-iterable.js +0 -0
  1438. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/reverse-iterable.js +0 -0
  1439. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/shuffle-iterable.js +0 -0
  1440. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-iterable.js +0 -0
  1441. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-until-iterable.js +0 -0
  1442. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/slice-iterable.js +0 -0
  1443. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/sliding-iterable.js +0 -0
  1444. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/sort-iterable.js +0 -0
  1445. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/split-iterable.js +0 -0
  1446. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-iterable.js +0 -0
  1447. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-until-iterable.js +0 -0
  1448. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/tap-iterable.js +0 -0
  1449. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/unique-iterable.js +0 -0
  1450. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/update-iterable.js +0 -0
  1451. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/when-iterable.js +0 -0
  1452. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/zip-iterable.js +0 -0
  1453. /package/dist/esm/{contracts/serializer → serializer/contracts}/serializer.contract.js +0 -0
  1454. /package/dist/esm/serializer/{_shared → implementations/_shared}/test-utilities/serializer.test-suite.js +0 -0
  1455. /package/dist/esm/{contracts/storage → storage/contracts}/_shared.js +0 -0
  1456. /package/dist/esm/{contracts/storage → storage/contracts}/storage-adapter.contract.js +0 -0
  1457. /package/dist/esm/{contracts/storage → storage/contracts}/storage.contract.js +0 -0
  1458. /package/dist/esm/{async → utilities/async}/_shared.js +0 -0
  1459. /package/dist/esm/{async → utilities/async}/lazy-promise/lazy-promise.js +0 -0
  1460. /package/dist/esm/{async → utilities}/backof-policies/_shared.js +0 -0
  1461. /package/dist/types/{contracts/collection → collection/contracts}/_shared.d.ts +0 -0
  1462. /package/dist/types/collection/{_shared.d.ts → implementations/_shared.d.ts} +0 -0
  1463. /package/dist/types/{contracts/serializer → serializer/contracts}/serializer.contract.d.ts +0 -0
  1464. /package/dist/types/{contracts/storage → storage/contracts}/_shared.d.ts +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"super-json-serializer.js","sourceRoot":"","sources":["../../../../../src/serializer/implementations/super-json-serializer/super-json-serializer.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../storage/contracts/_shared"), exports);
18
+ __exportStar(require("../../storage/contracts/storage.contract"), exports);
19
+ __exportStar(require("../../storage/contracts/storage-adapter.contract"), exports);
20
+ __exportStar(require("../../storage/contracts/storage-events.contract"), exports);
21
+ __exportStar(require("../../storage/contracts/storage-manager.contract"), exports);
22
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/storage/contracts/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,uEAAqD;AACrD,+EAA6D;AAC7D,8EAA4D;AAC5D,+EAA6D"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_shared.js","sourceRoot":"","sources":["../../../../src/storage/contracts/_shared.ts"],"names":[],"mappings":";;;AAOA,MAAa,YAAa,SAAQ,KAAK;IACnC,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,YAAY,CAAC,IAAI,CAAC;IAClC,CAAC;CACJ;AALD,oCAKC;AAKD,MAAa,sBAAuB,SAAQ,YAAY;IACpD,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,sBAAsB,CAAC,IAAI,CAAC;IAC5C,CAAC;CACJ;AALD,wDAKC;AAKD,MAAa,gBAAiB,SAAQ,YAAY;IAC9C,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;IACtC,CAAC;CACJ;AALD,4CAKC;AAKD,MAAa,uBAAwB,SAAQ,YAAY;IACrD,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,uBAAuB,CAAC,IAAI,CAAC;IAC7C,CAAC;CACJ;AALD,0DAKC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"storage-adapter.contract.js","sourceRoot":"","sources":["../../../../src/storage/contracts/storage-adapter.contract.ts"],"names":[],"mappings":""}
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.STORAGE_EVENTS = void 0;
4
+ exports.STORAGE_EVENTS = {
5
+ KEYS_FOUND: "keys_found",
6
+ KEYS_NOT_FOUND: "keys_not_found",
7
+ KEYS_ADDED: "keys_added",
8
+ KEYS_UPDATED: "keys_updated",
9
+ KEYS_REMOVED: "keys_removed",
10
+ KEYS_CLEARED: "keys_cleared",
11
+ KEY_INCREMENTED: "key_incremented",
12
+ KEY_DECREMENTED: "key_decremented",
13
+ };
14
+ //# sourceMappingURL=storage-events.contract.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"storage-events.contract.js","sourceRoot":"","sources":["../../../../src/storage/contracts/storage-events.contract.ts"],"names":[],"mappings":";;;AAYa,QAAA,cAAc,GAAG;IAC1B,UAAU,EAAE,YAAY;IACxB,cAAc,EAAE,gBAAgB;IAChC,UAAU,EAAE,YAAY;IACxB,YAAY,EAAE,cAAc;IAC5B,YAAY,EAAE,cAAc;IAC5B,YAAY,EAAE,cAAc;IAC5B,eAAe,EAAE,iBAAiB;IAClC,eAAe,EAAE,iBAAiB;CAC5B,CAAC"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=storage-manager.contract.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"storage-manager.contract.js","sourceRoot":"","sources":["../../../../src/storage/contracts/storage-manager.contract.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"storage.contract.js","sourceRoot":"","sources":["../../../../src/storage/contracts/storage.contract.ts"],"names":[],"mappings":""}
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../storage/implementations/storage/_module"), exports);
18
+ __exportStar(require("../../storage/implementations/_shared/test-utilities/_module"), exports);
19
+ __exportStar(require("../../storage/implementations/memory-storage-adapter/_module"), exports);
20
+ __exportStar(require("../../storage/implementations/mongodb-storage-adapter/_module"), exports);
21
+ __exportStar(require("../../storage/implementations/redis-storage-adapter/_module"), exports);
22
+ __exportStar(require("../../storage/implementations/sqlite/_module"), exports);
23
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/storage/implementations/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4EAA0D;AAC1D,2FAAyE;AACzE,2FAAyE;AACzE,4FAA0E;AAC1E,0FAAwE;AACxE,2EAAyD"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../../../storage/implementations/_shared/test-utilities/storage-adapter.test-suite"), exports);
18
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../../src/storage/implementations/_shared/test-utilities/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8GAA4F"}
@@ -0,0 +1,298 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.storageTestSuite = storageTestSuite;
4
+ const _module_1 = require("../../../../storage/contracts/_module");
5
+ function storageTestSuite(settings) {
6
+ const { expect, test, createAdapter, describe, beforeEach } = settings;
7
+ let storageAdapter;
8
+ beforeEach(async () => {
9
+ storageAdapter = await createAdapter();
10
+ });
11
+ describe("method: getMany", () => {
12
+ test("Should return only values when all keys exists", async () => {
13
+ await storageAdapter.addMany({
14
+ a: 1,
15
+ b: 1,
16
+ });
17
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
18
+ a: 1,
19
+ b: 1,
20
+ });
21
+ });
22
+ test("Should return only null when all keys doesnt exists", async () => {
23
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
24
+ a: null,
25
+ b: null,
26
+ });
27
+ });
28
+ test("Should return values and null when some keys exists", async () => {
29
+ await storageAdapter.addMany({ a: 1 });
30
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
31
+ a: 1,
32
+ b: null,
33
+ });
34
+ });
35
+ });
36
+ describe("method: addMany", () => {
37
+ test("Should return only true when all keys doesnt exists", async () => {
38
+ expect(await storageAdapter.addMany({
39
+ a: 1,
40
+ b: 1,
41
+ })).toEqual({
42
+ a: true,
43
+ b: true,
44
+ });
45
+ });
46
+ test("Should persist values when all keys doesnt exist", async () => {
47
+ await storageAdapter.addMany({
48
+ a: 1,
49
+ b: 1,
50
+ });
51
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
52
+ a: 1,
53
+ b: 1,
54
+ });
55
+ });
56
+ test("Should return only false when all keys exists", async () => {
57
+ await storageAdapter.addMany({
58
+ a: 1,
59
+ b: 1,
60
+ });
61
+ expect(await storageAdapter.addMany({
62
+ a: 1,
63
+ b: 1,
64
+ })).toEqual({
65
+ a: false,
66
+ b: false,
67
+ });
68
+ });
69
+ test("Should not persist values when key exist", async () => {
70
+ await storageAdapter.addMany({
71
+ a: 1,
72
+ b: 1,
73
+ });
74
+ await storageAdapter.addMany({
75
+ a: 2,
76
+ b: 2,
77
+ });
78
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
79
+ a: 1,
80
+ b: 1,
81
+ });
82
+ });
83
+ test("Should return true and false when some keys exists", async () => {
84
+ await storageAdapter.addMany({ a: 1 });
85
+ expect(await storageAdapter.addMany({
86
+ a: 1,
87
+ b: 1,
88
+ })).toEqual({
89
+ a: false,
90
+ b: true,
91
+ });
92
+ });
93
+ test("Should persist and not persist values when some keys exists", async () => {
94
+ await storageAdapter.addMany({
95
+ a: 1,
96
+ });
97
+ await storageAdapter.addMany({
98
+ a: 2,
99
+ b: 2,
100
+ });
101
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
102
+ a: 1,
103
+ b: 2,
104
+ });
105
+ });
106
+ });
107
+ describe("method: updateMany", () => {
108
+ test("Should return only true when all keys exists", async () => {
109
+ await storageAdapter.addMany({
110
+ a: 1,
111
+ b: 1,
112
+ });
113
+ expect(await storageAdapter.updateMany({ a: -1, b: -1 })).toEqual({
114
+ a: true,
115
+ b: true,
116
+ });
117
+ });
118
+ test("Should persist values when all keys exist", async () => {
119
+ await storageAdapter.addMany({
120
+ a: 1,
121
+ b: 1,
122
+ });
123
+ await storageAdapter.updateMany({ a: -1, b: -1 });
124
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
125
+ a: -1,
126
+ b: -1,
127
+ });
128
+ });
129
+ test("Should return only false when all keys doesnt exists", async () => {
130
+ expect(await storageAdapter.updateMany({ a: -1, b: -1 })).toEqual({
131
+ a: false,
132
+ b: false,
133
+ });
134
+ });
135
+ test("Should not persist values when all keys doesnt exist", async () => {
136
+ await storageAdapter.updateMany({ a: -1, b: -1 });
137
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
138
+ a: null,
139
+ b: null,
140
+ });
141
+ });
142
+ test("Should return true and false when some keys exists", async () => {
143
+ await storageAdapter.addMany({ a: 1 });
144
+ expect(await storageAdapter.updateMany({ a: -1, b: -1 })).toEqual({
145
+ a: true,
146
+ b: false,
147
+ });
148
+ });
149
+ test("Should persist and not persist values when some keys exists", async () => {
150
+ await storageAdapter.addMany({ a: 1 });
151
+ await storageAdapter.updateMany({ a: -1, b: -1 });
152
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
153
+ a: -1,
154
+ b: null,
155
+ });
156
+ });
157
+ });
158
+ describe("method: putMany", () => {
159
+ test("Should return only true when all keys exists", async () => {
160
+ await storageAdapter.addMany({
161
+ a: 1,
162
+ b: 1,
163
+ });
164
+ expect(await storageAdapter.putMany({ a: -1, b: -1 })).toEqual({
165
+ a: true,
166
+ b: true,
167
+ });
168
+ });
169
+ test("Should persist values when all keys exist", async () => {
170
+ await storageAdapter.addMany({
171
+ a: 1,
172
+ b: 1,
173
+ });
174
+ await storageAdapter.putMany({ a: -1, b: -1 });
175
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
176
+ a: -1,
177
+ b: -1,
178
+ });
179
+ });
180
+ test("Should return only false when all keys doesnt exists", async () => {
181
+ expect(await storageAdapter.putMany({ a: -1, b: -1 })).toEqual({
182
+ a: false,
183
+ b: false,
184
+ });
185
+ });
186
+ test("Should persist values when all keys doesnt exist", async () => {
187
+ await storageAdapter.putMany({ a: -1, b: -1 });
188
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
189
+ a: -1,
190
+ b: -1,
191
+ });
192
+ });
193
+ test("Should return true and false when some keys exists", async () => {
194
+ await storageAdapter.addMany({ a: 1 });
195
+ expect(await storageAdapter.putMany({ a: -1, b: -1 })).toEqual({
196
+ a: true,
197
+ b: false,
198
+ });
199
+ });
200
+ test("Should persist all values when some keys exists", async () => {
201
+ await storageAdapter.addMany({ a: 1 });
202
+ await storageAdapter.putMany({ a: -1, b: -1 });
203
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
204
+ a: -1,
205
+ b: -1,
206
+ });
207
+ });
208
+ });
209
+ describe("method: removeMany", () => {
210
+ test("Should return only true when all keys exists", async () => {
211
+ await storageAdapter.addMany({
212
+ a: 1,
213
+ b: 1,
214
+ });
215
+ expect(await storageAdapter.removeMany(["a", "b"])).toEqual({
216
+ a: true,
217
+ b: true,
218
+ });
219
+ });
220
+ test("Should persist values when all keys exist", async () => {
221
+ await storageAdapter.addMany({
222
+ a: 1,
223
+ b: 1,
224
+ });
225
+ await storageAdapter.removeMany(["a", "b"]);
226
+ expect(await storageAdapter.getMany(["a", "b"])).toEqual({
227
+ a: null,
228
+ b: null,
229
+ });
230
+ });
231
+ test("Should return only false when all keys doesnt exists", async () => {
232
+ expect(await storageAdapter.removeMany(["a", "b"])).toEqual({
233
+ a: false,
234
+ b: false,
235
+ });
236
+ });
237
+ test("Should return true and false when some keys exists", async () => {
238
+ await storageAdapter.addMany({ a: 1 });
239
+ expect(await storageAdapter.removeMany(["a", "b"])).toEqual({
240
+ a: true,
241
+ b: false,
242
+ });
243
+ });
244
+ });
245
+ describe("method: increment", () => {
246
+ test("Should return true when key exists", async () => {
247
+ await storageAdapter.addMany({ a: 1 });
248
+ expect(await storageAdapter.increment("a", 1)).toBe(true);
249
+ });
250
+ test("Should persist increment when key exists", async () => {
251
+ await storageAdapter.addMany({ a: 1 });
252
+ await storageAdapter.increment("a", 1);
253
+ expect(await storageAdapter.getMany(["a"])).toEqual({ a: 2 });
254
+ });
255
+ test("Should return false when key doesnt exists", async () => {
256
+ expect(await storageAdapter.increment("a", 1)).toBe(false);
257
+ });
258
+ test("Should not persist increment when key doesnt exists", async () => {
259
+ await storageAdapter.increment("a", 1);
260
+ expect(await storageAdapter.getMany(["a"])).toEqual({
261
+ a: null,
262
+ });
263
+ });
264
+ test("Should throw TypeStorageError key value is not number type", async () => {
265
+ await storageAdapter.addMany({ a: "str" });
266
+ await expect(storageAdapter.increment("a", 1)).rejects.toBeInstanceOf(_module_1.TypeStorageError);
267
+ });
268
+ });
269
+ describe("method: clear", () => {
270
+ test("Should remove all keys", async () => {
271
+ await storageAdapter.addMany({
272
+ "@a/a": 1,
273
+ "@a/b": 2,
274
+ "@a/c": 3,
275
+ "@b/d": 4,
276
+ "@b/e": 5,
277
+ "@b/f": 6,
278
+ });
279
+ await storageAdapter.clear("@a/");
280
+ expect(await storageAdapter.getMany([
281
+ "@a/a",
282
+ "@a/b",
283
+ "@a/c",
284
+ "@b/d",
285
+ "@b/e",
286
+ "@b/f",
287
+ ])).toEqual({
288
+ "@a/a": null,
289
+ "@a/b": null,
290
+ "@a/c": null,
291
+ "@b/d": 4,
292
+ "@b/e": 5,
293
+ "@b/f": 6,
294
+ });
295
+ });
296
+ });
297
+ }
298
+ //# sourceMappingURL=storage-adapter.test-suite.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"storage-adapter.test-suite.js","sourceRoot":"","sources":["../../../../../../src/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../../storage/implementations/memory-storage-adapter/memory-storage-adapter"), exports);
18
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/storage/implementations/memory-storage-adapter/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0GAAwF"}
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MemoryStorageAdapter = void 0;
4
+ const _shared_1 = require("../../../storage/contracts/_shared");
5
+ class MemoryStorageAdapter {
6
+ map;
7
+ constructor(map = new Map()) {
8
+ this.map = map;
9
+ }
10
+ async putMany(values) {
11
+ const removeResults = await this.removeMany(Object.keys(values));
12
+ await this.addMany(values);
13
+ return removeResults;
14
+ }
15
+ async increment(key, value) {
16
+ const { [key]: previousValue } = await this.getMany([key]);
17
+ if (previousValue === undefined) {
18
+ throw new _shared_1.UnexpectedStorageError(`Destructed field "key" is undefined`);
19
+ }
20
+ if (previousValue === null) {
21
+ return false;
22
+ }
23
+ if (typeof previousValue !== "number") {
24
+ throw new _shared_1.TypeStorageError(`Unable to increment or decrement none number type key "${key}"`);
25
+ }
26
+ const newValue = previousValue + value;
27
+ await this.updateMany({
28
+ [key]: newValue,
29
+ });
30
+ return true;
31
+ }
32
+ getMany(keys) {
33
+ const values = {};
34
+ for (const key of keys) {
35
+ const value = this.map.get(key) ?? null;
36
+ values[key] = value;
37
+ }
38
+ return Promise.resolve(values);
39
+ }
40
+ addMany(values) {
41
+ const result = {};
42
+ for (const key in values) {
43
+ const { [key]: value } = values;
44
+ const hasKey = this.map.has(key);
45
+ if (!hasKey) {
46
+ this.map.set(key, value);
47
+ }
48
+ result[key] = !hasKey;
49
+ }
50
+ return Promise.resolve(result);
51
+ }
52
+ updateMany(values) {
53
+ const results = {};
54
+ for (const key in values) {
55
+ const { [key]: value } = values;
56
+ const hasKey = this.map.has(key);
57
+ if (hasKey) {
58
+ this.map.set(key, value);
59
+ }
60
+ results[key] = hasKey;
61
+ }
62
+ return Promise.resolve(results);
63
+ }
64
+ removeMany(keys) {
65
+ const result = {};
66
+ for (const key of keys) {
67
+ result[key] = this.map.delete(key);
68
+ }
69
+ return Promise.resolve(result);
70
+ }
71
+ async clear(prefix) {
72
+ if (prefix === "") {
73
+ this.map.clear();
74
+ }
75
+ const keys = [];
76
+ for (const key of this.map.keys()) {
77
+ if (key.startsWith(prefix)) {
78
+ keys.push(key);
79
+ }
80
+ }
81
+ await this.removeMany(keys);
82
+ }
83
+ }
84
+ exports.MemoryStorageAdapter = MemoryStorageAdapter;
85
+ //# sourceMappingURL=memory-storage-adapter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory-storage-adapter.js","sourceRoot":"","sources":["../../../../../src/storage/implementations/memory-storage-adapter/memory-storage-adapter.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MongodbStorageAdapter = void 0;
4
+ var mongodb_storage_adapter_1 = require("../../../storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter");
5
+ Object.defineProperty(exports, "MongodbStorageAdapter", { enumerable: true, get: function () { return mongodb_storage_adapter_1.MongodbStorageAdapter; } });
6
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/storage/implementations/mongodb-storage-adapter/_module.ts"],"names":[],"mappings":";;;AAAA,qHAGmF;AAF/E,gIAAA,qBAAqB,OAAA"}