@daiso-tech/core 0.5.0 → 0.7.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 (1357) hide show
  1. package/dist/cjs/_module.js +6 -5
  2. package/dist/cjs/_module.js.map +1 -1
  3. package/dist/cjs/collection/contracts/_module.js +20 -0
  4. package/dist/cjs/collection/contracts/_module.js.map +1 -0
  5. package/dist/cjs/collection/contracts/_shared.js.map +1 -0
  6. package/dist/cjs/collection/contracts/async-collection.contract.js.map +1 -0
  7. package/dist/cjs/collection/contracts/collection.contract.js.map +1 -0
  8. package/dist/cjs/collection/implementations/_module.js +21 -0
  9. package/dist/cjs/collection/implementations/_module.js.map +1 -0
  10. package/dist/cjs/collection/implementations/_shared.js.map +1 -0
  11. package/dist/cjs/collection/implementations/async-iterable-collection/_module.js +18 -0
  12. package/dist/cjs/collection/implementations/async-iterable-collection/_module.js.map +1 -0
  13. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/_module.js +50 -0
  14. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/_module.js.map +1 -0
  15. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js.map +1 -0
  16. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +1 -0
  17. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js +22 -0
  18. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js.map +1 -0
  19. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js.map +1 -0
  20. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js +35 -0
  21. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js.map +1 -0
  22. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js.map +1 -0
  23. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-error-handler-iterable.js.map +1 -0
  24. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js.map +1 -0
  25. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js.map +1 -0
  26. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js.map +1 -0
  27. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js.map +1 -0
  28. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js.map +1 -0
  29. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js.map +1 -0
  30. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js.map +1 -0
  31. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js.map +1 -0
  32. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js.map +1 -0
  33. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js.map +1 -0
  34. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js.map +1 -0
  35. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js.map +1 -0
  36. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js.map +1 -0
  37. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js.map +1 -0
  38. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js.map +1 -0
  39. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js.map +1 -0
  40. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js.map +1 -0
  41. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js.map +1 -0
  42. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js.map +1 -0
  43. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js.map +1 -0
  44. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js.map +1 -0
  45. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js.map +1 -0
  46. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js.map +1 -0
  47. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js.map +1 -0
  48. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js.map +1 -0
  49. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js +37 -0
  50. package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js.map +1 -0
  51. package/dist/cjs/collection/implementations/async-iterable-collection/async-iterable-collection.js +547 -0
  52. package/dist/cjs/collection/implementations/async-iterable-collection/async-iterable-collection.js.map +1 -0
  53. package/dist/cjs/collection/implementations/iterable-collection/_module.js +18 -0
  54. package/dist/cjs/collection/implementations/iterable-collection/_module.js.map +1 -0
  55. package/dist/cjs/collection/implementations/iterable-collection/_shared/_module.js +49 -0
  56. package/dist/cjs/collection/implementations/iterable-collection/_shared/_module.js.map +1 -0
  57. package/dist/cjs/collection/implementations/iterable-collection/_shared/chunk-iterable.js.map +1 -0
  58. package/dist/cjs/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js.map +1 -0
  59. package/dist/cjs/collection/implementations/iterable-collection/_shared/collapse-iterable.js +22 -0
  60. package/dist/cjs/collection/implementations/iterable-collection/_shared/collapse-iterable.js.map +1 -0
  61. package/dist/cjs/collection/implementations/iterable-collection/_shared/count-by-iterable.js.map +1 -0
  62. package/dist/cjs/collection/implementations/iterable-collection/_shared/cross-join-iterable.js +37 -0
  63. package/dist/cjs/collection/implementations/iterable-collection/_shared/cross-join-iterable.js.map +1 -0
  64. package/dist/cjs/collection/implementations/iterable-collection/_shared/entries-iterable.js.map +1 -0
  65. package/dist/cjs/collection/implementations/iterable-collection/_shared/filter-iterable.js.map +1 -0
  66. package/dist/cjs/collection/implementations/iterable-collection/_shared/flat-map-iterable.js.map +1 -0
  67. package/dist/cjs/collection/implementations/iterable-collection/_shared/group-by-iterable.js.map +1 -0
  68. package/dist/cjs/collection/implementations/iterable-collection/_shared/insert-after-iterable.js.map +1 -0
  69. package/dist/cjs/collection/implementations/iterable-collection/_shared/insert-before-iterable.js.map +1 -0
  70. package/dist/cjs/collection/implementations/iterable-collection/_shared/map-iterable.js.map +1 -0
  71. package/dist/cjs/collection/implementations/iterable-collection/_shared/merge-iterable.js.map +1 -0
  72. package/dist/cjs/collection/implementations/iterable-collection/_shared/pad-end-iterable.js.map +1 -0
  73. package/dist/cjs/collection/implementations/iterable-collection/_shared/pad-start-iterable.js.map +1 -0
  74. package/dist/cjs/collection/implementations/iterable-collection/_shared/partion-iterable.js.map +1 -0
  75. package/dist/cjs/collection/implementations/iterable-collection/_shared/repeat-iterable.js.map +1 -0
  76. package/dist/cjs/collection/implementations/iterable-collection/_shared/reverse-iterable.js.map +1 -0
  77. package/dist/cjs/collection/implementations/iterable-collection/_shared/shuffle-iterable.js.map +1 -0
  78. package/dist/cjs/collection/implementations/iterable-collection/_shared/skip-iterable.js.map +1 -0
  79. package/dist/cjs/collection/implementations/iterable-collection/_shared/skip-until-iterable.js.map +1 -0
  80. package/dist/cjs/collection/implementations/iterable-collection/_shared/slice-iterable.js.map +1 -0
  81. package/dist/cjs/collection/implementations/iterable-collection/_shared/sliding-iterable.js.map +1 -0
  82. package/dist/cjs/collection/implementations/iterable-collection/_shared/sort-iterable.js.map +1 -0
  83. package/dist/cjs/collection/implementations/iterable-collection/_shared/split-iterable.js.map +1 -0
  84. package/dist/cjs/collection/implementations/iterable-collection/_shared/take-iterable.js.map +1 -0
  85. package/dist/cjs/collection/implementations/iterable-collection/_shared/take-until-iterable.js.map +1 -0
  86. package/dist/cjs/collection/implementations/iterable-collection/_shared/tap-iterable.js.map +1 -0
  87. package/dist/cjs/collection/implementations/iterable-collection/_shared/unique-iterable.js.map +1 -0
  88. package/dist/cjs/collection/implementations/iterable-collection/_shared/update-iterable.js.map +1 -0
  89. package/dist/cjs/collection/implementations/iterable-collection/_shared/when-iterable.js.map +1 -0
  90. package/dist/cjs/collection/implementations/iterable-collection/_shared/zip-iterable.js.map +1 -0
  91. package/dist/cjs/collection/implementations/iterable-collection/iterable-collection.js +493 -0
  92. package/dist/cjs/collection/implementations/iterable-collection/iterable-collection.js.map +1 -0
  93. package/dist/cjs/collection/implementations/list-collection/_module.js +18 -0
  94. package/dist/cjs/collection/implementations/list-collection/_module.js.map +1 -0
  95. package/dist/cjs/collection/implementations/list-collection/list-collection.js +627 -0
  96. package/dist/cjs/collection/implementations/list-collection/list-collection.js.map +1 -0
  97. package/dist/cjs/serializer/_module.js +5 -5
  98. package/dist/cjs/serializer/_module.js.map +1 -1
  99. package/dist/cjs/serializer/contracts/_module.js +18 -0
  100. package/dist/cjs/serializer/contracts/_module.js.map +1 -0
  101. package/dist/cjs/serializer/contracts/serializer.contract.js.map +1 -0
  102. package/dist/cjs/serializer/implementations/_module.js +22 -0
  103. package/dist/cjs/serializer/implementations/_module.js.map +1 -0
  104. package/dist/cjs/serializer/implementations/_shared/test-utilities/_module.js +18 -0
  105. package/dist/cjs/serializer/implementations/_shared/test-utilities/_module.js.map +1 -0
  106. package/dist/cjs/serializer/implementations/_shared/test-utilities/serializer.test-suite.js.map +1 -0
  107. package/dist/cjs/serializer/implementations/mongodb-serializer/_module.js +18 -0
  108. package/dist/cjs/serializer/implementations/mongodb-serializer/_module.js.map +1 -0
  109. package/dist/cjs/serializer/implementations/mongodb-serializer/mongodb-serializer.js +36 -0
  110. package/dist/cjs/serializer/implementations/mongodb-serializer/mongodb-serializer.js.map +1 -0
  111. package/dist/cjs/serializer/implementations/redis-serializer/_module.js +18 -0
  112. package/dist/cjs/serializer/implementations/redis-serializer/_module.js.map +1 -0
  113. package/dist/cjs/serializer/implementations/redis-serializer/redis-serializer.js +37 -0
  114. package/dist/cjs/serializer/implementations/redis-serializer/redis-serializer.js.map +1 -0
  115. package/dist/cjs/serializer/implementations/sql-serializer/_module.js +18 -0
  116. package/dist/cjs/serializer/implementations/sql-serializer/_module.js.map +1 -0
  117. package/dist/cjs/serializer/implementations/sql-serializer/sql-serializer.js +37 -0
  118. package/dist/cjs/serializer/implementations/sql-serializer/sql-serializer.js.map +1 -0
  119. package/dist/cjs/serializer/implementations/super-json-serializer/_module.js +18 -0
  120. package/dist/cjs/serializer/implementations/super-json-serializer/_module.js.map +1 -0
  121. package/dist/cjs/serializer/implementations/super-json-serializer/super-json-serializer.js +304 -0
  122. package/dist/cjs/serializer/implementations/super-json-serializer/super-json-serializer.js.map +1 -0
  123. package/dist/cjs/storage/contracts/_module.js +20 -0
  124. package/dist/cjs/storage/contracts/_module.js.map +1 -0
  125. package/dist/cjs/storage/contracts/_shared.js.map +1 -0
  126. package/dist/cjs/storage/contracts/storage-adapter.contract.js.map +1 -0
  127. package/dist/cjs/storage/contracts/storage.contract.js.map +1 -0
  128. package/dist/cjs/storage/implementations/_module.js +23 -0
  129. package/dist/cjs/storage/implementations/_module.js.map +1 -0
  130. package/dist/cjs/storage/implementations/_shared/test-utilities/_module.js +18 -0
  131. package/dist/cjs/storage/implementations/_shared/test-utilities/_module.js.map +1 -0
  132. package/dist/cjs/storage/implementations/_shared/test-utilities/storage-adapter-api.test-suite.js +300 -0
  133. package/dist/cjs/storage/implementations/_shared/test-utilities/storage-adapter-api.test-suite.js.map +1 -0
  134. package/dist/cjs/storage/implementations/_shared/test-utilities/storage-adapter-value.test-suite.js +1208 -0
  135. package/dist/cjs/storage/implementations/_shared/test-utilities/storage-adapter-value.test-suite.js.map +1 -0
  136. package/dist/cjs/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.js +10 -0
  137. package/dist/cjs/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.js.map +1 -0
  138. package/dist/cjs/storage/implementations/memory-storage-adapter/_module.js +18 -0
  139. package/dist/cjs/storage/implementations/memory-storage-adapter/_module.js.map +1 -0
  140. package/dist/cjs/storage/implementations/memory-storage-adapter/memory-storage-adapter.js +85 -0
  141. package/dist/cjs/storage/implementations/memory-storage-adapter/memory-storage-adapter.js.map +1 -0
  142. package/dist/cjs/storage/implementations/mongodb-storage-adapter/_module.js +6 -0
  143. package/dist/cjs/storage/implementations/mongodb-storage-adapter/_module.js.map +1 -0
  144. package/dist/cjs/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.js +203 -0
  145. package/dist/cjs/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.js.map +1 -0
  146. package/dist/cjs/storage/implementations/redis-storage-adapter/_module.js +18 -0
  147. package/dist/cjs/storage/implementations/redis-storage-adapter/_module.js.map +1 -0
  148. package/dist/cjs/storage/implementations/redis-storage-adapter/redis-storage-adapter.js +228 -0
  149. package/dist/cjs/storage/implementations/redis-storage-adapter/redis-storage-adapter.js.map +1 -0
  150. package/dist/cjs/storage/implementations/sqlite/_module.js +19 -0
  151. package/dist/cjs/storage/implementations/sqlite/_module.js.map +1 -0
  152. package/dist/cjs/storage/implementations/sqlite/_shared/_module.js +18 -0
  153. package/dist/cjs/storage/implementations/sqlite/_shared/_module.js.map +1 -0
  154. package/dist/cjs/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.js +190 -0
  155. package/dist/cjs/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.js.map +1 -0
  156. package/dist/cjs/storage/implementations/sqlite/libsql-storage-adapter/_module.js +18 -0
  157. package/dist/cjs/storage/implementations/sqlite/libsql-storage-adapter/_module.js.map +1 -0
  158. package/dist/cjs/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +53 -0
  159. package/dist/cjs/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +1 -0
  160. package/dist/cjs/storage/implementations/sqlite/sqlite-storage-adapter/_module.js +18 -0
  161. package/dist/cjs/storage/implementations/sqlite/sqlite-storage-adapter/_module.js.map +1 -0
  162. package/dist/cjs/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +52 -0
  163. package/dist/cjs/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +1 -0
  164. package/dist/cjs/storage/implementations/storage/_module.js +18 -0
  165. package/dist/cjs/storage/implementations/storage/_module.js.map +1 -0
  166. package/dist/cjs/storage/implementations/storage/storage.js +219 -0
  167. package/dist/cjs/storage/implementations/storage/storage.js.map +1 -0
  168. package/dist/cjs/storage/implementations/storage/with-namespace-storage-adapter.js +56 -0
  169. package/dist/cjs/storage/implementations/storage/with-namespace-storage-adapter.js.map +1 -0
  170. package/dist/cjs/storage/implementations/storage/with-validation-storage-adapter.js +48 -0
  171. package/dist/cjs/storage/implementations/storage/with-validation-storage-adapter.js.map +1 -0
  172. package/dist/cjs/utilities/_module.js +4 -0
  173. package/dist/cjs/utilities/_module.js.map +1 -1
  174. package/dist/cjs/utilities/async/_module.js +24 -0
  175. package/dist/cjs/utilities/async/_module.js.map +1 -0
  176. package/dist/cjs/utilities/async/_shared.js.map +1 -0
  177. package/dist/cjs/utilities/async/abortable/_module.js +18 -0
  178. package/dist/cjs/utilities/async/abortable/_module.js.map +1 -0
  179. package/dist/cjs/utilities/async/abortable/abortable.js +48 -0
  180. package/dist/cjs/utilities/async/abortable/abortable.js.map +1 -0
  181. package/dist/cjs/utilities/async/backof-policies/_module.js +21 -0
  182. package/dist/cjs/utilities/async/backof-policies/_module.js.map +1 -0
  183. package/dist/cjs/utilities/async/backof-policies/_shared.js.map +1 -0
  184. package/dist/cjs/utilities/async/backof-policies/constant-backoff-policy/_module.js +18 -0
  185. package/dist/cjs/utilities/async/backof-policies/constant-backoff-policy/_module.js.map +1 -0
  186. package/dist/cjs/utilities/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +19 -0
  187. package/dist/cjs/utilities/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +1 -0
  188. package/dist/cjs/utilities/async/backof-policies/exponential-backoff-policy/_module.js +18 -0
  189. package/dist/cjs/utilities/async/backof-policies/exponential-backoff-policy/_module.js.map +1 -0
  190. package/dist/cjs/utilities/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +23 -0
  191. package/dist/cjs/utilities/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +1 -0
  192. package/dist/cjs/utilities/async/backof-policies/linear-backoff-policy/_module.js +18 -0
  193. package/dist/cjs/utilities/async/backof-policies/linear-backoff-policy/_module.js.map +1 -0
  194. package/dist/cjs/utilities/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +23 -0
  195. package/dist/cjs/utilities/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +1 -0
  196. package/dist/cjs/utilities/async/backof-policies/polynomial-backoff-policy/_module.js +18 -0
  197. package/dist/cjs/utilities/async/backof-policies/polynomial-backoff-policy/_module.js.map +1 -0
  198. package/dist/cjs/utilities/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +23 -0
  199. package/dist/cjs/utilities/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +1 -0
  200. package/dist/cjs/utilities/async/delay/_module.js +18 -0
  201. package/dist/cjs/utilities/async/delay/_module.js.map +1 -0
  202. package/dist/cjs/utilities/async/delay/delay.js +24 -0
  203. package/dist/cjs/utilities/async/delay/delay.js.map +1 -0
  204. package/dist/cjs/utilities/async/lazy-promise/_module.js +18 -0
  205. package/dist/cjs/utilities/async/lazy-promise/_module.js.map +1 -0
  206. package/dist/cjs/utilities/async/lazy-promise/lazy-promise.js.map +1 -0
  207. package/dist/cjs/utilities/async/retry/_module.js +18 -0
  208. package/dist/cjs/utilities/async/retry/_module.js.map +1 -0
  209. package/dist/cjs/utilities/async/retry/retry.js +43 -0
  210. package/dist/cjs/utilities/async/retry/retry.js.map +1 -0
  211. package/dist/cjs/utilities/async/timeout/_module.js +18 -0
  212. package/dist/cjs/utilities/async/timeout/_module.js.map +1 -0
  213. package/dist/cjs/utilities/async/timeout/timeout.js +28 -0
  214. package/dist/cjs/utilities/async/timeout/timeout.js.map +1 -0
  215. package/dist/cjs/utilities/async-iterable/_module.js +23 -0
  216. package/dist/cjs/utilities/async-iterable/_module.js.map +1 -0
  217. package/dist/cjs/utilities/async-iterable/abortable-iterable/_module.js +18 -0
  218. package/dist/cjs/utilities/async-iterable/abortable-iterable/_module.js.map +1 -0
  219. package/dist/cjs/utilities/async-iterable/abortable-iterable/abortable-iterable.js +32 -0
  220. package/dist/cjs/utilities/async-iterable/abortable-iterable/abortable-iterable.js.map +1 -0
  221. package/dist/cjs/utilities/async-iterable/delay-iterable/_module.js +18 -0
  222. package/dist/cjs/utilities/async-iterable/delay-iterable/_module.js.map +1 -0
  223. package/dist/cjs/utilities/async-iterable/delay-iterable/delay-iterable.js +36 -0
  224. package/dist/cjs/utilities/async-iterable/delay-iterable/delay-iterable.js.map +1 -0
  225. package/dist/cjs/utilities/async-iterable/retry-iterable/_module.js +18 -0
  226. package/dist/cjs/utilities/async-iterable/retry-iterable/_module.js.map +1 -0
  227. package/dist/cjs/utilities/async-iterable/retry-iterable/retry-iterable.js +32 -0
  228. package/dist/cjs/utilities/async-iterable/retry-iterable/retry-iterable.js.map +1 -0
  229. package/dist/cjs/utilities/async-iterable/timeout-iterable/_module.js +18 -0
  230. package/dist/cjs/utilities/async-iterable/timeout-iterable/_module.js.map +1 -0
  231. package/dist/cjs/utilities/async-iterable/timeout-iterable/timeout-iterable.js +11 -0
  232. package/dist/cjs/utilities/async-iterable/timeout-iterable/timeout-iterable.js.map +1 -0
  233. package/dist/cjs/utilities/time-span/time-span.js +2 -2
  234. package/dist/cjs/utilities/time-span/time-span.js.map +1 -1
  235. package/dist/cjs/utilities/validation/_module.js +22 -0
  236. package/dist/cjs/utilities/validation/_module.js.map +1 -0
  237. package/dist/esm/_module.js +6 -5
  238. package/dist/esm/_module.js.map +1 -1
  239. package/dist/esm/collection/contracts/_module.js +4 -0
  240. package/dist/esm/collection/contracts/_module.js.map +1 -0
  241. package/dist/esm/collection/contracts/_shared.js.map +1 -0
  242. package/dist/esm/collection/contracts/async-collection.contract.js.map +1 -0
  243. package/dist/esm/collection/contracts/collection.contract.js.map +1 -0
  244. package/dist/esm/collection/implementations/_module.js +5 -0
  245. package/dist/esm/collection/implementations/_module.js.map +1 -0
  246. package/dist/esm/collection/implementations/_shared.js.map +1 -0
  247. package/dist/esm/collection/implementations/async-iterable-collection/_module.js +2 -0
  248. package/dist/esm/collection/implementations/async-iterable-collection/_module.js.map +1 -0
  249. package/dist/esm/collection/implementations/async-iterable-collection/_shared/_module.js +34 -0
  250. package/dist/esm/collection/implementations/async-iterable-collection/_shared/_module.js.map +1 -0
  251. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js.map +1 -0
  252. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +1 -0
  253. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js +18 -0
  254. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js.map +1 -0
  255. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js.map +1 -0
  256. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js +31 -0
  257. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js.map +1 -0
  258. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js.map +1 -0
  259. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-error-handler-iterable.js.map +1 -0
  260. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js.map +1 -0
  261. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js.map +1 -0
  262. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js.map +1 -0
  263. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js.map +1 -0
  264. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js.map +1 -0
  265. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js.map +1 -0
  266. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js.map +1 -0
  267. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js.map +1 -0
  268. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js.map +1 -0
  269. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js.map +1 -0
  270. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js.map +1 -0
  271. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js.map +1 -0
  272. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js.map +1 -0
  273. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js.map +1 -0
  274. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js.map +1 -0
  275. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js.map +1 -0
  276. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js.map +1 -0
  277. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js.map +1 -0
  278. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js.map +1 -0
  279. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js.map +1 -0
  280. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js.map +1 -0
  281. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js.map +1 -0
  282. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js.map +1 -0
  283. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js.map +1 -0
  284. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js.map +1 -0
  285. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js +33 -0
  286. package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js.map +1 -0
  287. package/dist/esm/collection/implementations/async-iterable-collection/async-iterable-collection.js +543 -0
  288. package/dist/esm/collection/implementations/async-iterable-collection/async-iterable-collection.js.map +1 -0
  289. package/dist/esm/collection/implementations/iterable-collection/_module.js +2 -0
  290. package/dist/esm/collection/implementations/iterable-collection/_module.js.map +1 -0
  291. package/dist/esm/collection/implementations/iterable-collection/_shared/_module.js +33 -0
  292. package/dist/esm/collection/implementations/iterable-collection/_shared/_module.js.map +1 -0
  293. package/dist/esm/collection/implementations/iterable-collection/_shared/chunk-iterable.js.map +1 -0
  294. package/dist/esm/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js.map +1 -0
  295. package/dist/esm/collection/implementations/iterable-collection/_shared/collapse-iterable.js +18 -0
  296. package/dist/esm/collection/implementations/iterable-collection/_shared/collapse-iterable.js.map +1 -0
  297. package/dist/esm/collection/implementations/iterable-collection/_shared/count-by-iterable.js.map +1 -0
  298. package/dist/esm/collection/implementations/iterable-collection/_shared/cross-join-iterable.js +33 -0
  299. package/dist/esm/collection/implementations/iterable-collection/_shared/cross-join-iterable.js.map +1 -0
  300. package/dist/esm/collection/implementations/iterable-collection/_shared/entries-iterable.js.map +1 -0
  301. package/dist/esm/collection/implementations/iterable-collection/_shared/filter-iterable.js.map +1 -0
  302. package/dist/esm/collection/implementations/iterable-collection/_shared/flat-map-iterable.js.map +1 -0
  303. package/dist/esm/collection/implementations/iterable-collection/_shared/group-by-iterable.js.map +1 -0
  304. package/dist/esm/collection/implementations/iterable-collection/_shared/insert-after-iterable.js.map +1 -0
  305. package/dist/esm/collection/implementations/iterable-collection/_shared/insert-before-iterable.js.map +1 -0
  306. package/dist/esm/collection/implementations/iterable-collection/_shared/map-iterable.js.map +1 -0
  307. package/dist/esm/collection/implementations/iterable-collection/_shared/merge-iterable.js.map +1 -0
  308. package/dist/esm/collection/implementations/iterable-collection/_shared/pad-end-iterable.js.map +1 -0
  309. package/dist/esm/collection/implementations/iterable-collection/_shared/pad-start-iterable.js.map +1 -0
  310. package/dist/esm/collection/implementations/iterable-collection/_shared/partion-iterable.js.map +1 -0
  311. package/dist/esm/collection/implementations/iterable-collection/_shared/repeat-iterable.js.map +1 -0
  312. package/dist/esm/collection/implementations/iterable-collection/_shared/reverse-iterable.js.map +1 -0
  313. package/dist/esm/collection/implementations/iterable-collection/_shared/shuffle-iterable.js.map +1 -0
  314. package/dist/esm/collection/implementations/iterable-collection/_shared/skip-iterable.js.map +1 -0
  315. package/dist/esm/collection/implementations/iterable-collection/_shared/skip-until-iterable.js.map +1 -0
  316. package/dist/esm/collection/implementations/iterable-collection/_shared/slice-iterable.js.map +1 -0
  317. package/dist/esm/collection/implementations/iterable-collection/_shared/sliding-iterable.js.map +1 -0
  318. package/dist/esm/collection/implementations/iterable-collection/_shared/sort-iterable.js.map +1 -0
  319. package/dist/esm/collection/implementations/iterable-collection/_shared/split-iterable.js.map +1 -0
  320. package/dist/esm/collection/implementations/iterable-collection/_shared/take-iterable.js.map +1 -0
  321. package/dist/esm/collection/implementations/iterable-collection/_shared/take-until-iterable.js.map +1 -0
  322. package/dist/esm/collection/implementations/iterable-collection/_shared/tap-iterable.js.map +1 -0
  323. package/dist/esm/collection/implementations/iterable-collection/_shared/unique-iterable.js.map +1 -0
  324. package/dist/esm/collection/implementations/iterable-collection/_shared/update-iterable.js.map +1 -0
  325. package/dist/esm/collection/implementations/iterable-collection/_shared/when-iterable.js.map +1 -0
  326. package/dist/esm/collection/implementations/iterable-collection/_shared/zip-iterable.js.map +1 -0
  327. package/dist/esm/collection/implementations/iterable-collection/iterable-collection.js +489 -0
  328. package/dist/esm/collection/implementations/iterable-collection/iterable-collection.js.map +1 -0
  329. package/dist/esm/collection/implementations/list-collection/_module.js +2 -0
  330. package/dist/esm/collection/implementations/list-collection/_module.js.map +1 -0
  331. package/dist/esm/collection/implementations/list-collection/list-collection.js +623 -0
  332. package/dist/esm/collection/implementations/list-collection/list-collection.js.map +1 -0
  333. package/dist/esm/serializer/_module.js +5 -5
  334. package/dist/esm/serializer/_module.js.map +1 -1
  335. package/dist/esm/serializer/contracts/_module.js +2 -0
  336. package/dist/esm/serializer/contracts/_module.js.map +1 -0
  337. package/dist/esm/serializer/contracts/serializer.contract.js.map +1 -0
  338. package/dist/esm/serializer/implementations/_module.js +6 -0
  339. package/dist/esm/serializer/implementations/_module.js.map +1 -0
  340. package/dist/esm/serializer/implementations/_shared/test-utilities/_module.js +2 -0
  341. package/dist/esm/serializer/implementations/_shared/test-utilities/_module.js.map +1 -0
  342. package/dist/esm/serializer/implementations/_shared/test-utilities/serializer.test-suite.js.map +1 -0
  343. package/dist/esm/serializer/implementations/mongodb-serializer/_module.js +2 -0
  344. package/dist/esm/serializer/implementations/mongodb-serializer/_module.js.map +1 -0
  345. package/dist/esm/serializer/implementations/mongodb-serializer/mongodb-serializer.js +32 -0
  346. package/dist/esm/serializer/implementations/mongodb-serializer/mongodb-serializer.js.map +1 -0
  347. package/dist/esm/serializer/implementations/redis-serializer/_module.js +2 -0
  348. package/dist/esm/serializer/implementations/redis-serializer/_module.js.map +1 -0
  349. package/dist/esm/serializer/implementations/redis-serializer/redis-serializer.js +33 -0
  350. package/dist/esm/serializer/implementations/redis-serializer/redis-serializer.js.map +1 -0
  351. package/dist/esm/serializer/implementations/sql-serializer/_module.js +2 -0
  352. package/dist/esm/serializer/implementations/sql-serializer/_module.js.map +1 -0
  353. package/dist/esm/serializer/implementations/sql-serializer/sql-serializer.js +33 -0
  354. package/dist/esm/serializer/implementations/sql-serializer/sql-serializer.js.map +1 -0
  355. package/dist/esm/serializer/implementations/super-json-serializer/_module.js +2 -0
  356. package/dist/esm/serializer/implementations/super-json-serializer/_module.js.map +1 -0
  357. package/dist/esm/serializer/implementations/super-json-serializer/super-json-serializer.js +277 -0
  358. package/dist/esm/serializer/implementations/super-json-serializer/super-json-serializer.js.map +1 -0
  359. package/dist/esm/storage/contracts/_module.js +4 -0
  360. package/dist/esm/storage/contracts/_module.js.map +1 -0
  361. package/dist/esm/storage/contracts/_shared.js.map +1 -0
  362. package/dist/esm/storage/contracts/storage-adapter.contract.js.map +1 -0
  363. package/dist/esm/storage/contracts/storage.contract.js.map +1 -0
  364. package/dist/esm/storage/implementations/_module.js +7 -0
  365. package/dist/esm/storage/implementations/_module.js.map +1 -0
  366. package/dist/esm/storage/implementations/_shared/test-utilities/_module.js +2 -0
  367. package/dist/esm/storage/implementations/_shared/test-utilities/_module.js.map +1 -0
  368. package/dist/esm/storage/implementations/_shared/test-utilities/storage-adapter-api.test-suite.js +297 -0
  369. package/dist/esm/storage/implementations/_shared/test-utilities/storage-adapter-api.test-suite.js.map +1 -0
  370. package/dist/esm/storage/implementations/_shared/test-utilities/storage-adapter-value.test-suite.js +1205 -0
  371. package/dist/esm/storage/implementations/_shared/test-utilities/storage-adapter-value.test-suite.js.map +1 -0
  372. package/dist/esm/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.js +7 -0
  373. package/dist/esm/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.js.map +1 -0
  374. package/dist/esm/storage/implementations/memory-storage-adapter/_module.js +2 -0
  375. package/dist/esm/storage/implementations/memory-storage-adapter/_module.js.map +1 -0
  376. package/dist/esm/storage/implementations/memory-storage-adapter/memory-storage-adapter.js +81 -0
  377. package/dist/esm/storage/implementations/memory-storage-adapter/memory-storage-adapter.js.map +1 -0
  378. package/dist/esm/storage/implementations/mongodb-storage-adapter/_module.js +2 -0
  379. package/dist/esm/storage/implementations/mongodb-storage-adapter/_module.js.map +1 -0
  380. package/dist/esm/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.js +196 -0
  381. package/dist/esm/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.js.map +1 -0
  382. package/dist/esm/storage/implementations/redis-storage-adapter/_module.js +2 -0
  383. package/dist/esm/storage/implementations/redis-storage-adapter/_module.js.map +1 -0
  384. package/dist/esm/storage/implementations/redis-storage-adapter/redis-storage-adapter.js +224 -0
  385. package/dist/esm/storage/implementations/redis-storage-adapter/redis-storage-adapter.js.map +1 -0
  386. package/dist/esm/storage/implementations/sqlite/_module.js +3 -0
  387. package/dist/esm/storage/implementations/sqlite/_module.js.map +1 -0
  388. package/dist/esm/storage/implementations/sqlite/_shared/_module.js +2 -0
  389. package/dist/esm/storage/implementations/sqlite/_shared/_module.js.map +1 -0
  390. package/dist/esm/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.js +186 -0
  391. package/dist/esm/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.js.map +1 -0
  392. package/dist/esm/storage/implementations/sqlite/libsql-storage-adapter/_module.js +2 -0
  393. package/dist/esm/storage/implementations/sqlite/libsql-storage-adapter/_module.js.map +1 -0
  394. package/dist/esm/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +49 -0
  395. package/dist/esm/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +1 -0
  396. package/dist/esm/storage/implementations/sqlite/sqlite-storage-adapter/_module.js +2 -0
  397. package/dist/esm/storage/implementations/sqlite/sqlite-storage-adapter/_module.js.map +1 -0
  398. package/dist/esm/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +48 -0
  399. package/dist/esm/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +1 -0
  400. package/dist/esm/storage/implementations/storage/_module.js +2 -0
  401. package/dist/esm/storage/implementations/storage/_module.js.map +1 -0
  402. package/dist/esm/storage/implementations/storage/storage.js +215 -0
  403. package/dist/esm/storage/implementations/storage/storage.js.map +1 -0
  404. package/dist/esm/storage/implementations/storage/with-namespace-storage-adapter.js +52 -0
  405. package/dist/esm/storage/implementations/storage/with-namespace-storage-adapter.js.map +1 -0
  406. package/dist/esm/storage/implementations/storage/with-validation-storage-adapter.js +44 -0
  407. package/dist/esm/storage/implementations/storage/with-validation-storage-adapter.js.map +1 -0
  408. package/dist/esm/utilities/_module.js +4 -0
  409. package/dist/esm/utilities/_module.js.map +1 -1
  410. package/dist/esm/utilities/async/_module.js +8 -0
  411. package/dist/esm/utilities/async/_module.js.map +1 -0
  412. package/dist/esm/utilities/async/_shared.js.map +1 -0
  413. package/dist/esm/utilities/async/abortable/_module.js +2 -0
  414. package/dist/esm/utilities/async/abortable/_module.js.map +1 -0
  415. package/dist/esm/utilities/async/abortable/abortable.js +45 -0
  416. package/dist/esm/utilities/async/abortable/abortable.js.map +1 -0
  417. package/dist/esm/utilities/async/backof-policies/_module.js +5 -0
  418. package/dist/esm/utilities/async/backof-policies/_module.js.map +1 -0
  419. package/dist/esm/utilities/async/backof-policies/_shared.js.map +1 -0
  420. package/dist/esm/utilities/async/backof-policies/constant-backoff-policy/_module.js +2 -0
  421. package/dist/esm/utilities/async/backof-policies/constant-backoff-policy/_module.js.map +1 -0
  422. package/dist/esm/utilities/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +16 -0
  423. package/dist/esm/utilities/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +1 -0
  424. package/dist/esm/utilities/async/backof-policies/exponential-backoff-policy/_module.js +2 -0
  425. package/dist/esm/utilities/async/backof-policies/exponential-backoff-policy/_module.js.map +1 -0
  426. package/dist/esm/utilities/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +20 -0
  427. package/dist/esm/utilities/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +1 -0
  428. package/dist/esm/utilities/async/backof-policies/linear-backoff-policy/_module.js +2 -0
  429. package/dist/esm/utilities/async/backof-policies/linear-backoff-policy/_module.js.map +1 -0
  430. package/dist/esm/utilities/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +20 -0
  431. package/dist/esm/utilities/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +1 -0
  432. package/dist/esm/utilities/async/backof-policies/polynomial-backoff-policy/_module.js +2 -0
  433. package/dist/esm/utilities/async/backof-policies/polynomial-backoff-policy/_module.js.map +1 -0
  434. package/dist/esm/utilities/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +20 -0
  435. package/dist/esm/utilities/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +1 -0
  436. package/dist/esm/utilities/async/delay/_module.js +2 -0
  437. package/dist/esm/utilities/async/delay/_module.js.map +1 -0
  438. package/dist/esm/utilities/async/delay/delay.js +21 -0
  439. package/dist/esm/utilities/async/delay/delay.js.map +1 -0
  440. package/dist/esm/utilities/async/lazy-promise/_module.js +2 -0
  441. package/dist/esm/utilities/async/lazy-promise/_module.js.map +1 -0
  442. package/dist/esm/utilities/async/lazy-promise/lazy-promise.js.map +1 -0
  443. package/dist/esm/utilities/async/retry/_module.js +2 -0
  444. package/dist/esm/utilities/async/retry/_module.js.map +1 -0
  445. package/dist/esm/utilities/async/retry/retry.js +40 -0
  446. package/dist/esm/utilities/async/retry/retry.js.map +1 -0
  447. package/dist/esm/utilities/async/timeout/_module.js +2 -0
  448. package/dist/esm/utilities/async/timeout/_module.js.map +1 -0
  449. package/dist/esm/utilities/async/timeout/timeout.js +25 -0
  450. package/dist/esm/utilities/async/timeout/timeout.js.map +1 -0
  451. package/dist/esm/utilities/async-iterable/_module.js +5 -0
  452. package/dist/esm/utilities/async-iterable/_module.js.map +1 -0
  453. package/dist/esm/utilities/async-iterable/abortable-iterable/_module.js +2 -0
  454. package/dist/esm/utilities/async-iterable/abortable-iterable/_module.js.map +1 -0
  455. package/dist/esm/utilities/async-iterable/abortable-iterable/abortable-iterable.js +29 -0
  456. package/dist/esm/utilities/async-iterable/abortable-iterable/abortable-iterable.js.map +1 -0
  457. package/dist/esm/utilities/async-iterable/delay-iterable/_module.js +2 -0
  458. package/dist/esm/utilities/async-iterable/delay-iterable/_module.js.map +1 -0
  459. package/dist/esm/utilities/async-iterable/delay-iterable/delay-iterable.js +33 -0
  460. package/dist/esm/utilities/async-iterable/delay-iterable/delay-iterable.js.map +1 -0
  461. package/dist/esm/utilities/async-iterable/retry-iterable/_module.js +2 -0
  462. package/dist/esm/utilities/async-iterable/retry-iterable/_module.js.map +1 -0
  463. package/dist/esm/utilities/async-iterable/retry-iterable/retry-iterable.js +29 -0
  464. package/dist/esm/utilities/async-iterable/retry-iterable/retry-iterable.js.map +1 -0
  465. package/dist/esm/utilities/async-iterable/timeout-iterable/_module.js +2 -0
  466. package/dist/esm/utilities/async-iterable/timeout-iterable/_module.js.map +1 -0
  467. package/dist/esm/utilities/async-iterable/timeout-iterable/timeout-iterable.js +8 -0
  468. package/dist/esm/utilities/async-iterable/timeout-iterable/timeout-iterable.js.map +1 -0
  469. package/dist/esm/utilities/time-span/time-span.js +2 -2
  470. package/dist/esm/utilities/time-span/time-span.js.map +1 -1
  471. package/dist/esm/utilities/validation/_module.js +17 -0
  472. package/dist/esm/utilities/validation/_module.js.map +1 -0
  473. package/dist/types/_module.d.ts +6 -5
  474. package/dist/types/_shared/types.d.ts +0 -4
  475. package/dist/types/collection/contracts/_module.d.ts +3 -0
  476. package/dist/types/collection/contracts/async-collection.contract.d.ts +1309 -0
  477. package/dist/types/collection/contracts/collection.contract.d.ts +1269 -0
  478. package/dist/types/collection/implementations/_module.d.ts +4 -0
  479. package/dist/types/collection/implementations/async-iterable-collection/_module.d.ts +1 -0
  480. package/dist/types/collection/implementations/async-iterable-collection/_shared/_module.d.ts +33 -0
  481. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.d.ts +12 -0
  482. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.d.ts +12 -0
  483. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.d.ts +9 -0
  484. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.d.ts +11 -0
  485. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.d.ts +13 -0
  486. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.d.ts +10 -0
  487. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.d.ts +10 -0
  488. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.d.ts +10 -0
  489. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.d.ts +12 -0
  490. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.d.ts +12 -0
  491. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.d.ts +12 -0
  492. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-map-iterable.d.ts +10 -0
  493. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.d.ts +10 -0
  494. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.d.ts +13 -0
  495. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.d.ts +13 -0
  496. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.d.ts +12 -0
  497. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.d.ts +12 -0
  498. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.d.ts +12 -0
  499. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.d.ts +10 -0
  500. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.d.ts +10 -0
  501. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.d.ts +10 -0
  502. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.d.ts +11 -0
  503. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.d.ts +11 -0
  504. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.d.ts +10 -0
  505. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-split-iterable.d.ts +12 -0
  506. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-iterable.d.ts +10 -0
  507. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.d.ts +10 -0
  508. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.d.ts +10 -0
  509. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.d.ts +10 -0
  510. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-update-iterable.d.ts +11 -0
  511. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-when-iterable.d.ts +11 -0
  512. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.d.ts +11 -0
  513. package/dist/types/collection/implementations/async-iterable-collection/async-iterable-collection.d.ts +105 -0
  514. package/dist/types/collection/implementations/iterable-collection/_module.d.ts +1 -0
  515. package/dist/types/collection/implementations/iterable-collection/_shared/_module.d.ts +32 -0
  516. package/dist/types/collection/implementations/iterable-collection/_shared/chunk-iterable.d.ts +11 -0
  517. package/dist/types/collection/implementations/iterable-collection/_shared/chunk-while-iterable.d.ts +11 -0
  518. package/dist/types/collection/implementations/iterable-collection/_shared/collapse-iterable.d.ts +9 -0
  519. package/dist/types/collection/implementations/iterable-collection/_shared/count-by-iterable.d.ts +11 -0
  520. package/dist/types/collection/implementations/iterable-collection/_shared/cross-join-iterable.d.ts +8 -0
  521. package/dist/types/collection/implementations/iterable-collection/_shared/entries-iterable.d.ts +9 -0
  522. package/dist/types/collection/implementations/iterable-collection/_shared/filter-iterable.d.ts +10 -0
  523. package/dist/types/collection/implementations/iterable-collection/_shared/flat-map-iterable.d.ts +10 -0
  524. package/dist/types/collection/implementations/iterable-collection/_shared/group-by-iterable.d.ts +12 -0
  525. package/dist/types/collection/implementations/iterable-collection/_shared/insert-after-iterable.d.ts +11 -0
  526. package/dist/types/collection/implementations/iterable-collection/_shared/insert-before-iterable.d.ts +11 -0
  527. package/dist/types/collection/implementations/iterable-collection/_shared/map-iterable.d.ts +10 -0
  528. package/dist/types/collection/implementations/iterable-collection/_shared/pad-end-iterable.d.ts +12 -0
  529. package/dist/types/collection/implementations/iterable-collection/_shared/pad-start-iterable.d.ts +12 -0
  530. package/dist/types/collection/implementations/iterable-collection/_shared/partion-iterable.d.ts +11 -0
  531. package/dist/types/collection/implementations/iterable-collection/_shared/repeat-iterable.d.ts +11 -0
  532. package/dist/types/collection/implementations/iterable-collection/_shared/reverse-iterable.d.ts +11 -0
  533. package/dist/types/collection/implementations/iterable-collection/_shared/skip-iterable.d.ts +10 -0
  534. package/dist/types/collection/implementations/iterable-collection/_shared/skip-until-iterable.d.ts +10 -0
  535. package/dist/types/collection/implementations/iterable-collection/_shared/slice-iterable.d.ts +11 -0
  536. package/dist/types/collection/implementations/iterable-collection/_shared/sliding-iterable.d.ts +11 -0
  537. package/dist/types/collection/implementations/iterable-collection/_shared/sort-iterable.d.ts +10 -0
  538. package/dist/types/collection/implementations/iterable-collection/_shared/split-iterable.d.ts +11 -0
  539. package/dist/types/collection/implementations/iterable-collection/_shared/take-iterable.d.ts +10 -0
  540. package/dist/types/collection/implementations/iterable-collection/_shared/take-until-iterable.d.ts +10 -0
  541. package/dist/types/collection/implementations/iterable-collection/_shared/tap-iterable.d.ts +10 -0
  542. package/dist/types/collection/implementations/iterable-collection/_shared/unique-iterable.d.ts +10 -0
  543. package/dist/types/collection/implementations/iterable-collection/_shared/update-iterable.d.ts +11 -0
  544. package/dist/types/collection/implementations/iterable-collection/_shared/when-iterable.d.ts +11 -0
  545. package/dist/types/collection/implementations/iterable-collection/_shared/zip-iterable.d.ts +10 -0
  546. package/dist/types/collection/implementations/iterable-collection/iterable-collection.d.ts +100 -0
  547. package/dist/types/collection/implementations/list-collection/_module.d.ts +1 -0
  548. package/dist/types/collection/implementations/list-collection/list-collection.d.ts +97 -0
  549. package/dist/types/serializer/_module.d.ts +5 -5
  550. package/dist/types/serializer/contracts/_module.d.ts +1 -0
  551. package/dist/types/serializer/implementations/_module.d.ts +5 -0
  552. package/dist/types/serializer/implementations/_shared/test-utilities/_module.d.ts +1 -0
  553. package/dist/types/serializer/implementations/_shared/test-utilities/serializer.test-suite.d.ts +18 -0
  554. package/dist/types/serializer/implementations/mongodb-serializer/_module.d.ts +1 -0
  555. package/dist/types/serializer/implementations/mongodb-serializer/mongodb-serializer.d.ts +13 -0
  556. package/dist/types/serializer/implementations/redis-serializer/_module.d.ts +1 -0
  557. package/dist/types/serializer/implementations/redis-serializer/redis-serializer.d.ts +13 -0
  558. package/dist/types/serializer/implementations/sql-serializer/_module.d.ts +1 -0
  559. package/dist/types/serializer/implementations/sql-serializer/sql-serializer.d.ts +13 -0
  560. package/dist/types/serializer/implementations/super-json-serializer/_module.d.ts +1 -0
  561. package/dist/types/serializer/implementations/super-json-serializer/super-json-serializer.d.ts +37 -0
  562. package/dist/types/storage/contracts/_module.d.ts +3 -0
  563. package/dist/types/storage/contracts/storage-adapter.contract.d.ts +53 -0
  564. package/dist/types/storage/contracts/storage.contract.d.ts +151 -0
  565. package/dist/types/storage/implementations/_module.d.ts +6 -0
  566. package/dist/types/storage/implementations/_shared/test-utilities/_module.d.ts +1 -0
  567. package/dist/types/storage/implementations/_shared/test-utilities/storage-adapter-api.test-suite.d.ts +20 -0
  568. package/dist/types/storage/implementations/_shared/test-utilities/storage-adapter-value.test-suite.d.ts +20 -0
  569. package/dist/types/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.d.ts +20 -0
  570. package/dist/types/storage/implementations/memory-storage-adapter/_module.d.ts +1 -0
  571. package/dist/types/storage/implementations/memory-storage-adapter/memory-storage-adapter.d.ts +18 -0
  572. package/dist/types/storage/implementations/mongodb-storage-adapter/_module.d.ts +1 -0
  573. package/dist/types/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.d.ts +43 -0
  574. package/dist/types/storage/implementations/redis-storage-adapter/_module.d.ts +1 -0
  575. package/dist/types/storage/implementations/redis-storage-adapter/redis-storage-adapter.d.ts +38 -0
  576. package/dist/types/storage/implementations/sqlite/_module.d.ts +2 -0
  577. package/dist/types/storage/implementations/sqlite/_shared/_module.d.ts +1 -0
  578. package/dist/types/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.d.ts +39 -0
  579. package/dist/types/storage/implementations/sqlite/libsql-storage-adapter/_module.d.ts +1 -0
  580. package/dist/types/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.d.ts +30 -0
  581. package/dist/types/storage/implementations/sqlite/sqlite-storage-adapter/_module.d.ts +1 -0
  582. package/dist/types/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.d.ts +30 -0
  583. package/dist/types/storage/implementations/storage/_module.d.ts +1 -0
  584. package/dist/types/storage/implementations/storage/storage.d.ts +41 -0
  585. package/dist/types/storage/implementations/storage/with-namespace-storage-adapter.d.ts +25 -0
  586. package/dist/types/storage/implementations/storage/with-validation-storage-adapter.d.ts +19 -0
  587. package/dist/types/utilities/_module.d.ts +4 -0
  588. package/dist/types/utilities/async/_module.d.ts +7 -0
  589. package/dist/types/utilities/async/abortable/_module.d.ts +1 -0
  590. package/dist/types/utilities/async/abortable/abortable.d.ts +39 -0
  591. package/dist/types/utilities/async/backof-policies/_module.d.ts +5 -0
  592. package/dist/types/utilities/async/backof-policies/constant-backoff-policy/_module.d.ts +1 -0
  593. package/dist/types/utilities/async/backof-policies/constant-backoff-policy/constant-backoff-policy.d.ts +28 -0
  594. package/dist/types/utilities/async/backof-policies/exponential-backoff-policy/_module.d.ts +1 -0
  595. package/dist/types/utilities/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.d.ts +36 -0
  596. package/dist/types/utilities/async/backof-policies/linear-backoff-policy/_module.d.ts +1 -0
  597. package/dist/types/utilities/async/backof-policies/linear-backoff-policy/linear-backoff-policy.d.ts +32 -0
  598. package/dist/types/utilities/async/backof-policies/polynomial-backoff-policy/_module.d.ts +1 -0
  599. package/dist/types/utilities/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.d.ts +36 -0
  600. package/dist/types/utilities/async/delay/_module.d.ts +1 -0
  601. package/dist/types/utilities/async/delay/delay.d.ts +38 -0
  602. package/dist/types/utilities/async/lazy-promise/_module.d.ts +1 -0
  603. package/dist/types/utilities/async/retry/_module.d.ts +1 -0
  604. package/dist/types/utilities/async/retry/retry.d.ts +86 -0
  605. package/dist/types/utilities/async/timeout/_module.d.ts +1 -0
  606. package/dist/types/utilities/async/timeout/timeout.d.ts +40 -0
  607. package/dist/types/utilities/async-iterable/_module.d.ts +4 -0
  608. package/dist/types/utilities/async-iterable/abortable-iterable/_module.d.ts +1 -0
  609. package/dist/types/utilities/async-iterable/delay-iterable/_module.d.ts +1 -0
  610. package/dist/types/utilities/async-iterable/delay-iterable/delay-iterable.d.ts +57 -0
  611. package/dist/types/utilities/async-iterable/retry-iterable/_module.d.ts +1 -0
  612. package/dist/types/utilities/async-iterable/retry-iterable/retry-iterable.d.ts +86 -0
  613. package/dist/types/utilities/async-iterable/timeout-iterable/_module.d.ts +1 -0
  614. package/dist/types/utilities/async-iterable/timeout-iterable/timeout-iterable.d.ts +64 -0
  615. package/dist/types/utilities/time-span/time-span.d.ts +3 -3
  616. package/dist/types/utilities/validation/_module.d.ts +12 -0
  617. package/package.json +10 -6
  618. package/dist/cjs/async/_module.js +0 -30
  619. package/dist/cjs/async/_module.js.map +0 -1
  620. package/dist/cjs/async/_shared.js.map +0 -1
  621. package/dist/cjs/async/abortable/_module.js +0 -18
  622. package/dist/cjs/async/abortable/_module.js.map +0 -1
  623. package/dist/cjs/async/abortable/abortable.js +0 -48
  624. package/dist/cjs/async/abortable/abortable.js.map +0 -1
  625. package/dist/cjs/async/abortable-iterable/_module.js +0 -18
  626. package/dist/cjs/async/abortable-iterable/_module.js.map +0 -1
  627. package/dist/cjs/async/abortable-iterable/abortable-iterable.js +0 -32
  628. package/dist/cjs/async/abortable-iterable/abortable-iterable.js.map +0 -1
  629. package/dist/cjs/async/backof-policies/_module.js +0 -21
  630. package/dist/cjs/async/backof-policies/_module.js.map +0 -1
  631. package/dist/cjs/async/backof-policies/_shared.js.map +0 -1
  632. package/dist/cjs/async/backof-policies/constant-backoff-policy/_module.js +0 -18
  633. package/dist/cjs/async/backof-policies/constant-backoff-policy/_module.js.map +0 -1
  634. package/dist/cjs/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +0 -19
  635. package/dist/cjs/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +0 -1
  636. package/dist/cjs/async/backof-policies/exponential-backoff-policy/_module.js +0 -18
  637. package/dist/cjs/async/backof-policies/exponential-backoff-policy/_module.js.map +0 -1
  638. package/dist/cjs/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +0 -23
  639. package/dist/cjs/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +0 -1
  640. package/dist/cjs/async/backof-policies/linear-backoff-policy/_module.js +0 -18
  641. package/dist/cjs/async/backof-policies/linear-backoff-policy/_module.js.map +0 -1
  642. package/dist/cjs/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +0 -23
  643. package/dist/cjs/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +0 -1
  644. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/_module.js +0 -18
  645. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/_module.js.map +0 -1
  646. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +0 -23
  647. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +0 -1
  648. package/dist/cjs/async/delay/_module.js +0 -18
  649. package/dist/cjs/async/delay/_module.js.map +0 -1
  650. package/dist/cjs/async/delay/delay.js +0 -24
  651. package/dist/cjs/async/delay/delay.js.map +0 -1
  652. package/dist/cjs/async/delay-iterable/_module.js +0 -18
  653. package/dist/cjs/async/delay-iterable/_module.js.map +0 -1
  654. package/dist/cjs/async/delay-iterable/delay-iterable.js +0 -36
  655. package/dist/cjs/async/delay-iterable/delay-iterable.js.map +0 -1
  656. package/dist/cjs/async/lazy-promise/_module.js +0 -18
  657. package/dist/cjs/async/lazy-promise/_module.js.map +0 -1
  658. package/dist/cjs/async/lazy-promise/lazy-promise.js.map +0 -1
  659. package/dist/cjs/async/retry/_module.js +0 -18
  660. package/dist/cjs/async/retry/_module.js.map +0 -1
  661. package/dist/cjs/async/retry/retry.js +0 -43
  662. package/dist/cjs/async/retry/retry.js.map +0 -1
  663. package/dist/cjs/async/retry-iterable/_module.js +0 -18
  664. package/dist/cjs/async/retry-iterable/_module.js.map +0 -1
  665. package/dist/cjs/async/retry-iterable/retry-iterable.js +0 -32
  666. package/dist/cjs/async/retry-iterable/retry-iterable.js.map +0 -1
  667. package/dist/cjs/async/timeout/_module.js +0 -18
  668. package/dist/cjs/async/timeout/_module.js.map +0 -1
  669. package/dist/cjs/async/timeout/timeout.js +0 -28
  670. package/dist/cjs/async/timeout/timeout.js.map +0 -1
  671. package/dist/cjs/async/timeout-iterable/_module.js +0 -18
  672. package/dist/cjs/async/timeout-iterable/_module.js.map +0 -1
  673. package/dist/cjs/async/timeout-iterable/timeout-iterable.js +0 -11
  674. package/dist/cjs/async/timeout-iterable/timeout-iterable.js.map +0 -1
  675. package/dist/cjs/collection/_module.js +0 -21
  676. package/dist/cjs/collection/_module.js.map +0 -1
  677. package/dist/cjs/collection/_shared.js.map +0 -1
  678. package/dist/cjs/collection/async-iterable-collection/_module.js +0 -18
  679. package/dist/cjs/collection/async-iterable-collection/_module.js.map +0 -1
  680. package/dist/cjs/collection/async-iterable-collection/_shared/_module.js +0 -50
  681. package/dist/cjs/collection/async-iterable-collection/_shared/_module.js.map +0 -1
  682. package/dist/cjs/collection/async-iterable-collection/_shared/async-chunk-iterable.js.map +0 -1
  683. package/dist/cjs/collection/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +0 -1
  684. package/dist/cjs/collection/async-iterable-collection/_shared/async-collapse-iterable.js +0 -22
  685. package/dist/cjs/collection/async-iterable-collection/_shared/async-collapse-iterable.js.map +0 -1
  686. package/dist/cjs/collection/async-iterable-collection/_shared/async-count-by-iterable.js.map +0 -1
  687. package/dist/cjs/collection/async-iterable-collection/_shared/async-cross-join-iterable.js +0 -35
  688. package/dist/cjs/collection/async-iterable-collection/_shared/async-cross-join-iterable.js.map +0 -1
  689. package/dist/cjs/collection/async-iterable-collection/_shared/async-entries-iterable.js.map +0 -1
  690. package/dist/cjs/collection/async-iterable-collection/_shared/async-error-handler-iterable.js.map +0 -1
  691. package/dist/cjs/collection/async-iterable-collection/_shared/async-filter-iterable.js.map +0 -1
  692. package/dist/cjs/collection/async-iterable-collection/_shared/async-flat-map-iterable.js.map +0 -1
  693. package/dist/cjs/collection/async-iterable-collection/_shared/async-group-by-iterable.js.map +0 -1
  694. package/dist/cjs/collection/async-iterable-collection/_shared/async-insert-after-iterable.js.map +0 -1
  695. package/dist/cjs/collection/async-iterable-collection/_shared/async-insert-before-iterable.js.map +0 -1
  696. package/dist/cjs/collection/async-iterable-collection/_shared/async-map-iterable.js.map +0 -1
  697. package/dist/cjs/collection/async-iterable-collection/_shared/async-merge-iterable.js.map +0 -1
  698. package/dist/cjs/collection/async-iterable-collection/_shared/async-pad-end-iterable.js.map +0 -1
  699. package/dist/cjs/collection/async-iterable-collection/_shared/async-pad-start-iterable.js.map +0 -1
  700. package/dist/cjs/collection/async-iterable-collection/_shared/async-partion-iterable.js.map +0 -1
  701. package/dist/cjs/collection/async-iterable-collection/_shared/async-repeat-iterable.js.map +0 -1
  702. package/dist/cjs/collection/async-iterable-collection/_shared/async-reverse-iterable.js.map +0 -1
  703. package/dist/cjs/collection/async-iterable-collection/_shared/async-shuffle-iterable.js.map +0 -1
  704. package/dist/cjs/collection/async-iterable-collection/_shared/async-skip-iterable.js.map +0 -1
  705. package/dist/cjs/collection/async-iterable-collection/_shared/async-skip-until-iterable.js.map +0 -1
  706. package/dist/cjs/collection/async-iterable-collection/_shared/async-slice-iterable.js.map +0 -1
  707. package/dist/cjs/collection/async-iterable-collection/_shared/async-sliding-iterable.js.map +0 -1
  708. package/dist/cjs/collection/async-iterable-collection/_shared/async-sort-iterable.js.map +0 -1
  709. package/dist/cjs/collection/async-iterable-collection/_shared/async-split-iterable.js.map +0 -1
  710. package/dist/cjs/collection/async-iterable-collection/_shared/async-take-iterable.js.map +0 -1
  711. package/dist/cjs/collection/async-iterable-collection/_shared/async-take-until-iterable.js.map +0 -1
  712. package/dist/cjs/collection/async-iterable-collection/_shared/async-tap-iterable.js.map +0 -1
  713. package/dist/cjs/collection/async-iterable-collection/_shared/async-unique-iterable.js.map +0 -1
  714. package/dist/cjs/collection/async-iterable-collection/_shared/async-update-iterable.js.map +0 -1
  715. package/dist/cjs/collection/async-iterable-collection/_shared/async-when-iterable.js.map +0 -1
  716. package/dist/cjs/collection/async-iterable-collection/_shared/async-zip-iterable.js +0 -37
  717. package/dist/cjs/collection/async-iterable-collection/_shared/async-zip-iterable.js.map +0 -1
  718. package/dist/cjs/collection/async-iterable-collection/async-iterable-collection.js +0 -547
  719. package/dist/cjs/collection/async-iterable-collection/async-iterable-collection.js.map +0 -1
  720. package/dist/cjs/collection/iterable-collection/_module.js +0 -18
  721. package/dist/cjs/collection/iterable-collection/_module.js.map +0 -1
  722. package/dist/cjs/collection/iterable-collection/_shared/_module.js +0 -49
  723. package/dist/cjs/collection/iterable-collection/_shared/_module.js.map +0 -1
  724. package/dist/cjs/collection/iterable-collection/_shared/chunk-iterable.js.map +0 -1
  725. package/dist/cjs/collection/iterable-collection/_shared/chunk-while-iterable.js.map +0 -1
  726. package/dist/cjs/collection/iterable-collection/_shared/collapse-iterable.js +0 -22
  727. package/dist/cjs/collection/iterable-collection/_shared/collapse-iterable.js.map +0 -1
  728. package/dist/cjs/collection/iterable-collection/_shared/count-by-iterable.js.map +0 -1
  729. package/dist/cjs/collection/iterable-collection/_shared/cross-join-iterable.js +0 -37
  730. package/dist/cjs/collection/iterable-collection/_shared/cross-join-iterable.js.map +0 -1
  731. package/dist/cjs/collection/iterable-collection/_shared/entries-iterable.js.map +0 -1
  732. package/dist/cjs/collection/iterable-collection/_shared/filter-iterable.js.map +0 -1
  733. package/dist/cjs/collection/iterable-collection/_shared/flat-map-iterable.js.map +0 -1
  734. package/dist/cjs/collection/iterable-collection/_shared/group-by-iterable.js.map +0 -1
  735. package/dist/cjs/collection/iterable-collection/_shared/insert-after-iterable.js.map +0 -1
  736. package/dist/cjs/collection/iterable-collection/_shared/insert-before-iterable.js.map +0 -1
  737. package/dist/cjs/collection/iterable-collection/_shared/map-iterable.js.map +0 -1
  738. package/dist/cjs/collection/iterable-collection/_shared/merge-iterable.js.map +0 -1
  739. package/dist/cjs/collection/iterable-collection/_shared/pad-end-iterable.js.map +0 -1
  740. package/dist/cjs/collection/iterable-collection/_shared/pad-start-iterable.js.map +0 -1
  741. package/dist/cjs/collection/iterable-collection/_shared/partion-iterable.js.map +0 -1
  742. package/dist/cjs/collection/iterable-collection/_shared/repeat-iterable.js.map +0 -1
  743. package/dist/cjs/collection/iterable-collection/_shared/reverse-iterable.js.map +0 -1
  744. package/dist/cjs/collection/iterable-collection/_shared/shuffle-iterable.js.map +0 -1
  745. package/dist/cjs/collection/iterable-collection/_shared/skip-iterable.js.map +0 -1
  746. package/dist/cjs/collection/iterable-collection/_shared/skip-until-iterable.js.map +0 -1
  747. package/dist/cjs/collection/iterable-collection/_shared/slice-iterable.js.map +0 -1
  748. package/dist/cjs/collection/iterable-collection/_shared/sliding-iterable.js.map +0 -1
  749. package/dist/cjs/collection/iterable-collection/_shared/sort-iterable.js.map +0 -1
  750. package/dist/cjs/collection/iterable-collection/_shared/split-iterable.js.map +0 -1
  751. package/dist/cjs/collection/iterable-collection/_shared/take-iterable.js.map +0 -1
  752. package/dist/cjs/collection/iterable-collection/_shared/take-until-iterable.js.map +0 -1
  753. package/dist/cjs/collection/iterable-collection/_shared/tap-iterable.js.map +0 -1
  754. package/dist/cjs/collection/iterable-collection/_shared/unique-iterable.js.map +0 -1
  755. package/dist/cjs/collection/iterable-collection/_shared/update-iterable.js.map +0 -1
  756. package/dist/cjs/collection/iterable-collection/_shared/when-iterable.js.map +0 -1
  757. package/dist/cjs/collection/iterable-collection/_shared/zip-iterable.js.map +0 -1
  758. package/dist/cjs/collection/iterable-collection/iterable-collection.js +0 -493
  759. package/dist/cjs/collection/iterable-collection/iterable-collection.js.map +0 -1
  760. package/dist/cjs/collection/list-collection/_module.js +0 -18
  761. package/dist/cjs/collection/list-collection/_module.js.map +0 -1
  762. package/dist/cjs/collection/list-collection/list-collection.js +0 -627
  763. package/dist/cjs/collection/list-collection/list-collection.js.map +0 -1
  764. package/dist/cjs/contracts/_module.js +0 -20
  765. package/dist/cjs/contracts/_module.js.map +0 -1
  766. package/dist/cjs/contracts/collection/_module.js +0 -20
  767. package/dist/cjs/contracts/collection/_module.js.map +0 -1
  768. package/dist/cjs/contracts/collection/_shared.js.map +0 -1
  769. package/dist/cjs/contracts/collection/async-collection.contract.js.map +0 -1
  770. package/dist/cjs/contracts/collection/collection.contract.js.map +0 -1
  771. package/dist/cjs/contracts/serializer/_module.js +0 -18
  772. package/dist/cjs/contracts/serializer/_module.js.map +0 -1
  773. package/dist/cjs/contracts/serializer/serializer.contract.js.map +0 -1
  774. package/dist/cjs/contracts/storage/_module.js +0 -20
  775. package/dist/cjs/contracts/storage/_module.js.map +0 -1
  776. package/dist/cjs/contracts/storage/_shared.js.map +0 -1
  777. package/dist/cjs/contracts/storage/storage-adapter.contract.js.map +0 -1
  778. package/dist/cjs/contracts/storage/storage.contract.js.map +0 -1
  779. package/dist/cjs/serializer/_shared/test-utilities/_module.js +0 -18
  780. package/dist/cjs/serializer/_shared/test-utilities/_module.js.map +0 -1
  781. package/dist/cjs/serializer/_shared/test-utilities/serializer.test-suite.js.map +0 -1
  782. package/dist/cjs/serializer/mongodb-serializer/_module.js +0 -18
  783. package/dist/cjs/serializer/mongodb-serializer/_module.js.map +0 -1
  784. package/dist/cjs/serializer/mongodb-serializer/mongodb-serializer.js +0 -36
  785. package/dist/cjs/serializer/mongodb-serializer/mongodb-serializer.js.map +0 -1
  786. package/dist/cjs/serializer/redis-serializer/_module.js +0 -18
  787. package/dist/cjs/serializer/redis-serializer/_module.js.map +0 -1
  788. package/dist/cjs/serializer/redis-serializer/redis-serializer.js +0 -37
  789. package/dist/cjs/serializer/redis-serializer/redis-serializer.js.map +0 -1
  790. package/dist/cjs/serializer/sql-serializer/_module.js +0 -18
  791. package/dist/cjs/serializer/sql-serializer/_module.js.map +0 -1
  792. package/dist/cjs/serializer/sql-serializer/sql-serializer.js +0 -37
  793. package/dist/cjs/serializer/sql-serializer/sql-serializer.js.map +0 -1
  794. package/dist/cjs/serializer/super-json-serializer/_module.js +0 -18
  795. package/dist/cjs/serializer/super-json-serializer/_module.js.map +0 -1
  796. package/dist/cjs/serializer/super-json-serializer/super-json-serializer.js +0 -304
  797. package/dist/cjs/serializer/super-json-serializer/super-json-serializer.js.map +0 -1
  798. package/dist/cjs/storage/_module.js +0 -23
  799. package/dist/cjs/storage/_module.js.map +0 -1
  800. package/dist/cjs/storage/_shared/test-utilities/_module.js +0 -18
  801. package/dist/cjs/storage/_shared/test-utilities/_module.js.map +0 -1
  802. package/dist/cjs/storage/_shared/test-utilities/storage-api.test-suite.js +0 -572
  803. package/dist/cjs/storage/_shared/test-utilities/storage-api.test-suite.js.map +0 -1
  804. package/dist/cjs/storage/_shared/test-utilities/storage-namespace.test-suite.js +0 -241
  805. package/dist/cjs/storage/_shared/test-utilities/storage-namespace.test-suite.js.map +0 -1
  806. package/dist/cjs/storage/_shared/test-utilities/storage-value.test-suite.js +0 -4172
  807. package/dist/cjs/storage/_shared/test-utilities/storage-value.test-suite.js.map +0 -1
  808. package/dist/cjs/storage/_shared/test-utilities/storage.test-suite.js +0 -12
  809. package/dist/cjs/storage/_shared/test-utilities/storage.test-suite.js.map +0 -1
  810. package/dist/cjs/storage/memory-storage-adapter/_module.js +0 -18
  811. package/dist/cjs/storage/memory-storage-adapter/_module.js.map +0 -1
  812. package/dist/cjs/storage/memory-storage-adapter/memory-storage-adapter.js +0 -62
  813. package/dist/cjs/storage/memory-storage-adapter/memory-storage-adapter.js.map +0 -1
  814. package/dist/cjs/storage/mongodb-storage-adapter/_module.js +0 -6
  815. package/dist/cjs/storage/mongodb-storage-adapter/_module.js.map +0 -1
  816. package/dist/cjs/storage/mongodb-storage-adapter/mongodb-storage-adapter.js +0 -273
  817. package/dist/cjs/storage/mongodb-storage-adapter/mongodb-storage-adapter.js.map +0 -1
  818. package/dist/cjs/storage/namespace-storage-adapter.js +0 -66
  819. package/dist/cjs/storage/namespace-storage-adapter.js.map +0 -1
  820. package/dist/cjs/storage/redis-storage-adapter/_module.js +0 -18
  821. package/dist/cjs/storage/redis-storage-adapter/_module.js.map +0 -1
  822. package/dist/cjs/storage/redis-storage-adapter/redis-storage-adapter.js +0 -248
  823. package/dist/cjs/storage/redis-storage-adapter/redis-storage-adapter.js.map +0 -1
  824. package/dist/cjs/storage/sqlite/_module.js +0 -19
  825. package/dist/cjs/storage/sqlite/_module.js.map +0 -1
  826. package/dist/cjs/storage/sqlite/_shared/_module.js +0 -18
  827. package/dist/cjs/storage/sqlite/_shared/_module.js.map +0 -1
  828. package/dist/cjs/storage/sqlite/_shared/base-sqlite-storage-adapter.js +0 -224
  829. package/dist/cjs/storage/sqlite/_shared/base-sqlite-storage-adapter.js.map +0 -1
  830. package/dist/cjs/storage/sqlite/libsql-storage-adapter/_module.js +0 -18
  831. package/dist/cjs/storage/sqlite/libsql-storage-adapter/_module.js.map +0 -1
  832. package/dist/cjs/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +0 -53
  833. package/dist/cjs/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +0 -1
  834. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/_module.js +0 -18
  835. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/_module.js.map +0 -1
  836. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +0 -52
  837. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +0 -1
  838. package/dist/cjs/storage/storage.js +0 -301
  839. package/dist/cjs/storage/storage.js.map +0 -1
  840. package/dist/cjs/storage/usable-storage-adapter.js +0 -102
  841. package/dist/cjs/storage/usable-storage-adapter.js.map +0 -1
  842. package/dist/esm/async/_module.js +0 -12
  843. package/dist/esm/async/_module.js.map +0 -1
  844. package/dist/esm/async/_shared.js.map +0 -1
  845. package/dist/esm/async/abortable/_module.js +0 -2
  846. package/dist/esm/async/abortable/_module.js.map +0 -1
  847. package/dist/esm/async/abortable/abortable.js +0 -45
  848. package/dist/esm/async/abortable/abortable.js.map +0 -1
  849. package/dist/esm/async/abortable-iterable/_module.js +0 -2
  850. package/dist/esm/async/abortable-iterable/_module.js.map +0 -1
  851. package/dist/esm/async/abortable-iterable/abortable-iterable.js +0 -29
  852. package/dist/esm/async/abortable-iterable/abortable-iterable.js.map +0 -1
  853. package/dist/esm/async/backof-policies/_module.js +0 -5
  854. package/dist/esm/async/backof-policies/_module.js.map +0 -1
  855. package/dist/esm/async/backof-policies/_shared.js.map +0 -1
  856. package/dist/esm/async/backof-policies/constant-backoff-policy/_module.js +0 -2
  857. package/dist/esm/async/backof-policies/constant-backoff-policy/_module.js.map +0 -1
  858. package/dist/esm/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +0 -16
  859. package/dist/esm/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +0 -1
  860. package/dist/esm/async/backof-policies/exponential-backoff-policy/_module.js +0 -2
  861. package/dist/esm/async/backof-policies/exponential-backoff-policy/_module.js.map +0 -1
  862. package/dist/esm/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +0 -20
  863. package/dist/esm/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +0 -1
  864. package/dist/esm/async/backof-policies/linear-backoff-policy/_module.js +0 -2
  865. package/dist/esm/async/backof-policies/linear-backoff-policy/_module.js.map +0 -1
  866. package/dist/esm/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +0 -20
  867. package/dist/esm/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +0 -1
  868. package/dist/esm/async/backof-policies/polynomial-backoff-policy/_module.js +0 -2
  869. package/dist/esm/async/backof-policies/polynomial-backoff-policy/_module.js.map +0 -1
  870. package/dist/esm/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +0 -20
  871. package/dist/esm/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +0 -1
  872. package/dist/esm/async/delay/_module.js +0 -2
  873. package/dist/esm/async/delay/_module.js.map +0 -1
  874. package/dist/esm/async/delay/delay.js +0 -21
  875. package/dist/esm/async/delay/delay.js.map +0 -1
  876. package/dist/esm/async/delay-iterable/_module.js +0 -2
  877. package/dist/esm/async/delay-iterable/_module.js.map +0 -1
  878. package/dist/esm/async/delay-iterable/delay-iterable.js +0 -33
  879. package/dist/esm/async/delay-iterable/delay-iterable.js.map +0 -1
  880. package/dist/esm/async/lazy-promise/_module.js +0 -2
  881. package/dist/esm/async/lazy-promise/_module.js.map +0 -1
  882. package/dist/esm/async/lazy-promise/lazy-promise.js.map +0 -1
  883. package/dist/esm/async/retry/_module.js +0 -2
  884. package/dist/esm/async/retry/_module.js.map +0 -1
  885. package/dist/esm/async/retry/retry.js +0 -40
  886. package/dist/esm/async/retry/retry.js.map +0 -1
  887. package/dist/esm/async/retry-iterable/_module.js +0 -2
  888. package/dist/esm/async/retry-iterable/_module.js.map +0 -1
  889. package/dist/esm/async/retry-iterable/retry-iterable.js +0 -29
  890. package/dist/esm/async/retry-iterable/retry-iterable.js.map +0 -1
  891. package/dist/esm/async/timeout/_module.js +0 -2
  892. package/dist/esm/async/timeout/_module.js.map +0 -1
  893. package/dist/esm/async/timeout/timeout.js +0 -25
  894. package/dist/esm/async/timeout/timeout.js.map +0 -1
  895. package/dist/esm/async/timeout-iterable/_module.js +0 -2
  896. package/dist/esm/async/timeout-iterable/_module.js.map +0 -1
  897. package/dist/esm/async/timeout-iterable/timeout-iterable.js +0 -8
  898. package/dist/esm/async/timeout-iterable/timeout-iterable.js.map +0 -1
  899. package/dist/esm/collection/_module.js +0 -5
  900. package/dist/esm/collection/_module.js.map +0 -1
  901. package/dist/esm/collection/_shared.js.map +0 -1
  902. package/dist/esm/collection/async-iterable-collection/_module.js +0 -2
  903. package/dist/esm/collection/async-iterable-collection/_module.js.map +0 -1
  904. package/dist/esm/collection/async-iterable-collection/_shared/_module.js +0 -34
  905. package/dist/esm/collection/async-iterable-collection/_shared/_module.js.map +0 -1
  906. package/dist/esm/collection/async-iterable-collection/_shared/async-chunk-iterable.js.map +0 -1
  907. package/dist/esm/collection/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +0 -1
  908. package/dist/esm/collection/async-iterable-collection/_shared/async-collapse-iterable.js +0 -18
  909. package/dist/esm/collection/async-iterable-collection/_shared/async-collapse-iterable.js.map +0 -1
  910. package/dist/esm/collection/async-iterable-collection/_shared/async-count-by-iterable.js.map +0 -1
  911. package/dist/esm/collection/async-iterable-collection/_shared/async-cross-join-iterable.js +0 -31
  912. package/dist/esm/collection/async-iterable-collection/_shared/async-cross-join-iterable.js.map +0 -1
  913. package/dist/esm/collection/async-iterable-collection/_shared/async-entries-iterable.js.map +0 -1
  914. package/dist/esm/collection/async-iterable-collection/_shared/async-error-handler-iterable.js.map +0 -1
  915. package/dist/esm/collection/async-iterable-collection/_shared/async-filter-iterable.js.map +0 -1
  916. package/dist/esm/collection/async-iterable-collection/_shared/async-flat-map-iterable.js.map +0 -1
  917. package/dist/esm/collection/async-iterable-collection/_shared/async-group-by-iterable.js.map +0 -1
  918. package/dist/esm/collection/async-iterable-collection/_shared/async-insert-after-iterable.js.map +0 -1
  919. package/dist/esm/collection/async-iterable-collection/_shared/async-insert-before-iterable.js.map +0 -1
  920. package/dist/esm/collection/async-iterable-collection/_shared/async-map-iterable.js.map +0 -1
  921. package/dist/esm/collection/async-iterable-collection/_shared/async-merge-iterable.js.map +0 -1
  922. package/dist/esm/collection/async-iterable-collection/_shared/async-pad-end-iterable.js.map +0 -1
  923. package/dist/esm/collection/async-iterable-collection/_shared/async-pad-start-iterable.js.map +0 -1
  924. package/dist/esm/collection/async-iterable-collection/_shared/async-partion-iterable.js.map +0 -1
  925. package/dist/esm/collection/async-iterable-collection/_shared/async-repeat-iterable.js.map +0 -1
  926. package/dist/esm/collection/async-iterable-collection/_shared/async-reverse-iterable.js.map +0 -1
  927. package/dist/esm/collection/async-iterable-collection/_shared/async-shuffle-iterable.js.map +0 -1
  928. package/dist/esm/collection/async-iterable-collection/_shared/async-skip-iterable.js.map +0 -1
  929. package/dist/esm/collection/async-iterable-collection/_shared/async-skip-until-iterable.js.map +0 -1
  930. package/dist/esm/collection/async-iterable-collection/_shared/async-slice-iterable.js.map +0 -1
  931. package/dist/esm/collection/async-iterable-collection/_shared/async-sliding-iterable.js.map +0 -1
  932. package/dist/esm/collection/async-iterable-collection/_shared/async-sort-iterable.js.map +0 -1
  933. package/dist/esm/collection/async-iterable-collection/_shared/async-split-iterable.js.map +0 -1
  934. package/dist/esm/collection/async-iterable-collection/_shared/async-take-iterable.js.map +0 -1
  935. package/dist/esm/collection/async-iterable-collection/_shared/async-take-until-iterable.js.map +0 -1
  936. package/dist/esm/collection/async-iterable-collection/_shared/async-tap-iterable.js.map +0 -1
  937. package/dist/esm/collection/async-iterable-collection/_shared/async-unique-iterable.js.map +0 -1
  938. package/dist/esm/collection/async-iterable-collection/_shared/async-update-iterable.js.map +0 -1
  939. package/dist/esm/collection/async-iterable-collection/_shared/async-when-iterable.js.map +0 -1
  940. package/dist/esm/collection/async-iterable-collection/_shared/async-zip-iterable.js +0 -33
  941. package/dist/esm/collection/async-iterable-collection/_shared/async-zip-iterable.js.map +0 -1
  942. package/dist/esm/collection/async-iterable-collection/async-iterable-collection.js +0 -543
  943. package/dist/esm/collection/async-iterable-collection/async-iterable-collection.js.map +0 -1
  944. package/dist/esm/collection/iterable-collection/_module.js +0 -2
  945. package/dist/esm/collection/iterable-collection/_module.js.map +0 -1
  946. package/dist/esm/collection/iterable-collection/_shared/_module.js +0 -33
  947. package/dist/esm/collection/iterable-collection/_shared/_module.js.map +0 -1
  948. package/dist/esm/collection/iterable-collection/_shared/chunk-iterable.js.map +0 -1
  949. package/dist/esm/collection/iterable-collection/_shared/chunk-while-iterable.js.map +0 -1
  950. package/dist/esm/collection/iterable-collection/_shared/collapse-iterable.js +0 -18
  951. package/dist/esm/collection/iterable-collection/_shared/collapse-iterable.js.map +0 -1
  952. package/dist/esm/collection/iterable-collection/_shared/count-by-iterable.js.map +0 -1
  953. package/dist/esm/collection/iterable-collection/_shared/cross-join-iterable.js +0 -33
  954. package/dist/esm/collection/iterable-collection/_shared/cross-join-iterable.js.map +0 -1
  955. package/dist/esm/collection/iterable-collection/_shared/entries-iterable.js.map +0 -1
  956. package/dist/esm/collection/iterable-collection/_shared/filter-iterable.js.map +0 -1
  957. package/dist/esm/collection/iterable-collection/_shared/flat-map-iterable.js.map +0 -1
  958. package/dist/esm/collection/iterable-collection/_shared/group-by-iterable.js.map +0 -1
  959. package/dist/esm/collection/iterable-collection/_shared/insert-after-iterable.js.map +0 -1
  960. package/dist/esm/collection/iterable-collection/_shared/insert-before-iterable.js.map +0 -1
  961. package/dist/esm/collection/iterable-collection/_shared/map-iterable.js.map +0 -1
  962. package/dist/esm/collection/iterable-collection/_shared/merge-iterable.js.map +0 -1
  963. package/dist/esm/collection/iterable-collection/_shared/pad-end-iterable.js.map +0 -1
  964. package/dist/esm/collection/iterable-collection/_shared/pad-start-iterable.js.map +0 -1
  965. package/dist/esm/collection/iterable-collection/_shared/partion-iterable.js.map +0 -1
  966. package/dist/esm/collection/iterable-collection/_shared/repeat-iterable.js.map +0 -1
  967. package/dist/esm/collection/iterable-collection/_shared/reverse-iterable.js.map +0 -1
  968. package/dist/esm/collection/iterable-collection/_shared/shuffle-iterable.js.map +0 -1
  969. package/dist/esm/collection/iterable-collection/_shared/skip-iterable.js.map +0 -1
  970. package/dist/esm/collection/iterable-collection/_shared/skip-until-iterable.js.map +0 -1
  971. package/dist/esm/collection/iterable-collection/_shared/slice-iterable.js.map +0 -1
  972. package/dist/esm/collection/iterable-collection/_shared/sliding-iterable.js.map +0 -1
  973. package/dist/esm/collection/iterable-collection/_shared/sort-iterable.js.map +0 -1
  974. package/dist/esm/collection/iterable-collection/_shared/split-iterable.js.map +0 -1
  975. package/dist/esm/collection/iterable-collection/_shared/take-iterable.js.map +0 -1
  976. package/dist/esm/collection/iterable-collection/_shared/take-until-iterable.js.map +0 -1
  977. package/dist/esm/collection/iterable-collection/_shared/tap-iterable.js.map +0 -1
  978. package/dist/esm/collection/iterable-collection/_shared/unique-iterable.js.map +0 -1
  979. package/dist/esm/collection/iterable-collection/_shared/update-iterable.js.map +0 -1
  980. package/dist/esm/collection/iterable-collection/_shared/when-iterable.js.map +0 -1
  981. package/dist/esm/collection/iterable-collection/_shared/zip-iterable.js.map +0 -1
  982. package/dist/esm/collection/iterable-collection/iterable-collection.js +0 -489
  983. package/dist/esm/collection/iterable-collection/iterable-collection.js.map +0 -1
  984. package/dist/esm/collection/list-collection/_module.js +0 -2
  985. package/dist/esm/collection/list-collection/_module.js.map +0 -1
  986. package/dist/esm/collection/list-collection/list-collection.js +0 -623
  987. package/dist/esm/collection/list-collection/list-collection.js.map +0 -1
  988. package/dist/esm/contracts/_module.js +0 -4
  989. package/dist/esm/contracts/_module.js.map +0 -1
  990. package/dist/esm/contracts/collection/_module.js +0 -4
  991. package/dist/esm/contracts/collection/_module.js.map +0 -1
  992. package/dist/esm/contracts/collection/_shared.js.map +0 -1
  993. package/dist/esm/contracts/collection/async-collection.contract.js.map +0 -1
  994. package/dist/esm/contracts/collection/collection.contract.js.map +0 -1
  995. package/dist/esm/contracts/serializer/_module.js +0 -2
  996. package/dist/esm/contracts/serializer/_module.js.map +0 -1
  997. package/dist/esm/contracts/serializer/serializer.contract.js.map +0 -1
  998. package/dist/esm/contracts/storage/_module.js +0 -4
  999. package/dist/esm/contracts/storage/_module.js.map +0 -1
  1000. package/dist/esm/contracts/storage/_shared.js.map +0 -1
  1001. package/dist/esm/contracts/storage/storage-adapter.contract.js.map +0 -1
  1002. package/dist/esm/contracts/storage/storage.contract.js.map +0 -1
  1003. package/dist/esm/serializer/_shared/test-utilities/_module.js +0 -2
  1004. package/dist/esm/serializer/_shared/test-utilities/_module.js.map +0 -1
  1005. package/dist/esm/serializer/_shared/test-utilities/serializer.test-suite.js.map +0 -1
  1006. package/dist/esm/serializer/mongodb-serializer/_module.js +0 -2
  1007. package/dist/esm/serializer/mongodb-serializer/_module.js.map +0 -1
  1008. package/dist/esm/serializer/mongodb-serializer/mongodb-serializer.js +0 -32
  1009. package/dist/esm/serializer/mongodb-serializer/mongodb-serializer.js.map +0 -1
  1010. package/dist/esm/serializer/redis-serializer/_module.js +0 -2
  1011. package/dist/esm/serializer/redis-serializer/_module.js.map +0 -1
  1012. package/dist/esm/serializer/redis-serializer/redis-serializer.js +0 -33
  1013. package/dist/esm/serializer/redis-serializer/redis-serializer.js.map +0 -1
  1014. package/dist/esm/serializer/sql-serializer/_module.js +0 -2
  1015. package/dist/esm/serializer/sql-serializer/_module.js.map +0 -1
  1016. package/dist/esm/serializer/sql-serializer/sql-serializer.js +0 -33
  1017. package/dist/esm/serializer/sql-serializer/sql-serializer.js.map +0 -1
  1018. package/dist/esm/serializer/super-json-serializer/_module.js +0 -2
  1019. package/dist/esm/serializer/super-json-serializer/_module.js.map +0 -1
  1020. package/dist/esm/serializer/super-json-serializer/super-json-serializer.js +0 -277
  1021. package/dist/esm/serializer/super-json-serializer/super-json-serializer.js.map +0 -1
  1022. package/dist/esm/storage/_module.js +0 -7
  1023. package/dist/esm/storage/_module.js.map +0 -1
  1024. package/dist/esm/storage/_shared/test-utilities/_module.js +0 -2
  1025. package/dist/esm/storage/_shared/test-utilities/_module.js.map +0 -1
  1026. package/dist/esm/storage/_shared/test-utilities/storage-api.test-suite.js +0 -569
  1027. package/dist/esm/storage/_shared/test-utilities/storage-api.test-suite.js.map +0 -1
  1028. package/dist/esm/storage/_shared/test-utilities/storage-namespace.test-suite.js +0 -238
  1029. package/dist/esm/storage/_shared/test-utilities/storage-namespace.test-suite.js.map +0 -1
  1030. package/dist/esm/storage/_shared/test-utilities/storage-value.test-suite.js +0 -4169
  1031. package/dist/esm/storage/_shared/test-utilities/storage-value.test-suite.js.map +0 -1
  1032. package/dist/esm/storage/_shared/test-utilities/storage.test-suite.js +0 -9
  1033. package/dist/esm/storage/_shared/test-utilities/storage.test-suite.js.map +0 -1
  1034. package/dist/esm/storage/memory-storage-adapter/_module.js +0 -2
  1035. package/dist/esm/storage/memory-storage-adapter/_module.js.map +0 -1
  1036. package/dist/esm/storage/memory-storage-adapter/memory-storage-adapter.js +0 -58
  1037. package/dist/esm/storage/memory-storage-adapter/memory-storage-adapter.js.map +0 -1
  1038. package/dist/esm/storage/mongodb-storage-adapter/_module.js +0 -2
  1039. package/dist/esm/storage/mongodb-storage-adapter/_module.js.map +0 -1
  1040. package/dist/esm/storage/mongodb-storage-adapter/mongodb-storage-adapter.js +0 -266
  1041. package/dist/esm/storage/mongodb-storage-adapter/mongodb-storage-adapter.js.map +0 -1
  1042. package/dist/esm/storage/namespace-storage-adapter.js +0 -62
  1043. package/dist/esm/storage/namespace-storage-adapter.js.map +0 -1
  1044. package/dist/esm/storage/redis-storage-adapter/_module.js +0 -2
  1045. package/dist/esm/storage/redis-storage-adapter/_module.js.map +0 -1
  1046. package/dist/esm/storage/redis-storage-adapter/redis-storage-adapter.js +0 -244
  1047. package/dist/esm/storage/redis-storage-adapter/redis-storage-adapter.js.map +0 -1
  1048. package/dist/esm/storage/sqlite/_module.js +0 -3
  1049. package/dist/esm/storage/sqlite/_module.js.map +0 -1
  1050. package/dist/esm/storage/sqlite/_shared/_module.js +0 -2
  1051. package/dist/esm/storage/sqlite/_shared/_module.js.map +0 -1
  1052. package/dist/esm/storage/sqlite/_shared/base-sqlite-storage-adapter.js +0 -220
  1053. package/dist/esm/storage/sqlite/_shared/base-sqlite-storage-adapter.js.map +0 -1
  1054. package/dist/esm/storage/sqlite/libsql-storage-adapter/_module.js +0 -2
  1055. package/dist/esm/storage/sqlite/libsql-storage-adapter/_module.js.map +0 -1
  1056. package/dist/esm/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +0 -49
  1057. package/dist/esm/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +0 -1
  1058. package/dist/esm/storage/sqlite/sqlite-storage-adapter/_module.js +0 -2
  1059. package/dist/esm/storage/sqlite/sqlite-storage-adapter/_module.js.map +0 -1
  1060. package/dist/esm/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +0 -48
  1061. package/dist/esm/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +0 -1
  1062. package/dist/esm/storage/storage.js +0 -297
  1063. package/dist/esm/storage/storage.js.map +0 -1
  1064. package/dist/esm/storage/usable-storage-adapter.js +0 -98
  1065. package/dist/esm/storage/usable-storage-adapter.js.map +0 -1
  1066. package/dist/types/async/_module.d.ts +0 -11
  1067. package/dist/types/async/abortable/_module.d.ts +0 -1
  1068. package/dist/types/async/abortable/abortable.d.ts +0 -39
  1069. package/dist/types/async/abortable-iterable/_module.d.ts +0 -1
  1070. package/dist/types/async/backof-policies/_module.d.ts +0 -5
  1071. package/dist/types/async/backof-policies/constant-backoff-policy/_module.d.ts +0 -1
  1072. package/dist/types/async/backof-policies/constant-backoff-policy/constant-backoff-policy.d.ts +0 -28
  1073. package/dist/types/async/backof-policies/exponential-backoff-policy/_module.d.ts +0 -1
  1074. package/dist/types/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.d.ts +0 -36
  1075. package/dist/types/async/backof-policies/linear-backoff-policy/_module.d.ts +0 -1
  1076. package/dist/types/async/backof-policies/linear-backoff-policy/linear-backoff-policy.d.ts +0 -32
  1077. package/dist/types/async/backof-policies/polynomial-backoff-policy/_module.d.ts +0 -1
  1078. package/dist/types/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.d.ts +0 -36
  1079. package/dist/types/async/delay/_module.d.ts +0 -1
  1080. package/dist/types/async/delay/delay.d.ts +0 -38
  1081. package/dist/types/async/delay-iterable/_module.d.ts +0 -1
  1082. package/dist/types/async/delay-iterable/delay-iterable.d.ts +0 -57
  1083. package/dist/types/async/lazy-promise/_module.d.ts +0 -1
  1084. package/dist/types/async/retry/_module.d.ts +0 -1
  1085. package/dist/types/async/retry/retry.d.ts +0 -86
  1086. package/dist/types/async/retry-iterable/_module.d.ts +0 -1
  1087. package/dist/types/async/retry-iterable/retry-iterable.d.ts +0 -86
  1088. package/dist/types/async/timeout/_module.d.ts +0 -1
  1089. package/dist/types/async/timeout/timeout.d.ts +0 -40
  1090. package/dist/types/async/timeout-iterable/_module.d.ts +0 -1
  1091. package/dist/types/async/timeout-iterable/timeout-iterable.d.ts +0 -64
  1092. package/dist/types/collection/_module.d.ts +0 -4
  1093. package/dist/types/collection/async-iterable-collection/_module.d.ts +0 -1
  1094. package/dist/types/collection/async-iterable-collection/_shared/_module.d.ts +0 -33
  1095. package/dist/types/collection/async-iterable-collection/_shared/async-chunk-iterable.d.ts +0 -12
  1096. package/dist/types/collection/async-iterable-collection/_shared/async-chunk-while-iterable.d.ts +0 -12
  1097. package/dist/types/collection/async-iterable-collection/_shared/async-collapse-iterable.d.ts +0 -9
  1098. package/dist/types/collection/async-iterable-collection/_shared/async-count-by-iterable.d.ts +0 -11
  1099. package/dist/types/collection/async-iterable-collection/_shared/async-cross-join-iterable.d.ts +0 -13
  1100. package/dist/types/collection/async-iterable-collection/_shared/async-entries-iterable.d.ts +0 -10
  1101. package/dist/types/collection/async-iterable-collection/_shared/async-filter-iterable.d.ts +0 -10
  1102. package/dist/types/collection/async-iterable-collection/_shared/async-flat-map-iterable.d.ts +0 -10
  1103. package/dist/types/collection/async-iterable-collection/_shared/async-group-by-iterable.d.ts +0 -12
  1104. package/dist/types/collection/async-iterable-collection/_shared/async-insert-after-iterable.d.ts +0 -12
  1105. package/dist/types/collection/async-iterable-collection/_shared/async-insert-before-iterable.d.ts +0 -12
  1106. package/dist/types/collection/async-iterable-collection/_shared/async-map-iterable.d.ts +0 -10
  1107. package/dist/types/collection/async-iterable-collection/_shared/async-merge-iterable.d.ts +0 -10
  1108. package/dist/types/collection/async-iterable-collection/_shared/async-pad-end-iterable.d.ts +0 -13
  1109. package/dist/types/collection/async-iterable-collection/_shared/async-pad-start-iterable.d.ts +0 -13
  1110. package/dist/types/collection/async-iterable-collection/_shared/async-partion-iterable.d.ts +0 -12
  1111. package/dist/types/collection/async-iterable-collection/_shared/async-repeat-iterable.d.ts +0 -12
  1112. package/dist/types/collection/async-iterable-collection/_shared/async-reverse-iterable.d.ts +0 -12
  1113. package/dist/types/collection/async-iterable-collection/_shared/async-shuffle-iterable.d.ts +0 -10
  1114. package/dist/types/collection/async-iterable-collection/_shared/async-skip-iterable.d.ts +0 -10
  1115. package/dist/types/collection/async-iterable-collection/_shared/async-skip-until-iterable.d.ts +0 -10
  1116. package/dist/types/collection/async-iterable-collection/_shared/async-slice-iterable.d.ts +0 -11
  1117. package/dist/types/collection/async-iterable-collection/_shared/async-sliding-iterable.d.ts +0 -11
  1118. package/dist/types/collection/async-iterable-collection/_shared/async-sort-iterable.d.ts +0 -10
  1119. package/dist/types/collection/async-iterable-collection/_shared/async-split-iterable.d.ts +0 -12
  1120. package/dist/types/collection/async-iterable-collection/_shared/async-take-iterable.d.ts +0 -10
  1121. package/dist/types/collection/async-iterable-collection/_shared/async-take-until-iterable.d.ts +0 -10
  1122. package/dist/types/collection/async-iterable-collection/_shared/async-tap-iterable.d.ts +0 -10
  1123. package/dist/types/collection/async-iterable-collection/_shared/async-unique-iterable.d.ts +0 -10
  1124. package/dist/types/collection/async-iterable-collection/_shared/async-update-iterable.d.ts +0 -11
  1125. package/dist/types/collection/async-iterable-collection/_shared/async-when-iterable.d.ts +0 -11
  1126. package/dist/types/collection/async-iterable-collection/_shared/async-zip-iterable.d.ts +0 -11
  1127. package/dist/types/collection/async-iterable-collection/async-iterable-collection.d.ts +0 -105
  1128. package/dist/types/collection/iterable-collection/_module.d.ts +0 -1
  1129. package/dist/types/collection/iterable-collection/_shared/_module.d.ts +0 -32
  1130. package/dist/types/collection/iterable-collection/_shared/chunk-iterable.d.ts +0 -11
  1131. package/dist/types/collection/iterable-collection/_shared/chunk-while-iterable.d.ts +0 -11
  1132. package/dist/types/collection/iterable-collection/_shared/collapse-iterable.d.ts +0 -9
  1133. package/dist/types/collection/iterable-collection/_shared/count-by-iterable.d.ts +0 -11
  1134. package/dist/types/collection/iterable-collection/_shared/cross-join-iterable.d.ts +0 -8
  1135. package/dist/types/collection/iterable-collection/_shared/entries-iterable.d.ts +0 -9
  1136. package/dist/types/collection/iterable-collection/_shared/filter-iterable.d.ts +0 -10
  1137. package/dist/types/collection/iterable-collection/_shared/flat-map-iterable.d.ts +0 -10
  1138. package/dist/types/collection/iterable-collection/_shared/group-by-iterable.d.ts +0 -12
  1139. package/dist/types/collection/iterable-collection/_shared/insert-after-iterable.d.ts +0 -11
  1140. package/dist/types/collection/iterable-collection/_shared/insert-before-iterable.d.ts +0 -11
  1141. package/dist/types/collection/iterable-collection/_shared/map-iterable.d.ts +0 -10
  1142. package/dist/types/collection/iterable-collection/_shared/pad-end-iterable.d.ts +0 -12
  1143. package/dist/types/collection/iterable-collection/_shared/pad-start-iterable.d.ts +0 -12
  1144. package/dist/types/collection/iterable-collection/_shared/partion-iterable.d.ts +0 -11
  1145. package/dist/types/collection/iterable-collection/_shared/repeat-iterable.d.ts +0 -11
  1146. package/dist/types/collection/iterable-collection/_shared/reverse-iterable.d.ts +0 -11
  1147. package/dist/types/collection/iterable-collection/_shared/skip-iterable.d.ts +0 -10
  1148. package/dist/types/collection/iterable-collection/_shared/skip-until-iterable.d.ts +0 -10
  1149. package/dist/types/collection/iterable-collection/_shared/slice-iterable.d.ts +0 -11
  1150. package/dist/types/collection/iterable-collection/_shared/sliding-iterable.d.ts +0 -11
  1151. package/dist/types/collection/iterable-collection/_shared/sort-iterable.d.ts +0 -10
  1152. package/dist/types/collection/iterable-collection/_shared/split-iterable.d.ts +0 -11
  1153. package/dist/types/collection/iterable-collection/_shared/take-iterable.d.ts +0 -10
  1154. package/dist/types/collection/iterable-collection/_shared/take-until-iterable.d.ts +0 -10
  1155. package/dist/types/collection/iterable-collection/_shared/tap-iterable.d.ts +0 -10
  1156. package/dist/types/collection/iterable-collection/_shared/unique-iterable.d.ts +0 -10
  1157. package/dist/types/collection/iterable-collection/_shared/update-iterable.d.ts +0 -11
  1158. package/dist/types/collection/iterable-collection/_shared/when-iterable.d.ts +0 -11
  1159. package/dist/types/collection/iterable-collection/_shared/zip-iterable.d.ts +0 -10
  1160. package/dist/types/collection/iterable-collection/iterable-collection.d.ts +0 -100
  1161. package/dist/types/collection/list-collection/_module.d.ts +0 -1
  1162. package/dist/types/collection/list-collection/list-collection.d.ts +0 -97
  1163. package/dist/types/contracts/_module.d.ts +0 -3
  1164. package/dist/types/contracts/collection/_module.d.ts +0 -3
  1165. package/dist/types/contracts/collection/async-collection.contract.d.ts +0 -1309
  1166. package/dist/types/contracts/collection/collection.contract.d.ts +0 -1269
  1167. package/dist/types/contracts/serializer/_module.d.ts +0 -1
  1168. package/dist/types/contracts/storage/_module.d.ts +0 -3
  1169. package/dist/types/contracts/storage/storage-adapter.contract.d.ts +0 -72
  1170. package/dist/types/contracts/storage/storage.contract.d.ts +0 -148
  1171. package/dist/types/serializer/_shared/test-utilities/_module.d.ts +0 -1
  1172. package/dist/types/serializer/_shared/test-utilities/serializer.test-suite.d.ts +0 -18
  1173. package/dist/types/serializer/mongodb-serializer/_module.d.ts +0 -1
  1174. package/dist/types/serializer/mongodb-serializer/mongodb-serializer.d.ts +0 -13
  1175. package/dist/types/serializer/redis-serializer/_module.d.ts +0 -1
  1176. package/dist/types/serializer/redis-serializer/redis-serializer.d.ts +0 -13
  1177. package/dist/types/serializer/sql-serializer/_module.d.ts +0 -1
  1178. package/dist/types/serializer/sql-serializer/sql-serializer.d.ts +0 -13
  1179. package/dist/types/serializer/super-json-serializer/_module.d.ts +0 -1
  1180. package/dist/types/serializer/super-json-serializer/super-json-serializer.d.ts +0 -37
  1181. package/dist/types/storage/_module.d.ts +0 -6
  1182. package/dist/types/storage/_shared/test-utilities/_module.d.ts +0 -1
  1183. package/dist/types/storage/_shared/test-utilities/storage-api.test-suite.d.ts +0 -20
  1184. package/dist/types/storage/_shared/test-utilities/storage-namespace.test-suite.d.ts +0 -20
  1185. package/dist/types/storage/_shared/test-utilities/storage-value.test-suite.d.ts +0 -20
  1186. package/dist/types/storage/_shared/test-utilities/storage.test-suite.d.ts +0 -20
  1187. package/dist/types/storage/memory-storage-adapter/_module.d.ts +0 -1
  1188. package/dist/types/storage/memory-storage-adapter/memory-storage-adapter.d.ts +0 -16
  1189. package/dist/types/storage/mongodb-storage-adapter/_module.d.ts +0 -1
  1190. package/dist/types/storage/mongodb-storage-adapter/mongodb-storage-adapter.d.ts +0 -46
  1191. package/dist/types/storage/namespace-storage-adapter.d.ts +0 -30
  1192. package/dist/types/storage/redis-storage-adapter/_module.d.ts +0 -1
  1193. package/dist/types/storage/redis-storage-adapter/redis-storage-adapter.d.ts +0 -41
  1194. package/dist/types/storage/sqlite/_module.d.ts +0 -2
  1195. package/dist/types/storage/sqlite/_shared/_module.d.ts +0 -1
  1196. package/dist/types/storage/sqlite/_shared/base-sqlite-storage-adapter.d.ts +0 -42
  1197. package/dist/types/storage/sqlite/libsql-storage-adapter/_module.d.ts +0 -1
  1198. package/dist/types/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.d.ts +0 -30
  1199. package/dist/types/storage/sqlite/sqlite-storage-adapter/_module.d.ts +0 -1
  1200. package/dist/types/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.d.ts +0 -30
  1201. package/dist/types/storage/storage.d.ts +0 -38
  1202. package/dist/types/storage/usable-storage-adapter.d.ts +0 -22
  1203. /package/dist/cjs/{contracts/collection → collection/contracts}/_shared.js +0 -0
  1204. /package/dist/cjs/{contracts/collection → collection/contracts}/async-collection.contract.js +0 -0
  1205. /package/dist/cjs/{contracts/collection → collection/contracts}/collection.contract.js +0 -0
  1206. /package/dist/cjs/collection/{_shared.js → implementations/_shared.js} +0 -0
  1207. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-iterable.js +0 -0
  1208. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-while-iterable.js +0 -0
  1209. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-count-by-iterable.js +0 -0
  1210. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-entries-iterable.js +0 -0
  1211. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-error-handler-iterable.js +0 -0
  1212. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-filter-iterable.js +0 -0
  1213. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-flat-map-iterable.js +0 -0
  1214. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-group-by-iterable.js +0 -0
  1215. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-after-iterable.js +0 -0
  1216. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-before-iterable.js +0 -0
  1217. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-map-iterable.js +0 -0
  1218. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-merge-iterable.js +0 -0
  1219. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-end-iterable.js +0 -0
  1220. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-start-iterable.js +0 -0
  1221. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-partion-iterable.js +0 -0
  1222. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-repeat-iterable.js +0 -0
  1223. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-reverse-iterable.js +0 -0
  1224. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-shuffle-iterable.js +0 -0
  1225. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-iterable.js +0 -0
  1226. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-until-iterable.js +0 -0
  1227. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-slice-iterable.js +0 -0
  1228. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sliding-iterable.js +0 -0
  1229. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sort-iterable.js +0 -0
  1230. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-split-iterable.js +0 -0
  1231. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-iterable.js +0 -0
  1232. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-until-iterable.js +0 -0
  1233. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-tap-iterable.js +0 -0
  1234. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-unique-iterable.js +0 -0
  1235. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-update-iterable.js +0 -0
  1236. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-when-iterable.js +0 -0
  1237. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-iterable.js +0 -0
  1238. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-while-iterable.js +0 -0
  1239. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/count-by-iterable.js +0 -0
  1240. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/entries-iterable.js +0 -0
  1241. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/filter-iterable.js +0 -0
  1242. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/flat-map-iterable.js +0 -0
  1243. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/group-by-iterable.js +0 -0
  1244. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-after-iterable.js +0 -0
  1245. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-before-iterable.js +0 -0
  1246. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/map-iterable.js +0 -0
  1247. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/merge-iterable.js +0 -0
  1248. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-end-iterable.js +0 -0
  1249. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-start-iterable.js +0 -0
  1250. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/partion-iterable.js +0 -0
  1251. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/repeat-iterable.js +0 -0
  1252. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/reverse-iterable.js +0 -0
  1253. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/shuffle-iterable.js +0 -0
  1254. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-iterable.js +0 -0
  1255. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-until-iterable.js +0 -0
  1256. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/slice-iterable.js +0 -0
  1257. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/sliding-iterable.js +0 -0
  1258. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/sort-iterable.js +0 -0
  1259. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/split-iterable.js +0 -0
  1260. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-iterable.js +0 -0
  1261. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-until-iterable.js +0 -0
  1262. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/tap-iterable.js +0 -0
  1263. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/unique-iterable.js +0 -0
  1264. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/update-iterable.js +0 -0
  1265. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/when-iterable.js +0 -0
  1266. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/zip-iterable.js +0 -0
  1267. /package/dist/cjs/{contracts/serializer → serializer/contracts}/serializer.contract.js +0 -0
  1268. /package/dist/cjs/serializer/{_shared → implementations/_shared}/test-utilities/serializer.test-suite.js +0 -0
  1269. /package/dist/cjs/{contracts/storage → storage/contracts}/_shared.js +0 -0
  1270. /package/dist/cjs/{contracts/storage → storage/contracts}/storage-adapter.contract.js +0 -0
  1271. /package/dist/cjs/{contracts/storage → storage/contracts}/storage.contract.js +0 -0
  1272. /package/dist/cjs/{async → utilities/async}/_shared.js +0 -0
  1273. /package/dist/cjs/{async → utilities/async}/backof-policies/_shared.js +0 -0
  1274. /package/dist/cjs/{async → utilities/async}/lazy-promise/lazy-promise.js +0 -0
  1275. /package/dist/esm/{contracts/collection → collection/contracts}/_shared.js +0 -0
  1276. /package/dist/esm/{contracts/collection → collection/contracts}/async-collection.contract.js +0 -0
  1277. /package/dist/esm/{contracts/collection → collection/contracts}/collection.contract.js +0 -0
  1278. /package/dist/esm/collection/{_shared.js → implementations/_shared.js} +0 -0
  1279. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-iterable.js +0 -0
  1280. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-while-iterable.js +0 -0
  1281. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-count-by-iterable.js +0 -0
  1282. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-entries-iterable.js +0 -0
  1283. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-error-handler-iterable.js +0 -0
  1284. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-filter-iterable.js +0 -0
  1285. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-flat-map-iterable.js +0 -0
  1286. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-group-by-iterable.js +0 -0
  1287. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-after-iterable.js +0 -0
  1288. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-before-iterable.js +0 -0
  1289. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-map-iterable.js +0 -0
  1290. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-merge-iterable.js +0 -0
  1291. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-end-iterable.js +0 -0
  1292. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-start-iterable.js +0 -0
  1293. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-partion-iterable.js +0 -0
  1294. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-repeat-iterable.js +0 -0
  1295. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-reverse-iterable.js +0 -0
  1296. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-shuffle-iterable.js +0 -0
  1297. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-iterable.js +0 -0
  1298. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-until-iterable.js +0 -0
  1299. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-slice-iterable.js +0 -0
  1300. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sliding-iterable.js +0 -0
  1301. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sort-iterable.js +0 -0
  1302. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-split-iterable.js +0 -0
  1303. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-iterable.js +0 -0
  1304. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-until-iterable.js +0 -0
  1305. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-tap-iterable.js +0 -0
  1306. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-unique-iterable.js +0 -0
  1307. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-update-iterable.js +0 -0
  1308. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-when-iterable.js +0 -0
  1309. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-iterable.js +0 -0
  1310. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-while-iterable.js +0 -0
  1311. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/count-by-iterable.js +0 -0
  1312. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/entries-iterable.js +0 -0
  1313. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/filter-iterable.js +0 -0
  1314. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/flat-map-iterable.js +0 -0
  1315. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/group-by-iterable.js +0 -0
  1316. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-after-iterable.js +0 -0
  1317. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-before-iterable.js +0 -0
  1318. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/map-iterable.js +0 -0
  1319. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/merge-iterable.js +0 -0
  1320. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-end-iterable.js +0 -0
  1321. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-start-iterable.js +0 -0
  1322. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/partion-iterable.js +0 -0
  1323. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/repeat-iterable.js +0 -0
  1324. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/reverse-iterable.js +0 -0
  1325. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/shuffle-iterable.js +0 -0
  1326. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-iterable.js +0 -0
  1327. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-until-iterable.js +0 -0
  1328. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/slice-iterable.js +0 -0
  1329. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/sliding-iterable.js +0 -0
  1330. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/sort-iterable.js +0 -0
  1331. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/split-iterable.js +0 -0
  1332. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-iterable.js +0 -0
  1333. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-until-iterable.js +0 -0
  1334. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/tap-iterable.js +0 -0
  1335. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/unique-iterable.js +0 -0
  1336. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/update-iterable.js +0 -0
  1337. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/when-iterable.js +0 -0
  1338. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/zip-iterable.js +0 -0
  1339. /package/dist/esm/{contracts/serializer → serializer/contracts}/serializer.contract.js +0 -0
  1340. /package/dist/esm/serializer/{_shared → implementations/_shared}/test-utilities/serializer.test-suite.js +0 -0
  1341. /package/dist/esm/{contracts/storage → storage/contracts}/_shared.js +0 -0
  1342. /package/dist/esm/{contracts/storage → storage/contracts}/storage-adapter.contract.js +0 -0
  1343. /package/dist/esm/{contracts/storage → storage/contracts}/storage.contract.js +0 -0
  1344. /package/dist/esm/{async → utilities/async}/_shared.js +0 -0
  1345. /package/dist/esm/{async → utilities/async}/backof-policies/_shared.js +0 -0
  1346. /package/dist/esm/{async → utilities/async}/lazy-promise/lazy-promise.js +0 -0
  1347. /package/dist/types/{contracts/collection → collection/contracts}/_shared.d.ts +0 -0
  1348. /package/dist/types/collection/{_shared.d.ts → implementations/_shared.d.ts} +0 -0
  1349. /package/dist/types/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-error-handler-iterable.d.ts +0 -0
  1350. /package/dist/types/collection/{iterable-collection → implementations/iterable-collection}/_shared/merge-iterable.d.ts +0 -0
  1351. /package/dist/types/collection/{iterable-collection → implementations/iterable-collection}/_shared/shuffle-iterable.d.ts +0 -0
  1352. /package/dist/types/{contracts/serializer → serializer/contracts}/serializer.contract.d.ts +0 -0
  1353. /package/dist/types/{contracts/storage → storage/contracts}/_shared.d.ts +0 -0
  1354. /package/dist/types/{async → utilities/async}/_shared.d.ts +0 -0
  1355. /package/dist/types/{async → utilities/async}/backof-policies/_shared.d.ts +0 -0
  1356. /package/dist/types/{async → utilities/async}/lazy-promise/lazy-promise.d.ts +0 -0
  1357. /package/dist/types/{async → utilities/async-iterable}/abortable-iterable/abortable-iterable.d.ts +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"file":"_shared.js","sourceRoot":"","sources":["../../../../src/contracts/collection/_shared.ts"],"names":[],"mappings":"AAOA,MAAM,OAAO,eAAgB,SAAQ,KAAK;IACtC,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,eAAe,CAAC,IAAI,CAAC;IACrC,CAAC;CACJ;AAKD,MAAM,OAAO,yBAA0B,SAAQ,eAAe;IAC1D,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,yBAAyB,CAAC,IAAI,CAAC;IAC/C,CAAC;CACJ;AAKD,MAAM,OAAO,2BAA4B,SAAQ,eAAe;IAC5D,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,2BAA2B,CAAC,IAAI,CAAC;IACjD,CAAC;CACJ;AAKD,MAAM,OAAO,iCAAkC,SAAQ,eAAe;IAClE,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,iCAAiC,CAAC,IAAI,CAAC;IACvD,CAAC;CACJ;AAKD,MAAM,OAAO,mBAAoB,SAAQ,eAAe;IACpD,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,mBAAmB,CAAC,IAAI,CAAC;IACzC,CAAC;CACJ;AAKD,MAAM,OAAO,oBAAqB,SAAQ,eAAe;IACrD,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,oBAAoB,CAAC,IAAI,CAAC;IAC1C,CAAC;CACJ"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"async-collection.contract.js","sourceRoot":"","sources":["../../../../src/contracts/collection/async-collection.contract.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"collection.contract.js","sourceRoot":"","sources":["../../../../src/contracts/collection/collection.contract.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export * from "../../contracts/serializer/serializer.contract";
2
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/contracts/serializer/_module.ts"],"names":[],"mappings":"AAAA,cAAc,4CAA4C,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"serializer.contract.js","sourceRoot":"","sources":["../../../../src/contracts/serializer/serializer.contract.ts"],"names":[],"mappings":"AAOA,MAAM,OAAO,eAAgB,SAAQ,KAAK;IACtC,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,eAAe,CAAC,IAAI,CAAC;IACrC,CAAC;CACJ;AAKD,MAAM,OAAO,kBAAmB,SAAQ,eAAe;IACnD,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC,IAAI,CAAC;IACxC,CAAC;CACJ;AAKD,MAAM,OAAO,oBAAqB,SAAQ,eAAe;IACrD,YAAY,OAAe,EAAE,KAAe;QACxC,KAAK,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,GAAG,oBAAoB,CAAC,IAAI,CAAC;IAC1C,CAAC;CACJ"}
@@ -1,4 +0,0 @@
1
- export * from "../../contracts/storage/_shared";
2
- export * from "../../contracts/storage/storage.contract";
3
- export * from "../../contracts/storage/storage-adapter.contract";
4
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/contracts/storage/_module.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,sCAAsC,CAAC;AACrD,cAAc,8CAA8C,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"_shared.js","sourceRoot":"","sources":["../../../../src/contracts/storage/_shared.ts"],"names":[],"mappings":"AAOA,MAAM,OAAO,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;AAKD,MAAM,OAAO,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;AAKD,MAAM,OAAO,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;AAKD,MAAM,OAAO,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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"storage-adapter.contract.js","sourceRoot":"","sources":["../../../../src/contracts/storage/storage-adapter.contract.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"storage.contract.js","sourceRoot":"","sources":["../../../../src/contracts/storage/storage.contract.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export * from "../../../serializer/_shared/test-utilities/serializer.test-suite";
2
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/serializer/_shared/test-utilities/_module.ts"],"names":[],"mappings":"AAAA,cAAc,2DAA2D,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"serializer.test-suite.js","sourceRoot":"","sources":["../../../../../src/serializer/_shared/test-utilities/serializer.test-suite.ts"],"names":[],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- export * from "../../serializer/mongodb-serializer/mongodb-serializer";
2
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/serializer/mongodb-serializer/_module.ts"],"names":[],"mappings":"AAAA,cAAc,oDAAoD,CAAC"}
@@ -1,32 +0,0 @@
1
- import { DeserializationError, SerializationError, } from "../../contracts/serializer/_module";
2
- export class MongodbSerializer {
3
- serializer;
4
- constructor(serializer) {
5
- this.serializer = serializer;
6
- }
7
- async serialize(value) {
8
- try {
9
- if (typeof value === "number" &&
10
- !Number.isNaN(value) &&
11
- Number.isFinite(value)) {
12
- return value;
13
- }
14
- return await this.serializer.serialize(value);
15
- }
16
- catch (error) {
17
- throw new SerializationError(`Serialization error "${String(error)}" occured`, error);
18
- }
19
- }
20
- async deserialize(value) {
21
- try {
22
- if (typeof value === "number") {
23
- return value;
24
- }
25
- return await this.serializer.deserialize(value);
26
- }
27
- catch (error) {
28
- throw new DeserializationError(`Serialization error "${String(error)}" occured`, error);
29
- }
30
- }
31
- }
32
- //# sourceMappingURL=mongodb-serializer.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mongodb-serializer.js","sourceRoot":"","sources":["../../../../src/serializer/mongodb-serializer/mongodb-serializer.ts"],"names":[],"mappings":"AAIA,OAAO,EACH,oBAAoB,EACpB,kBAAkB,GAErB,MAAM,gCAAgC,CAAC;AAKxC,MAAM,OAAO,iBAAiB;IACG;IAA7B,YAA6B,UAA+B;QAA/B,eAAU,GAAV,UAAU,CAAqB;IAAG,CAAC;IAEhE,KAAK,CAAC,SAAS,CAAS,KAAa;QACjC,IAAI,CAAC;YACD,IACI,OAAO,KAAK,KAAK,QAAQ;gBACzB,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC;gBACpB,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,EACxB,CAAC;gBACC,OAAO,KAAK,CAAC;YACjB,CAAC;YACD,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;QAClD,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACtB,MAAM,IAAI,kBAAkB,CACxB,wBAAwB,MAAM,CAAC,KAAK,CAAC,WAAW,EAChD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;IAED,KAAK,CAAC,WAAW,CAAS,KAAsB;QAC5C,IAAI,CAAC;YACD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;gBAC5B,OAAO,KAAe,CAAC;YAC3B,CAAC;YACD,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;QACpD,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACtB,MAAM,IAAI,oBAAoB,CAC1B,wBAAwB,MAAM,CAAC,KAAK,CAAC,WAAW,EAChD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;CACJ"}
@@ -1,2 +0,0 @@
1
- export * from "../../serializer/redis-serializer/redis-serializer";
2
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/serializer/redis-serializer/_module.ts"],"names":[],"mappings":"AAAA,cAAc,gDAAgD,CAAC"}
@@ -1,33 +0,0 @@
1
- import { DeserializationError, SerializationError, } from "../../contracts/serializer/_module";
2
- export class RedisSerializer {
3
- serializer;
4
- constructor(serializer) {
5
- this.serializer = serializer;
6
- }
7
- async serialize(value) {
8
- try {
9
- if (typeof value === "number" &&
10
- !Number.isNaN(value) &&
11
- isFinite(value)) {
12
- return String(value);
13
- }
14
- return await this.serializer.serialize(value);
15
- }
16
- catch (error) {
17
- throw new SerializationError(`Serialization error "${String(error)}" occured`, error);
18
- }
19
- }
20
- async deserialize(value) {
21
- try {
22
- const isNumberRegex = /^(-?([0-9]+)(\.[0-5]+)?)$/g;
23
- if (isNumberRegex.test(value)) {
24
- return Number(value);
25
- }
26
- return await this.serializer.deserialize(value);
27
- }
28
- catch (error) {
29
- throw new DeserializationError(`Deserialization error "${String(error)}" occured`, error);
30
- }
31
- }
32
- }
33
- //# sourceMappingURL=redis-serializer.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"redis-serializer.js","sourceRoot":"","sources":["../../../../src/serializer/redis-serializer/redis-serializer.ts"],"names":[],"mappings":"AAGA,OAAO,EACH,oBAAoB,EACpB,kBAAkB,GAErB,MAAM,gCAAgC,CAAC;AAKxC,MAAM,OAAO,eAAe;IACK;IAA7B,YAA6B,UAA+B;QAA/B,eAAU,GAAV,UAAU,CAAqB;IAAG,CAAC;IAEhE,KAAK,CAAC,SAAS,CAAS,KAAa;QACjC,IAAI,CAAC;YACD,IACI,OAAO,KAAK,KAAK,QAAQ;gBACzB,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC;gBACpB,QAAQ,CAAC,KAAK,CAAC,EACjB,CAAC;gBACC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC;YACzB,CAAC;YACD,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;QAClD,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACtB,MAAM,IAAI,kBAAkB,CACxB,wBAAwB,MAAM,CAAC,KAAK,CAAC,WAAW,EAChD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;IACD,KAAK,CAAC,WAAW,CAAS,KAAa;QACnC,IAAI,CAAC;YACD,MAAM,aAAa,GAAG,4BAA4B,CAAC;YACnD,IAAI,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC5B,OAAO,MAAM,CAAC,KAAK,CAAW,CAAC;YACnC,CAAC;YACD,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;QACpD,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACtB,MAAM,IAAI,oBAAoB,CAC1B,0BAA0B,MAAM,CAAC,KAAK,CAAC,WAAW,EAClD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;CACJ"}
@@ -1,2 +0,0 @@
1
- export * from "../../serializer/sql-serializer/sql-serializer";
2
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/serializer/sql-serializer/_module.ts"],"names":[],"mappings":"AAAA,cAAc,4CAA4C,CAAC"}
@@ -1,33 +0,0 @@
1
- import { DeserializationError, SerializationError, } from "../../contracts/serializer/_module";
2
- export class SqlSerializer {
3
- serializer;
4
- constructor(serializer) {
5
- this.serializer = serializer;
6
- }
7
- async serialize(value) {
8
- try {
9
- if (typeof value === "number" &&
10
- !Number.isNaN(value) &&
11
- isFinite(value)) {
12
- return String(value);
13
- }
14
- return await this.serializer.serialize(value);
15
- }
16
- catch (error) {
17
- throw new SerializationError(`Serialization error "${String(error)}" occured`, error);
18
- }
19
- }
20
- async deserialize(value) {
21
- try {
22
- const isNumberRegex = /^(-?([0-9]+)(\.[0-5]+)?)$/g;
23
- if (isNumberRegex.test(value)) {
24
- return Number(value);
25
- }
26
- return await this.serializer.deserialize(value);
27
- }
28
- catch (error) {
29
- throw new DeserializationError(`Deserialization error "${String(error)}" occured`, error);
30
- }
31
- }
32
- }
33
- //# sourceMappingURL=sql-serializer.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sql-serializer.js","sourceRoot":"","sources":["../../../../src/serializer/sql-serializer/sql-serializer.ts"],"names":[],"mappings":"AAGA,OAAO,EACH,oBAAoB,EACpB,kBAAkB,GAErB,MAAM,gCAAgC,CAAC;AAKxC,MAAM,OAAO,aAAa;IACO;IAA7B,YAA6B,UAA+B;QAA/B,eAAU,GAAV,UAAU,CAAqB;IAAG,CAAC;IAEhE,KAAK,CAAC,SAAS,CAAS,KAAa;QACjC,IAAI,CAAC;YACD,IACI,OAAO,KAAK,KAAK,QAAQ;gBACzB,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC;gBACpB,QAAQ,CAAC,KAAK,CAAC,EACjB,CAAC;gBACC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC;YACzB,CAAC;YACD,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;QAClD,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACtB,MAAM,IAAI,kBAAkB,CACxB,wBAAwB,MAAM,CAAC,KAAK,CAAC,WAAW,EAChD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;IACD,KAAK,CAAC,WAAW,CAAS,KAAa;QACnC,IAAI,CAAC;YACD,MAAM,aAAa,GAAG,4BAA4B,CAAC;YACnD,IAAI,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC5B,OAAO,MAAM,CAAC,KAAK,CAAW,CAAC;YACnC,CAAC;YACD,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;QACpD,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACtB,MAAM,IAAI,oBAAoB,CAC1B,0BAA0B,MAAM,CAAC,KAAK,CAAC,WAAW,EAClD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;CACJ"}
@@ -1,2 +0,0 @@
1
- export * from "../../serializer/super-json-serializer/super-json-serializer";
2
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/serializer/super-json-serializer/_module.ts"],"names":[],"mappings":"AAAA,cAAc,0DAA0D,CAAC"}
@@ -1,277 +0,0 @@
1
- import { DeserializationError, SerializationError, } from "../../contracts/serializer/_module";
2
- export class SuperJsonSerializer {
3
- superJson = null;
4
- dedupe;
5
- registerClass;
6
- registerSymbol;
7
- registerCustom;
8
- constructor({ dedupe = false, registerClass = () => { }, registerSymbol = () => { }, registerCustom = () => { }, } = {}) {
9
- this.registerClass = registerClass;
10
- this.registerSymbol = registerSymbol;
11
- this.registerCustom = registerCustom;
12
- this.dedupe = dedupe;
13
- }
14
- static registerBuffer(superJson) {
15
- superJson.registerCustom({
16
- isApplicable(value) {
17
- return value instanceof Buffer;
18
- },
19
- deserialize(serializedValue) {
20
- const isObject = !Array.isArray(serializedValue) &&
21
- typeof serializedValue === "object" &&
22
- serializedValue !== null;
23
- if (!isObject) {
24
- throw new DeserializationError("Serialized value is not object");
25
- }
26
- const { buffer } = serializedValue;
27
- if (typeof buffer !== "string") {
28
- throw new DeserializationError("Serialized value is not a string");
29
- }
30
- return Buffer.from(buffer, "base64");
31
- },
32
- serialize(deserializedValue) {
33
- return {
34
- buffer: deserializedValue.toString("base64"),
35
- };
36
- },
37
- }, Buffer.name);
38
- }
39
- static registerUint8Array(superJson) {
40
- superJson.registerCustom({
41
- isApplicable(value) {
42
- return value instanceof Uint8Array;
43
- },
44
- deserialize(serializedValue) {
45
- const isObject = !Array.isArray(serializedValue) &&
46
- typeof serializedValue === "object" &&
47
- serializedValue !== null;
48
- if (!isObject) {
49
- throw new DeserializationError("Serialized value is not object");
50
- }
51
- const { buffer } = serializedValue;
52
- if (typeof buffer !== "string") {
53
- throw new DeserializationError("Serialized value is not a string");
54
- }
55
- return new Uint8Array(Buffer.from(buffer, "base64"));
56
- },
57
- serialize(deserializedValue) {
58
- return {
59
- buffer: Buffer.from(deserializedValue).toString("base64"),
60
- };
61
- },
62
- }, Uint8Array.name);
63
- }
64
- static registerInt8Array(superJson) {
65
- superJson.registerCustom({
66
- isApplicable(value) {
67
- return value instanceof Int8Array;
68
- },
69
- deserialize(serializedValue) {
70
- const isObject = !Array.isArray(serializedValue) &&
71
- typeof serializedValue === "object" &&
72
- serializedValue !== null;
73
- if (!isObject) {
74
- throw new DeserializationError("Serialized value is not object");
75
- }
76
- const { buffer } = serializedValue;
77
- if (typeof buffer !== "string") {
78
- throw new DeserializationError("Serialized value is not a string");
79
- }
80
- return new Int8Array(Buffer.from(buffer, "base64"));
81
- },
82
- serialize(deserializedValue) {
83
- return {
84
- buffer: Buffer.from(deserializedValue).toString("base64"),
85
- };
86
- },
87
- }, Int8Array.name);
88
- }
89
- static registerUint16Array(superJson) {
90
- superJson.registerCustom({
91
- isApplicable(value) {
92
- return value instanceof Uint16Array;
93
- },
94
- deserialize(serializedValue) {
95
- const isObject = !Array.isArray(serializedValue) &&
96
- typeof serializedValue === "object" &&
97
- serializedValue !== null;
98
- if (!isObject) {
99
- throw new DeserializationError("Serialized value is not object");
100
- }
101
- const { buffer } = serializedValue;
102
- if (typeof buffer !== "string") {
103
- throw new DeserializationError("Serialized value is not a string");
104
- }
105
- return new Uint16Array(Buffer.from(buffer, "base64"));
106
- },
107
- serialize(deserializedValue) {
108
- return {
109
- buffer: Buffer.from(deserializedValue).toString("base64"),
110
- };
111
- },
112
- }, Uint16Array.name);
113
- }
114
- static registerInt16Array(superJson) {
115
- superJson.registerCustom({
116
- isApplicable(value) {
117
- return value instanceof Int16Array;
118
- },
119
- deserialize(serializedValue) {
120
- const isObject = !Array.isArray(serializedValue) &&
121
- typeof serializedValue === "object" &&
122
- serializedValue !== null;
123
- if (!isObject) {
124
- throw new DeserializationError("Serialized value is not object");
125
- }
126
- const { buffer } = serializedValue;
127
- if (typeof buffer !== "string") {
128
- throw new DeserializationError("Serialized value is not a string");
129
- }
130
- return new Int16Array(Buffer.from(buffer, "base64"));
131
- },
132
- serialize(deserializedValue) {
133
- return {
134
- buffer: Buffer.from(deserializedValue).toString("base64"),
135
- };
136
- },
137
- }, Int16Array.name);
138
- }
139
- static registerUint32Array(superJson) {
140
- superJson.registerCustom({
141
- isApplicable(value) {
142
- return value instanceof Uint32Array;
143
- },
144
- deserialize(serializedValue) {
145
- const isObject = !Array.isArray(serializedValue) &&
146
- typeof serializedValue === "object" &&
147
- serializedValue !== null;
148
- if (!isObject) {
149
- throw new DeserializationError("Serialized value is not object");
150
- }
151
- const { buffer } = serializedValue;
152
- if (typeof buffer !== "string") {
153
- throw new DeserializationError("Serialized value is not a string");
154
- }
155
- return new Uint32Array(Buffer.from(buffer, "base64"));
156
- },
157
- serialize(deserializedValue) {
158
- return {
159
- buffer: Buffer.from(deserializedValue).toString("base64"),
160
- };
161
- },
162
- }, Uint32Array.name);
163
- }
164
- static registerInt32Array(superJson) {
165
- superJson.registerCustom({
166
- isApplicable(value) {
167
- return value instanceof Int32Array;
168
- },
169
- deserialize(serializedValue) {
170
- const isObject = !Array.isArray(serializedValue) &&
171
- typeof serializedValue === "object" &&
172
- serializedValue !== null;
173
- if (!isObject) {
174
- throw new DeserializationError("Serialized value is not object");
175
- }
176
- const { buffer } = serializedValue;
177
- if (typeof buffer !== "string") {
178
- throw new DeserializationError("Serialized value is not a string");
179
- }
180
- return new Int32Array(Buffer.from(buffer, "base64"));
181
- },
182
- serialize(deserializedValue) {
183
- return {
184
- buffer: Buffer.from(deserializedValue).toString("base64"),
185
- };
186
- },
187
- }, Int32Array.name);
188
- }
189
- static registerFloat32Array(superJson) {
190
- superJson.registerCustom({
191
- isApplicable(value) {
192
- return value instanceof Float32Array;
193
- },
194
- deserialize(serializedValue) {
195
- const isObject = !Array.isArray(serializedValue) &&
196
- typeof serializedValue === "object" &&
197
- serializedValue !== null;
198
- if (!isObject) {
199
- throw new DeserializationError("Serialized value is not object");
200
- }
201
- const { buffer } = serializedValue;
202
- if (typeof buffer !== "string") {
203
- throw new DeserializationError("Serialized value is not a string");
204
- }
205
- return new Float32Array(Buffer.from(buffer, "base64"));
206
- },
207
- serialize(deserializedValue) {
208
- return {
209
- buffer: Buffer.from(deserializedValue).toString("base64"),
210
- };
211
- },
212
- }, Float32Array.name);
213
- }
214
- static registerFloat64Array(superJson) {
215
- superJson.registerCustom({
216
- isApplicable(value) {
217
- return value instanceof Float64Array;
218
- },
219
- deserialize(serializedValue) {
220
- const isObject = !Array.isArray(serializedValue) &&
221
- typeof serializedValue === "object" &&
222
- serializedValue !== null;
223
- if (!isObject) {
224
- throw new DeserializationError("Serialized value is not object");
225
- }
226
- const { buffer } = serializedValue;
227
- if (typeof buffer !== "string") {
228
- throw new DeserializationError("Serialized value is not a string");
229
- }
230
- return new Float64Array(Buffer.from(buffer, "base64"));
231
- },
232
- serialize(deserializedValue) {
233
- return {
234
- buffer: Buffer.from(deserializedValue).toString("base64"),
235
- };
236
- },
237
- }, Float64Array.name);
238
- }
239
- async init() {
240
- const { SuperJSON } = await import("superjson");
241
- if (this.superJson === null) {
242
- this.superJson = new SuperJSON({ dedupe: this.dedupe });
243
- this.registerClass(this.superJson.registerClass.bind(this.superJson));
244
- this.registerSymbol(this.superJson.registerSymbol.bind(this.superJson));
245
- this.registerCustom(this.superJson.registerCustom.bind(this.superJson));
246
- SuperJsonSerializer.registerBuffer(this.superJson);
247
- SuperJsonSerializer.registerUint8Array(this.superJson);
248
- SuperJsonSerializer.registerInt8Array(this.superJson);
249
- SuperJsonSerializer.registerUint16Array(this.superJson);
250
- SuperJsonSerializer.registerInt16Array(this.superJson);
251
- SuperJsonSerializer.registerUint32Array(this.superJson);
252
- SuperJsonSerializer.registerInt32Array(this.superJson);
253
- SuperJsonSerializer.registerFloat32Array(this.superJson);
254
- SuperJsonSerializer.registerFloat64Array(this.superJson);
255
- }
256
- return this.superJson;
257
- }
258
- async serialize(value) {
259
- try {
260
- const superJson = await this.init();
261
- return superJson.stringify(value);
262
- }
263
- catch (error) {
264
- throw new SerializationError(`Serialization error "${String(error)}" occured`, error);
265
- }
266
- }
267
- async deserialize(value) {
268
- try {
269
- const superJson = await this.init();
270
- return (await superJson.parse(value));
271
- }
272
- catch (error) {
273
- throw new DeserializationError(`Deserialization error "${String(error)}" occured`, error);
274
- }
275
- }
276
- }
277
- //# sourceMappingURL=super-json-serializer.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"super-json-serializer.js","sourceRoot":"","sources":["../../../../src/serializer/super-json-serializer/super-json-serializer.ts"],"names":[],"mappings":"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"}
@@ -1,7 +0,0 @@
1
- export * from "../storage/storage";
2
- export * from "../storage/_shared/test-utilities/_module";
3
- export * from "../storage/memory-storage-adapter/_module";
4
- export * from "../storage/mongodb-storage-adapter/_module";
5
- export * from "../storage/redis-storage-adapter/_module";
6
- export * from "../storage/sqlite/_module";
7
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../src/storage/_module.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,yCAAyC,CAAC;AACxD,cAAc,0BAA0B,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from "../../../storage/_shared/test-utilities/storage.test-suite";
2
- //# sourceMappingURL=_module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/storage/_shared/test-utilities/_module.ts"],"names":[],"mappings":"AAAA,cAAc,qDAAqD,CAAC"}