@daiso-tech/core 0.6.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 (1351) 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/collection/contracts/_module.d.ts +3 -0
  475. package/dist/types/collection/contracts/async-collection.contract.d.ts +1309 -0
  476. package/dist/types/collection/contracts/collection.contract.d.ts +1269 -0
  477. package/dist/types/collection/implementations/_module.d.ts +4 -0
  478. package/dist/types/collection/implementations/async-iterable-collection/_module.d.ts +1 -0
  479. package/dist/types/collection/implementations/async-iterable-collection/_shared/_module.d.ts +33 -0
  480. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.d.ts +12 -0
  481. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.d.ts +12 -0
  482. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.d.ts +9 -0
  483. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.d.ts +11 -0
  484. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.d.ts +13 -0
  485. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.d.ts +10 -0
  486. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.d.ts +10 -0
  487. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.d.ts +10 -0
  488. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.d.ts +12 -0
  489. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.d.ts +12 -0
  490. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.d.ts +12 -0
  491. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-map-iterable.d.ts +10 -0
  492. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.d.ts +10 -0
  493. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.d.ts +13 -0
  494. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.d.ts +13 -0
  495. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.d.ts +12 -0
  496. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.d.ts +12 -0
  497. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.d.ts +12 -0
  498. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.d.ts +10 -0
  499. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.d.ts +10 -0
  500. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.d.ts +10 -0
  501. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.d.ts +11 -0
  502. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.d.ts +11 -0
  503. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.d.ts +10 -0
  504. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-split-iterable.d.ts +12 -0
  505. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-iterable.d.ts +10 -0
  506. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.d.ts +10 -0
  507. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.d.ts +10 -0
  508. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.d.ts +10 -0
  509. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-update-iterable.d.ts +11 -0
  510. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-when-iterable.d.ts +11 -0
  511. package/dist/types/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.d.ts +11 -0
  512. package/dist/types/collection/implementations/async-iterable-collection/async-iterable-collection.d.ts +105 -0
  513. package/dist/types/collection/implementations/iterable-collection/_module.d.ts +1 -0
  514. package/dist/types/collection/implementations/iterable-collection/_shared/_module.d.ts +32 -0
  515. package/dist/types/collection/implementations/iterable-collection/_shared/chunk-iterable.d.ts +11 -0
  516. package/dist/types/collection/implementations/iterable-collection/_shared/chunk-while-iterable.d.ts +11 -0
  517. package/dist/types/collection/implementations/iterable-collection/_shared/collapse-iterable.d.ts +9 -0
  518. package/dist/types/collection/implementations/iterable-collection/_shared/count-by-iterable.d.ts +11 -0
  519. package/dist/types/collection/implementations/iterable-collection/_shared/cross-join-iterable.d.ts +8 -0
  520. package/dist/types/collection/implementations/iterable-collection/_shared/entries-iterable.d.ts +9 -0
  521. package/dist/types/collection/implementations/iterable-collection/_shared/filter-iterable.d.ts +10 -0
  522. package/dist/types/collection/implementations/iterable-collection/_shared/flat-map-iterable.d.ts +10 -0
  523. package/dist/types/collection/implementations/iterable-collection/_shared/group-by-iterable.d.ts +12 -0
  524. package/dist/types/collection/implementations/iterable-collection/_shared/insert-after-iterable.d.ts +11 -0
  525. package/dist/types/collection/implementations/iterable-collection/_shared/insert-before-iterable.d.ts +11 -0
  526. package/dist/types/collection/implementations/iterable-collection/_shared/map-iterable.d.ts +10 -0
  527. package/dist/types/collection/implementations/iterable-collection/_shared/pad-end-iterable.d.ts +12 -0
  528. package/dist/types/collection/implementations/iterable-collection/_shared/pad-start-iterable.d.ts +12 -0
  529. package/dist/types/collection/implementations/iterable-collection/_shared/partion-iterable.d.ts +11 -0
  530. package/dist/types/collection/implementations/iterable-collection/_shared/repeat-iterable.d.ts +11 -0
  531. package/dist/types/collection/implementations/iterable-collection/_shared/reverse-iterable.d.ts +11 -0
  532. package/dist/types/collection/implementations/iterable-collection/_shared/skip-iterable.d.ts +10 -0
  533. package/dist/types/collection/implementations/iterable-collection/_shared/skip-until-iterable.d.ts +10 -0
  534. package/dist/types/collection/implementations/iterable-collection/_shared/slice-iterable.d.ts +11 -0
  535. package/dist/types/collection/implementations/iterable-collection/_shared/sliding-iterable.d.ts +11 -0
  536. package/dist/types/collection/implementations/iterable-collection/_shared/sort-iterable.d.ts +10 -0
  537. package/dist/types/collection/implementations/iterable-collection/_shared/split-iterable.d.ts +11 -0
  538. package/dist/types/collection/implementations/iterable-collection/_shared/take-iterable.d.ts +10 -0
  539. package/dist/types/collection/implementations/iterable-collection/_shared/take-until-iterable.d.ts +10 -0
  540. package/dist/types/collection/implementations/iterable-collection/_shared/tap-iterable.d.ts +10 -0
  541. package/dist/types/collection/implementations/iterable-collection/_shared/unique-iterable.d.ts +10 -0
  542. package/dist/types/collection/implementations/iterable-collection/_shared/update-iterable.d.ts +11 -0
  543. package/dist/types/collection/implementations/iterable-collection/_shared/when-iterable.d.ts +11 -0
  544. package/dist/types/collection/implementations/iterable-collection/_shared/zip-iterable.d.ts +10 -0
  545. package/dist/types/collection/implementations/iterable-collection/iterable-collection.d.ts +100 -0
  546. package/dist/types/collection/implementations/list-collection/_module.d.ts +1 -0
  547. package/dist/types/collection/implementations/list-collection/list-collection.d.ts +97 -0
  548. package/dist/types/serializer/_module.d.ts +5 -5
  549. package/dist/types/serializer/contracts/_module.d.ts +1 -0
  550. package/dist/types/serializer/implementations/_module.d.ts +5 -0
  551. package/dist/types/serializer/implementations/_shared/test-utilities/_module.d.ts +1 -0
  552. package/dist/types/serializer/implementations/_shared/test-utilities/serializer.test-suite.d.ts +18 -0
  553. package/dist/types/serializer/implementations/mongodb-serializer/_module.d.ts +1 -0
  554. package/dist/types/serializer/implementations/mongodb-serializer/mongodb-serializer.d.ts +13 -0
  555. package/dist/types/serializer/implementations/redis-serializer/_module.d.ts +1 -0
  556. package/dist/types/serializer/implementations/redis-serializer/redis-serializer.d.ts +13 -0
  557. package/dist/types/serializer/implementations/sql-serializer/_module.d.ts +1 -0
  558. package/dist/types/serializer/implementations/sql-serializer/sql-serializer.d.ts +13 -0
  559. package/dist/types/serializer/implementations/super-json-serializer/_module.d.ts +1 -0
  560. package/dist/types/serializer/implementations/super-json-serializer/super-json-serializer.d.ts +37 -0
  561. package/dist/types/storage/contracts/_module.d.ts +3 -0
  562. package/dist/types/storage/contracts/storage-adapter.contract.d.ts +53 -0
  563. package/dist/types/storage/contracts/storage.contract.d.ts +151 -0
  564. package/dist/types/storage/implementations/_module.d.ts +6 -0
  565. package/dist/types/storage/implementations/_shared/test-utilities/_module.d.ts +1 -0
  566. package/dist/types/storage/implementations/_shared/test-utilities/storage-adapter-api.test-suite.d.ts +20 -0
  567. package/dist/types/storage/implementations/_shared/test-utilities/storage-adapter-value.test-suite.d.ts +20 -0
  568. package/dist/types/storage/implementations/_shared/test-utilities/storage-adapter.test-suite.d.ts +20 -0
  569. package/dist/types/storage/implementations/memory-storage-adapter/_module.d.ts +1 -0
  570. package/dist/types/storage/implementations/memory-storage-adapter/memory-storage-adapter.d.ts +18 -0
  571. package/dist/types/storage/implementations/mongodb-storage-adapter/_module.d.ts +1 -0
  572. package/dist/types/storage/implementations/mongodb-storage-adapter/mongodb-storage-adapter.d.ts +43 -0
  573. package/dist/types/storage/implementations/redis-storage-adapter/_module.d.ts +1 -0
  574. package/dist/types/storage/implementations/redis-storage-adapter/redis-storage-adapter.d.ts +38 -0
  575. package/dist/types/storage/implementations/sqlite/_module.d.ts +2 -0
  576. package/dist/types/storage/implementations/sqlite/_shared/_module.d.ts +1 -0
  577. package/dist/types/storage/implementations/sqlite/_shared/base-sqlite-storage-adapter.d.ts +39 -0
  578. package/dist/types/storage/implementations/sqlite/libsql-storage-adapter/_module.d.ts +1 -0
  579. package/dist/types/storage/implementations/sqlite/libsql-storage-adapter/libsql-storage-adapter.d.ts +30 -0
  580. package/dist/types/storage/implementations/sqlite/sqlite-storage-adapter/_module.d.ts +1 -0
  581. package/dist/types/storage/implementations/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.d.ts +30 -0
  582. package/dist/types/storage/implementations/storage/_module.d.ts +1 -0
  583. package/dist/types/storage/implementations/storage/storage.d.ts +41 -0
  584. package/dist/types/storage/implementations/storage/with-namespace-storage-adapter.d.ts +25 -0
  585. package/dist/types/storage/implementations/storage/with-validation-storage-adapter.d.ts +19 -0
  586. package/dist/types/utilities/_module.d.ts +4 -0
  587. package/dist/types/utilities/async/_module.d.ts +7 -0
  588. package/dist/types/utilities/async/abortable/_module.d.ts +1 -0
  589. package/dist/types/utilities/async/abortable/abortable.d.ts +39 -0
  590. package/dist/types/utilities/async/backof-policies/_module.d.ts +5 -0
  591. package/dist/types/utilities/async/backof-policies/constant-backoff-policy/_module.d.ts +1 -0
  592. package/dist/types/utilities/async/backof-policies/constant-backoff-policy/constant-backoff-policy.d.ts +28 -0
  593. package/dist/types/utilities/async/backof-policies/exponential-backoff-policy/_module.d.ts +1 -0
  594. package/dist/types/utilities/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.d.ts +36 -0
  595. package/dist/types/utilities/async/backof-policies/linear-backoff-policy/_module.d.ts +1 -0
  596. package/dist/types/utilities/async/backof-policies/linear-backoff-policy/linear-backoff-policy.d.ts +32 -0
  597. package/dist/types/utilities/async/backof-policies/polynomial-backoff-policy/_module.d.ts +1 -0
  598. package/dist/types/utilities/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.d.ts +36 -0
  599. package/dist/types/utilities/async/delay/_module.d.ts +1 -0
  600. package/dist/types/utilities/async/delay/delay.d.ts +38 -0
  601. package/dist/types/utilities/async/lazy-promise/_module.d.ts +1 -0
  602. package/dist/types/utilities/async/retry/_module.d.ts +1 -0
  603. package/dist/types/utilities/async/retry/retry.d.ts +86 -0
  604. package/dist/types/utilities/async/timeout/_module.d.ts +1 -0
  605. package/dist/types/utilities/async/timeout/timeout.d.ts +40 -0
  606. package/dist/types/utilities/async-iterable/_module.d.ts +4 -0
  607. package/dist/types/utilities/async-iterable/abortable-iterable/_module.d.ts +1 -0
  608. package/dist/types/utilities/async-iterable/delay-iterable/_module.d.ts +1 -0
  609. package/dist/types/utilities/async-iterable/delay-iterable/delay-iterable.d.ts +57 -0
  610. package/dist/types/utilities/async-iterable/retry-iterable/_module.d.ts +1 -0
  611. package/dist/types/utilities/async-iterable/retry-iterable/retry-iterable.d.ts +86 -0
  612. package/dist/types/utilities/async-iterable/timeout-iterable/_module.d.ts +1 -0
  613. package/dist/types/utilities/async-iterable/timeout-iterable/timeout-iterable.d.ts +64 -0
  614. package/dist/types/utilities/time-span/time-span.d.ts +3 -3
  615. package/dist/types/utilities/validation/_module.d.ts +12 -0
  616. package/package.json +10 -6
  617. package/dist/cjs/async/_module.js +0 -30
  618. package/dist/cjs/async/_module.js.map +0 -1
  619. package/dist/cjs/async/_shared.js.map +0 -1
  620. package/dist/cjs/async/abortable/_module.js +0 -18
  621. package/dist/cjs/async/abortable/_module.js.map +0 -1
  622. package/dist/cjs/async/abortable/abortable.js +0 -48
  623. package/dist/cjs/async/abortable/abortable.js.map +0 -1
  624. package/dist/cjs/async/abortable-iterable/_module.js +0 -18
  625. package/dist/cjs/async/abortable-iterable/_module.js.map +0 -1
  626. package/dist/cjs/async/abortable-iterable/abortable-iterable.js +0 -32
  627. package/dist/cjs/async/abortable-iterable/abortable-iterable.js.map +0 -1
  628. package/dist/cjs/async/backof-policies/_module.js +0 -21
  629. package/dist/cjs/async/backof-policies/_module.js.map +0 -1
  630. package/dist/cjs/async/backof-policies/_shared.js.map +0 -1
  631. package/dist/cjs/async/backof-policies/constant-backoff-policy/_module.js +0 -18
  632. package/dist/cjs/async/backof-policies/constant-backoff-policy/_module.js.map +0 -1
  633. package/dist/cjs/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +0 -19
  634. package/dist/cjs/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +0 -1
  635. package/dist/cjs/async/backof-policies/exponential-backoff-policy/_module.js +0 -18
  636. package/dist/cjs/async/backof-policies/exponential-backoff-policy/_module.js.map +0 -1
  637. package/dist/cjs/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +0 -23
  638. package/dist/cjs/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +0 -1
  639. package/dist/cjs/async/backof-policies/linear-backoff-policy/_module.js +0 -18
  640. package/dist/cjs/async/backof-policies/linear-backoff-policy/_module.js.map +0 -1
  641. package/dist/cjs/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +0 -23
  642. package/dist/cjs/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +0 -1
  643. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/_module.js +0 -18
  644. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/_module.js.map +0 -1
  645. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +0 -23
  646. package/dist/cjs/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +0 -1
  647. package/dist/cjs/async/delay/_module.js +0 -18
  648. package/dist/cjs/async/delay/_module.js.map +0 -1
  649. package/dist/cjs/async/delay/delay.js +0 -24
  650. package/dist/cjs/async/delay/delay.js.map +0 -1
  651. package/dist/cjs/async/delay-iterable/_module.js +0 -18
  652. package/dist/cjs/async/delay-iterable/_module.js.map +0 -1
  653. package/dist/cjs/async/delay-iterable/delay-iterable.js +0 -36
  654. package/dist/cjs/async/delay-iterable/delay-iterable.js.map +0 -1
  655. package/dist/cjs/async/lazy-promise/_module.js +0 -18
  656. package/dist/cjs/async/lazy-promise/_module.js.map +0 -1
  657. package/dist/cjs/async/lazy-promise/lazy-promise.js.map +0 -1
  658. package/dist/cjs/async/retry/_module.js +0 -18
  659. package/dist/cjs/async/retry/_module.js.map +0 -1
  660. package/dist/cjs/async/retry/retry.js +0 -43
  661. package/dist/cjs/async/retry/retry.js.map +0 -1
  662. package/dist/cjs/async/retry-iterable/_module.js +0 -18
  663. package/dist/cjs/async/retry-iterable/_module.js.map +0 -1
  664. package/dist/cjs/async/retry-iterable/retry-iterable.js +0 -32
  665. package/dist/cjs/async/retry-iterable/retry-iterable.js.map +0 -1
  666. package/dist/cjs/async/timeout/_module.js +0 -18
  667. package/dist/cjs/async/timeout/_module.js.map +0 -1
  668. package/dist/cjs/async/timeout/timeout.js +0 -28
  669. package/dist/cjs/async/timeout/timeout.js.map +0 -1
  670. package/dist/cjs/async/timeout-iterable/_module.js +0 -18
  671. package/dist/cjs/async/timeout-iterable/_module.js.map +0 -1
  672. package/dist/cjs/async/timeout-iterable/timeout-iterable.js +0 -11
  673. package/dist/cjs/async/timeout-iterable/timeout-iterable.js.map +0 -1
  674. package/dist/cjs/collection/_module.js +0 -21
  675. package/dist/cjs/collection/_module.js.map +0 -1
  676. package/dist/cjs/collection/_shared.js.map +0 -1
  677. package/dist/cjs/collection/async-iterable-collection/_module.js +0 -18
  678. package/dist/cjs/collection/async-iterable-collection/_module.js.map +0 -1
  679. package/dist/cjs/collection/async-iterable-collection/_shared/_module.js +0 -50
  680. package/dist/cjs/collection/async-iterable-collection/_shared/_module.js.map +0 -1
  681. package/dist/cjs/collection/async-iterable-collection/_shared/async-chunk-iterable.js.map +0 -1
  682. package/dist/cjs/collection/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +0 -1
  683. package/dist/cjs/collection/async-iterable-collection/_shared/async-collapse-iterable.js +0 -22
  684. package/dist/cjs/collection/async-iterable-collection/_shared/async-collapse-iterable.js.map +0 -1
  685. package/dist/cjs/collection/async-iterable-collection/_shared/async-count-by-iterable.js.map +0 -1
  686. package/dist/cjs/collection/async-iterable-collection/_shared/async-cross-join-iterable.js +0 -35
  687. package/dist/cjs/collection/async-iterable-collection/_shared/async-cross-join-iterable.js.map +0 -1
  688. package/dist/cjs/collection/async-iterable-collection/_shared/async-entries-iterable.js.map +0 -1
  689. package/dist/cjs/collection/async-iterable-collection/_shared/async-error-handler-iterable.js.map +0 -1
  690. package/dist/cjs/collection/async-iterable-collection/_shared/async-filter-iterable.js.map +0 -1
  691. package/dist/cjs/collection/async-iterable-collection/_shared/async-flat-map-iterable.js.map +0 -1
  692. package/dist/cjs/collection/async-iterable-collection/_shared/async-group-by-iterable.js.map +0 -1
  693. package/dist/cjs/collection/async-iterable-collection/_shared/async-insert-after-iterable.js.map +0 -1
  694. package/dist/cjs/collection/async-iterable-collection/_shared/async-insert-before-iterable.js.map +0 -1
  695. package/dist/cjs/collection/async-iterable-collection/_shared/async-map-iterable.js.map +0 -1
  696. package/dist/cjs/collection/async-iterable-collection/_shared/async-merge-iterable.js.map +0 -1
  697. package/dist/cjs/collection/async-iterable-collection/_shared/async-pad-end-iterable.js.map +0 -1
  698. package/dist/cjs/collection/async-iterable-collection/_shared/async-pad-start-iterable.js.map +0 -1
  699. package/dist/cjs/collection/async-iterable-collection/_shared/async-partion-iterable.js.map +0 -1
  700. package/dist/cjs/collection/async-iterable-collection/_shared/async-repeat-iterable.js.map +0 -1
  701. package/dist/cjs/collection/async-iterable-collection/_shared/async-reverse-iterable.js.map +0 -1
  702. package/dist/cjs/collection/async-iterable-collection/_shared/async-shuffle-iterable.js.map +0 -1
  703. package/dist/cjs/collection/async-iterable-collection/_shared/async-skip-iterable.js.map +0 -1
  704. package/dist/cjs/collection/async-iterable-collection/_shared/async-skip-until-iterable.js.map +0 -1
  705. package/dist/cjs/collection/async-iterable-collection/_shared/async-slice-iterable.js.map +0 -1
  706. package/dist/cjs/collection/async-iterable-collection/_shared/async-sliding-iterable.js.map +0 -1
  707. package/dist/cjs/collection/async-iterable-collection/_shared/async-sort-iterable.js.map +0 -1
  708. package/dist/cjs/collection/async-iterable-collection/_shared/async-split-iterable.js.map +0 -1
  709. package/dist/cjs/collection/async-iterable-collection/_shared/async-take-iterable.js.map +0 -1
  710. package/dist/cjs/collection/async-iterable-collection/_shared/async-take-until-iterable.js.map +0 -1
  711. package/dist/cjs/collection/async-iterable-collection/_shared/async-tap-iterable.js.map +0 -1
  712. package/dist/cjs/collection/async-iterable-collection/_shared/async-unique-iterable.js.map +0 -1
  713. package/dist/cjs/collection/async-iterable-collection/_shared/async-update-iterable.js.map +0 -1
  714. package/dist/cjs/collection/async-iterable-collection/_shared/async-when-iterable.js.map +0 -1
  715. package/dist/cjs/collection/async-iterable-collection/_shared/async-zip-iterable.js +0 -37
  716. package/dist/cjs/collection/async-iterable-collection/_shared/async-zip-iterable.js.map +0 -1
  717. package/dist/cjs/collection/async-iterable-collection/async-iterable-collection.js +0 -547
  718. package/dist/cjs/collection/async-iterable-collection/async-iterable-collection.js.map +0 -1
  719. package/dist/cjs/collection/iterable-collection/_module.js +0 -18
  720. package/dist/cjs/collection/iterable-collection/_module.js.map +0 -1
  721. package/dist/cjs/collection/iterable-collection/_shared/_module.js +0 -49
  722. package/dist/cjs/collection/iterable-collection/_shared/_module.js.map +0 -1
  723. package/dist/cjs/collection/iterable-collection/_shared/chunk-iterable.js.map +0 -1
  724. package/dist/cjs/collection/iterable-collection/_shared/chunk-while-iterable.js.map +0 -1
  725. package/dist/cjs/collection/iterable-collection/_shared/collapse-iterable.js +0 -22
  726. package/dist/cjs/collection/iterable-collection/_shared/collapse-iterable.js.map +0 -1
  727. package/dist/cjs/collection/iterable-collection/_shared/count-by-iterable.js.map +0 -1
  728. package/dist/cjs/collection/iterable-collection/_shared/cross-join-iterable.js +0 -37
  729. package/dist/cjs/collection/iterable-collection/_shared/cross-join-iterable.js.map +0 -1
  730. package/dist/cjs/collection/iterable-collection/_shared/entries-iterable.js.map +0 -1
  731. package/dist/cjs/collection/iterable-collection/_shared/filter-iterable.js.map +0 -1
  732. package/dist/cjs/collection/iterable-collection/_shared/flat-map-iterable.js.map +0 -1
  733. package/dist/cjs/collection/iterable-collection/_shared/group-by-iterable.js.map +0 -1
  734. package/dist/cjs/collection/iterable-collection/_shared/insert-after-iterable.js.map +0 -1
  735. package/dist/cjs/collection/iterable-collection/_shared/insert-before-iterable.js.map +0 -1
  736. package/dist/cjs/collection/iterable-collection/_shared/map-iterable.js.map +0 -1
  737. package/dist/cjs/collection/iterable-collection/_shared/merge-iterable.js.map +0 -1
  738. package/dist/cjs/collection/iterable-collection/_shared/pad-end-iterable.js.map +0 -1
  739. package/dist/cjs/collection/iterable-collection/_shared/pad-start-iterable.js.map +0 -1
  740. package/dist/cjs/collection/iterable-collection/_shared/partion-iterable.js.map +0 -1
  741. package/dist/cjs/collection/iterable-collection/_shared/repeat-iterable.js.map +0 -1
  742. package/dist/cjs/collection/iterable-collection/_shared/reverse-iterable.js.map +0 -1
  743. package/dist/cjs/collection/iterable-collection/_shared/shuffle-iterable.js.map +0 -1
  744. package/dist/cjs/collection/iterable-collection/_shared/skip-iterable.js.map +0 -1
  745. package/dist/cjs/collection/iterable-collection/_shared/skip-until-iterable.js.map +0 -1
  746. package/dist/cjs/collection/iterable-collection/_shared/slice-iterable.js.map +0 -1
  747. package/dist/cjs/collection/iterable-collection/_shared/sliding-iterable.js.map +0 -1
  748. package/dist/cjs/collection/iterable-collection/_shared/sort-iterable.js.map +0 -1
  749. package/dist/cjs/collection/iterable-collection/_shared/split-iterable.js.map +0 -1
  750. package/dist/cjs/collection/iterable-collection/_shared/take-iterable.js.map +0 -1
  751. package/dist/cjs/collection/iterable-collection/_shared/take-until-iterable.js.map +0 -1
  752. package/dist/cjs/collection/iterable-collection/_shared/tap-iterable.js.map +0 -1
  753. package/dist/cjs/collection/iterable-collection/_shared/unique-iterable.js.map +0 -1
  754. package/dist/cjs/collection/iterable-collection/_shared/update-iterable.js.map +0 -1
  755. package/dist/cjs/collection/iterable-collection/_shared/when-iterable.js.map +0 -1
  756. package/dist/cjs/collection/iterable-collection/_shared/zip-iterable.js.map +0 -1
  757. package/dist/cjs/collection/iterable-collection/iterable-collection.js +0 -493
  758. package/dist/cjs/collection/iterable-collection/iterable-collection.js.map +0 -1
  759. package/dist/cjs/collection/list-collection/_module.js +0 -18
  760. package/dist/cjs/collection/list-collection/_module.js.map +0 -1
  761. package/dist/cjs/collection/list-collection/list-collection.js +0 -627
  762. package/dist/cjs/collection/list-collection/list-collection.js.map +0 -1
  763. package/dist/cjs/contracts/_module.js +0 -20
  764. package/dist/cjs/contracts/_module.js.map +0 -1
  765. package/dist/cjs/contracts/collection/_module.js +0 -20
  766. package/dist/cjs/contracts/collection/_module.js.map +0 -1
  767. package/dist/cjs/contracts/collection/_shared.js.map +0 -1
  768. package/dist/cjs/contracts/collection/async-collection.contract.js.map +0 -1
  769. package/dist/cjs/contracts/collection/collection.contract.js.map +0 -1
  770. package/dist/cjs/contracts/serializer/_module.js +0 -18
  771. package/dist/cjs/contracts/serializer/_module.js.map +0 -1
  772. package/dist/cjs/contracts/serializer/serializer.contract.js.map +0 -1
  773. package/dist/cjs/contracts/storage/_module.js +0 -20
  774. package/dist/cjs/contracts/storage/_module.js.map +0 -1
  775. package/dist/cjs/contracts/storage/_shared.js.map +0 -1
  776. package/dist/cjs/contracts/storage/storage-adapter.contract.js.map +0 -1
  777. package/dist/cjs/contracts/storage/storage.contract.js.map +0 -1
  778. package/dist/cjs/serializer/_shared/test-utilities/_module.js +0 -18
  779. package/dist/cjs/serializer/_shared/test-utilities/_module.js.map +0 -1
  780. package/dist/cjs/serializer/_shared/test-utilities/serializer.test-suite.js.map +0 -1
  781. package/dist/cjs/serializer/mongodb-serializer/_module.js +0 -18
  782. package/dist/cjs/serializer/mongodb-serializer/_module.js.map +0 -1
  783. package/dist/cjs/serializer/mongodb-serializer/mongodb-serializer.js +0 -36
  784. package/dist/cjs/serializer/mongodb-serializer/mongodb-serializer.js.map +0 -1
  785. package/dist/cjs/serializer/redis-serializer/_module.js +0 -18
  786. package/dist/cjs/serializer/redis-serializer/_module.js.map +0 -1
  787. package/dist/cjs/serializer/redis-serializer/redis-serializer.js +0 -37
  788. package/dist/cjs/serializer/redis-serializer/redis-serializer.js.map +0 -1
  789. package/dist/cjs/serializer/sql-serializer/_module.js +0 -18
  790. package/dist/cjs/serializer/sql-serializer/_module.js.map +0 -1
  791. package/dist/cjs/serializer/sql-serializer/sql-serializer.js +0 -37
  792. package/dist/cjs/serializer/sql-serializer/sql-serializer.js.map +0 -1
  793. package/dist/cjs/serializer/super-json-serializer/_module.js +0 -18
  794. package/dist/cjs/serializer/super-json-serializer/_module.js.map +0 -1
  795. package/dist/cjs/serializer/super-json-serializer/super-json-serializer.js +0 -304
  796. package/dist/cjs/serializer/super-json-serializer/super-json-serializer.js.map +0 -1
  797. package/dist/cjs/storage/_module.js +0 -23
  798. package/dist/cjs/storage/_module.js.map +0 -1
  799. package/dist/cjs/storage/_shared/test-utilities/_module.js +0 -18
  800. package/dist/cjs/storage/_shared/test-utilities/_module.js.map +0 -1
  801. package/dist/cjs/storage/_shared/test-utilities/storage-api.test-suite.js +0 -572
  802. package/dist/cjs/storage/_shared/test-utilities/storage-api.test-suite.js.map +0 -1
  803. package/dist/cjs/storage/_shared/test-utilities/storage-namespace.test-suite.js +0 -241
  804. package/dist/cjs/storage/_shared/test-utilities/storage-namespace.test-suite.js.map +0 -1
  805. package/dist/cjs/storage/_shared/test-utilities/storage-value.test-suite.js +0 -4172
  806. package/dist/cjs/storage/_shared/test-utilities/storage-value.test-suite.js.map +0 -1
  807. package/dist/cjs/storage/_shared/test-utilities/storage.test-suite.js +0 -12
  808. package/dist/cjs/storage/_shared/test-utilities/storage.test-suite.js.map +0 -1
  809. package/dist/cjs/storage/memory-storage-adapter/_module.js +0 -18
  810. package/dist/cjs/storage/memory-storage-adapter/_module.js.map +0 -1
  811. package/dist/cjs/storage/memory-storage-adapter/memory-storage-adapter.js +0 -85
  812. package/dist/cjs/storage/memory-storage-adapter/memory-storage-adapter.js.map +0 -1
  813. package/dist/cjs/storage/mongodb-storage-adapter/_module.js +0 -6
  814. package/dist/cjs/storage/mongodb-storage-adapter/_module.js.map +0 -1
  815. package/dist/cjs/storage/mongodb-storage-adapter/mongodb-storage-adapter.js +0 -203
  816. package/dist/cjs/storage/mongodb-storage-adapter/mongodb-storage-adapter.js.map +0 -1
  817. package/dist/cjs/storage/namespace-storage-adapter.js +0 -56
  818. package/dist/cjs/storage/namespace-storage-adapter.js.map +0 -1
  819. package/dist/cjs/storage/redis-storage-adapter/_module.js +0 -18
  820. package/dist/cjs/storage/redis-storage-adapter/_module.js.map +0 -1
  821. package/dist/cjs/storage/redis-storage-adapter/redis-storage-adapter.js +0 -228
  822. package/dist/cjs/storage/redis-storage-adapter/redis-storage-adapter.js.map +0 -1
  823. package/dist/cjs/storage/sqlite/_module.js +0 -19
  824. package/dist/cjs/storage/sqlite/_module.js.map +0 -1
  825. package/dist/cjs/storage/sqlite/_shared/_module.js +0 -18
  826. package/dist/cjs/storage/sqlite/_shared/_module.js.map +0 -1
  827. package/dist/cjs/storage/sqlite/_shared/base-sqlite-storage-adapter.js +0 -190
  828. package/dist/cjs/storage/sqlite/_shared/base-sqlite-storage-adapter.js.map +0 -1
  829. package/dist/cjs/storage/sqlite/libsql-storage-adapter/_module.js +0 -18
  830. package/dist/cjs/storage/sqlite/libsql-storage-adapter/_module.js.map +0 -1
  831. package/dist/cjs/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +0 -53
  832. package/dist/cjs/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +0 -1
  833. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/_module.js +0 -18
  834. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/_module.js.map +0 -1
  835. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +0 -52
  836. package/dist/cjs/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +0 -1
  837. package/dist/cjs/storage/storage.js +0 -217
  838. package/dist/cjs/storage/storage.js.map +0 -1
  839. package/dist/esm/async/_module.js +0 -12
  840. package/dist/esm/async/_module.js.map +0 -1
  841. package/dist/esm/async/_shared.js.map +0 -1
  842. package/dist/esm/async/abortable/_module.js +0 -2
  843. package/dist/esm/async/abortable/_module.js.map +0 -1
  844. package/dist/esm/async/abortable/abortable.js +0 -45
  845. package/dist/esm/async/abortable/abortable.js.map +0 -1
  846. package/dist/esm/async/abortable-iterable/_module.js +0 -2
  847. package/dist/esm/async/abortable-iterable/_module.js.map +0 -1
  848. package/dist/esm/async/abortable-iterable/abortable-iterable.js +0 -29
  849. package/dist/esm/async/abortable-iterable/abortable-iterable.js.map +0 -1
  850. package/dist/esm/async/backof-policies/_module.js +0 -5
  851. package/dist/esm/async/backof-policies/_module.js.map +0 -1
  852. package/dist/esm/async/backof-policies/_shared.js.map +0 -1
  853. package/dist/esm/async/backof-policies/constant-backoff-policy/_module.js +0 -2
  854. package/dist/esm/async/backof-policies/constant-backoff-policy/_module.js.map +0 -1
  855. package/dist/esm/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +0 -16
  856. package/dist/esm/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +0 -1
  857. package/dist/esm/async/backof-policies/exponential-backoff-policy/_module.js +0 -2
  858. package/dist/esm/async/backof-policies/exponential-backoff-policy/_module.js.map +0 -1
  859. package/dist/esm/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +0 -20
  860. package/dist/esm/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +0 -1
  861. package/dist/esm/async/backof-policies/linear-backoff-policy/_module.js +0 -2
  862. package/dist/esm/async/backof-policies/linear-backoff-policy/_module.js.map +0 -1
  863. package/dist/esm/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +0 -20
  864. package/dist/esm/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +0 -1
  865. package/dist/esm/async/backof-policies/polynomial-backoff-policy/_module.js +0 -2
  866. package/dist/esm/async/backof-policies/polynomial-backoff-policy/_module.js.map +0 -1
  867. package/dist/esm/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +0 -20
  868. package/dist/esm/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +0 -1
  869. package/dist/esm/async/delay/_module.js +0 -2
  870. package/dist/esm/async/delay/_module.js.map +0 -1
  871. package/dist/esm/async/delay/delay.js +0 -21
  872. package/dist/esm/async/delay/delay.js.map +0 -1
  873. package/dist/esm/async/delay-iterable/_module.js +0 -2
  874. package/dist/esm/async/delay-iterable/_module.js.map +0 -1
  875. package/dist/esm/async/delay-iterable/delay-iterable.js +0 -33
  876. package/dist/esm/async/delay-iterable/delay-iterable.js.map +0 -1
  877. package/dist/esm/async/lazy-promise/_module.js +0 -2
  878. package/dist/esm/async/lazy-promise/_module.js.map +0 -1
  879. package/dist/esm/async/lazy-promise/lazy-promise.js.map +0 -1
  880. package/dist/esm/async/retry/_module.js +0 -2
  881. package/dist/esm/async/retry/_module.js.map +0 -1
  882. package/dist/esm/async/retry/retry.js +0 -40
  883. package/dist/esm/async/retry/retry.js.map +0 -1
  884. package/dist/esm/async/retry-iterable/_module.js +0 -2
  885. package/dist/esm/async/retry-iterable/_module.js.map +0 -1
  886. package/dist/esm/async/retry-iterable/retry-iterable.js +0 -29
  887. package/dist/esm/async/retry-iterable/retry-iterable.js.map +0 -1
  888. package/dist/esm/async/timeout/_module.js +0 -2
  889. package/dist/esm/async/timeout/_module.js.map +0 -1
  890. package/dist/esm/async/timeout/timeout.js +0 -25
  891. package/dist/esm/async/timeout/timeout.js.map +0 -1
  892. package/dist/esm/async/timeout-iterable/_module.js +0 -2
  893. package/dist/esm/async/timeout-iterable/_module.js.map +0 -1
  894. package/dist/esm/async/timeout-iterable/timeout-iterable.js +0 -8
  895. package/dist/esm/async/timeout-iterable/timeout-iterable.js.map +0 -1
  896. package/dist/esm/collection/_module.js +0 -5
  897. package/dist/esm/collection/_module.js.map +0 -1
  898. package/dist/esm/collection/_shared.js.map +0 -1
  899. package/dist/esm/collection/async-iterable-collection/_module.js +0 -2
  900. package/dist/esm/collection/async-iterable-collection/_module.js.map +0 -1
  901. package/dist/esm/collection/async-iterable-collection/_shared/_module.js +0 -34
  902. package/dist/esm/collection/async-iterable-collection/_shared/_module.js.map +0 -1
  903. package/dist/esm/collection/async-iterable-collection/_shared/async-chunk-iterable.js.map +0 -1
  904. package/dist/esm/collection/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +0 -1
  905. package/dist/esm/collection/async-iterable-collection/_shared/async-collapse-iterable.js +0 -18
  906. package/dist/esm/collection/async-iterable-collection/_shared/async-collapse-iterable.js.map +0 -1
  907. package/dist/esm/collection/async-iterable-collection/_shared/async-count-by-iterable.js.map +0 -1
  908. package/dist/esm/collection/async-iterable-collection/_shared/async-cross-join-iterable.js +0 -31
  909. package/dist/esm/collection/async-iterable-collection/_shared/async-cross-join-iterable.js.map +0 -1
  910. package/dist/esm/collection/async-iterable-collection/_shared/async-entries-iterable.js.map +0 -1
  911. package/dist/esm/collection/async-iterable-collection/_shared/async-error-handler-iterable.js.map +0 -1
  912. package/dist/esm/collection/async-iterable-collection/_shared/async-filter-iterable.js.map +0 -1
  913. package/dist/esm/collection/async-iterable-collection/_shared/async-flat-map-iterable.js.map +0 -1
  914. package/dist/esm/collection/async-iterable-collection/_shared/async-group-by-iterable.js.map +0 -1
  915. package/dist/esm/collection/async-iterable-collection/_shared/async-insert-after-iterable.js.map +0 -1
  916. package/dist/esm/collection/async-iterable-collection/_shared/async-insert-before-iterable.js.map +0 -1
  917. package/dist/esm/collection/async-iterable-collection/_shared/async-map-iterable.js.map +0 -1
  918. package/dist/esm/collection/async-iterable-collection/_shared/async-merge-iterable.js.map +0 -1
  919. package/dist/esm/collection/async-iterable-collection/_shared/async-pad-end-iterable.js.map +0 -1
  920. package/dist/esm/collection/async-iterable-collection/_shared/async-pad-start-iterable.js.map +0 -1
  921. package/dist/esm/collection/async-iterable-collection/_shared/async-partion-iterable.js.map +0 -1
  922. package/dist/esm/collection/async-iterable-collection/_shared/async-repeat-iterable.js.map +0 -1
  923. package/dist/esm/collection/async-iterable-collection/_shared/async-reverse-iterable.js.map +0 -1
  924. package/dist/esm/collection/async-iterable-collection/_shared/async-shuffle-iterable.js.map +0 -1
  925. package/dist/esm/collection/async-iterable-collection/_shared/async-skip-iterable.js.map +0 -1
  926. package/dist/esm/collection/async-iterable-collection/_shared/async-skip-until-iterable.js.map +0 -1
  927. package/dist/esm/collection/async-iterable-collection/_shared/async-slice-iterable.js.map +0 -1
  928. package/dist/esm/collection/async-iterable-collection/_shared/async-sliding-iterable.js.map +0 -1
  929. package/dist/esm/collection/async-iterable-collection/_shared/async-sort-iterable.js.map +0 -1
  930. package/dist/esm/collection/async-iterable-collection/_shared/async-split-iterable.js.map +0 -1
  931. package/dist/esm/collection/async-iterable-collection/_shared/async-take-iterable.js.map +0 -1
  932. package/dist/esm/collection/async-iterable-collection/_shared/async-take-until-iterable.js.map +0 -1
  933. package/dist/esm/collection/async-iterable-collection/_shared/async-tap-iterable.js.map +0 -1
  934. package/dist/esm/collection/async-iterable-collection/_shared/async-unique-iterable.js.map +0 -1
  935. package/dist/esm/collection/async-iterable-collection/_shared/async-update-iterable.js.map +0 -1
  936. package/dist/esm/collection/async-iterable-collection/_shared/async-when-iterable.js.map +0 -1
  937. package/dist/esm/collection/async-iterable-collection/_shared/async-zip-iterable.js +0 -33
  938. package/dist/esm/collection/async-iterable-collection/_shared/async-zip-iterable.js.map +0 -1
  939. package/dist/esm/collection/async-iterable-collection/async-iterable-collection.js +0 -543
  940. package/dist/esm/collection/async-iterable-collection/async-iterable-collection.js.map +0 -1
  941. package/dist/esm/collection/iterable-collection/_module.js +0 -2
  942. package/dist/esm/collection/iterable-collection/_module.js.map +0 -1
  943. package/dist/esm/collection/iterable-collection/_shared/_module.js +0 -33
  944. package/dist/esm/collection/iterable-collection/_shared/_module.js.map +0 -1
  945. package/dist/esm/collection/iterable-collection/_shared/chunk-iterable.js.map +0 -1
  946. package/dist/esm/collection/iterable-collection/_shared/chunk-while-iterable.js.map +0 -1
  947. package/dist/esm/collection/iterable-collection/_shared/collapse-iterable.js +0 -18
  948. package/dist/esm/collection/iterable-collection/_shared/collapse-iterable.js.map +0 -1
  949. package/dist/esm/collection/iterable-collection/_shared/count-by-iterable.js.map +0 -1
  950. package/dist/esm/collection/iterable-collection/_shared/cross-join-iterable.js +0 -33
  951. package/dist/esm/collection/iterable-collection/_shared/cross-join-iterable.js.map +0 -1
  952. package/dist/esm/collection/iterable-collection/_shared/entries-iterable.js.map +0 -1
  953. package/dist/esm/collection/iterable-collection/_shared/filter-iterable.js.map +0 -1
  954. package/dist/esm/collection/iterable-collection/_shared/flat-map-iterable.js.map +0 -1
  955. package/dist/esm/collection/iterable-collection/_shared/group-by-iterable.js.map +0 -1
  956. package/dist/esm/collection/iterable-collection/_shared/insert-after-iterable.js.map +0 -1
  957. package/dist/esm/collection/iterable-collection/_shared/insert-before-iterable.js.map +0 -1
  958. package/dist/esm/collection/iterable-collection/_shared/map-iterable.js.map +0 -1
  959. package/dist/esm/collection/iterable-collection/_shared/merge-iterable.js.map +0 -1
  960. package/dist/esm/collection/iterable-collection/_shared/pad-end-iterable.js.map +0 -1
  961. package/dist/esm/collection/iterable-collection/_shared/pad-start-iterable.js.map +0 -1
  962. package/dist/esm/collection/iterable-collection/_shared/partion-iterable.js.map +0 -1
  963. package/dist/esm/collection/iterable-collection/_shared/repeat-iterable.js.map +0 -1
  964. package/dist/esm/collection/iterable-collection/_shared/reverse-iterable.js.map +0 -1
  965. package/dist/esm/collection/iterable-collection/_shared/shuffle-iterable.js.map +0 -1
  966. package/dist/esm/collection/iterable-collection/_shared/skip-iterable.js.map +0 -1
  967. package/dist/esm/collection/iterable-collection/_shared/skip-until-iterable.js.map +0 -1
  968. package/dist/esm/collection/iterable-collection/_shared/slice-iterable.js.map +0 -1
  969. package/dist/esm/collection/iterable-collection/_shared/sliding-iterable.js.map +0 -1
  970. package/dist/esm/collection/iterable-collection/_shared/sort-iterable.js.map +0 -1
  971. package/dist/esm/collection/iterable-collection/_shared/split-iterable.js.map +0 -1
  972. package/dist/esm/collection/iterable-collection/_shared/take-iterable.js.map +0 -1
  973. package/dist/esm/collection/iterable-collection/_shared/take-until-iterable.js.map +0 -1
  974. package/dist/esm/collection/iterable-collection/_shared/tap-iterable.js.map +0 -1
  975. package/dist/esm/collection/iterable-collection/_shared/unique-iterable.js.map +0 -1
  976. package/dist/esm/collection/iterable-collection/_shared/update-iterable.js.map +0 -1
  977. package/dist/esm/collection/iterable-collection/_shared/when-iterable.js.map +0 -1
  978. package/dist/esm/collection/iterable-collection/_shared/zip-iterable.js.map +0 -1
  979. package/dist/esm/collection/iterable-collection/iterable-collection.js +0 -489
  980. package/dist/esm/collection/iterable-collection/iterable-collection.js.map +0 -1
  981. package/dist/esm/collection/list-collection/_module.js +0 -2
  982. package/dist/esm/collection/list-collection/_module.js.map +0 -1
  983. package/dist/esm/collection/list-collection/list-collection.js +0 -623
  984. package/dist/esm/collection/list-collection/list-collection.js.map +0 -1
  985. package/dist/esm/contracts/_module.js +0 -4
  986. package/dist/esm/contracts/_module.js.map +0 -1
  987. package/dist/esm/contracts/collection/_module.js +0 -4
  988. package/dist/esm/contracts/collection/_module.js.map +0 -1
  989. package/dist/esm/contracts/collection/_shared.js.map +0 -1
  990. package/dist/esm/contracts/collection/async-collection.contract.js.map +0 -1
  991. package/dist/esm/contracts/collection/collection.contract.js.map +0 -1
  992. package/dist/esm/contracts/serializer/_module.js +0 -2
  993. package/dist/esm/contracts/serializer/_module.js.map +0 -1
  994. package/dist/esm/contracts/serializer/serializer.contract.js.map +0 -1
  995. package/dist/esm/contracts/storage/_module.js +0 -4
  996. package/dist/esm/contracts/storage/_module.js.map +0 -1
  997. package/dist/esm/contracts/storage/_shared.js.map +0 -1
  998. package/dist/esm/contracts/storage/storage-adapter.contract.js.map +0 -1
  999. package/dist/esm/contracts/storage/storage.contract.js.map +0 -1
  1000. package/dist/esm/serializer/_shared/test-utilities/_module.js +0 -2
  1001. package/dist/esm/serializer/_shared/test-utilities/_module.js.map +0 -1
  1002. package/dist/esm/serializer/_shared/test-utilities/serializer.test-suite.js.map +0 -1
  1003. package/dist/esm/serializer/mongodb-serializer/_module.js +0 -2
  1004. package/dist/esm/serializer/mongodb-serializer/_module.js.map +0 -1
  1005. package/dist/esm/serializer/mongodb-serializer/mongodb-serializer.js +0 -32
  1006. package/dist/esm/serializer/mongodb-serializer/mongodb-serializer.js.map +0 -1
  1007. package/dist/esm/serializer/redis-serializer/_module.js +0 -2
  1008. package/dist/esm/serializer/redis-serializer/_module.js.map +0 -1
  1009. package/dist/esm/serializer/redis-serializer/redis-serializer.js +0 -33
  1010. package/dist/esm/serializer/redis-serializer/redis-serializer.js.map +0 -1
  1011. package/dist/esm/serializer/sql-serializer/_module.js +0 -2
  1012. package/dist/esm/serializer/sql-serializer/_module.js.map +0 -1
  1013. package/dist/esm/serializer/sql-serializer/sql-serializer.js +0 -33
  1014. package/dist/esm/serializer/sql-serializer/sql-serializer.js.map +0 -1
  1015. package/dist/esm/serializer/super-json-serializer/_module.js +0 -2
  1016. package/dist/esm/serializer/super-json-serializer/_module.js.map +0 -1
  1017. package/dist/esm/serializer/super-json-serializer/super-json-serializer.js +0 -277
  1018. package/dist/esm/serializer/super-json-serializer/super-json-serializer.js.map +0 -1
  1019. package/dist/esm/storage/_module.js +0 -7
  1020. package/dist/esm/storage/_module.js.map +0 -1
  1021. package/dist/esm/storage/_shared/test-utilities/_module.js +0 -2
  1022. package/dist/esm/storage/_shared/test-utilities/_module.js.map +0 -1
  1023. package/dist/esm/storage/_shared/test-utilities/storage-api.test-suite.js +0 -569
  1024. package/dist/esm/storage/_shared/test-utilities/storage-api.test-suite.js.map +0 -1
  1025. package/dist/esm/storage/_shared/test-utilities/storage-namespace.test-suite.js +0 -238
  1026. package/dist/esm/storage/_shared/test-utilities/storage-namespace.test-suite.js.map +0 -1
  1027. package/dist/esm/storage/_shared/test-utilities/storage-value.test-suite.js +0 -4169
  1028. package/dist/esm/storage/_shared/test-utilities/storage-value.test-suite.js.map +0 -1
  1029. package/dist/esm/storage/_shared/test-utilities/storage.test-suite.js +0 -9
  1030. package/dist/esm/storage/_shared/test-utilities/storage.test-suite.js.map +0 -1
  1031. package/dist/esm/storage/memory-storage-adapter/_module.js +0 -2
  1032. package/dist/esm/storage/memory-storage-adapter/_module.js.map +0 -1
  1033. package/dist/esm/storage/memory-storage-adapter/memory-storage-adapter.js +0 -81
  1034. package/dist/esm/storage/memory-storage-adapter/memory-storage-adapter.js.map +0 -1
  1035. package/dist/esm/storage/mongodb-storage-adapter/_module.js +0 -2
  1036. package/dist/esm/storage/mongodb-storage-adapter/_module.js.map +0 -1
  1037. package/dist/esm/storage/mongodb-storage-adapter/mongodb-storage-adapter.js +0 -196
  1038. package/dist/esm/storage/mongodb-storage-adapter/mongodb-storage-adapter.js.map +0 -1
  1039. package/dist/esm/storage/namespace-storage-adapter.js +0 -52
  1040. package/dist/esm/storage/namespace-storage-adapter.js.map +0 -1
  1041. package/dist/esm/storage/redis-storage-adapter/_module.js +0 -2
  1042. package/dist/esm/storage/redis-storage-adapter/_module.js.map +0 -1
  1043. package/dist/esm/storage/redis-storage-adapter/redis-storage-adapter.js +0 -224
  1044. package/dist/esm/storage/redis-storage-adapter/redis-storage-adapter.js.map +0 -1
  1045. package/dist/esm/storage/sqlite/_module.js +0 -3
  1046. package/dist/esm/storage/sqlite/_module.js.map +0 -1
  1047. package/dist/esm/storage/sqlite/_shared/_module.js +0 -2
  1048. package/dist/esm/storage/sqlite/_shared/_module.js.map +0 -1
  1049. package/dist/esm/storage/sqlite/_shared/base-sqlite-storage-adapter.js +0 -186
  1050. package/dist/esm/storage/sqlite/_shared/base-sqlite-storage-adapter.js.map +0 -1
  1051. package/dist/esm/storage/sqlite/libsql-storage-adapter/_module.js +0 -2
  1052. package/dist/esm/storage/sqlite/libsql-storage-adapter/_module.js.map +0 -1
  1053. package/dist/esm/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js +0 -49
  1054. package/dist/esm/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.js.map +0 -1
  1055. package/dist/esm/storage/sqlite/sqlite-storage-adapter/_module.js +0 -2
  1056. package/dist/esm/storage/sqlite/sqlite-storage-adapter/_module.js.map +0 -1
  1057. package/dist/esm/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js +0 -48
  1058. package/dist/esm/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.js.map +0 -1
  1059. package/dist/esm/storage/storage.js +0 -213
  1060. package/dist/esm/storage/storage.js.map +0 -1
  1061. package/dist/types/async/_module.d.ts +0 -11
  1062. package/dist/types/async/abortable/_module.d.ts +0 -1
  1063. package/dist/types/async/abortable/abortable.d.ts +0 -39
  1064. package/dist/types/async/abortable-iterable/_module.d.ts +0 -1
  1065. package/dist/types/async/backof-policies/_module.d.ts +0 -5
  1066. package/dist/types/async/backof-policies/constant-backoff-policy/_module.d.ts +0 -1
  1067. package/dist/types/async/backof-policies/constant-backoff-policy/constant-backoff-policy.d.ts +0 -28
  1068. package/dist/types/async/backof-policies/exponential-backoff-policy/_module.d.ts +0 -1
  1069. package/dist/types/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.d.ts +0 -36
  1070. package/dist/types/async/backof-policies/linear-backoff-policy/_module.d.ts +0 -1
  1071. package/dist/types/async/backof-policies/linear-backoff-policy/linear-backoff-policy.d.ts +0 -32
  1072. package/dist/types/async/backof-policies/polynomial-backoff-policy/_module.d.ts +0 -1
  1073. package/dist/types/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.d.ts +0 -36
  1074. package/dist/types/async/delay/_module.d.ts +0 -1
  1075. package/dist/types/async/delay/delay.d.ts +0 -38
  1076. package/dist/types/async/delay-iterable/_module.d.ts +0 -1
  1077. package/dist/types/async/delay-iterable/delay-iterable.d.ts +0 -57
  1078. package/dist/types/async/lazy-promise/_module.d.ts +0 -1
  1079. package/dist/types/async/retry/_module.d.ts +0 -1
  1080. package/dist/types/async/retry/retry.d.ts +0 -86
  1081. package/dist/types/async/retry-iterable/_module.d.ts +0 -1
  1082. package/dist/types/async/retry-iterable/retry-iterable.d.ts +0 -86
  1083. package/dist/types/async/timeout/_module.d.ts +0 -1
  1084. package/dist/types/async/timeout/timeout.d.ts +0 -40
  1085. package/dist/types/async/timeout-iterable/_module.d.ts +0 -1
  1086. package/dist/types/async/timeout-iterable/timeout-iterable.d.ts +0 -64
  1087. package/dist/types/collection/_module.d.ts +0 -4
  1088. package/dist/types/collection/async-iterable-collection/_module.d.ts +0 -1
  1089. package/dist/types/collection/async-iterable-collection/_shared/_module.d.ts +0 -33
  1090. package/dist/types/collection/async-iterable-collection/_shared/async-chunk-iterable.d.ts +0 -12
  1091. package/dist/types/collection/async-iterable-collection/_shared/async-chunk-while-iterable.d.ts +0 -12
  1092. package/dist/types/collection/async-iterable-collection/_shared/async-collapse-iterable.d.ts +0 -9
  1093. package/dist/types/collection/async-iterable-collection/_shared/async-count-by-iterable.d.ts +0 -11
  1094. package/dist/types/collection/async-iterable-collection/_shared/async-cross-join-iterable.d.ts +0 -13
  1095. package/dist/types/collection/async-iterable-collection/_shared/async-entries-iterable.d.ts +0 -10
  1096. package/dist/types/collection/async-iterable-collection/_shared/async-filter-iterable.d.ts +0 -10
  1097. package/dist/types/collection/async-iterable-collection/_shared/async-flat-map-iterable.d.ts +0 -10
  1098. package/dist/types/collection/async-iterable-collection/_shared/async-group-by-iterable.d.ts +0 -12
  1099. package/dist/types/collection/async-iterable-collection/_shared/async-insert-after-iterable.d.ts +0 -12
  1100. package/dist/types/collection/async-iterable-collection/_shared/async-insert-before-iterable.d.ts +0 -12
  1101. package/dist/types/collection/async-iterable-collection/_shared/async-map-iterable.d.ts +0 -10
  1102. package/dist/types/collection/async-iterable-collection/_shared/async-merge-iterable.d.ts +0 -10
  1103. package/dist/types/collection/async-iterable-collection/_shared/async-pad-end-iterable.d.ts +0 -13
  1104. package/dist/types/collection/async-iterable-collection/_shared/async-pad-start-iterable.d.ts +0 -13
  1105. package/dist/types/collection/async-iterable-collection/_shared/async-partion-iterable.d.ts +0 -12
  1106. package/dist/types/collection/async-iterable-collection/_shared/async-repeat-iterable.d.ts +0 -12
  1107. package/dist/types/collection/async-iterable-collection/_shared/async-reverse-iterable.d.ts +0 -12
  1108. package/dist/types/collection/async-iterable-collection/_shared/async-shuffle-iterable.d.ts +0 -10
  1109. package/dist/types/collection/async-iterable-collection/_shared/async-skip-iterable.d.ts +0 -10
  1110. package/dist/types/collection/async-iterable-collection/_shared/async-skip-until-iterable.d.ts +0 -10
  1111. package/dist/types/collection/async-iterable-collection/_shared/async-slice-iterable.d.ts +0 -11
  1112. package/dist/types/collection/async-iterable-collection/_shared/async-sliding-iterable.d.ts +0 -11
  1113. package/dist/types/collection/async-iterable-collection/_shared/async-sort-iterable.d.ts +0 -10
  1114. package/dist/types/collection/async-iterable-collection/_shared/async-split-iterable.d.ts +0 -12
  1115. package/dist/types/collection/async-iterable-collection/_shared/async-take-iterable.d.ts +0 -10
  1116. package/dist/types/collection/async-iterable-collection/_shared/async-take-until-iterable.d.ts +0 -10
  1117. package/dist/types/collection/async-iterable-collection/_shared/async-tap-iterable.d.ts +0 -10
  1118. package/dist/types/collection/async-iterable-collection/_shared/async-unique-iterable.d.ts +0 -10
  1119. package/dist/types/collection/async-iterable-collection/_shared/async-update-iterable.d.ts +0 -11
  1120. package/dist/types/collection/async-iterable-collection/_shared/async-when-iterable.d.ts +0 -11
  1121. package/dist/types/collection/async-iterable-collection/_shared/async-zip-iterable.d.ts +0 -11
  1122. package/dist/types/collection/async-iterable-collection/async-iterable-collection.d.ts +0 -105
  1123. package/dist/types/collection/iterable-collection/_module.d.ts +0 -1
  1124. package/dist/types/collection/iterable-collection/_shared/_module.d.ts +0 -32
  1125. package/dist/types/collection/iterable-collection/_shared/chunk-iterable.d.ts +0 -11
  1126. package/dist/types/collection/iterable-collection/_shared/chunk-while-iterable.d.ts +0 -11
  1127. package/dist/types/collection/iterable-collection/_shared/collapse-iterable.d.ts +0 -9
  1128. package/dist/types/collection/iterable-collection/_shared/count-by-iterable.d.ts +0 -11
  1129. package/dist/types/collection/iterable-collection/_shared/cross-join-iterable.d.ts +0 -8
  1130. package/dist/types/collection/iterable-collection/_shared/entries-iterable.d.ts +0 -9
  1131. package/dist/types/collection/iterable-collection/_shared/filter-iterable.d.ts +0 -10
  1132. package/dist/types/collection/iterable-collection/_shared/flat-map-iterable.d.ts +0 -10
  1133. package/dist/types/collection/iterable-collection/_shared/group-by-iterable.d.ts +0 -12
  1134. package/dist/types/collection/iterable-collection/_shared/insert-after-iterable.d.ts +0 -11
  1135. package/dist/types/collection/iterable-collection/_shared/insert-before-iterable.d.ts +0 -11
  1136. package/dist/types/collection/iterable-collection/_shared/map-iterable.d.ts +0 -10
  1137. package/dist/types/collection/iterable-collection/_shared/pad-end-iterable.d.ts +0 -12
  1138. package/dist/types/collection/iterable-collection/_shared/pad-start-iterable.d.ts +0 -12
  1139. package/dist/types/collection/iterable-collection/_shared/partion-iterable.d.ts +0 -11
  1140. package/dist/types/collection/iterable-collection/_shared/repeat-iterable.d.ts +0 -11
  1141. package/dist/types/collection/iterable-collection/_shared/reverse-iterable.d.ts +0 -11
  1142. package/dist/types/collection/iterable-collection/_shared/skip-iterable.d.ts +0 -10
  1143. package/dist/types/collection/iterable-collection/_shared/skip-until-iterable.d.ts +0 -10
  1144. package/dist/types/collection/iterable-collection/_shared/slice-iterable.d.ts +0 -11
  1145. package/dist/types/collection/iterable-collection/_shared/sliding-iterable.d.ts +0 -11
  1146. package/dist/types/collection/iterable-collection/_shared/sort-iterable.d.ts +0 -10
  1147. package/dist/types/collection/iterable-collection/_shared/split-iterable.d.ts +0 -11
  1148. package/dist/types/collection/iterable-collection/_shared/take-iterable.d.ts +0 -10
  1149. package/dist/types/collection/iterable-collection/_shared/take-until-iterable.d.ts +0 -10
  1150. package/dist/types/collection/iterable-collection/_shared/tap-iterable.d.ts +0 -10
  1151. package/dist/types/collection/iterable-collection/_shared/unique-iterable.d.ts +0 -10
  1152. package/dist/types/collection/iterable-collection/_shared/update-iterable.d.ts +0 -11
  1153. package/dist/types/collection/iterable-collection/_shared/when-iterable.d.ts +0 -11
  1154. package/dist/types/collection/iterable-collection/_shared/zip-iterable.d.ts +0 -10
  1155. package/dist/types/collection/iterable-collection/iterable-collection.d.ts +0 -100
  1156. package/dist/types/collection/list-collection/_module.d.ts +0 -1
  1157. package/dist/types/collection/list-collection/list-collection.d.ts +0 -97
  1158. package/dist/types/contracts/_module.d.ts +0 -3
  1159. package/dist/types/contracts/collection/_module.d.ts +0 -3
  1160. package/dist/types/contracts/collection/async-collection.contract.d.ts +0 -1309
  1161. package/dist/types/contracts/collection/collection.contract.d.ts +0 -1269
  1162. package/dist/types/contracts/serializer/_module.d.ts +0 -1
  1163. package/dist/types/contracts/storage/_module.d.ts +0 -3
  1164. package/dist/types/contracts/storage/storage-adapter.contract.d.ts +0 -53
  1165. package/dist/types/contracts/storage/storage.contract.d.ts +0 -148
  1166. package/dist/types/serializer/_shared/test-utilities/_module.d.ts +0 -1
  1167. package/dist/types/serializer/_shared/test-utilities/serializer.test-suite.d.ts +0 -18
  1168. package/dist/types/serializer/mongodb-serializer/_module.d.ts +0 -1
  1169. package/dist/types/serializer/mongodb-serializer/mongodb-serializer.d.ts +0 -13
  1170. package/dist/types/serializer/redis-serializer/_module.d.ts +0 -1
  1171. package/dist/types/serializer/redis-serializer/redis-serializer.d.ts +0 -13
  1172. package/dist/types/serializer/sql-serializer/_module.d.ts +0 -1
  1173. package/dist/types/serializer/sql-serializer/sql-serializer.d.ts +0 -13
  1174. package/dist/types/serializer/super-json-serializer/_module.d.ts +0 -1
  1175. package/dist/types/serializer/super-json-serializer/super-json-serializer.d.ts +0 -37
  1176. package/dist/types/storage/_module.d.ts +0 -6
  1177. package/dist/types/storage/_shared/test-utilities/_module.d.ts +0 -1
  1178. package/dist/types/storage/_shared/test-utilities/storage-api.test-suite.d.ts +0 -20
  1179. package/dist/types/storage/_shared/test-utilities/storage-namespace.test-suite.d.ts +0 -20
  1180. package/dist/types/storage/_shared/test-utilities/storage-value.test-suite.d.ts +0 -20
  1181. package/dist/types/storage/_shared/test-utilities/storage.test-suite.d.ts +0 -20
  1182. package/dist/types/storage/memory-storage-adapter/_module.d.ts +0 -1
  1183. package/dist/types/storage/memory-storage-adapter/memory-storage-adapter.d.ts +0 -18
  1184. package/dist/types/storage/mongodb-storage-adapter/_module.d.ts +0 -1
  1185. package/dist/types/storage/mongodb-storage-adapter/mongodb-storage-adapter.d.ts +0 -43
  1186. package/dist/types/storage/namespace-storage-adapter.d.ts +0 -25
  1187. package/dist/types/storage/redis-storage-adapter/_module.d.ts +0 -1
  1188. package/dist/types/storage/redis-storage-adapter/redis-storage-adapter.d.ts +0 -38
  1189. package/dist/types/storage/sqlite/_module.d.ts +0 -2
  1190. package/dist/types/storage/sqlite/_shared/_module.d.ts +0 -1
  1191. package/dist/types/storage/sqlite/_shared/base-sqlite-storage-adapter.d.ts +0 -39
  1192. package/dist/types/storage/sqlite/libsql-storage-adapter/_module.d.ts +0 -1
  1193. package/dist/types/storage/sqlite/libsql-storage-adapter/libsql-storage-adapter.d.ts +0 -30
  1194. package/dist/types/storage/sqlite/sqlite-storage-adapter/_module.d.ts +0 -1
  1195. package/dist/types/storage/sqlite/sqlite-storage-adapter/sqlite-storage-adapter.d.ts +0 -30
  1196. package/dist/types/storage/storage.d.ts +0 -39
  1197. /package/dist/cjs/{contracts/collection → collection/contracts}/_shared.js +0 -0
  1198. /package/dist/cjs/{contracts/collection → collection/contracts}/async-collection.contract.js +0 -0
  1199. /package/dist/cjs/{contracts/collection → collection/contracts}/collection.contract.js +0 -0
  1200. /package/dist/cjs/collection/{_shared.js → implementations/_shared.js} +0 -0
  1201. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-iterable.js +0 -0
  1202. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-while-iterable.js +0 -0
  1203. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-count-by-iterable.js +0 -0
  1204. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-entries-iterable.js +0 -0
  1205. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-error-handler-iterable.js +0 -0
  1206. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-filter-iterable.js +0 -0
  1207. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-flat-map-iterable.js +0 -0
  1208. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-group-by-iterable.js +0 -0
  1209. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-after-iterable.js +0 -0
  1210. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-before-iterable.js +0 -0
  1211. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-map-iterable.js +0 -0
  1212. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-merge-iterable.js +0 -0
  1213. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-end-iterable.js +0 -0
  1214. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-start-iterable.js +0 -0
  1215. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-partion-iterable.js +0 -0
  1216. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-repeat-iterable.js +0 -0
  1217. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-reverse-iterable.js +0 -0
  1218. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-shuffle-iterable.js +0 -0
  1219. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-iterable.js +0 -0
  1220. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-until-iterable.js +0 -0
  1221. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-slice-iterable.js +0 -0
  1222. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sliding-iterable.js +0 -0
  1223. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sort-iterable.js +0 -0
  1224. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-split-iterable.js +0 -0
  1225. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-iterable.js +0 -0
  1226. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-until-iterable.js +0 -0
  1227. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-tap-iterable.js +0 -0
  1228. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-unique-iterable.js +0 -0
  1229. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-update-iterable.js +0 -0
  1230. /package/dist/cjs/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-when-iterable.js +0 -0
  1231. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-iterable.js +0 -0
  1232. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-while-iterable.js +0 -0
  1233. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/count-by-iterable.js +0 -0
  1234. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/entries-iterable.js +0 -0
  1235. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/filter-iterable.js +0 -0
  1236. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/flat-map-iterable.js +0 -0
  1237. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/group-by-iterable.js +0 -0
  1238. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-after-iterable.js +0 -0
  1239. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-before-iterable.js +0 -0
  1240. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/map-iterable.js +0 -0
  1241. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/merge-iterable.js +0 -0
  1242. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-end-iterable.js +0 -0
  1243. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-start-iterable.js +0 -0
  1244. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/partion-iterable.js +0 -0
  1245. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/repeat-iterable.js +0 -0
  1246. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/reverse-iterable.js +0 -0
  1247. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/shuffle-iterable.js +0 -0
  1248. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-iterable.js +0 -0
  1249. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-until-iterable.js +0 -0
  1250. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/slice-iterable.js +0 -0
  1251. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/sliding-iterable.js +0 -0
  1252. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/sort-iterable.js +0 -0
  1253. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/split-iterable.js +0 -0
  1254. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-iterable.js +0 -0
  1255. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-until-iterable.js +0 -0
  1256. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/tap-iterable.js +0 -0
  1257. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/unique-iterable.js +0 -0
  1258. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/update-iterable.js +0 -0
  1259. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/when-iterable.js +0 -0
  1260. /package/dist/cjs/collection/{iterable-collection → implementations/iterable-collection}/_shared/zip-iterable.js +0 -0
  1261. /package/dist/cjs/{contracts/serializer → serializer/contracts}/serializer.contract.js +0 -0
  1262. /package/dist/cjs/serializer/{_shared → implementations/_shared}/test-utilities/serializer.test-suite.js +0 -0
  1263. /package/dist/cjs/{contracts/storage → storage/contracts}/_shared.js +0 -0
  1264. /package/dist/cjs/{contracts/storage → storage/contracts}/storage-adapter.contract.js +0 -0
  1265. /package/dist/cjs/{contracts/storage → storage/contracts}/storage.contract.js +0 -0
  1266. /package/dist/cjs/{async → utilities/async}/_shared.js +0 -0
  1267. /package/dist/cjs/{async → utilities/async}/backof-policies/_shared.js +0 -0
  1268. /package/dist/cjs/{async → utilities/async}/lazy-promise/lazy-promise.js +0 -0
  1269. /package/dist/esm/{contracts/collection → collection/contracts}/_shared.js +0 -0
  1270. /package/dist/esm/{contracts/collection → collection/contracts}/async-collection.contract.js +0 -0
  1271. /package/dist/esm/{contracts/collection → collection/contracts}/collection.contract.js +0 -0
  1272. /package/dist/esm/collection/{_shared.js → implementations/_shared.js} +0 -0
  1273. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-iterable.js +0 -0
  1274. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-chunk-while-iterable.js +0 -0
  1275. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-count-by-iterable.js +0 -0
  1276. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-entries-iterable.js +0 -0
  1277. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-error-handler-iterable.js +0 -0
  1278. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-filter-iterable.js +0 -0
  1279. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-flat-map-iterable.js +0 -0
  1280. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-group-by-iterable.js +0 -0
  1281. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-after-iterable.js +0 -0
  1282. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-insert-before-iterable.js +0 -0
  1283. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-map-iterable.js +0 -0
  1284. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-merge-iterable.js +0 -0
  1285. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-end-iterable.js +0 -0
  1286. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-pad-start-iterable.js +0 -0
  1287. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-partion-iterable.js +0 -0
  1288. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-repeat-iterable.js +0 -0
  1289. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-reverse-iterable.js +0 -0
  1290. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-shuffle-iterable.js +0 -0
  1291. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-iterable.js +0 -0
  1292. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-skip-until-iterable.js +0 -0
  1293. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-slice-iterable.js +0 -0
  1294. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sliding-iterable.js +0 -0
  1295. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-sort-iterable.js +0 -0
  1296. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-split-iterable.js +0 -0
  1297. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-iterable.js +0 -0
  1298. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-take-until-iterable.js +0 -0
  1299. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-tap-iterable.js +0 -0
  1300. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-unique-iterable.js +0 -0
  1301. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-update-iterable.js +0 -0
  1302. /package/dist/esm/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-when-iterable.js +0 -0
  1303. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-iterable.js +0 -0
  1304. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/chunk-while-iterable.js +0 -0
  1305. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/count-by-iterable.js +0 -0
  1306. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/entries-iterable.js +0 -0
  1307. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/filter-iterable.js +0 -0
  1308. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/flat-map-iterable.js +0 -0
  1309. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/group-by-iterable.js +0 -0
  1310. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-after-iterable.js +0 -0
  1311. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/insert-before-iterable.js +0 -0
  1312. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/map-iterable.js +0 -0
  1313. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/merge-iterable.js +0 -0
  1314. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-end-iterable.js +0 -0
  1315. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/pad-start-iterable.js +0 -0
  1316. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/partion-iterable.js +0 -0
  1317. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/repeat-iterable.js +0 -0
  1318. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/reverse-iterable.js +0 -0
  1319. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/shuffle-iterable.js +0 -0
  1320. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-iterable.js +0 -0
  1321. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/skip-until-iterable.js +0 -0
  1322. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/slice-iterable.js +0 -0
  1323. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/sliding-iterable.js +0 -0
  1324. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/sort-iterable.js +0 -0
  1325. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/split-iterable.js +0 -0
  1326. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-iterable.js +0 -0
  1327. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/take-until-iterable.js +0 -0
  1328. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/tap-iterable.js +0 -0
  1329. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/unique-iterable.js +0 -0
  1330. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/update-iterable.js +0 -0
  1331. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/when-iterable.js +0 -0
  1332. /package/dist/esm/collection/{iterable-collection → implementations/iterable-collection}/_shared/zip-iterable.js +0 -0
  1333. /package/dist/esm/{contracts/serializer → serializer/contracts}/serializer.contract.js +0 -0
  1334. /package/dist/esm/serializer/{_shared → implementations/_shared}/test-utilities/serializer.test-suite.js +0 -0
  1335. /package/dist/esm/{contracts/storage → storage/contracts}/_shared.js +0 -0
  1336. /package/dist/esm/{contracts/storage → storage/contracts}/storage-adapter.contract.js +0 -0
  1337. /package/dist/esm/{contracts/storage → storage/contracts}/storage.contract.js +0 -0
  1338. /package/dist/esm/{async → utilities/async}/_shared.js +0 -0
  1339. /package/dist/esm/{async → utilities/async}/backof-policies/_shared.js +0 -0
  1340. /package/dist/esm/{async → utilities/async}/lazy-promise/lazy-promise.js +0 -0
  1341. /package/dist/types/{contracts/collection → collection/contracts}/_shared.d.ts +0 -0
  1342. /package/dist/types/collection/{_shared.d.ts → implementations/_shared.d.ts} +0 -0
  1343. /package/dist/types/collection/{async-iterable-collection → implementations/async-iterable-collection}/_shared/async-error-handler-iterable.d.ts +0 -0
  1344. /package/dist/types/collection/{iterable-collection → implementations/iterable-collection}/_shared/merge-iterable.d.ts +0 -0
  1345. /package/dist/types/collection/{iterable-collection → implementations/iterable-collection}/_shared/shuffle-iterable.d.ts +0 -0
  1346. /package/dist/types/{contracts/serializer → serializer/contracts}/serializer.contract.d.ts +0 -0
  1347. /package/dist/types/{contracts/storage → storage/contracts}/_shared.d.ts +0 -0
  1348. /package/dist/types/{async → utilities/async}/_shared.d.ts +0 -0
  1349. /package/dist/types/{async → utilities/async}/backof-policies/_shared.d.ts +0 -0
  1350. /package/dist/types/{async → utilities/async}/lazy-promise/lazy-promise.d.ts +0 -0
  1351. /package/dist/types/{async → utilities/async-iterable}/abortable-iterable/abortable-iterable.d.ts +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../src/serializer/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8EAA4D;AAC5D,0EAAwD;AACxD,wEAAsD;AACtD,sEAAoD;AACpD,6EAA2D"}
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../src/serializer/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8FAA4E;AAC5E,0FAAwE;AACxE,wFAAsE;AACtE,sFAAoE;AACpE,6FAA2E"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../serializer/contracts/serializer.contract"), exports);
18
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/serializer/contracts/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6EAA2D"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializer.contract.js","sourceRoot":"","sources":["../../../../src/serializer/contracts/serializer.contract.ts"],"names":[],"mappings":";;;AAOA,MAAa,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;AALD,0CAKC;AAKD,MAAa,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;AALD,gDAKC;AAKD,MAAa,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;AALD,oDAKC"}
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../serializer/implementations/_shared/test-utilities/_module"), exports);
18
+ __exportStar(require("../../serializer/implementations/mongodb-serializer/_module"), exports);
19
+ __exportStar(require("../../serializer/implementations/redis-serializer/_module"), exports);
20
+ __exportStar(require("../../serializer/implementations/sql-serializer/_module"), exports);
21
+ __exportStar(require("../../serializer/implementations/super-json-serializer/_module"), exports);
22
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/serializer/implementations/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8FAA4E;AAC5E,0FAAwE;AACxE,wFAAsE;AACtE,sFAAoE;AACpE,6FAA2E"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../../../serializer/implementations/_shared/test-utilities/serializer.test-suite"), exports);
18
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../../src/serializer/implementations/_shared/test-utilities/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4GAA0F"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializer.test-suite.js","sourceRoot":"","sources":["../../../../../../src/serializer/implementations/_shared/test-utilities/serializer.test-suite.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../../serializer/implementations/mongodb-serializer/mongodb-serializer"), exports);
18
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/serializer/implementations/mongodb-serializer/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qGAAmF"}
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MongodbSerializer = void 0;
4
+ const _module_1 = require("../../../serializer/contracts/_module");
5
+ class MongodbSerializer {
6
+ serializer;
7
+ constructor(serializer) {
8
+ this.serializer = serializer;
9
+ }
10
+ async serialize(value) {
11
+ try {
12
+ if (typeof value === "number" &&
13
+ !Number.isNaN(value) &&
14
+ Number.isFinite(value)) {
15
+ return value;
16
+ }
17
+ return await this.serializer.serialize(value);
18
+ }
19
+ catch (error) {
20
+ throw new _module_1.SerializationError(`Serialization error "${String(error)}" occured`, error);
21
+ }
22
+ }
23
+ async deserialize(value) {
24
+ try {
25
+ if (typeof value === "number") {
26
+ return value;
27
+ }
28
+ return await this.serializer.deserialize(value);
29
+ }
30
+ catch (error) {
31
+ throw new _module_1.DeserializationError(`Serialization error "${String(error)}" occured`, error);
32
+ }
33
+ }
34
+ }
35
+ exports.MongodbSerializer = MongodbSerializer;
36
+ //# sourceMappingURL=mongodb-serializer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mongodb-serializer.js","sourceRoot":"","sources":["../../../../../src/serializer/implementations/mongodb-serializer/mongodb-serializer.ts"],"names":[],"mappings":";;;AAIA,4DAIwC;AAKxC,MAAa,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,4BAAkB,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,8BAAoB,CAC1B,wBAAwB,MAAM,CAAC,KAAK,CAAC,WAAW,EAChD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;CACJ;AAlCD,8CAkCC"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../../serializer/implementations/redis-serializer/redis-serializer"), exports);
18
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/serializer/implementations/redis-serializer/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iGAA+E"}
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RedisSerializer = void 0;
4
+ const _module_1 = require("../../../serializer/contracts/_module");
5
+ class RedisSerializer {
6
+ serializer;
7
+ constructor(serializer) {
8
+ this.serializer = serializer;
9
+ }
10
+ async serialize(value) {
11
+ try {
12
+ if (typeof value === "number" &&
13
+ !Number.isNaN(value) &&
14
+ isFinite(value)) {
15
+ return String(value);
16
+ }
17
+ return await this.serializer.serialize(value);
18
+ }
19
+ catch (error) {
20
+ throw new _module_1.SerializationError(`Serialization error "${String(error)}" occured`, error);
21
+ }
22
+ }
23
+ async deserialize(value) {
24
+ try {
25
+ const isNumberRegex = /^(-?([0-9]+)(\.[0-5]+)?)$/g;
26
+ if (isNumberRegex.test(value)) {
27
+ return Number(value);
28
+ }
29
+ return await this.serializer.deserialize(value);
30
+ }
31
+ catch (error) {
32
+ throw new _module_1.DeserializationError(`Deserialization error "${String(error)}" occured`, error);
33
+ }
34
+ }
35
+ }
36
+ exports.RedisSerializer = RedisSerializer;
37
+ //# sourceMappingURL=redis-serializer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redis-serializer.js","sourceRoot":"","sources":["../../../../../src/serializer/implementations/redis-serializer/redis-serializer.ts"],"names":[],"mappings":";;;AAGA,4DAIwC;AAKxC,MAAa,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,4BAAkB,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,8BAAoB,CAC1B,0BAA0B,MAAM,CAAC,KAAK,CAAC,WAAW,EAClD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;CACJ;AAlCD,0CAkCC"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../../serializer/implementations/sql-serializer/sql-serializer"), exports);
18
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/serializer/implementations/sql-serializer/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6FAA2E"}
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SqlSerializer = void 0;
4
+ const _module_1 = require("../../../serializer/contracts/_module");
5
+ class SqlSerializer {
6
+ serializer;
7
+ constructor(serializer) {
8
+ this.serializer = serializer;
9
+ }
10
+ async serialize(value) {
11
+ try {
12
+ if (typeof value === "number" &&
13
+ !Number.isNaN(value) &&
14
+ isFinite(value)) {
15
+ return String(value);
16
+ }
17
+ return await this.serializer.serialize(value);
18
+ }
19
+ catch (error) {
20
+ throw new _module_1.SerializationError(`Serialization error "${String(error)}" occured`, error);
21
+ }
22
+ }
23
+ async deserialize(value) {
24
+ try {
25
+ const isNumberRegex = /^(-?([0-9]+)(\.[0-5]+)?)$/g;
26
+ if (isNumberRegex.test(value)) {
27
+ return Number(value);
28
+ }
29
+ return await this.serializer.deserialize(value);
30
+ }
31
+ catch (error) {
32
+ throw new _module_1.DeserializationError(`Deserialization error "${String(error)}" occured`, error);
33
+ }
34
+ }
35
+ }
36
+ exports.SqlSerializer = SqlSerializer;
37
+ //# sourceMappingURL=sql-serializer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sql-serializer.js","sourceRoot":"","sources":["../../../../../src/serializer/implementations/sql-serializer/sql-serializer.ts"],"names":[],"mappings":";;;AAGA,4DAIwC;AAKxC,MAAa,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,4BAAkB,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,8BAAoB,CAC1B,0BAA0B,MAAM,CAAC,KAAK,CAAC,WAAW,EAClD,KAAK,CACR,CAAC;QACN,CAAC;IACL,CAAC;CACJ;AAlCD,sCAkCC"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("../../../serializer/implementations/super-json-serializer/super-json-serializer"), exports);
18
+ //# sourceMappingURL=_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/serializer/implementations/super-json-serializer/_module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2GAAyF"}
@@ -0,0 +1,304 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.SuperJsonSerializer = void 0;
27
+ const _module_1 = require("../../../serializer/contracts/_module");
28
+ class SuperJsonSerializer {
29
+ superJson = null;
30
+ dedupe;
31
+ registerClass;
32
+ registerSymbol;
33
+ registerCustom;
34
+ constructor({ dedupe = false, registerClass = () => { }, registerSymbol = () => { }, registerCustom = () => { }, } = {}) {
35
+ this.registerClass = registerClass;
36
+ this.registerSymbol = registerSymbol;
37
+ this.registerCustom = registerCustom;
38
+ this.dedupe = dedupe;
39
+ }
40
+ static registerBuffer(superJson) {
41
+ superJson.registerCustom({
42
+ isApplicable(value) {
43
+ return value instanceof Buffer;
44
+ },
45
+ deserialize(serializedValue) {
46
+ const isObject = !Array.isArray(serializedValue) &&
47
+ typeof serializedValue === "object" &&
48
+ serializedValue !== null;
49
+ if (!isObject) {
50
+ throw new _module_1.DeserializationError("Serialized value is not object");
51
+ }
52
+ const { buffer } = serializedValue;
53
+ if (typeof buffer !== "string") {
54
+ throw new _module_1.DeserializationError("Serialized value is not a string");
55
+ }
56
+ return Buffer.from(buffer, "base64");
57
+ },
58
+ serialize(deserializedValue) {
59
+ return {
60
+ buffer: deserializedValue.toString("base64"),
61
+ };
62
+ },
63
+ }, Buffer.name);
64
+ }
65
+ static registerUint8Array(superJson) {
66
+ superJson.registerCustom({
67
+ isApplicable(value) {
68
+ return value instanceof Uint8Array;
69
+ },
70
+ deserialize(serializedValue) {
71
+ const isObject = !Array.isArray(serializedValue) &&
72
+ typeof serializedValue === "object" &&
73
+ serializedValue !== null;
74
+ if (!isObject) {
75
+ throw new _module_1.DeserializationError("Serialized value is not object");
76
+ }
77
+ const { buffer } = serializedValue;
78
+ if (typeof buffer !== "string") {
79
+ throw new _module_1.DeserializationError("Serialized value is not a string");
80
+ }
81
+ return new Uint8Array(Buffer.from(buffer, "base64"));
82
+ },
83
+ serialize(deserializedValue) {
84
+ return {
85
+ buffer: Buffer.from(deserializedValue).toString("base64"),
86
+ };
87
+ },
88
+ }, Uint8Array.name);
89
+ }
90
+ static registerInt8Array(superJson) {
91
+ superJson.registerCustom({
92
+ isApplicable(value) {
93
+ return value instanceof Int8Array;
94
+ },
95
+ deserialize(serializedValue) {
96
+ const isObject = !Array.isArray(serializedValue) &&
97
+ typeof serializedValue === "object" &&
98
+ serializedValue !== null;
99
+ if (!isObject) {
100
+ throw new _module_1.DeserializationError("Serialized value is not object");
101
+ }
102
+ const { buffer } = serializedValue;
103
+ if (typeof buffer !== "string") {
104
+ throw new _module_1.DeserializationError("Serialized value is not a string");
105
+ }
106
+ return new Int8Array(Buffer.from(buffer, "base64"));
107
+ },
108
+ serialize(deserializedValue) {
109
+ return {
110
+ buffer: Buffer.from(deserializedValue).toString("base64"),
111
+ };
112
+ },
113
+ }, Int8Array.name);
114
+ }
115
+ static registerUint16Array(superJson) {
116
+ superJson.registerCustom({
117
+ isApplicable(value) {
118
+ return value instanceof Uint16Array;
119
+ },
120
+ deserialize(serializedValue) {
121
+ const isObject = !Array.isArray(serializedValue) &&
122
+ typeof serializedValue === "object" &&
123
+ serializedValue !== null;
124
+ if (!isObject) {
125
+ throw new _module_1.DeserializationError("Serialized value is not object");
126
+ }
127
+ const { buffer } = serializedValue;
128
+ if (typeof buffer !== "string") {
129
+ throw new _module_1.DeserializationError("Serialized value is not a string");
130
+ }
131
+ return new Uint16Array(Buffer.from(buffer, "base64"));
132
+ },
133
+ serialize(deserializedValue) {
134
+ return {
135
+ buffer: Buffer.from(deserializedValue).toString("base64"),
136
+ };
137
+ },
138
+ }, Uint16Array.name);
139
+ }
140
+ static registerInt16Array(superJson) {
141
+ superJson.registerCustom({
142
+ isApplicable(value) {
143
+ return value instanceof Int16Array;
144
+ },
145
+ deserialize(serializedValue) {
146
+ const isObject = !Array.isArray(serializedValue) &&
147
+ typeof serializedValue === "object" &&
148
+ serializedValue !== null;
149
+ if (!isObject) {
150
+ throw new _module_1.DeserializationError("Serialized value is not object");
151
+ }
152
+ const { buffer } = serializedValue;
153
+ if (typeof buffer !== "string") {
154
+ throw new _module_1.DeserializationError("Serialized value is not a string");
155
+ }
156
+ return new Int16Array(Buffer.from(buffer, "base64"));
157
+ },
158
+ serialize(deserializedValue) {
159
+ return {
160
+ buffer: Buffer.from(deserializedValue).toString("base64"),
161
+ };
162
+ },
163
+ }, Int16Array.name);
164
+ }
165
+ static registerUint32Array(superJson) {
166
+ superJson.registerCustom({
167
+ isApplicable(value) {
168
+ return value instanceof Uint32Array;
169
+ },
170
+ deserialize(serializedValue) {
171
+ const isObject = !Array.isArray(serializedValue) &&
172
+ typeof serializedValue === "object" &&
173
+ serializedValue !== null;
174
+ if (!isObject) {
175
+ throw new _module_1.DeserializationError("Serialized value is not object");
176
+ }
177
+ const { buffer } = serializedValue;
178
+ if (typeof buffer !== "string") {
179
+ throw new _module_1.DeserializationError("Serialized value is not a string");
180
+ }
181
+ return new Uint32Array(Buffer.from(buffer, "base64"));
182
+ },
183
+ serialize(deserializedValue) {
184
+ return {
185
+ buffer: Buffer.from(deserializedValue).toString("base64"),
186
+ };
187
+ },
188
+ }, Uint32Array.name);
189
+ }
190
+ static registerInt32Array(superJson) {
191
+ superJson.registerCustom({
192
+ isApplicable(value) {
193
+ return value instanceof Int32Array;
194
+ },
195
+ deserialize(serializedValue) {
196
+ const isObject = !Array.isArray(serializedValue) &&
197
+ typeof serializedValue === "object" &&
198
+ serializedValue !== null;
199
+ if (!isObject) {
200
+ throw new _module_1.DeserializationError("Serialized value is not object");
201
+ }
202
+ const { buffer } = serializedValue;
203
+ if (typeof buffer !== "string") {
204
+ throw new _module_1.DeserializationError("Serialized value is not a string");
205
+ }
206
+ return new Int32Array(Buffer.from(buffer, "base64"));
207
+ },
208
+ serialize(deserializedValue) {
209
+ return {
210
+ buffer: Buffer.from(deserializedValue).toString("base64"),
211
+ };
212
+ },
213
+ }, Int32Array.name);
214
+ }
215
+ static registerFloat32Array(superJson) {
216
+ superJson.registerCustom({
217
+ isApplicable(value) {
218
+ return value instanceof Float32Array;
219
+ },
220
+ deserialize(serializedValue) {
221
+ const isObject = !Array.isArray(serializedValue) &&
222
+ typeof serializedValue === "object" &&
223
+ serializedValue !== null;
224
+ if (!isObject) {
225
+ throw new _module_1.DeserializationError("Serialized value is not object");
226
+ }
227
+ const { buffer } = serializedValue;
228
+ if (typeof buffer !== "string") {
229
+ throw new _module_1.DeserializationError("Serialized value is not a string");
230
+ }
231
+ return new Float32Array(Buffer.from(buffer, "base64"));
232
+ },
233
+ serialize(deserializedValue) {
234
+ return {
235
+ buffer: Buffer.from(deserializedValue).toString("base64"),
236
+ };
237
+ },
238
+ }, Float32Array.name);
239
+ }
240
+ static registerFloat64Array(superJson) {
241
+ superJson.registerCustom({
242
+ isApplicable(value) {
243
+ return value instanceof Float64Array;
244
+ },
245
+ deserialize(serializedValue) {
246
+ const isObject = !Array.isArray(serializedValue) &&
247
+ typeof serializedValue === "object" &&
248
+ serializedValue !== null;
249
+ if (!isObject) {
250
+ throw new _module_1.DeserializationError("Serialized value is not object");
251
+ }
252
+ const { buffer } = serializedValue;
253
+ if (typeof buffer !== "string") {
254
+ throw new _module_1.DeserializationError("Serialized value is not a string");
255
+ }
256
+ return new Float64Array(Buffer.from(buffer, "base64"));
257
+ },
258
+ serialize(deserializedValue) {
259
+ return {
260
+ buffer: Buffer.from(deserializedValue).toString("base64"),
261
+ };
262
+ },
263
+ }, Float64Array.name);
264
+ }
265
+ async init() {
266
+ const { SuperJSON } = await Promise.resolve().then(() => __importStar(require("superjson")));
267
+ if (this.superJson === null) {
268
+ this.superJson = new SuperJSON({ dedupe: this.dedupe });
269
+ this.registerClass(this.superJson.registerClass.bind(this.superJson));
270
+ this.registerSymbol(this.superJson.registerSymbol.bind(this.superJson));
271
+ this.registerCustom(this.superJson.registerCustom.bind(this.superJson));
272
+ SuperJsonSerializer.registerBuffer(this.superJson);
273
+ SuperJsonSerializer.registerUint8Array(this.superJson);
274
+ SuperJsonSerializer.registerInt8Array(this.superJson);
275
+ SuperJsonSerializer.registerUint16Array(this.superJson);
276
+ SuperJsonSerializer.registerInt16Array(this.superJson);
277
+ SuperJsonSerializer.registerUint32Array(this.superJson);
278
+ SuperJsonSerializer.registerInt32Array(this.superJson);
279
+ SuperJsonSerializer.registerFloat32Array(this.superJson);
280
+ SuperJsonSerializer.registerFloat64Array(this.superJson);
281
+ }
282
+ return this.superJson;
283
+ }
284
+ async serialize(value) {
285
+ try {
286
+ const superJson = await this.init();
287
+ return superJson.stringify(value);
288
+ }
289
+ catch (error) {
290
+ throw new _module_1.SerializationError(`Serialization error "${String(error)}" occured`, error);
291
+ }
292
+ }
293
+ async deserialize(value) {
294
+ try {
295
+ const superJson = await this.init();
296
+ return (await superJson.parse(value));
297
+ }
298
+ catch (error) {
299
+ throw new _module_1.DeserializationError(`Deserialization error "${String(error)}" occured`, error);
300
+ }
301
+ }
302
+ }
303
+ exports.SuperJsonSerializer = SuperJsonSerializer;
304
+ //# sourceMappingURL=super-json-serializer.js.map