@daiso-tech/core 0.22.2 → 0.24.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.
- package/README.md +2 -0
- package/dist/async/_module-exports.d.ts +3 -0
- package/dist/async/_module-exports.js +4 -0
- package/dist/async/_module-exports.js.map +1 -0
- package/dist/async/async.errors.d.ts +45 -0
- package/dist/async/async.errors.js +50 -0
- package/dist/async/async.errors.js.map +1 -0
- package/dist/async/backof-policies/_module.d.ts +5 -0
- package/dist/async/backof-policies/_module.js +6 -0
- package/dist/async/backof-policies/_module.js.map +1 -0
- package/dist/async/backof-policies/_shared.d.ts +14 -0
- package/dist/async/backof-policies/_shared.js +10 -0
- package/dist/async/backof-policies/_shared.js.map +1 -0
- package/dist/async/backof-policies/constant-backoff-policy/_module.d.ts +1 -0
- package/dist/async/backof-policies/constant-backoff-policy/_module.js +2 -0
- package/dist/async/backof-policies/constant-backoff-policy/_module.js.map +1 -0
- package/dist/async/backof-policies/constant-backoff-policy/constant-backoff-policy.d.ts +32 -0
- package/dist/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +25 -0
- package/dist/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +1 -0
- package/dist/async/backof-policies/exponential-backoff-policy/_module.d.ts +1 -0
- package/dist/async/backof-policies/exponential-backoff-policy/_module.js +2 -0
- package/dist/async/backof-policies/exponential-backoff-policy/_module.js.map +1 -0
- package/dist/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.d.ts +40 -0
- package/dist/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +29 -0
- package/dist/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +1 -0
- package/dist/async/backof-policies/linear-backoff-policy/_module.d.ts +1 -0
- package/dist/async/backof-policies/linear-backoff-policy/_module.js +2 -0
- package/dist/async/backof-policies/linear-backoff-policy/_module.js.map +1 -0
- package/dist/async/backof-policies/linear-backoff-policy/linear-backoff-policy.d.ts +36 -0
- package/dist/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +29 -0
- package/dist/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +1 -0
- package/dist/async/backof-policies/polynomial-backoff-policy/_module.d.ts +1 -0
- package/dist/async/backof-policies/polynomial-backoff-policy/_module.js +2 -0
- package/dist/async/backof-policies/polynomial-backoff-policy/_module.js.map +1 -0
- package/dist/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.d.ts +40 -0
- package/dist/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +29 -0
- package/dist/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +1 -0
- package/dist/async/utilities/_module.d.ts +5 -0
- package/dist/async/utilities/_module.js +6 -0
- package/dist/async/utilities/_module.js.map +1 -0
- package/dist/async/utilities/abort/_module.d.ts +2 -0
- package/dist/async/utilities/abort/_module.js +3 -0
- package/dist/async/utilities/abort/_module.js.map +1 -0
- package/dist/async/utilities/abort/abort-and-fail.js +51 -0
- package/dist/async/utilities/abort/abort-and-fail.js.map +1 -0
- package/dist/async/utilities/abort/abort.d.ts +9 -0
- package/dist/async/utilities/abort/abort.js +18 -0
- package/dist/async/utilities/abort/abort.js.map +1 -0
- package/dist/async/utilities/delay/_module.d.ts +1 -0
- package/dist/async/utilities/delay/_module.js +2 -0
- package/dist/async/utilities/delay/_module.js.map +1 -0
- package/dist/async/utilities/delay/delay.d.ts +21 -0
- package/dist/async/utilities/delay/delay.js +45 -0
- package/dist/async/utilities/delay/delay.js.map +1 -0
- package/dist/async/utilities/lazy-promise/_module.d.ts +1 -0
- package/dist/async/utilities/lazy-promise/_module.js +2 -0
- package/dist/async/utilities/lazy-promise/_module.js.map +1 -0
- package/dist/async/utilities/lazy-promise/lazy-promise.d.ts +214 -0
- package/dist/async/utilities/lazy-promise/lazy-promise.js +301 -0
- package/dist/async/utilities/lazy-promise/lazy-promise.js.map +1 -0
- package/dist/async/utilities/retry/_module.d.ts +2 -0
- package/dist/async/utilities/retry/_module.js +3 -0
- package/dist/async/utilities/retry/_module.js.map +1 -0
- package/dist/async/utilities/retry/retry-or-fail.d.ts +27 -0
- package/dist/async/utilities/retry/retry-or-fail.js +39 -0
- package/dist/async/utilities/retry/retry-or-fail.js.map +1 -0
- package/dist/async/utilities/retry/retry.d.ts +10 -0
- package/dist/async/utilities/retry/retry.js +21 -0
- package/dist/async/utilities/retry/retry.js.map +1 -0
- package/dist/async/utilities/timeout/_module.d.ts +2 -0
- package/dist/async/utilities/timeout/_module.js +3 -0
- package/dist/async/utilities/timeout/_module.js.map +1 -0
- package/dist/async/utilities/timeout/timeout-and-fail.d.ts +5 -0
- package/dist/async/utilities/timeout/timeout-and-fail.js +28 -0
- package/dist/async/utilities/timeout/timeout-and-fail.js.map +1 -0
- package/dist/async/utilities/timeout/timeout.d.ts +10 -0
- package/dist/async/utilities/timeout/timeout.js +21 -0
- package/dist/async/utilities/timeout/timeout.js.map +1 -0
- package/dist/cache/contracts/_module-exports.d.ts +5 -0
- package/dist/cache/contracts/_module-exports.js +6 -0
- package/dist/cache/contracts/_module-exports.js.map +1 -0
- package/dist/cache/contracts/cache-adapter.contract.d.ts +56 -0
- package/dist/cache/contracts/cache-adapter.contract.js +5 -0
- package/dist/cache/contracts/cache-adapter.contract.js.map +1 -0
- package/dist/cache/contracts/cache-factory.contract.d.ts +19 -0
- package/dist/cache/contracts/cache-factory.contract.js +9 -0
- package/dist/cache/contracts/cache-factory.contract.js.map +1 -0
- package/dist/cache/contracts/cache.contract.d.ts +156 -0
- package/dist/cache/contracts/cache.contract.js +6 -0
- package/dist/cache/contracts/cache.contract.js.map +1 -0
- package/dist/cache/contracts/cache.errors.d.ts +49 -0
- package/dist/cache/contracts/cache.errors.js +86 -0
- package/dist/cache/contracts/cache.errors.js.map +1 -0
- package/dist/cache/contracts/cache.events.d.ts +117 -0
- package/dist/cache/contracts/cache.events.js +92 -0
- package/dist/cache/contracts/cache.events.js.map +1 -0
- package/dist/cache/implementations/adapters/_module-exports.d.ts +6 -0
- package/dist/cache/implementations/adapters/_module-exports.js +7 -0
- package/dist/cache/implementations/adapters/_module-exports.js.map +1 -0
- package/dist/cache/implementations/adapters/kysely-sqlite-cache-adapter/_module.d.ts +1 -0
- package/dist/cache/implementations/adapters/kysely-sqlite-cache-adapter/_module.js +2 -0
- package/dist/cache/implementations/adapters/kysely-sqlite-cache-adapter/_module.js.map +1 -0
- package/dist/cache/implementations/adapters/kysely-sqlite-cache-adapter/kysely-sqlite-cache-adapter.d.ts +61 -0
- package/dist/cache/implementations/adapters/kysely-sqlite-cache-adapter/kysely-sqlite-cache-adapter.js +318 -0
- package/dist/cache/implementations/adapters/kysely-sqlite-cache-adapter/kysely-sqlite-cache-adapter.js.map +1 -0
- package/dist/cache/implementations/adapters/libsql-cache-adapter/_module.d.ts +1 -0
- package/dist/cache/implementations/adapters/libsql-cache-adapter/_module.js +2 -0
- package/dist/cache/implementations/adapters/libsql-cache-adapter/_module.js.map +1 -0
- package/dist/cache/implementations/adapters/libsql-cache-adapter/libsql-cache-adapter.d.ts +71 -0
- package/dist/cache/implementations/adapters/libsql-cache-adapter/libsql-cache-adapter.js +104 -0
- package/dist/cache/implementations/adapters/libsql-cache-adapter/libsql-cache-adapter.js.map +1 -0
- package/dist/cache/implementations/adapters/memory-cache-adapter/_module.d.ts +1 -0
- package/dist/cache/implementations/adapters/memory-cache-adapter/_module.js +2 -0
- package/dist/cache/implementations/adapters/memory-cache-adapter/_module.js.map +1 -0
- package/dist/cache/implementations/adapters/memory-cache-adapter/memory-cache-adapter.d.ts +58 -0
- package/dist/cache/implementations/adapters/memory-cache-adapter/memory-cache-adapter.js +119 -0
- package/dist/cache/implementations/adapters/memory-cache-adapter/memory-cache-adapter.js.map +1 -0
- package/dist/cache/implementations/adapters/mongodb-cache-adapter/_module.d.ts +1 -0
- package/dist/cache/implementations/adapters/mongodb-cache-adapter/_module.js +2 -0
- package/dist/cache/implementations/adapters/mongodb-cache-adapter/_module.js.map +1 -0
- package/dist/cache/implementations/adapters/mongodb-cache-adapter/mongodb-cache-adapter.d.ts +77 -0
- package/dist/cache/implementations/adapters/mongodb-cache-adapter/mongodb-cache-adapter.js +325 -0
- package/dist/cache/implementations/adapters/mongodb-cache-adapter/mongodb-cache-adapter.js.map +1 -0
- package/dist/cache/implementations/adapters/no-op-cache-adapter/_module.d.ts +1 -0
- package/dist/cache/implementations/adapters/no-op-cache-adapter/_module.js +2 -0
- package/dist/cache/implementations/adapters/no-op-cache-adapter/_module.js.map +1 -0
- package/dist/cache/implementations/adapters/no-op-cache-adapter/no-op-cache-adapter.d.ts +22 -0
- package/dist/cache/implementations/adapters/no-op-cache-adapter/no-op-cache-adapter.js +39 -0
- package/dist/cache/implementations/adapters/no-op-cache-adapter/no-op-cache-adapter.js.map +1 -0
- package/dist/cache/implementations/adapters/redis-cache-adapter/_module.d.ts +1 -0
- package/dist/cache/implementations/adapters/redis-cache-adapter/_module.js +2 -0
- package/dist/cache/implementations/adapters/redis-cache-adapter/_module.js.map +1 -0
- package/dist/cache/implementations/adapters/redis-cache-adapter/redis-cache-adapter.d.ts +65 -0
- package/dist/cache/implementations/adapters/redis-cache-adapter/redis-cache-adapter.js +205 -0
- package/dist/cache/implementations/adapters/redis-cache-adapter/redis-cache-adapter.js.map +1 -0
- package/dist/cache/implementations/adapters/sqlite-cache-adapter/_module.d.ts +1 -0
- package/dist/cache/implementations/adapters/sqlite-cache-adapter/_module.js +2 -0
- package/dist/cache/implementations/adapters/sqlite-cache-adapter/_module.js.map +1 -0
- package/dist/cache/implementations/adapters/sqlite-cache-adapter/sqlite-cache-adapter.d.ts +71 -0
- package/dist/cache/implementations/adapters/sqlite-cache-adapter/sqlite-cache-adapter.js +103 -0
- package/dist/cache/implementations/adapters/sqlite-cache-adapter/sqlite-cache-adapter.js.map +1 -0
- package/dist/cache/implementations/derivables/_module-exports.d.ts +2 -0
- package/dist/cache/implementations/derivables/_module-exports.js +3 -0
- package/dist/cache/implementations/derivables/_module-exports.js.map +1 -0
- package/dist/cache/implementations/derivables/cache/_module.d.ts +1 -0
- package/dist/cache/implementations/derivables/cache/_module.js +2 -0
- package/dist/cache/implementations/derivables/cache/_module.js.map +1 -0
- package/dist/cache/implementations/derivables/cache/cache.d.ts +764 -0
- package/dist/cache/implementations/derivables/cache/cache.js +1226 -0
- package/dist/cache/implementations/derivables/cache/cache.js.map +1 -0
- package/dist/cache/implementations/derivables/cache-factory/_module.d.ts +1 -0
- package/dist/cache/implementations/derivables/cache-factory/_module.js +2 -0
- package/dist/cache/implementations/derivables/cache-factory/_module.js.map +1 -0
- package/dist/cache/implementations/derivables/cache-factory/cache-factory.d.ts +160 -0
- package/dist/cache/implementations/derivables/cache-factory/cache-factory.js +144 -0
- package/dist/cache/implementations/derivables/cache-factory/cache-factory.js.map +1 -0
- package/dist/cache/implementations/test-utilities/_module-exports.d.ts +2 -0
- package/dist/cache/implementations/test-utilities/_module-exports.js +3 -0
- package/dist/cache/implementations/test-utilities/_module-exports.js.map +1 -0
- package/dist/cache/implementations/test-utilities/cache-adapter.test-suite.d.ts +66 -0
- package/dist/cache/implementations/test-utilities/cache-adapter.test-suite.js +302 -0
- package/dist/cache/implementations/test-utilities/cache-adapter.test-suite.js.map +1 -0
- package/dist/cache/implementations/test-utilities/cache.test-suite.d.ts +61 -0
- package/dist/cache/implementations/test-utilities/cache.test-suite.js +1784 -0
- package/dist/cache/implementations/test-utilities/cache.test-suite.js.map +1 -0
- package/dist/collection/contracts/_module-exports.d.ts +4 -0
- package/dist/collection/contracts/_module-exports.js +5 -0
- package/dist/collection/contracts/_module-exports.js.map +1 -0
- package/dist/collection/contracts/_shared.d.ts +141 -0
- package/dist/collection/contracts/_shared.js +5 -0
- package/dist/collection/contracts/_shared.js.map +1 -0
- package/dist/collection/contracts/async-collection.contract.d.ts +2186 -0
- package/dist/collection/contracts/async-collection.contract.js +16 -0
- package/dist/collection/contracts/async-collection.contract.js.map +1 -0
- package/dist/collection/contracts/collection.contract.d.ts +2051 -0
- package/dist/collection/contracts/collection.contract.js +5 -0
- package/dist/collection/contracts/collection.contract.js.map +1 -0
- package/dist/collection/contracts/collection.errors.d.ts +67 -0
- package/dist/collection/contracts/collection.errors.js +116 -0
- package/dist/collection/contracts/collection.errors.js.map +1 -0
- package/dist/collection/implementations/_module-exports.d.ts +4 -0
- package/dist/collection/implementations/_module-exports.js +5 -0
- package/dist/collection/implementations/_module-exports.js.map +1 -0
- package/dist/collection/implementations/_shared.d.ts +39 -0
- package/dist/collection/implementations/_shared.js +79 -0
- package/dist/collection/implementations/_shared.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_module.d.ts +1 -0
- package/dist/collection/implementations/async-iterable-collection/_module.js +2 -0
- package/dist/collection/implementations/async-iterable-collection/_module.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/_module.d.ts +36 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/_module.js +37 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/_module.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.d.ts +15 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js +39 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.d.ts +15 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js +36 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.d.ts +12 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js +26 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js +30 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.d.ts +16 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js +40 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-delay-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-delay-iterable.js +30 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-delay-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.d.ts +12 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js +21 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js +23 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js +21 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.d.ts +18 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js +33 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.d.ts +15 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js +31 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.d.ts +15 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js +31 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-map-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js +21 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.d.ts +12 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js +27 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.d.ts +16 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js +35 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.d.ts +16 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js +35 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.d.ts +15 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js +33 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.d.ts +15 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js +26 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-retry-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-retry-iterable.js +36 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-retry-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.d.ts +15 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js +25 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js +30 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js +22 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js +28 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.d.ts +14 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js +37 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.d.ts +14 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js +32 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js +19 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-split-iterable.d.ts +15 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js +42 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js +22 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-until-abort-iterable.js +39 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-until-abort-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js +24 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-until-timeout-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-until-timeout-iterable.js +52 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-take-until-timeout-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js +20 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js +26 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-update-iterable.d.ts +14 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js +28 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-when-iterable.d.ts +14 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js +25 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.d.ts +13 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js +41 -0
- package/dist/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js.map +1 -0
- package/dist/collection/implementations/async-iterable-collection/async-iterable-collection.d.ts +305 -0
- package/dist/collection/implementations/async-iterable-collection/async-iterable-collection.js +804 -0
- package/dist/collection/implementations/async-iterable-collection/async-iterable-collection.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_module.d.ts +1 -0
- package/dist/collection/implementations/iterable-collection/_module.js +2 -0
- package/dist/collection/implementations/iterable-collection/_module.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/_module.d.ts +32 -0
- package/dist/collection/implementations/iterable-collection/_shared/_module.js +33 -0
- package/dist/collection/implementations/iterable-collection/_shared/_module.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/chunk-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/chunk-iterable.js +38 -0
- package/dist/collection/implementations/iterable-collection/_shared/chunk-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/chunk-while-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js +35 -0
- package/dist/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/collapse-iterable.d.ts +12 -0
- package/dist/collection/implementations/iterable-collection/_shared/collapse-iterable.js +26 -0
- package/dist/collection/implementations/iterable-collection/_shared/collapse-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/count-by-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/count-by-iterable.js +30 -0
- package/dist/collection/implementations/iterable-collection/_shared/count-by-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/cross-join-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/cross-join-iterable.js +40 -0
- package/dist/collection/implementations/iterable-collection/_shared/cross-join-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/entries-iterable.js +20 -0
- package/dist/collection/implementations/iterable-collection/_shared/entries-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/filter-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/filter-iterable.js +23 -0
- package/dist/collection/implementations/iterable-collection/_shared/filter-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/flat-map-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/flat-map-iterable.js +21 -0
- package/dist/collection/implementations/iterable-collection/_shared/flat-map-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/group-by-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/group-by-iterable.js +32 -0
- package/dist/collection/implementations/iterable-collection/_shared/group-by-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/insert-after-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/insert-after-iterable.js +28 -0
- package/dist/collection/implementations/iterable-collection/_shared/insert-after-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/insert-before-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/insert-before-iterable.js +28 -0
- package/dist/collection/implementations/iterable-collection/_shared/insert-before-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/map-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/map-iterable.js +21 -0
- package/dist/collection/implementations/iterable-collection/_shared/map-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/merge-iterable.js +18 -0
- package/dist/collection/implementations/iterable-collection/_shared/merge-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/pad-end-iterable.d.ts +15 -0
- package/dist/collection/implementations/iterable-collection/_shared/pad-end-iterable.js +34 -0
- package/dist/collection/implementations/iterable-collection/_shared/pad-end-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/pad-start-iterable.d.ts +15 -0
- package/dist/collection/implementations/iterable-collection/_shared/pad-start-iterable.js +34 -0
- package/dist/collection/implementations/iterable-collection/_shared/pad-start-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/partion-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/partion-iterable.js +32 -0
- package/dist/collection/implementations/iterable-collection/_shared/partion-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/repeat-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/repeat-iterable.js +25 -0
- package/dist/collection/implementations/iterable-collection/_shared/repeat-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/reverse-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/reverse-iterable.js +24 -0
- package/dist/collection/implementations/iterable-collection/_shared/reverse-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/shuffle-iterable.js +29 -0
- package/dist/collection/implementations/iterable-collection/_shared/shuffle-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/skip-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/skip-iterable.js +22 -0
- package/dist/collection/implementations/iterable-collection/_shared/skip-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/skip-until-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/skip-until-iterable.js +27 -0
- package/dist/collection/implementations/iterable-collection/_shared/skip-until-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/slice-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/slice-iterable.js +37 -0
- package/dist/collection/implementations/iterable-collection/_shared/slice-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/sliding-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/sliding-iterable.js +32 -0
- package/dist/collection/implementations/iterable-collection/_shared/sliding-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/sort-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/sort-iterable.js +19 -0
- package/dist/collection/implementations/iterable-collection/_shared/sort-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/split-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/split-iterable.js +41 -0
- package/dist/collection/implementations/iterable-collection/_shared/split-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/take-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/take-iterable.js +22 -0
- package/dist/collection/implementations/iterable-collection/_shared/take-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/take-until-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/take-until-iterable.js +24 -0
- package/dist/collection/implementations/iterable-collection/_shared/take-until-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/tap-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/tap-iterable.js +20 -0
- package/dist/collection/implementations/iterable-collection/_shared/tap-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/unique-iterable.d.ts +13 -0
- package/dist/collection/implementations/iterable-collection/_shared/unique-iterable.js +26 -0
- package/dist/collection/implementations/iterable-collection/_shared/unique-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/update-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/update-iterable.js +28 -0
- package/dist/collection/implementations/iterable-collection/_shared/update-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/when-iterable.d.ts +14 -0
- package/dist/collection/implementations/iterable-collection/_shared/when-iterable.js +25 -0
- package/dist/collection/implementations/iterable-collection/_shared/when-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/_shared/zip-iterable.js +26 -0
- package/dist/collection/implementations/iterable-collection/_shared/zip-iterable.js.map +1 -0
- package/dist/collection/implementations/iterable-collection/iterable-collection.d.ts +249 -0
- package/dist/collection/implementations/iterable-collection/iterable-collection.js +708 -0
- package/dist/collection/implementations/iterable-collection/iterable-collection.js.map +1 -0
- package/dist/collection/implementations/list-collection/_module.d.ts +1 -0
- package/dist/collection/implementations/list-collection/_module.js +2 -0
- package/dist/collection/implementations/list-collection/_module.js.map +1 -0
- package/dist/collection/implementations/list-collection/list-collection.d.ts +246 -0
- package/dist/collection/implementations/list-collection/list-collection.js +863 -0
- package/dist/collection/implementations/list-collection/list-collection.js.map +1 -0
- package/dist/event-bus/contracts/_module-exports.d.ts +5 -0
- package/dist/event-bus/contracts/_module-exports.js +6 -0
- package/dist/event-bus/contracts/_module-exports.js.map +1 -0
- package/dist/event-bus/contracts/_shared.d.ts +19 -0
- package/dist/event-bus/contracts/_shared.js +15 -0
- package/dist/event-bus/contracts/_shared.js.map +1 -0
- package/dist/event-bus/contracts/event-bus-adapter.contract.d.ts +34 -0
- package/dist/event-bus/contracts/event-bus-adapter.contract.js +5 -0
- package/dist/event-bus/contracts/event-bus-adapter.contract.js.map +1 -0
- package/dist/event-bus/contracts/event-bus-factory.contract.d.ts +20 -0
- package/dist/event-bus/contracts/event-bus-factory.contract.js +9 -0
- package/dist/event-bus/contracts/event-bus-factory.contract.js.map +1 -0
- package/dist/event-bus/contracts/event-bus.contract.d.ts +122 -0
- package/dist/event-bus/contracts/event-bus.contract.js +11 -0
- package/dist/event-bus/contracts/event-bus.contract.js.map +1 -0
- package/dist/event-bus/contracts/event-bus.errors.d.ts +57 -0
- package/dist/event-bus/contracts/event-bus.errors.js +98 -0
- package/dist/event-bus/contracts/event-bus.errors.js.map +1 -0
- package/dist/event-bus/implementations/adapters/_module-exports.d.ts +3 -0
- package/dist/event-bus/implementations/adapters/_module-exports.js +4 -0
- package/dist/event-bus/implementations/adapters/_module-exports.js.map +1 -0
- package/dist/event-bus/implementations/adapters/memory-event-bus-adapter/_module.d.ts +1 -0
- package/dist/event-bus/implementations/adapters/memory-event-bus-adapter/_module.js +2 -0
- package/dist/event-bus/implementations/adapters/memory-event-bus-adapter/_module.js.map +1 -0
- package/dist/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.d.ts +55 -0
- package/dist/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.js +71 -0
- package/dist/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.js.map +1 -0
- package/dist/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.d.ts +1 -0
- package/dist/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.js +2 -0
- package/dist/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.js.map +1 -0
- package/dist/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.d.ts +18 -0
- package/dist/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.js +27 -0
- package/dist/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.js.map +1 -0
- package/dist/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.d.ts +1 -0
- package/dist/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js +2 -0
- package/dist/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js.map +1 -0
- package/dist/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.d.ts +58 -0
- package/dist/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.js +82 -0
- package/dist/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.js.map +1 -0
- package/dist/event-bus/implementations/derivables/_module-exports.d.ts +2 -0
- package/dist/event-bus/implementations/derivables/_module-exports.js +3 -0
- package/dist/event-bus/implementations/derivables/_module-exports.js.map +1 -0
- package/dist/event-bus/implementations/derivables/event-bus/_module.d.ts +1 -0
- package/dist/event-bus/implementations/derivables/event-bus/_module.js +2 -0
- package/dist/event-bus/implementations/derivables/event-bus/_module.js.map +1 -0
- package/dist/event-bus/implementations/derivables/event-bus/event-bus.d.ts +305 -0
- package/dist/event-bus/implementations/derivables/event-bus/event-bus.js +385 -0
- package/dist/event-bus/implementations/derivables/event-bus/event-bus.js.map +1 -0
- package/dist/event-bus/implementations/derivables/event-bus-factory/_module.d.ts +1 -0
- package/dist/event-bus/implementations/derivables/event-bus-factory/_module.js +2 -0
- package/dist/event-bus/implementations/derivables/event-bus-factory/_module.js.map +1 -0
- package/dist/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.d.ts +139 -0
- package/dist/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.js +127 -0
- package/dist/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.js.map +1 -0
- package/dist/event-bus/implementations/test-utilities/_module-exports.d.ts +2 -0
- package/dist/event-bus/implementations/test-utilities/_module-exports.js +3 -0
- package/dist/event-bus/implementations/test-utilities/_module-exports.js.map +1 -0
- package/dist/event-bus/implementations/test-utilities/event-bus-adapter.test-suite.d.ts +73 -0
- package/dist/event-bus/implementations/test-utilities/event-bus-adapter.test-suite.js +155 -0
- package/dist/event-bus/implementations/test-utilities/event-bus-adapter.test-suite.js.map +1 -0
- package/dist/event-bus/implementations/test-utilities/event-bus.test-suite.d.ts +75 -0
- package/dist/event-bus/implementations/test-utilities/event-bus.test-suite.js +407 -0
- package/dist/event-bus/implementations/test-utilities/event-bus.test-suite.js.map +1 -0
- package/dist/lock/contracts/_module-exports.d.ts +7 -0
- package/dist/lock/contracts/_module-exports.js +8 -0
- package/dist/lock/contracts/_module-exports.js.map +1 -0
- package/dist/lock/contracts/database-lock-adapter.contract.d.ts +52 -0
- package/dist/lock/contracts/database-lock-adapter.contract.js +5 -0
- package/dist/lock/contracts/database-lock-adapter.contract.js.map +1 -0
- package/dist/lock/contracts/lock-adapter.contract.d.ts +41 -0
- package/dist/lock/contracts/lock-adapter.contract.js +5 -0
- package/dist/lock/contracts/lock-adapter.contract.js.map +1 -0
- package/dist/lock/contracts/lock-provider-factory.contract.d.ts +19 -0
- package/dist/lock/contracts/lock-provider-factory.contract.js +9 -0
- package/dist/lock/contracts/lock-provider-factory.contract.js.map +1 -0
- package/dist/lock/contracts/lock-provider.contract.d.ts +48 -0
- package/dist/lock/contracts/lock-provider.contract.js +5 -0
- package/dist/lock/contracts/lock-provider.contract.js.map +1 -0
- package/dist/lock/contracts/lock.contract.d.ts +93 -0
- package/dist/lock/contracts/lock.contract.js +5 -0
- package/dist/lock/contracts/lock.contract.js.map +1 -0
- package/dist/lock/contracts/lock.errors.d.ts +82 -0
- package/dist/lock/contracts/lock.errors.js +165 -0
- package/dist/lock/contracts/lock.errors.js.map +1 -0
- package/dist/lock/contracts/lock.events.d.ts +103 -0
- package/dist/lock/contracts/lock.events.js +82 -0
- package/dist/lock/contracts/lock.events.js.map +1 -0
- package/dist/lock/implementations/adapters/_module-exports.d.ts +5 -0
- package/dist/lock/implementations/adapters/_module-exports.js +6 -0
- package/dist/lock/implementations/adapters/_module-exports.js.map +1 -0
- package/dist/lock/implementations/adapters/kysely-lock-adapter/_module.d.ts +1 -0
- package/dist/lock/implementations/adapters/kysely-lock-adapter/_module.js +2 -0
- package/dist/lock/implementations/adapters/kysely-lock-adapter/_module.js.map +1 -0
- package/dist/lock/implementations/adapters/kysely-lock-adapter/kysely-lock-adapter.d.ts +52 -0
- package/dist/lock/implementations/adapters/kysely-lock-adapter/kysely-lock-adapter.js +129 -0
- package/dist/lock/implementations/adapters/kysely-lock-adapter/kysely-lock-adapter.js.map +1 -0
- package/dist/lock/implementations/adapters/libsql-lock-adapter/_module.d.ts +1 -0
- package/dist/lock/implementations/adapters/libsql-lock-adapter/_module.js +2 -0
- package/dist/lock/implementations/adapters/libsql-lock-adapter/_module.js.map +1 -0
- package/dist/lock/implementations/adapters/libsql-lock-adapter/libsql-lock-adapter.d.ts +65 -0
- package/dist/lock/implementations/adapters/libsql-lock-adapter/libsql-lock-adapter.js +93 -0
- package/dist/lock/implementations/adapters/libsql-lock-adapter/libsql-lock-adapter.js.map +1 -0
- package/dist/lock/implementations/adapters/memory-lock-adapter/_module.d.ts +1 -0
- package/dist/lock/implementations/adapters/memory-lock-adapter/_module.js +2 -0
- package/dist/lock/implementations/adapters/memory-lock-adapter/_module.js.map +1 -0
- package/dist/lock/implementations/adapters/memory-lock-adapter/memory-lock-adapter.d.ts +56 -0
- package/dist/lock/implementations/adapters/memory-lock-adapter/memory-lock-adapter.js +122 -0
- package/dist/lock/implementations/adapters/memory-lock-adapter/memory-lock-adapter.js.map +1 -0
- package/dist/lock/implementations/adapters/mongodb-lock-adapter/_module.d.ts +1 -0
- package/dist/lock/implementations/adapters/mongodb-lock-adapter/_module.js +2 -0
- package/dist/lock/implementations/adapters/mongodb-lock-adapter/_module.js.map +1 -0
- package/dist/lock/implementations/adapters/mongodb-lock-adapter/mongodb-lock-adapter.d.ts +68 -0
- package/dist/lock/implementations/adapters/mongodb-lock-adapter/mongodb-lock-adapter.js +180 -0
- package/dist/lock/implementations/adapters/mongodb-lock-adapter/mongodb-lock-adapter.js.map +1 -0
- package/dist/lock/implementations/adapters/redis-lock-adapter/_module.d.ts +1 -0
- package/dist/lock/implementations/adapters/redis-lock-adapter/_module.js +2 -0
- package/dist/lock/implementations/adapters/redis-lock-adapter/_module.js.map +1 -0
- package/dist/lock/implementations/adapters/redis-lock-adapter/redis-lock-adapter.d.ts +62 -0
- package/dist/lock/implementations/adapters/redis-lock-adapter/redis-lock-adapter.js +140 -0
- package/dist/lock/implementations/adapters/redis-lock-adapter/redis-lock-adapter.js.map +1 -0
- package/dist/lock/implementations/adapters/sqlite-lock-adapter/_module.d.ts +1 -0
- package/dist/lock/implementations/adapters/sqlite-lock-adapter/_module.js +2 -0
- package/dist/lock/implementations/adapters/sqlite-lock-adapter/_module.js.map +1 -0
- package/dist/lock/implementations/adapters/sqlite-lock-adapter/sqlite-lock-adapter.d.ts +65 -0
- package/dist/lock/implementations/adapters/sqlite-lock-adapter/sqlite-lock-adapter.js +92 -0
- package/dist/lock/implementations/adapters/sqlite-lock-adapter/sqlite-lock-adapter.js.map +1 -0
- package/dist/lock/implementations/derivables/_module-exports.d.ts +2 -0
- package/dist/lock/implementations/derivables/_module-exports.js +3 -0
- package/dist/lock/implementations/derivables/_module-exports.js.map +1 -0
- package/dist/lock/implementations/derivables/lock-provider/_module.d.ts +1 -0
- package/dist/lock/implementations/derivables/lock-provider/_module.js +2 -0
- package/dist/lock/implementations/derivables/lock-provider/_module.js.map +1 -0
- package/dist/lock/implementations/derivables/lock-provider/database-lock-adapter.d.ts +18 -0
- package/dist/lock/implementations/derivables/lock-provider/database-lock-adapter.js +50 -0
- package/dist/lock/implementations/derivables/lock-provider/database-lock-adapter.js.map +1 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-provider.d.ts +455 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-provider.js +516 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-provider.js.map +1 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-serde-transformer.d.ts +63 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-serde-transformer.js +72 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-serde-transformer.js.map +1 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-state.d.ts +43 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-state.js +77 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-state.js.map +1 -0
- package/dist/lock/implementations/derivables/lock-provider/lock.d.ts +78 -0
- package/dist/lock/implementations/derivables/lock-provider/lock.js +302 -0
- package/dist/lock/implementations/derivables/lock-provider/lock.js.map +1 -0
- package/dist/lock/implementations/derivables/lock-provider-factory/_module.d.ts +1 -0
- package/dist/lock/implementations/derivables/lock-provider-factory/_module.js +2 -0
- package/dist/lock/implementations/derivables/lock-provider-factory/_module.js.map +1 -0
- package/dist/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.d.ts +172 -0
- package/dist/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.js +150 -0
- package/dist/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.js.map +1 -0
- package/dist/lock/implementations/test-utilities/_module-exports.d.ts +3 -0
- package/dist/lock/implementations/test-utilities/_module-exports.js +4 -0
- package/dist/lock/implementations/test-utilities/_module-exports.js.map +1 -0
- package/dist/lock/implementations/test-utilities/database-lock-adapter.test-suite.d.ts +61 -0
- package/dist/lock/implementations/test-utilities/database-lock-adapter.test-suite.js +329 -0
- package/dist/lock/implementations/test-utilities/database-lock-adapter.test-suite.js.map +1 -0
- package/dist/lock/implementations/test-utilities/lock-adapter.test-suite.d.ts +63 -0
- package/dist/lock/implementations/test-utilities/lock-adapter.test-suite.js +156 -0
- package/dist/lock/implementations/test-utilities/lock-adapter.test-suite.js.map +1 -0
- package/dist/lock/implementations/test-utilities/lock-provider.test-suite.d.ts +69 -0
- package/dist/lock/implementations/test-utilities/lock-provider.test-suite.js +1898 -0
- package/dist/lock/implementations/test-utilities/lock-provider.test-suite.js.map +1 -0
- package/dist/serde/contracts/_module-exports.d.ts +7 -0
- package/dist/serde/contracts/_module-exports.js +8 -0
- package/dist/serde/contracts/_module-exports.js.map +1 -0
- package/dist/serde/contracts/deserializer.contract.d.ts +15 -0
- package/dist/serde/contracts/deserializer.contract.js +7 -0
- package/dist/serde/contracts/deserializer.contract.js.map +1 -0
- package/dist/serde/contracts/flexible-serde-adapter.contract.d.ts +27 -0
- package/dist/serde/contracts/flexible-serde-adapter.contract.js +5 -0
- package/dist/serde/contracts/flexible-serde-adapter.contract.js.map +1 -0
- package/dist/serde/contracts/flexible-serde.contract.d.ts +55 -0
- package/dist/serde/contracts/flexible-serde.contract.js +5 -0
- package/dist/serde/contracts/flexible-serde.contract.js.map +1 -0
- package/dist/serde/contracts/serde.contract.d.ts +12 -0
- package/dist/serde/contracts/serde.contract.js +5 -0
- package/dist/serde/contracts/serde.contract.js.map +1 -0
- package/dist/serde/contracts/serde.errors.d.ts +27 -0
- package/dist/serde/contracts/serde.errors.js +37 -0
- package/dist/serde/contracts/serde.errors.js.map +1 -0
- package/dist/serde/contracts/serializable.contract.d.ts +12 -0
- package/dist/serde/contracts/serializable.contract.js +5 -0
- package/dist/serde/contracts/serializable.contract.js.map +1 -0
- package/dist/serde/contracts/serializer.contract.d.ts +12 -0
- package/dist/serde/contracts/serializer.contract.js +7 -0
- package/dist/serde/contracts/serializer.contract.js.map +1 -0
- package/dist/serde/implementations/adapters/_module-exports.d.ts +5 -0
- package/dist/serde/implementations/adapters/_module-exports.js +6 -0
- package/dist/serde/implementations/adapters/_module-exports.js.map +1 -0
- package/dist/serde/implementations/adapters/mongodb-serde/_module.d.ts +1 -0
- package/dist/serde/implementations/adapters/mongodb-serde/_module.js +2 -0
- package/dist/serde/implementations/adapters/mongodb-serde/_module.js.map +1 -0
- package/dist/serde/implementations/adapters/mongodb-serde/mongodb-serde.d.ts +13 -0
- package/dist/serde/implementations/adapters/mongodb-serde/mongodb-serde.js +39 -0
- package/dist/serde/implementations/adapters/mongodb-serde/mongodb-serde.js.map +1 -0
- package/dist/serde/implementations/adapters/no-op-serde-adapter/_module.d.ts +1 -0
- package/dist/serde/implementations/adapters/no-op-serde-adapter/_module.js +2 -0
- package/dist/serde/implementations/adapters/no-op-serde-adapter/_module.js.map +1 -0
- package/dist/serde/implementations/adapters/no-op-serde-adapter/no-op-serde-adapter.d.ts +14 -0
- package/dist/serde/implementations/adapters/no-op-serde-adapter/no-op-serde-adapter.js +17 -0
- package/dist/serde/implementations/adapters/no-op-serde-adapter/no-op-serde-adapter.js.map +1 -0
- package/dist/serde/implementations/adapters/redis-serde/_module.d.ts +1 -0
- package/dist/serde/implementations/adapters/redis-serde/_module.js +2 -0
- package/dist/serde/implementations/adapters/redis-serde/_module.js.map +1 -0
- package/dist/serde/implementations/adapters/redis-serde/redis-serde.d.ts +13 -0
- package/dist/serde/implementations/adapters/redis-serde/redis-serde.js +40 -0
- package/dist/serde/implementations/adapters/redis-serde/redis-serde.js.map +1 -0
- package/dist/serde/implementations/adapters/sql-serde/_module.d.ts +1 -0
- package/dist/serde/implementations/adapters/sql-serde/_module.js +2 -0
- package/dist/serde/implementations/adapters/sql-serde/_module.js.map +1 -0
- package/dist/serde/implementations/adapters/sql-serde/sql-serde.d.ts +13 -0
- package/dist/serde/implementations/adapters/sql-serde/sql-serde.js +40 -0
- package/dist/serde/implementations/adapters/sql-serde/sql-serde.js.map +1 -0
- package/dist/serde/implementations/adapters/super-json-serde-adapter/_module.d.ts +1 -0
- package/dist/serde/implementations/adapters/super-json-serde-adapter/_module.js +2 -0
- package/dist/serde/implementations/adapters/super-json-serde-adapter/_module.js.map +1 -0
- package/dist/serde/implementations/adapters/super-json-serde-adapter/super-json-serde-adapter.d.ts +15 -0
- package/dist/serde/implementations/adapters/super-json-serde-adapter/super-json-serde-adapter.js +44 -0
- package/dist/serde/implementations/adapters/super-json-serde-adapter/super-json-serde-adapter.js.map +1 -0
- package/dist/serde/implementations/derivables/_module-exports.d.ts +1 -0
- package/dist/serde/implementations/derivables/_module-exports.js +2 -0
- package/dist/serde/implementations/derivables/_module-exports.js.map +1 -0
- package/dist/serde/implementations/derivables/serde-transformers.d.ts +210 -0
- package/dist/serde/implementations/derivables/serde-transformers.js +414 -0
- package/dist/serde/implementations/derivables/serde-transformers.js.map +1 -0
- package/dist/serde/implementations/derivables/serde.d.ts +299 -0
- package/dist/serde/implementations/derivables/serde.js +319 -0
- package/dist/serde/implementations/derivables/serde.js.map +1 -0
- package/dist/serde/implementations/test-utilities/_module-exports.d.ts +2 -0
- package/dist/serde/implementations/test-utilities/_module-exports.js +3 -0
- package/dist/serde/implementations/test-utilities/_module-exports.js.map +1 -0
- package/dist/serde/implementations/test-utilities/flexible-serde-adapter.test-suite.d.ts +36 -0
- package/dist/serde/implementations/test-utilities/flexible-serde-adapter.test-suite.js +145 -0
- package/dist/serde/implementations/test-utilities/flexible-serde-adapter.test-suite.js.map +1 -0
- package/dist/serde/implementations/test-utilities/flexible-serde.test-suite.d.ts +38 -0
- package/dist/serde/implementations/test-utilities/flexible-serde.test-suite.js +307 -0
- package/dist/serde/implementations/test-utilities/flexible-serde.test-suite.js.map +1 -0
- package/dist/utilities/_module-exports.d.ts +7 -0
- package/dist/utilities/_module-exports.js +8 -0
- package/dist/utilities/_module-exports.js.map +1 -0
- package/dist/utilities/constants.d.ts +7 -0
- package/dist/utilities/constants.js +8 -0
- package/dist/utilities/constants.js.map +1 -0
- package/dist/utilities/contracts/_module.d.ts +4 -0
- package/dist/utilities/contracts/_module.js +5 -0
- package/dist/utilities/contracts/_module.js.map +1 -0
- package/dist/utilities/contracts/buildable.contract.d.ts +11 -0
- package/dist/utilities/contracts/buildable.contract.js +5 -0
- package/dist/utilities/contracts/buildable.contract.js.map +1 -0
- package/dist/utilities/contracts/deinitizable.contract.d.ts +11 -0
- package/dist/utilities/contracts/deinitizable.contract.js +5 -0
- package/dist/utilities/contracts/deinitizable.contract.js.map +1 -0
- package/dist/utilities/contracts/initizable.contract.d.ts +11 -0
- package/dist/utilities/contracts/initizable.contract.js +5 -0
- package/dist/utilities/contracts/initizable.contract.js.map +1 -0
- package/dist/utilities/contracts/serialized-error.contract.d.ts +13 -0
- package/dist/utilities/contracts/serialized-error.contract.js +5 -0
- package/dist/utilities/contracts/serialized-error.contract.js.map +1 -0
- package/dist/utilities/errors.d.ts +27 -0
- package/dist/utilities/errors.js +37 -0
- package/dist/utilities/errors.js.map +1 -0
- package/dist/utilities/functions.d.ts +29 -0
- package/dist/utilities/functions.js +62 -0
- package/dist/utilities/functions.js.map +1 -0
- package/dist/utilities/kysely/_module.d.ts +1 -0
- package/dist/utilities/kysely/_module.js +2 -0
- package/dist/utilities/kysely/_module.js.map +1 -0
- package/dist/utilities/kysely/kysely-table-name-transformer-plugin.js +50 -0
- package/dist/utilities/kysely/kysely-table-name-transformer-plugin.js.map +1 -0
- package/dist/utilities/time-span/_module.d.ts +1 -0
- package/dist/utilities/time-span/_module.js +2 -0
- package/dist/utilities/time-span/_module.js.map +1 -0
- package/dist/utilities/time-span/time-span.d.ts +66 -0
- package/dist/utilities/time-span/time-span.js +125 -0
- package/dist/utilities/time-span/time-span.js.map +1 -0
- package/dist/utilities/types.d.ts +54 -0
- package/dist/utilities/types.js +5 -0
- package/dist/utilities/types.js.map +1 -0
- package/package.json +29 -8
- package/dist/cjs/_module.js +0 -29
- package/dist/cjs/_module.js.map +0 -1
- package/dist/cjs/async/_module.js +0 -20
- package/dist/cjs/async/_module.js.map +0 -1
- package/dist/cjs/async/async.errors.js +0 -34
- package/dist/cjs/async/async.errors.js.map +0 -1
- package/dist/cjs/async/backof-policies/_module.js +0 -22
- package/dist/cjs/async/backof-policies/_module.js.map +0 -1
- package/dist/cjs/async/backof-policies/_shared.js +0 -7
- package/dist/cjs/async/backof-policies/_shared.js.map +0 -1
- package/dist/cjs/async/backof-policies/constant-backoff-policy/_module.js +0 -18
- package/dist/cjs/async/backof-policies/constant-backoff-policy/_module.js.map +0 -1
- package/dist/cjs/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +0 -19
- package/dist/cjs/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +0 -1
- package/dist/cjs/async/backof-policies/exponential-backoff-policy/_module.js +0 -18
- package/dist/cjs/async/backof-policies/exponential-backoff-policy/_module.js.map +0 -1
- package/dist/cjs/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +0 -23
- package/dist/cjs/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +0 -1
- package/dist/cjs/async/backof-policies/linear-backoff-policy/_module.js +0 -18
- package/dist/cjs/async/backof-policies/linear-backoff-policy/_module.js.map +0 -1
- package/dist/cjs/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +0 -23
- package/dist/cjs/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +0 -1
- package/dist/cjs/async/backof-policies/polynomial-backoff-policy/_module.js +0 -18
- package/dist/cjs/async/backof-policies/polynomial-backoff-policy/_module.js.map +0 -1
- package/dist/cjs/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +0 -23
- package/dist/cjs/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +0 -1
- package/dist/cjs/async/utilities/_module.js +0 -22
- package/dist/cjs/async/utilities/_module.js.map +0 -1
- package/dist/cjs/async/utilities/abort/_module.js +0 -19
- package/dist/cjs/async/utilities/abort/_module.js.map +0 -1
- package/dist/cjs/async/utilities/abort/abort-and-fail.js +0 -45
- package/dist/cjs/async/utilities/abort/abort-and-fail.js.map +0 -1
- package/dist/cjs/async/utilities/abort/abort.js +0 -18
- package/dist/cjs/async/utilities/abort/abort.js.map +0 -1
- package/dist/cjs/async/utilities/delay/_module.js +0 -18
- package/dist/cjs/async/utilities/delay/_module.js.map +0 -1
- package/dist/cjs/async/utilities/delay/delay.js +0 -20
- package/dist/cjs/async/utilities/delay/delay.js.map +0 -1
- package/dist/cjs/async/utilities/lazy-promise/_module.js +0 -18
- package/dist/cjs/async/utilities/lazy-promise/_module.js.map +0 -1
- package/dist/cjs/async/utilities/lazy-promise/lazy-promise.js +0 -111
- package/dist/cjs/async/utilities/lazy-promise/lazy-promise.js.map +0 -1
- package/dist/cjs/async/utilities/retry/_module.js +0 -19
- package/dist/cjs/async/utilities/retry/_module.js.map +0 -1
- package/dist/cjs/async/utilities/retry/retry-or-fail.js +0 -36
- package/dist/cjs/async/utilities/retry/retry-or-fail.js.map +0 -1
- package/dist/cjs/async/utilities/retry/retry.js +0 -18
- package/dist/cjs/async/utilities/retry/retry.js.map +0 -1
- package/dist/cjs/async/utilities/timeout/_module.js +0 -19
- package/dist/cjs/async/utilities/timeout/_module.js.map +0 -1
- package/dist/cjs/async/utilities/timeout/timeout-and-fail.js +0 -25
- package/dist/cjs/async/utilities/timeout/timeout-and-fail.js.map +0 -1
- package/dist/cjs/async/utilities/timeout/timeout.js +0 -18
- package/dist/cjs/async/utilities/timeout/timeout.js.map +0 -1
- package/dist/cjs/cache/contracts/_module.js +0 -22
- package/dist/cjs/cache/contracts/_module.js.map +0 -1
- package/dist/cjs/cache/contracts/cache-adapter.contract.js +0 -3
- package/dist/cjs/cache/contracts/cache-adapter.contract.js.map +0 -1
- package/dist/cjs/cache/contracts/cache-factory.contract.js +0 -3
- package/dist/cjs/cache/contracts/cache-factory.contract.js.map +0 -1
- package/dist/cjs/cache/contracts/cache.contract.js +0 -3
- package/dist/cjs/cache/contracts/cache.contract.js.map +0 -1
- package/dist/cjs/cache/contracts/cache.errors.js +0 -64
- package/dist/cjs/cache/contracts/cache.errors.js.map +0 -1
- package/dist/cjs/cache/contracts/cache.events.js +0 -50
- package/dist/cjs/cache/contracts/cache.events.js.map +0 -1
- package/dist/cjs/cache/implementations/_module.js +0 -20
- package/dist/cjs/cache/implementations/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/_shared/_module.js +0 -19
- package/dist/cjs/cache/implementations/_shared/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/_shared/cache-adapter.test-suite.js +0 -253
- package/dist/cjs/cache/implementations/_shared/cache-adapter.test-suite.js.map +0 -1
- package/dist/cjs/cache/implementations/_shared/cache.test-suite.js +0 -1739
- package/dist/cjs/cache/implementations/_shared/cache.test-suite.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/_module.js +0 -23
- package/dist/cjs/cache/implementations/adapters/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/kysely-sqlite-cache-adapter/_module.js +0 -18
- package/dist/cjs/cache/implementations/adapters/kysely-sqlite-cache-adapter/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/kysely-sqlite-cache-adapter/kysely-sqlite-cache-adapter.js +0 -314
- package/dist/cjs/cache/implementations/adapters/kysely-sqlite-cache-adapter/kysely-sqlite-cache-adapter.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/libsql-cache-adapter/_module.js +0 -18
- package/dist/cjs/cache/implementations/adapters/libsql-cache-adapter/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/libsql-cache-adapter/libsql-cache-adapter.js +0 -68
- package/dist/cjs/cache/implementations/adapters/libsql-cache-adapter/libsql-cache-adapter.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/memory-cache-adapter/_module.js +0 -18
- package/dist/cjs/cache/implementations/adapters/memory-cache-adapter/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/memory-cache-adapter/memory-cache-adapter.js +0 -91
- package/dist/cjs/cache/implementations/adapters/memory-cache-adapter/memory-cache-adapter.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/mongodb-cache-adapter/_module.js +0 -18
- package/dist/cjs/cache/implementations/adapters/mongodb-cache-adapter/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/mongodb-cache-adapter/mongodb-cache-adapter.js +0 -290
- package/dist/cjs/cache/implementations/adapters/mongodb-cache-adapter/mongodb-cache-adapter.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/no-op-cache-adapter/_module.js +0 -18
- package/dist/cjs/cache/implementations/adapters/no-op-cache-adapter/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/no-op-cache-adapter/no-op-cache-adapter.js +0 -34
- package/dist/cjs/cache/implementations/adapters/no-op-cache-adapter/no-op-cache-adapter.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/redis-cache-adapter/_module.js +0 -18
- package/dist/cjs/cache/implementations/adapters/redis-cache-adapter/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/redis-cache-adapter/redis-cache-adapter.js +0 -171
- package/dist/cjs/cache/implementations/adapters/redis-cache-adapter/redis-cache-adapter.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/sqlite-cache-adapter/_module.js +0 -18
- package/dist/cjs/cache/implementations/adapters/sqlite-cache-adapter/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/adapters/sqlite-cache-adapter/sqlite-cache-adapter.js +0 -67
- package/dist/cjs/cache/implementations/adapters/sqlite-cache-adapter/sqlite-cache-adapter.js.map +0 -1
- package/dist/cjs/cache/implementations/derivables/_module.js +0 -19
- package/dist/cjs/cache/implementations/derivables/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/derivables/cache/_module.js +0 -18
- package/dist/cjs/cache/implementations/derivables/cache/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/derivables/cache/cache.js +0 -553
- package/dist/cjs/cache/implementations/derivables/cache/cache.js.map +0 -1
- package/dist/cjs/cache/implementations/derivables/cache-factory/_module.js +0 -18
- package/dist/cjs/cache/implementations/derivables/cache-factory/_module.js.map +0 -1
- package/dist/cjs/cache/implementations/derivables/cache-factory/cache-factory.js +0 -70
- package/dist/cjs/cache/implementations/derivables/cache-factory/cache-factory.js.map +0 -1
- package/dist/cjs/collection/contracts/_module.js +0 -21
- package/dist/cjs/collection/contracts/_module.js.map +0 -1
- package/dist/cjs/collection/contracts/_shared.js +0 -3
- package/dist/cjs/collection/contracts/_shared.js.map +0 -1
- package/dist/cjs/collection/contracts/async-collection.contract.js +0 -3
- package/dist/cjs/collection/contracts/async-collection.contract.js.map +0 -1
- package/dist/cjs/collection/contracts/collection.contract.js +0 -3
- package/dist/cjs/collection/contracts/collection.contract.js.map +0 -1
- package/dist/cjs/collection/contracts/collection.errors.js +0 -46
- package/dist/cjs/collection/contracts/collection.errors.js.map +0 -1
- package/dist/cjs/collection/implementations/_module.js +0 -21
- package/dist/cjs/collection/implementations/_module.js.map +0 -1
- package/dist/cjs/collection/implementations/_shared.js +0 -30
- package/dist/cjs/collection/implementations/_shared.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_module.js +0 -18
- package/dist/cjs/collection/implementations/async-iterable-collection/_module.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/_module.js +0 -53
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/_module.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js +0 -35
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js +0 -32
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js +0 -22
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js +0 -27
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js +0 -35
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-delay-iterable.js +0 -27
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-delay-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js +0 -18
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js +0 -20
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js +0 -18
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js +0 -29
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js +0 -27
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js +0 -27
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js +0 -18
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js +0 -24
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js +0 -31
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js +0 -31
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js +0 -29
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js +0 -22
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-retry-iterable.js +0 -33
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-retry-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js +0 -21
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js +0 -27
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js +0 -19
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js +0 -25
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js +0 -34
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js +0 -29
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js +0 -16
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js +0 -38
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js +0 -19
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-until-abort-iterable.js +0 -36
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-until-abort-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js +0 -21
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-until-timeout-iterable.js +0 -48
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-take-until-timeout-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js +0 -17
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js +0 -23
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js +0 -25
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js +0 -22
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js +0 -37
- package/dist/cjs/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/async-iterable-collection/async-iterable-collection.js +0 -633
- package/dist/cjs/collection/implementations/async-iterable-collection/async-iterable-collection.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_module.js +0 -18
- package/dist/cjs/collection/implementations/iterable-collection/_module.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/_module.js +0 -49
- package/dist/cjs/collection/implementations/iterable-collection/_shared/_module.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/chunk-iterable.js +0 -35
- package/dist/cjs/collection/implementations/iterable-collection/_shared/chunk-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js +0 -32
- package/dist/cjs/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/collapse-iterable.js +0 -22
- package/dist/cjs/collection/implementations/iterable-collection/_shared/collapse-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/count-by-iterable.js +0 -27
- package/dist/cjs/collection/implementations/iterable-collection/_shared/count-by-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/cross-join-iterable.js +0 -37
- package/dist/cjs/collection/implementations/iterable-collection/_shared/cross-join-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/entries-iterable.js +0 -18
- package/dist/cjs/collection/implementations/iterable-collection/_shared/entries-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/filter-iterable.js +0 -20
- package/dist/cjs/collection/implementations/iterable-collection/_shared/filter-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/flat-map-iterable.js +0 -18
- package/dist/cjs/collection/implementations/iterable-collection/_shared/flat-map-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/group-by-iterable.js +0 -29
- package/dist/cjs/collection/implementations/iterable-collection/_shared/group-by-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/insert-after-iterable.js +0 -25
- package/dist/cjs/collection/implementations/iterable-collection/_shared/insert-after-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/insert-before-iterable.js +0 -25
- package/dist/cjs/collection/implementations/iterable-collection/_shared/insert-before-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/map-iterable.js +0 -18
- package/dist/cjs/collection/implementations/iterable-collection/_shared/map-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/merge-iterable.js +0 -16
- package/dist/cjs/collection/implementations/iterable-collection/_shared/merge-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/pad-end-iterable.js +0 -31
- package/dist/cjs/collection/implementations/iterable-collection/_shared/pad-end-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/pad-start-iterable.js +0 -31
- package/dist/cjs/collection/implementations/iterable-collection/_shared/pad-start-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/partion-iterable.js +0 -29
- package/dist/cjs/collection/implementations/iterable-collection/_shared/partion-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/repeat-iterable.js +0 -22
- package/dist/cjs/collection/implementations/iterable-collection/_shared/repeat-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/reverse-iterable.js +0 -21
- package/dist/cjs/collection/implementations/iterable-collection/_shared/reverse-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/shuffle-iterable.js +0 -27
- package/dist/cjs/collection/implementations/iterable-collection/_shared/shuffle-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/skip-iterable.js +0 -19
- package/dist/cjs/collection/implementations/iterable-collection/_shared/skip-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/skip-until-iterable.js +0 -24
- package/dist/cjs/collection/implementations/iterable-collection/_shared/skip-until-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/slice-iterable.js +0 -34
- package/dist/cjs/collection/implementations/iterable-collection/_shared/slice-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/sliding-iterable.js +0 -29
- package/dist/cjs/collection/implementations/iterable-collection/_shared/sliding-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/sort-iterable.js +0 -16
- package/dist/cjs/collection/implementations/iterable-collection/_shared/sort-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/split-iterable.js +0 -38
- package/dist/cjs/collection/implementations/iterable-collection/_shared/split-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/take-iterable.js +0 -19
- package/dist/cjs/collection/implementations/iterable-collection/_shared/take-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/take-until-iterable.js +0 -21
- package/dist/cjs/collection/implementations/iterable-collection/_shared/take-until-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/tap-iterable.js +0 -17
- package/dist/cjs/collection/implementations/iterable-collection/_shared/tap-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/unique-iterable.js +0 -23
- package/dist/cjs/collection/implementations/iterable-collection/_shared/unique-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/update-iterable.js +0 -25
- package/dist/cjs/collection/implementations/iterable-collection/_shared/update-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/when-iterable.js +0 -22
- package/dist/cjs/collection/implementations/iterable-collection/_shared/when-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/_shared/zip-iterable.js +0 -23
- package/dist/cjs/collection/implementations/iterable-collection/_shared/zip-iterable.js.map +0 -1
- package/dist/cjs/collection/implementations/iterable-collection/iterable-collection.js +0 -554
- package/dist/cjs/collection/implementations/iterable-collection/iterable-collection.js.map +0 -1
- package/dist/cjs/collection/implementations/list-collection/_module.js +0 -18
- package/dist/cjs/collection/implementations/list-collection/_module.js.map +0 -1
- package/dist/cjs/collection/implementations/list-collection/list-collection.js +0 -703
- package/dist/cjs/collection/implementations/list-collection/list-collection.js.map +0 -1
- package/dist/cjs/event-bus/contracts/_module.js +0 -22
- package/dist/cjs/event-bus/contracts/_module.js.map +0 -1
- package/dist/cjs/event-bus/contracts/_shared.js +0 -11
- package/dist/cjs/event-bus/contracts/_shared.js.map +0 -1
- package/dist/cjs/event-bus/contracts/event-bus-adapter.contract.js +0 -3
- package/dist/cjs/event-bus/contracts/event-bus-adapter.contract.js.map +0 -1
- package/dist/cjs/event-bus/contracts/event-bus-factory.contract.js +0 -3
- package/dist/cjs/event-bus/contracts/event-bus-factory.contract.js.map +0 -1
- package/dist/cjs/event-bus/contracts/event-bus.contract.js +0 -3
- package/dist/cjs/event-bus/contracts/event-bus.contract.js.map +0 -1
- package/dist/cjs/event-bus/contracts/event-bus.errors.js +0 -72
- package/dist/cjs/event-bus/contracts/event-bus.errors.js.map +0 -1
- package/dist/cjs/event-bus/implementations/_module.js +0 -20
- package/dist/cjs/event-bus/implementations/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/_shared/_module.js +0 -19
- package/dist/cjs/event-bus/implementations/_shared/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/_shared/event-bus-adapter.test-suite.js +0 -101
- package/dist/cjs/event-bus/implementations/_shared/event-bus-adapter.test-suite.js.map +0 -1
- package/dist/cjs/event-bus/implementations/_shared/event-bus.test-suite.js +0 -350
- package/dist/cjs/event-bus/implementations/_shared/event-bus.test-suite.js.map +0 -1
- package/dist/cjs/event-bus/implementations/adapters/_module.js +0 -20
- package/dist/cjs/event-bus/implementations/adapters/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/adapters/memory-event-bus-adapter/_module.js +0 -18
- package/dist/cjs/event-bus/implementations/adapters/memory-event-bus-adapter/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.js +0 -37
- package/dist/cjs/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.js.map +0 -1
- package/dist/cjs/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.js +0 -18
- package/dist/cjs/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.js +0 -22
- package/dist/cjs/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.js.map +0 -1
- package/dist/cjs/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js +0 -18
- package/dist/cjs/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.js +0 -52
- package/dist/cjs/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.js.map +0 -1
- package/dist/cjs/event-bus/implementations/derivables/_module.js +0 -19
- package/dist/cjs/event-bus/implementations/derivables/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/derivables/event-bus/_module.js +0 -18
- package/dist/cjs/event-bus/implementations/derivables/event-bus/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/derivables/event-bus/event-bus.js +0 -137
- package/dist/cjs/event-bus/implementations/derivables/event-bus/event-bus.js.map +0 -1
- package/dist/cjs/event-bus/implementations/derivables/event-bus-factory/_module.js +0 -18
- package/dist/cjs/event-bus/implementations/derivables/event-bus-factory/_module.js.map +0 -1
- package/dist/cjs/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.js +0 -59
- package/dist/cjs/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.js.map +0 -1
- package/dist/cjs/lock/contracts/_module.js +0 -24
- package/dist/cjs/lock/contracts/_module.js.map +0 -1
- package/dist/cjs/lock/contracts/database-lock-adapter.contract.js +0 -3
- package/dist/cjs/lock/contracts/database-lock-adapter.contract.js.map +0 -1
- package/dist/cjs/lock/contracts/lock-adapter.contract.js +0 -3
- package/dist/cjs/lock/contracts/lock-adapter.contract.js.map +0 -1
- package/dist/cjs/lock/contracts/lock-provider-factory.contract.js +0 -3
- package/dist/cjs/lock/contracts/lock-provider-factory.contract.js.map +0 -1
- package/dist/cjs/lock/contracts/lock-provider.contract.js +0 -3
- package/dist/cjs/lock/contracts/lock-provider.contract.js.map +0 -1
- package/dist/cjs/lock/contracts/lock.contract.js +0 -3
- package/dist/cjs/lock/contracts/lock.contract.js.map +0 -1
- package/dist/cjs/lock/contracts/lock.errors.js +0 -131
- package/dist/cjs/lock/contracts/lock.errors.js.map +0 -1
- package/dist/cjs/lock/contracts/lock.events.js +0 -44
- package/dist/cjs/lock/contracts/lock.events.js.map +0 -1
- package/dist/cjs/lock/implementations/_module.js +0 -20
- package/dist/cjs/lock/implementations/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/_shared/_module.js +0 -20
- package/dist/cjs/lock/implementations/_shared/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/_shared/database-lock-adapter.test-suite.js +0 -285
- package/dist/cjs/lock/implementations/_shared/database-lock-adapter.test-suite.js.map +0 -1
- package/dist/cjs/lock/implementations/_shared/lock-adapter.test-suite.js +0 -238
- package/dist/cjs/lock/implementations/_shared/lock-adapter.test-suite.js.map +0 -1
- package/dist/cjs/lock/implementations/_shared/lock-provider.test-suite.js +0 -1841
- package/dist/cjs/lock/implementations/_shared/lock-provider.test-suite.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/_module.js +0 -22
- package/dist/cjs/lock/implementations/adapters/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/kysely-lock-adapter/_module.js +0 -18
- package/dist/cjs/lock/implementations/adapters/kysely-lock-adapter/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/kysely-lock-adapter/kysely-lock-adapter.js +0 -126
- package/dist/cjs/lock/implementations/adapters/kysely-lock-adapter/kysely-lock-adapter.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/libsql-lock-adapter/_module.js +0 -18
- package/dist/cjs/lock/implementations/adapters/libsql-lock-adapter/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/libsql-lock-adapter/libsql-lock-adapter.js +0 -61
- package/dist/cjs/lock/implementations/adapters/libsql-lock-adapter/libsql-lock-adapter.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/memory-lock-adapter/_module.js +0 -18
- package/dist/cjs/lock/implementations/adapters/memory-lock-adapter/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/memory-lock-adapter/memory-lock-adapter.js +0 -107
- package/dist/cjs/lock/implementations/adapters/memory-lock-adapter/memory-lock-adapter.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/mongodb-lock-adapter/_module.js +0 -18
- package/dist/cjs/lock/implementations/adapters/mongodb-lock-adapter/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/mongodb-lock-adapter/mongodb-lock-adapter.js +0 -148
- package/dist/cjs/lock/implementations/adapters/mongodb-lock-adapter/mongodb-lock-adapter.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/redis-lock-adapter/_module.js +0 -18
- package/dist/cjs/lock/implementations/adapters/redis-lock-adapter/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/redis-lock-adapter/redis-lock-adapter.js +0 -131
- package/dist/cjs/lock/implementations/adapters/redis-lock-adapter/redis-lock-adapter.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/sqlite-lock-adapter/_module.js +0 -18
- package/dist/cjs/lock/implementations/adapters/sqlite-lock-adapter/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/adapters/sqlite-lock-adapter/sqlite-lock-adapter.js +0 -60
- package/dist/cjs/lock/implementations/adapters/sqlite-lock-adapter/sqlite-lock-adapter.js.map +0 -1
- package/dist/cjs/lock/implementations/derivables/_module.js +0 -19
- package/dist/cjs/lock/implementations/derivables/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/derivables/lock-provider/_module.js +0 -18
- package/dist/cjs/lock/implementations/derivables/lock-provider/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/derivables/lock-provider/database-lock-adapter.js +0 -80
- package/dist/cjs/lock/implementations/derivables/lock-provider/database-lock-adapter.js.map +0 -1
- package/dist/cjs/lock/implementations/derivables/lock-provider/lock-provider.js +0 -162
- package/dist/cjs/lock/implementations/derivables/lock-provider/lock-provider.js.map +0 -1
- package/dist/cjs/lock/implementations/derivables/lock-provider/lock.js +0 -306
- package/dist/cjs/lock/implementations/derivables/lock-provider/lock.js.map +0 -1
- package/dist/cjs/lock/implementations/derivables/lock-provider-factory/_module.js +0 -18
- package/dist/cjs/lock/implementations/derivables/lock-provider-factory/_module.js.map +0 -1
- package/dist/cjs/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.js +0 -78
- package/dist/cjs/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.js.map +0 -1
- package/dist/cjs/serde/contracts/_module.js +0 -23
- package/dist/cjs/serde/contracts/_module.js.map +0 -1
- package/dist/cjs/serde/contracts/deserializer.contract.js +0 -3
- package/dist/cjs/serde/contracts/deserializer.contract.js.map +0 -1
- package/dist/cjs/serde/contracts/flexible-serde.contract.js +0 -3
- package/dist/cjs/serde/contracts/flexible-serde.contract.js.map +0 -1
- package/dist/cjs/serde/contracts/serde.contract.js +0 -3
- package/dist/cjs/serde/contracts/serde.contract.js.map +0 -1
- package/dist/cjs/serde/contracts/serde.errors.js +0 -25
- package/dist/cjs/serde/contracts/serde.errors.js.map +0 -1
- package/dist/cjs/serde/contracts/serializable.contract.js +0 -3
- package/dist/cjs/serde/contracts/serializable.contract.js.map +0 -1
- package/dist/cjs/serde/contracts/serializer.contract.js +0 -3
- package/dist/cjs/serde/contracts/serializer.contract.js.map +0 -1
- package/dist/cjs/serde/implementations/_module.js +0 -23
- package/dist/cjs/serde/implementations/_module.js.map +0 -1
- package/dist/cjs/serde/implementations/_shared/test-utilities/_module.js +0 -19
- package/dist/cjs/serde/implementations/_shared/test-utilities/_module.js.map +0 -1
- package/dist/cjs/serde/implementations/_shared/test-utilities/flexible-serde.test-suite.js +0 -69
- package/dist/cjs/serde/implementations/_shared/test-utilities/flexible-serde.test-suite.js.map +0 -1
- package/dist/cjs/serde/implementations/_shared/test-utilities/serde.test-suite.js +0 -336
- package/dist/cjs/serde/implementations/_shared/test-utilities/serde.test-suite.js.map +0 -1
- package/dist/cjs/serde/implementations/mongodb-serde/_module.js +0 -18
- package/dist/cjs/serde/implementations/mongodb-serde/_module.js.map +0 -1
- package/dist/cjs/serde/implementations/mongodb-serde/mongodb-serde.js +0 -36
- package/dist/cjs/serde/implementations/mongodb-serde/mongodb-serde.js.map +0 -1
- package/dist/cjs/serde/implementations/no-op-serde/_module.js +0 -18
- package/dist/cjs/serde/implementations/no-op-serde/_module.js.map +0 -1
- package/dist/cjs/serde/implementations/no-op-serde/no-op-serde.js +0 -22
- package/dist/cjs/serde/implementations/no-op-serde/no-op-serde.js.map +0 -1
- package/dist/cjs/serde/implementations/redis-serde/_module.js +0 -18
- package/dist/cjs/serde/implementations/redis-serde/_module.js.map +0 -1
- package/dist/cjs/serde/implementations/redis-serde/redis-serde.js +0 -37
- package/dist/cjs/serde/implementations/redis-serde/redis-serde.js.map +0 -1
- package/dist/cjs/serde/implementations/sql-serde/_module.js +0 -18
- package/dist/cjs/serde/implementations/sql-serde/_module.js.map +0 -1
- package/dist/cjs/serde/implementations/sql-serde/sql-serde.js +0 -37
- package/dist/cjs/serde/implementations/sql-serde/sql-serde.js.map +0 -1
- package/dist/cjs/serde/implementations/super-json-serde/_module.js +0 -18
- package/dist/cjs/serde/implementations/super-json-serde/_module.js.map +0 -1
- package/dist/cjs/serde/implementations/super-json-serde/super-json-serde.js +0 -239
- package/dist/cjs/serde/implementations/super-json-serde/super-json-serde.js.map +0 -1
- package/dist/cjs/utilities/_module.js +0 -23
- package/dist/cjs/utilities/_module.js.map +0 -1
- package/dist/cjs/utilities/contracts/_module.js +0 -22
- package/dist/cjs/utilities/contracts/_module.js.map +0 -1
- package/dist/cjs/utilities/contracts/buildable.contract.js +0 -3
- package/dist/cjs/utilities/contracts/buildable.contract.js.map +0 -1
- package/dist/cjs/utilities/contracts/deinitizable.contract.js +0 -3
- package/dist/cjs/utilities/contracts/deinitizable.contract.js.map +0 -1
- package/dist/cjs/utilities/contracts/initizable.contract.js +0 -3
- package/dist/cjs/utilities/contracts/initizable.contract.js.map +0 -1
- package/dist/cjs/utilities/contracts/serde-registrable.contract.js +0 -3
- package/dist/cjs/utilities/contracts/serde-registrable.contract.js.map +0 -1
- package/dist/cjs/utilities/contracts/serialized-error.contract.js +0 -3
- package/dist/cjs/utilities/contracts/serialized-error.contract.js.map +0 -1
- package/dist/cjs/utilities/errors.js +0 -25
- package/dist/cjs/utilities/errors.js.map +0 -1
- package/dist/cjs/utilities/functions.js +0 -43
- package/dist/cjs/utilities/functions.js.map +0 -1
- package/dist/cjs/utilities/kysely/_module.js +0 -18
- package/dist/cjs/utilities/kysely/_module.js.map +0 -1
- package/dist/cjs/utilities/kysely/kysely-table-name-transformer-plugin.js +0 -45
- package/dist/cjs/utilities/kysely/kysely-table-name-transformer-plugin.js.map +0 -1
- package/dist/cjs/utilities/time-span/_module.js +0 -18
- package/dist/cjs/utilities/time-span/_module.js.map +0 -1
- package/dist/cjs/utilities/time-span/time-span.js +0 -111
- package/dist/cjs/utilities/time-span/time-span.js.map +0 -1
- package/dist/cjs/utilities/types.js +0 -3
- package/dist/cjs/utilities/types.js.map +0 -1
- package/dist/esm/_module.js +0 -13
- package/dist/esm/_module.js.map +0 -1
- package/dist/esm/async/_module.js +0 -4
- package/dist/esm/async/_module.js.map +0 -1
- package/dist/esm/async/async.errors.js +0 -27
- package/dist/esm/async/async.errors.js.map +0 -1
- package/dist/esm/async/backof-policies/_module.js +0 -6
- package/dist/esm/async/backof-policies/_module.js.map +0 -1
- package/dist/esm/async/backof-policies/_shared.js +0 -4
- package/dist/esm/async/backof-policies/_shared.js.map +0 -1
- package/dist/esm/async/backof-policies/constant-backoff-policy/_module.js +0 -2
- package/dist/esm/async/backof-policies/constant-backoff-policy/_module.js.map +0 -1
- package/dist/esm/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js +0 -16
- package/dist/esm/async/backof-policies/constant-backoff-policy/constant-backoff-policy.js.map +0 -1
- package/dist/esm/async/backof-policies/exponential-backoff-policy/_module.js +0 -2
- package/dist/esm/async/backof-policies/exponential-backoff-policy/_module.js.map +0 -1
- package/dist/esm/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js +0 -20
- package/dist/esm/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.js.map +0 -1
- package/dist/esm/async/backof-policies/linear-backoff-policy/_module.js +0 -2
- package/dist/esm/async/backof-policies/linear-backoff-policy/_module.js.map +0 -1
- package/dist/esm/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js +0 -20
- package/dist/esm/async/backof-policies/linear-backoff-policy/linear-backoff-policy.js.map +0 -1
- package/dist/esm/async/backof-policies/polynomial-backoff-policy/_module.js +0 -2
- package/dist/esm/async/backof-policies/polynomial-backoff-policy/_module.js.map +0 -1
- package/dist/esm/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js +0 -20
- package/dist/esm/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.js.map +0 -1
- package/dist/esm/async/utilities/_module.js +0 -6
- package/dist/esm/async/utilities/_module.js.map +0 -1
- package/dist/esm/async/utilities/abort/_module.js +0 -3
- package/dist/esm/async/utilities/abort/_module.js.map +0 -1
- package/dist/esm/async/utilities/abort/abort-and-fail.js +0 -42
- package/dist/esm/async/utilities/abort/abort-and-fail.js.map +0 -1
- package/dist/esm/async/utilities/abort/abort.js +0 -15
- package/dist/esm/async/utilities/abort/abort.js.map +0 -1
- package/dist/esm/async/utilities/delay/_module.js +0 -2
- package/dist/esm/async/utilities/delay/_module.js.map +0 -1
- package/dist/esm/async/utilities/delay/delay.js +0 -17
- package/dist/esm/async/utilities/delay/delay.js.map +0 -1
- package/dist/esm/async/utilities/lazy-promise/_module.js +0 -2
- package/dist/esm/async/utilities/lazy-promise/_module.js.map +0 -1
- package/dist/esm/async/utilities/lazy-promise/lazy-promise.js +0 -107
- package/dist/esm/async/utilities/lazy-promise/lazy-promise.js.map +0 -1
- package/dist/esm/async/utilities/retry/_module.js +0 -3
- package/dist/esm/async/utilities/retry/_module.js.map +0 -1
- package/dist/esm/async/utilities/retry/retry-or-fail.js +0 -33
- package/dist/esm/async/utilities/retry/retry-or-fail.js.map +0 -1
- package/dist/esm/async/utilities/retry/retry.js +0 -15
- package/dist/esm/async/utilities/retry/retry.js.map +0 -1
- package/dist/esm/async/utilities/timeout/_module.js +0 -3
- package/dist/esm/async/utilities/timeout/_module.js.map +0 -1
- package/dist/esm/async/utilities/timeout/timeout-and-fail.js +0 -22
- package/dist/esm/async/utilities/timeout/timeout-and-fail.js.map +0 -1
- package/dist/esm/async/utilities/timeout/timeout.js +0 -15
- package/dist/esm/async/utilities/timeout/timeout.js.map +0 -1
- package/dist/esm/cache/contracts/_module.js +0 -6
- package/dist/esm/cache/contracts/_module.js.map +0 -1
- package/dist/esm/cache/contracts/cache-adapter.contract.js +0 -1
- package/dist/esm/cache/contracts/cache-adapter.contract.js.map +0 -1
- package/dist/esm/cache/contracts/cache-factory.contract.js +0 -1
- package/dist/esm/cache/contracts/cache-factory.contract.js.map +0 -1
- package/dist/esm/cache/contracts/cache.contract.js +0 -1
- package/dist/esm/cache/contracts/cache.contract.js.map +0 -1
- package/dist/esm/cache/contracts/cache.errors.js +0 -56
- package/dist/esm/cache/contracts/cache.errors.js.map +0 -1
- package/dist/esm/cache/contracts/cache.events.js +0 -37
- package/dist/esm/cache/contracts/cache.events.js.map +0 -1
- package/dist/esm/cache/implementations/_module.js +0 -4
- package/dist/esm/cache/implementations/_module.js.map +0 -1
- package/dist/esm/cache/implementations/_shared/_module.js +0 -3
- package/dist/esm/cache/implementations/_shared/_module.js.map +0 -1
- package/dist/esm/cache/implementations/_shared/cache-adapter.test-suite.js +0 -250
- package/dist/esm/cache/implementations/_shared/cache-adapter.test-suite.js.map +0 -1
- package/dist/esm/cache/implementations/_shared/cache.test-suite.js +0 -1736
- package/dist/esm/cache/implementations/_shared/cache.test-suite.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/_module.js +0 -7
- package/dist/esm/cache/implementations/adapters/_module.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/kysely-sqlite-cache-adapter/_module.js +0 -2
- package/dist/esm/cache/implementations/adapters/kysely-sqlite-cache-adapter/_module.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/kysely-sqlite-cache-adapter/kysely-sqlite-cache-adapter.js +0 -310
- package/dist/esm/cache/implementations/adapters/kysely-sqlite-cache-adapter/kysely-sqlite-cache-adapter.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/libsql-cache-adapter/_module.js +0 -2
- package/dist/esm/cache/implementations/adapters/libsql-cache-adapter/_module.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/libsql-cache-adapter/libsql-cache-adapter.js +0 -64
- package/dist/esm/cache/implementations/adapters/libsql-cache-adapter/libsql-cache-adapter.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/memory-cache-adapter/_module.js +0 -2
- package/dist/esm/cache/implementations/adapters/memory-cache-adapter/_module.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/memory-cache-adapter/memory-cache-adapter.js +0 -87
- package/dist/esm/cache/implementations/adapters/memory-cache-adapter/memory-cache-adapter.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/mongodb-cache-adapter/_module.js +0 -2
- package/dist/esm/cache/implementations/adapters/mongodb-cache-adapter/_module.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/mongodb-cache-adapter/mongodb-cache-adapter.js +0 -286
- package/dist/esm/cache/implementations/adapters/mongodb-cache-adapter/mongodb-cache-adapter.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/no-op-cache-adapter/_module.js +0 -2
- package/dist/esm/cache/implementations/adapters/no-op-cache-adapter/_module.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/no-op-cache-adapter/no-op-cache-adapter.js +0 -30
- package/dist/esm/cache/implementations/adapters/no-op-cache-adapter/no-op-cache-adapter.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/redis-cache-adapter/_module.js +0 -2
- package/dist/esm/cache/implementations/adapters/redis-cache-adapter/_module.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/redis-cache-adapter/redis-cache-adapter.js +0 -167
- package/dist/esm/cache/implementations/adapters/redis-cache-adapter/redis-cache-adapter.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/sqlite-cache-adapter/_module.js +0 -2
- package/dist/esm/cache/implementations/adapters/sqlite-cache-adapter/_module.js.map +0 -1
- package/dist/esm/cache/implementations/adapters/sqlite-cache-adapter/sqlite-cache-adapter.js +0 -63
- package/dist/esm/cache/implementations/adapters/sqlite-cache-adapter/sqlite-cache-adapter.js.map +0 -1
- package/dist/esm/cache/implementations/derivables/_module.js +0 -3
- package/dist/esm/cache/implementations/derivables/_module.js.map +0 -1
- package/dist/esm/cache/implementations/derivables/cache/_module.js +0 -2
- package/dist/esm/cache/implementations/derivables/cache/_module.js.map +0 -1
- package/dist/esm/cache/implementations/derivables/cache/cache.js +0 -549
- package/dist/esm/cache/implementations/derivables/cache/cache.js.map +0 -1
- package/dist/esm/cache/implementations/derivables/cache-factory/_module.js +0 -2
- package/dist/esm/cache/implementations/derivables/cache-factory/_module.js.map +0 -1
- package/dist/esm/cache/implementations/derivables/cache-factory/cache-factory.js +0 -66
- package/dist/esm/cache/implementations/derivables/cache-factory/cache-factory.js.map +0 -1
- package/dist/esm/collection/contracts/_module.js +0 -5
- package/dist/esm/collection/contracts/_module.js.map +0 -1
- package/dist/esm/collection/contracts/_shared.js +0 -1
- package/dist/esm/collection/contracts/_shared.js.map +0 -1
- package/dist/esm/collection/contracts/async-collection.contract.js +0 -1
- package/dist/esm/collection/contracts/async-collection.contract.js.map +0 -1
- package/dist/esm/collection/contracts/collection.contract.js +0 -1
- package/dist/esm/collection/contracts/collection.contract.js.map +0 -1
- package/dist/esm/collection/contracts/collection.errors.js +0 -37
- package/dist/esm/collection/contracts/collection.errors.js.map +0 -1
- package/dist/esm/collection/implementations/_module.js +0 -5
- package/dist/esm/collection/implementations/_module.js.map +0 -1
- package/dist/esm/collection/implementations/_shared.js +0 -25
- package/dist/esm/collection/implementations/_shared.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_module.js +0 -2
- package/dist/esm/collection/implementations/async-iterable-collection/_module.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/_module.js +0 -37
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/_module.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js +0 -31
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js +0 -28
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js +0 -18
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js +0 -23
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js +0 -31
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-delay-iterable.js +0 -23
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-delay-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js +0 -14
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js +0 -16
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js +0 -14
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js +0 -25
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js +0 -23
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js +0 -23
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js +0 -14
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-map-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js +0 -20
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js +0 -27
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js +0 -27
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js +0 -25
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js +0 -18
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-retry-iterable.js +0 -29
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-retry-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js +0 -17
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js +0 -23
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js +0 -15
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js +0 -21
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js +0 -30
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js +0 -25
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js +0 -12
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js +0 -34
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-split-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js +0 -15
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-until-abort-iterable.js +0 -32
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-until-abort-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js +0 -17
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-until-timeout-iterable.js +0 -44
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-take-until-timeout-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js +0 -13
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js +0 -19
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js +0 -21
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-update-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js +0 -18
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-when-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js +0 -33
- package/dist/esm/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/async-iterable-collection/async-iterable-collection.js +0 -629
- package/dist/esm/collection/implementations/async-iterable-collection/async-iterable-collection.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_module.js +0 -2
- package/dist/esm/collection/implementations/iterable-collection/_module.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/_module.js +0 -33
- package/dist/esm/collection/implementations/iterable-collection/_shared/_module.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/chunk-iterable.js +0 -31
- package/dist/esm/collection/implementations/iterable-collection/_shared/chunk-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js +0 -28
- package/dist/esm/collection/implementations/iterable-collection/_shared/chunk-while-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/collapse-iterable.js +0 -18
- package/dist/esm/collection/implementations/iterable-collection/_shared/collapse-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/count-by-iterable.js +0 -23
- package/dist/esm/collection/implementations/iterable-collection/_shared/count-by-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/cross-join-iterable.js +0 -33
- package/dist/esm/collection/implementations/iterable-collection/_shared/cross-join-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/entries-iterable.js +0 -14
- package/dist/esm/collection/implementations/iterable-collection/_shared/entries-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/filter-iterable.js +0 -16
- package/dist/esm/collection/implementations/iterable-collection/_shared/filter-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/flat-map-iterable.js +0 -14
- package/dist/esm/collection/implementations/iterable-collection/_shared/flat-map-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/group-by-iterable.js +0 -25
- package/dist/esm/collection/implementations/iterable-collection/_shared/group-by-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/insert-after-iterable.js +0 -21
- package/dist/esm/collection/implementations/iterable-collection/_shared/insert-after-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/insert-before-iterable.js +0 -21
- package/dist/esm/collection/implementations/iterable-collection/_shared/insert-before-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/map-iterable.js +0 -14
- package/dist/esm/collection/implementations/iterable-collection/_shared/map-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/merge-iterable.js +0 -12
- package/dist/esm/collection/implementations/iterable-collection/_shared/merge-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/pad-end-iterable.js +0 -27
- package/dist/esm/collection/implementations/iterable-collection/_shared/pad-end-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/pad-start-iterable.js +0 -27
- package/dist/esm/collection/implementations/iterable-collection/_shared/pad-start-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/partion-iterable.js +0 -25
- package/dist/esm/collection/implementations/iterable-collection/_shared/partion-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/repeat-iterable.js +0 -18
- package/dist/esm/collection/implementations/iterable-collection/_shared/repeat-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/reverse-iterable.js +0 -17
- package/dist/esm/collection/implementations/iterable-collection/_shared/reverse-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/shuffle-iterable.js +0 -23
- package/dist/esm/collection/implementations/iterable-collection/_shared/shuffle-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/skip-iterable.js +0 -15
- package/dist/esm/collection/implementations/iterable-collection/_shared/skip-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/skip-until-iterable.js +0 -20
- package/dist/esm/collection/implementations/iterable-collection/_shared/skip-until-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/slice-iterable.js +0 -30
- package/dist/esm/collection/implementations/iterable-collection/_shared/slice-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/sliding-iterable.js +0 -25
- package/dist/esm/collection/implementations/iterable-collection/_shared/sliding-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/sort-iterable.js +0 -12
- package/dist/esm/collection/implementations/iterable-collection/_shared/sort-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/split-iterable.js +0 -34
- package/dist/esm/collection/implementations/iterable-collection/_shared/split-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/take-iterable.js +0 -15
- package/dist/esm/collection/implementations/iterable-collection/_shared/take-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/take-until-iterable.js +0 -17
- package/dist/esm/collection/implementations/iterable-collection/_shared/take-until-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/tap-iterable.js +0 -13
- package/dist/esm/collection/implementations/iterable-collection/_shared/tap-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/unique-iterable.js +0 -19
- package/dist/esm/collection/implementations/iterable-collection/_shared/unique-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/update-iterable.js +0 -21
- package/dist/esm/collection/implementations/iterable-collection/_shared/update-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/when-iterable.js +0 -18
- package/dist/esm/collection/implementations/iterable-collection/_shared/when-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/_shared/zip-iterable.js +0 -19
- package/dist/esm/collection/implementations/iterable-collection/_shared/zip-iterable.js.map +0 -1
- package/dist/esm/collection/implementations/iterable-collection/iterable-collection.js +0 -550
- package/dist/esm/collection/implementations/iterable-collection/iterable-collection.js.map +0 -1
- package/dist/esm/collection/implementations/list-collection/_module.js +0 -2
- package/dist/esm/collection/implementations/list-collection/_module.js.map +0 -1
- package/dist/esm/collection/implementations/list-collection/list-collection.js +0 -699
- package/dist/esm/collection/implementations/list-collection/list-collection.js.map +0 -1
- package/dist/esm/event-bus/contracts/_module.js +0 -6
- package/dist/esm/event-bus/contracts/_module.js.map +0 -1
- package/dist/esm/event-bus/contracts/_shared.js +0 -7
- package/dist/esm/event-bus/contracts/_shared.js.map +0 -1
- package/dist/esm/event-bus/contracts/event-bus-adapter.contract.js +0 -1
- package/dist/esm/event-bus/contracts/event-bus-adapter.contract.js.map +0 -1
- package/dist/esm/event-bus/contracts/event-bus-factory.contract.js +0 -1
- package/dist/esm/event-bus/contracts/event-bus-factory.contract.js.map +0 -1
- package/dist/esm/event-bus/contracts/event-bus.contract.js +0 -1
- package/dist/esm/event-bus/contracts/event-bus.contract.js.map +0 -1
- package/dist/esm/event-bus/contracts/event-bus.errors.js +0 -63
- package/dist/esm/event-bus/contracts/event-bus.errors.js.map +0 -1
- package/dist/esm/event-bus/implementations/_module.js +0 -4
- package/dist/esm/event-bus/implementations/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/_shared/_module.js +0 -3
- package/dist/esm/event-bus/implementations/_shared/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/_shared/event-bus-adapter.test-suite.js +0 -98
- package/dist/esm/event-bus/implementations/_shared/event-bus-adapter.test-suite.js.map +0 -1
- package/dist/esm/event-bus/implementations/_shared/event-bus.test-suite.js +0 -347
- package/dist/esm/event-bus/implementations/_shared/event-bus.test-suite.js.map +0 -1
- package/dist/esm/event-bus/implementations/adapters/_module.js +0 -4
- package/dist/esm/event-bus/implementations/adapters/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/adapters/memory-event-bus-adapter/_module.js +0 -2
- package/dist/esm/event-bus/implementations/adapters/memory-event-bus-adapter/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.js +0 -33
- package/dist/esm/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.js.map +0 -1
- package/dist/esm/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.js +0 -2
- package/dist/esm/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.js +0 -18
- package/dist/esm/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.js.map +0 -1
- package/dist/esm/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js +0 -2
- package/dist/esm/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.js +0 -48
- package/dist/esm/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.js.map +0 -1
- package/dist/esm/event-bus/implementations/derivables/_module.js +0 -3
- package/dist/esm/event-bus/implementations/derivables/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/derivables/event-bus/_module.js +0 -2
- package/dist/esm/event-bus/implementations/derivables/event-bus/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/derivables/event-bus/event-bus.js +0 -133
- package/dist/esm/event-bus/implementations/derivables/event-bus/event-bus.js.map +0 -1
- package/dist/esm/event-bus/implementations/derivables/event-bus-factory/_module.js +0 -2
- package/dist/esm/event-bus/implementations/derivables/event-bus-factory/_module.js.map +0 -1
- package/dist/esm/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.js +0 -55
- package/dist/esm/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.js.map +0 -1
- package/dist/esm/lock/contracts/_module.js +0 -8
- package/dist/esm/lock/contracts/_module.js.map +0 -1
- package/dist/esm/lock/contracts/database-lock-adapter.contract.js +0 -1
- package/dist/esm/lock/contracts/database-lock-adapter.contract.js.map +0 -1
- package/dist/esm/lock/contracts/lock-adapter.contract.js +0 -1
- package/dist/esm/lock/contracts/lock-adapter.contract.js.map +0 -1
- package/dist/esm/lock/contracts/lock-provider-factory.contract.js +0 -1
- package/dist/esm/lock/contracts/lock-provider-factory.contract.js.map +0 -1
- package/dist/esm/lock/contracts/lock-provider.contract.js +0 -1
- package/dist/esm/lock/contracts/lock-provider.contract.js.map +0 -1
- package/dist/esm/lock/contracts/lock.contract.js +0 -1
- package/dist/esm/lock/contracts/lock.contract.js.map +0 -1
- package/dist/esm/lock/contracts/lock.errors.js +0 -120
- package/dist/esm/lock/contracts/lock.errors.js.map +0 -1
- package/dist/esm/lock/contracts/lock.events.js +0 -32
- package/dist/esm/lock/contracts/lock.events.js.map +0 -1
- package/dist/esm/lock/implementations/_module.js +0 -4
- package/dist/esm/lock/implementations/_module.js.map +0 -1
- package/dist/esm/lock/implementations/_shared/_module.js +0 -4
- package/dist/esm/lock/implementations/_shared/_module.js.map +0 -1
- package/dist/esm/lock/implementations/_shared/database-lock-adapter.test-suite.js +0 -282
- package/dist/esm/lock/implementations/_shared/database-lock-adapter.test-suite.js.map +0 -1
- package/dist/esm/lock/implementations/_shared/lock-adapter.test-suite.js +0 -235
- package/dist/esm/lock/implementations/_shared/lock-adapter.test-suite.js.map +0 -1
- package/dist/esm/lock/implementations/_shared/lock-provider.test-suite.js +0 -1838
- package/dist/esm/lock/implementations/_shared/lock-provider.test-suite.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/_module.js +0 -6
- package/dist/esm/lock/implementations/adapters/_module.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/kysely-lock-adapter/_module.js +0 -2
- package/dist/esm/lock/implementations/adapters/kysely-lock-adapter/_module.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/kysely-lock-adapter/kysely-lock-adapter.js +0 -122
- package/dist/esm/lock/implementations/adapters/kysely-lock-adapter/kysely-lock-adapter.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/libsql-lock-adapter/_module.js +0 -2
- package/dist/esm/lock/implementations/adapters/libsql-lock-adapter/_module.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/libsql-lock-adapter/libsql-lock-adapter.js +0 -57
- package/dist/esm/lock/implementations/adapters/libsql-lock-adapter/libsql-lock-adapter.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/memory-lock-adapter/_module.js +0 -2
- package/dist/esm/lock/implementations/adapters/memory-lock-adapter/_module.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/memory-lock-adapter/memory-lock-adapter.js +0 -103
- package/dist/esm/lock/implementations/adapters/memory-lock-adapter/memory-lock-adapter.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/mongodb-lock-adapter/_module.js +0 -2
- package/dist/esm/lock/implementations/adapters/mongodb-lock-adapter/_module.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/mongodb-lock-adapter/mongodb-lock-adapter.js +0 -144
- package/dist/esm/lock/implementations/adapters/mongodb-lock-adapter/mongodb-lock-adapter.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/redis-lock-adapter/_module.js +0 -2
- package/dist/esm/lock/implementations/adapters/redis-lock-adapter/_module.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/redis-lock-adapter/redis-lock-adapter.js +0 -127
- package/dist/esm/lock/implementations/adapters/redis-lock-adapter/redis-lock-adapter.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/sqlite-lock-adapter/_module.js +0 -2
- package/dist/esm/lock/implementations/adapters/sqlite-lock-adapter/_module.js.map +0 -1
- package/dist/esm/lock/implementations/adapters/sqlite-lock-adapter/sqlite-lock-adapter.js +0 -56
- package/dist/esm/lock/implementations/adapters/sqlite-lock-adapter/sqlite-lock-adapter.js.map +0 -1
- package/dist/esm/lock/implementations/derivables/_module.js +0 -3
- package/dist/esm/lock/implementations/derivables/_module.js.map +0 -1
- package/dist/esm/lock/implementations/derivables/lock-provider/_module.js +0 -2
- package/dist/esm/lock/implementations/derivables/lock-provider/_module.js.map +0 -1
- package/dist/esm/lock/implementations/derivables/lock-provider/database-lock-adapter.js +0 -76
- package/dist/esm/lock/implementations/derivables/lock-provider/database-lock-adapter.js.map +0 -1
- package/dist/esm/lock/implementations/derivables/lock-provider/lock-provider.js +0 -158
- package/dist/esm/lock/implementations/derivables/lock-provider/lock-provider.js.map +0 -1
- package/dist/esm/lock/implementations/derivables/lock-provider/lock.js +0 -302
- package/dist/esm/lock/implementations/derivables/lock-provider/lock.js.map +0 -1
- package/dist/esm/lock/implementations/derivables/lock-provider-factory/_module.js +0 -2
- package/dist/esm/lock/implementations/derivables/lock-provider-factory/_module.js.map +0 -1
- package/dist/esm/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.js +0 -74
- package/dist/esm/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.js.map +0 -1
- package/dist/esm/serde/contracts/_module.js +0 -7
- package/dist/esm/serde/contracts/_module.js.map +0 -1
- package/dist/esm/serde/contracts/deserializer.contract.js +0 -1
- package/dist/esm/serde/contracts/deserializer.contract.js.map +0 -1
- package/dist/esm/serde/contracts/flexible-serde.contract.js +0 -1
- package/dist/esm/serde/contracts/flexible-serde.contract.js.map +0 -1
- package/dist/esm/serde/contracts/serde.contract.js +0 -1
- package/dist/esm/serde/contracts/serde.contract.js.map +0 -1
- package/dist/esm/serde/contracts/serde.errors.js +0 -19
- package/dist/esm/serde/contracts/serde.errors.js.map +0 -1
- package/dist/esm/serde/contracts/serializable.contract.js +0 -1
- package/dist/esm/serde/contracts/serializable.contract.js.map +0 -1
- package/dist/esm/serde/contracts/serializer.contract.js +0 -1
- package/dist/esm/serde/contracts/serializer.contract.js.map +0 -1
- package/dist/esm/serde/implementations/_module.js +0 -7
- package/dist/esm/serde/implementations/_module.js.map +0 -1
- package/dist/esm/serde/implementations/_shared/test-utilities/_module.js +0 -3
- package/dist/esm/serde/implementations/_shared/test-utilities/_module.js.map +0 -1
- package/dist/esm/serde/implementations/_shared/test-utilities/flexible-serde.test-suite.js +0 -66
- package/dist/esm/serde/implementations/_shared/test-utilities/flexible-serde.test-suite.js.map +0 -1
- package/dist/esm/serde/implementations/_shared/test-utilities/serde.test-suite.js +0 -333
- package/dist/esm/serde/implementations/_shared/test-utilities/serde.test-suite.js.map +0 -1
- package/dist/esm/serde/implementations/mongodb-serde/_module.js +0 -2
- package/dist/esm/serde/implementations/mongodb-serde/_module.js.map +0 -1
- package/dist/esm/serde/implementations/mongodb-serde/mongodb-serde.js +0 -32
- package/dist/esm/serde/implementations/mongodb-serde/mongodb-serde.js.map +0 -1
- package/dist/esm/serde/implementations/no-op-serde/_module.js +0 -2
- package/dist/esm/serde/implementations/no-op-serde/_module.js.map +0 -1
- package/dist/esm/serde/implementations/no-op-serde/no-op-serde.js +0 -18
- package/dist/esm/serde/implementations/no-op-serde/no-op-serde.js.map +0 -1
- package/dist/esm/serde/implementations/redis-serde/_module.js +0 -2
- package/dist/esm/serde/implementations/redis-serde/_module.js.map +0 -1
- package/dist/esm/serde/implementations/redis-serde/redis-serde.js +0 -33
- package/dist/esm/serde/implementations/redis-serde/redis-serde.js.map +0 -1
- package/dist/esm/serde/implementations/sql-serde/_module.js +0 -2
- package/dist/esm/serde/implementations/sql-serde/_module.js.map +0 -1
- package/dist/esm/serde/implementations/sql-serde/sql-serde.js +0 -33
- package/dist/esm/serde/implementations/sql-serde/sql-serde.js.map +0 -1
- package/dist/esm/serde/implementations/super-json-serde/_module.js +0 -2
- package/dist/esm/serde/implementations/super-json-serde/_module.js.map +0 -1
- package/dist/esm/serde/implementations/super-json-serde/super-json-serde.js +0 -235
- package/dist/esm/serde/implementations/super-json-serde/super-json-serde.js.map +0 -1
- package/dist/esm/utilities/_module.js +0 -7
- package/dist/esm/utilities/_module.js.map +0 -1
- package/dist/esm/utilities/contracts/_module.js +0 -6
- package/dist/esm/utilities/contracts/_module.js.map +0 -1
- package/dist/esm/utilities/contracts/buildable.contract.js +0 -1
- package/dist/esm/utilities/contracts/buildable.contract.js.map +0 -1
- package/dist/esm/utilities/contracts/deinitizable.contract.js +0 -1
- package/dist/esm/utilities/contracts/deinitizable.contract.js.map +0 -1
- package/dist/esm/utilities/contracts/initizable.contract.js +0 -1
- package/dist/esm/utilities/contracts/initizable.contract.js.map +0 -1
- package/dist/esm/utilities/contracts/serde-registrable.contract.js +0 -1
- package/dist/esm/utilities/contracts/serde-registrable.contract.js.map +0 -1
- package/dist/esm/utilities/contracts/serialized-error.contract.js +0 -1
- package/dist/esm/utilities/contracts/serialized-error.contract.js.map +0 -1
- package/dist/esm/utilities/errors.js +0 -19
- package/dist/esm/utilities/errors.js.map +0 -1
- package/dist/esm/utilities/functions.js +0 -35
- package/dist/esm/utilities/functions.js.map +0 -1
- package/dist/esm/utilities/kysely/_module.js +0 -2
- package/dist/esm/utilities/kysely/_module.js.map +0 -1
- package/dist/esm/utilities/kysely/kysely-table-name-transformer-plugin.js +0 -41
- package/dist/esm/utilities/kysely/kysely-table-name-transformer-plugin.js.map +0 -1
- package/dist/esm/utilities/time-span/_module.js +0 -2
- package/dist/esm/utilities/time-span/_module.js.map +0 -1
- package/dist/esm/utilities/time-span/time-span.js +0 -107
- package/dist/esm/utilities/time-span/time-span.js.map +0 -1
- package/dist/esm/utilities/types.js +0 -1
- package/dist/esm/utilities/types.js.map +0 -1
- package/dist/types/_module.d.ts +0 -12
- package/dist/types/async/_module.d.ts +0 -3
- package/dist/types/async/async.errors.d.ts +0 -35
- package/dist/types/async/backof-policies/_module.d.ts +0 -5
- package/dist/types/async/backof-policies/_shared.d.ts +0 -12
- package/dist/types/async/backof-policies/constant-backoff-policy/_module.d.ts +0 -1
- package/dist/types/async/backof-policies/constant-backoff-policy/constant-backoff-policy.d.ts +0 -28
- package/dist/types/async/backof-policies/exponential-backoff-policy/_module.d.ts +0 -1
- package/dist/types/async/backof-policies/exponential-backoff-policy/exponential-backoff-policy.d.ts +0 -36
- package/dist/types/async/backof-policies/linear-backoff-policy/_module.d.ts +0 -1
- package/dist/types/async/backof-policies/linear-backoff-policy/linear-backoff-policy.d.ts +0 -32
- package/dist/types/async/backof-policies/polynomial-backoff-policy/_module.d.ts +0 -1
- package/dist/types/async/backof-policies/polynomial-backoff-policy/polynomial-backoff-policy.d.ts +0 -36
- package/dist/types/async/utilities/_module.d.ts +0 -5
- package/dist/types/async/utilities/abort/_module.d.ts +0 -2
- package/dist/types/async/utilities/abort/abort.d.ts +0 -9
- package/dist/types/async/utilities/delay/_module.d.ts +0 -1
- package/dist/types/async/utilities/delay/delay.d.ts +0 -19
- package/dist/types/async/utilities/lazy-promise/_module.d.ts +0 -1
- package/dist/types/async/utilities/lazy-promise/lazy-promise.d.ts +0 -212
- package/dist/types/async/utilities/retry/_module.d.ts +0 -2
- package/dist/types/async/utilities/retry/retry-or-fail.d.ts +0 -23
- package/dist/types/async/utilities/retry/retry.d.ts +0 -10
- package/dist/types/async/utilities/timeout/_module.d.ts +0 -2
- package/dist/types/async/utilities/timeout/timeout-and-fail.d.ts +0 -5
- package/dist/types/async/utilities/timeout/timeout.d.ts +0 -10
- package/dist/types/cache/contracts/_module.d.ts +0 -5
- package/dist/types/cache/contracts/cache-adapter.contract.d.ts +0 -54
- package/dist/types/cache/contracts/cache-factory.contract.d.ts +0 -34
- package/dist/types/cache/contracts/cache.contract.d.ts +0 -642
- package/dist/types/cache/contracts/cache.errors.d.ts +0 -39
- package/dist/types/cache/contracts/cache.events.d.ts +0 -95
- package/dist/types/cache/implementations/_module.d.ts +0 -3
- package/dist/types/cache/implementations/_shared/_module.d.ts +0 -2
- package/dist/types/cache/implementations/_shared/cache-adapter.test-suite.d.ts +0 -55
- package/dist/types/cache/implementations/_shared/cache.test-suite.d.ts +0 -63
- package/dist/types/cache/implementations/adapters/_module.d.ts +0 -6
- package/dist/types/cache/implementations/adapters/kysely-sqlite-cache-adapter/_module.d.ts +0 -1
- package/dist/types/cache/implementations/adapters/kysely-sqlite-cache-adapter/kysely-sqlite-cache-adapter.d.ts +0 -61
- package/dist/types/cache/implementations/adapters/libsql-cache-adapter/_module.d.ts +0 -1
- package/dist/types/cache/implementations/adapters/libsql-cache-adapter/libsql-cache-adapter.d.ts +0 -65
- package/dist/types/cache/implementations/adapters/memory-cache-adapter/_module.d.ts +0 -1
- package/dist/types/cache/implementations/adapters/memory-cache-adapter/memory-cache-adapter.d.ts +0 -54
- package/dist/types/cache/implementations/adapters/mongodb-cache-adapter/_module.d.ts +0 -1
- package/dist/types/cache/implementations/adapters/mongodb-cache-adapter/mongodb-cache-adapter.d.ts +0 -71
- package/dist/types/cache/implementations/adapters/no-op-cache-adapter/_module.d.ts +0 -1
- package/dist/types/cache/implementations/adapters/no-op-cache-adapter/no-op-cache-adapter.d.ts +0 -20
- package/dist/types/cache/implementations/adapters/redis-cache-adapter/_module.d.ts +0 -1
- package/dist/types/cache/implementations/adapters/redis-cache-adapter/redis-cache-adapter.d.ts +0 -59
- package/dist/types/cache/implementations/adapters/sqlite-cache-adapter/_module.d.ts +0 -1
- package/dist/types/cache/implementations/adapters/sqlite-cache-adapter/sqlite-cache-adapter.d.ts +0 -65
- package/dist/types/cache/implementations/derivables/_module.d.ts +0 -2
- package/dist/types/cache/implementations/derivables/cache/_module.d.ts +0 -1
- package/dist/types/cache/implementations/derivables/cache/cache.d.ts +0 -125
- package/dist/types/cache/implementations/derivables/cache-factory/_module.d.ts +0 -1
- package/dist/types/cache/implementations/derivables/cache-factory/cache-factory.d.ts +0 -111
- package/dist/types/collection/contracts/_module.d.ts +0 -4
- package/dist/types/collection/contracts/_shared.d.ts +0 -33
- package/dist/types/collection/contracts/async-collection.contract.d.ts +0 -2180
- package/dist/types/collection/contracts/collection.contract.d.ts +0 -2048
- package/dist/types/collection/contracts/collection.errors.d.ts +0 -39
- package/dist/types/collection/implementations/_module.d.ts +0 -4
- package/dist/types/collection/implementations/_shared.d.ts +0 -22
- package/dist/types/collection/implementations/async-iterable-collection/_module.d.ts +0 -1
- package/dist/types/collection/implementations/async-iterable-collection/_shared/_module.d.ts +0 -36
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-chunk-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-chunk-while-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-collapse-iterable.d.ts +0 -12
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-count-by-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-cross-join-iterable.d.ts +0 -16
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-delay-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-entries-iterable.d.ts +0 -12
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-filter-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-flat-map-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-group-by-iterable.d.ts +0 -18
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-insert-after-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-insert-before-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-map-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-merge-iterable.d.ts +0 -12
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-pad-end-iterable.d.ts +0 -16
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-pad-start-iterable.d.ts +0 -16
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-partion-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-repeat-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-retry-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-reverse-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-shuffle-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-skip-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-skip-until-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-slice-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-sliding-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-sort-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-split-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-until-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-take-until-timeout-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-tap-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-unique-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-update-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-when-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/async-iterable-collection/_shared/async-zip-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/async-iterable-collection/async-iterable-collection.d.ts +0 -303
- package/dist/types/collection/implementations/iterable-collection/_module.d.ts +0 -1
- package/dist/types/collection/implementations/iterable-collection/_shared/_module.d.ts +0 -32
- package/dist/types/collection/implementations/iterable-collection/_shared/chunk-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/chunk-while-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/collapse-iterable.d.ts +0 -12
- package/dist/types/collection/implementations/iterable-collection/_shared/count-by-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/cross-join-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/filter-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/flat-map-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/group-by-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/insert-after-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/insert-before-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/map-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/pad-end-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/iterable-collection/_shared/pad-start-iterable.d.ts +0 -15
- package/dist/types/collection/implementations/iterable-collection/_shared/partion-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/repeat-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/reverse-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/skip-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/skip-until-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/slice-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/sliding-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/sort-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/split-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/take-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/take-until-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/tap-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/unique-iterable.d.ts +0 -13
- package/dist/types/collection/implementations/iterable-collection/_shared/update-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/_shared/when-iterable.d.ts +0 -14
- package/dist/types/collection/implementations/iterable-collection/iterable-collection.d.ts +0 -245
- package/dist/types/collection/implementations/list-collection/_module.d.ts +0 -1
- package/dist/types/collection/implementations/list-collection/list-collection.d.ts +0 -242
- package/dist/types/event-bus/contracts/_module.d.ts +0 -5
- package/dist/types/event-bus/contracts/_shared.d.ts +0 -15
- package/dist/types/event-bus/contracts/event-bus-adapter.contract.d.ts +0 -26
- package/dist/types/event-bus/contracts/event-bus-factory.contract.d.ts +0 -40
- package/dist/types/event-bus/contracts/event-bus.contract.d.ts +0 -146
- package/dist/types/event-bus/contracts/event-bus.errors.d.ts +0 -45
- package/dist/types/event-bus/implementations/_module.d.ts +0 -3
- package/dist/types/event-bus/implementations/_shared/_module.d.ts +0 -2
- package/dist/types/event-bus/implementations/_shared/event-bus-adapter.test-suite.d.ts +0 -63
- package/dist/types/event-bus/implementations/_shared/event-bus.test-suite.d.ts +0 -65
- package/dist/types/event-bus/implementations/adapters/_module.d.ts +0 -3
- package/dist/types/event-bus/implementations/adapters/memory-event-bus-adapter/_module.d.ts +0 -1
- package/dist/types/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.d.ts +0 -51
- package/dist/types/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.d.ts +0 -1
- package/dist/types/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.d.ts +0 -16
- package/dist/types/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.d.ts +0 -1
- package/dist/types/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.d.ts +0 -52
- package/dist/types/event-bus/implementations/derivables/_module.d.ts +0 -2
- package/dist/types/event-bus/implementations/derivables/event-bus/_module.d.ts +0 -1
- package/dist/types/event-bus/implementations/derivables/event-bus/event-bus.d.ts +0 -70
- package/dist/types/event-bus/implementations/derivables/event-bus-factory/_module.d.ts +0 -1
- package/dist/types/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.d.ts +0 -92
- package/dist/types/lock/contracts/_module.d.ts +0 -7
- package/dist/types/lock/contracts/database-lock-adapter.contract.d.ts +0 -49
- package/dist/types/lock/contracts/lock-adapter.contract.d.ts +0 -48
- package/dist/types/lock/contracts/lock-provider-factory.contract.d.ts +0 -36
- package/dist/types/lock/contracts/lock-provider.contract.d.ts +0 -92
- package/dist/types/lock/contracts/lock.contract.d.ts +0 -219
- package/dist/types/lock/contracts/lock.errors.d.ts +0 -66
- package/dist/types/lock/contracts/lock.events.d.ts +0 -83
- package/dist/types/lock/implementations/_module.d.ts +0 -3
- package/dist/types/lock/implementations/_shared/_module.d.ts +0 -3
- package/dist/types/lock/implementations/_shared/database-lock-adapter.test-suite.d.ts +0 -21
- package/dist/types/lock/implementations/_shared/lock-adapter.test-suite.d.ts +0 -21
- package/dist/types/lock/implementations/_shared/lock-provider.test-suite.d.ts +0 -23
- package/dist/types/lock/implementations/adapters/_module.d.ts +0 -5
- package/dist/types/lock/implementations/adapters/kysely-lock-adapter/_module.d.ts +0 -1
- package/dist/types/lock/implementations/adapters/kysely-lock-adapter/kysely-lock-adapter.d.ts +0 -52
- package/dist/types/lock/implementations/adapters/libsql-lock-adapter/_module.d.ts +0 -1
- package/dist/types/lock/implementations/adapters/libsql-lock-adapter/libsql-lock-adapter.d.ts +0 -58
- package/dist/types/lock/implementations/adapters/memory-lock-adapter/_module.d.ts +0 -1
- package/dist/types/lock/implementations/adapters/memory-lock-adapter/memory-lock-adapter.d.ts +0 -52
- package/dist/types/lock/implementations/adapters/mongodb-lock-adapter/_module.d.ts +0 -1
- package/dist/types/lock/implementations/adapters/mongodb-lock-adapter/mongodb-lock-adapter.d.ts +0 -60
- package/dist/types/lock/implementations/adapters/redis-lock-adapter/_module.d.ts +0 -1
- package/dist/types/lock/implementations/adapters/redis-lock-adapter/redis-lock-adapter.d.ts +0 -57
- package/dist/types/lock/implementations/adapters/sqlite-lock-adapter/_module.d.ts +0 -1
- package/dist/types/lock/implementations/adapters/sqlite-lock-adapter/sqlite-lock-adapter.d.ts +0 -57
- package/dist/types/lock/implementations/derivables/_module.d.ts +0 -2
- package/dist/types/lock/implementations/derivables/lock-provider/_module.d.ts +0 -1
- package/dist/types/lock/implementations/derivables/lock-provider/database-lock-adapter.d.ts +0 -23
- package/dist/types/lock/implementations/derivables/lock-provider/lock-provider.d.ts +0 -114
- package/dist/types/lock/implementations/derivables/lock-provider/lock.d.ts +0 -73
- package/dist/types/lock/implementations/derivables/lock-provider-factory/_module.d.ts +0 -1
- package/dist/types/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.d.ts +0 -124
- package/dist/types/serde/contracts/_module.d.ts +0 -6
- package/dist/types/serde/contracts/deserializer.contract.d.ts +0 -13
- package/dist/types/serde/contracts/flexible-serde.contract.d.ts +0 -121
- package/dist/types/serde/contracts/serde.contract.d.ts +0 -10
- package/dist/types/serde/contracts/serde.errors.d.ts +0 -21
- package/dist/types/serde/contracts/serializable.contract.d.ts +0 -10
- package/dist/types/serde/contracts/serializer.contract.d.ts +0 -10
- package/dist/types/serde/implementations/_module.d.ts +0 -6
- package/dist/types/serde/implementations/_shared/test-utilities/_module.d.ts +0 -2
- package/dist/types/serde/implementations/_shared/test-utilities/flexible-serde.test-suite.d.ts +0 -17
- package/dist/types/serde/implementations/_shared/test-utilities/serde.test-suite.d.ts +0 -17
- package/dist/types/serde/implementations/mongodb-serde/_module.d.ts +0 -1
- package/dist/types/serde/implementations/mongodb-serde/mongodb-serde.d.ts +0 -13
- package/dist/types/serde/implementations/no-op-serde/_module.d.ts +0 -1
- package/dist/types/serde/implementations/no-op-serde/no-op-serde.d.ts +0 -15
- package/dist/types/serde/implementations/redis-serde/_module.d.ts +0 -1
- package/dist/types/serde/implementations/redis-serde/redis-serde.d.ts +0 -13
- package/dist/types/serde/implementations/sql-serde/_module.d.ts +0 -1
- package/dist/types/serde/implementations/sql-serde/sql-serde.d.ts +0 -13
- package/dist/types/serde/implementations/super-json-serde/_module.d.ts +0 -1
- package/dist/types/serde/implementations/super-json-serde/super-json-serde.d.ts +0 -47
- package/dist/types/utilities/_module.d.ts +0 -6
- package/dist/types/utilities/contracts/_module.d.ts +0 -5
- package/dist/types/utilities/contracts/buildable.contract.d.ts +0 -9
- package/dist/types/utilities/contracts/deinitizable.contract.d.ts +0 -9
- package/dist/types/utilities/contracts/initizable.contract.d.ts +0 -9
- package/dist/types/utilities/contracts/serde-registrable.contract.d.ts +0 -11
- package/dist/types/utilities/contracts/serialized-error.contract.d.ts +0 -11
- package/dist/types/utilities/errors.d.ts +0 -21
- package/dist/types/utilities/functions.d.ts +0 -29
- package/dist/types/utilities/kysely/_module.d.ts +0 -1
- package/dist/types/utilities/time-span/_module.d.ts +0 -1
- package/dist/types/utilities/time-span/time-span.d.ts +0 -62
- package/dist/types/utilities/types.d.ts +0 -14
- /package/dist/{types/async → async}/utilities/abort/abort-and-fail.d.ts +0 -0
- /package/dist/{types/collection → collection}/implementations/async-iterable-collection/_shared/async-take-until-abort-iterable.d.ts +0 -0
- /package/dist/{types/collection → collection}/implementations/iterable-collection/_shared/entries-iterable.d.ts +0 -0
- /package/dist/{types/collection → collection}/implementations/iterable-collection/_shared/merge-iterable.d.ts +0 -0
- /package/dist/{types/collection → collection}/implementations/iterable-collection/_shared/shuffle-iterable.d.ts +0 -0
- /package/dist/{types/collection → collection}/implementations/iterable-collection/_shared/zip-iterable.d.ts +0 -0
- /package/dist/{types/utilities → utilities}/kysely/kysely-table-name-transformer-plugin.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-collection.js","sourceRoot":"","sources":["../../../../src/collection/implementations/list-collection/list-collection.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from "../../event-bus/contracts/_shared.js";
|
|
2
|
+
export * from "../../event-bus/contracts/event-bus-adapter.contract.js";
|
|
3
|
+
export * from "../../event-bus/contracts/event-bus-factory.contract.js";
|
|
4
|
+
export * from "../../event-bus/contracts/event-bus.contract.js";
|
|
5
|
+
export * from "../../event-bus/contracts/event-bus.errors.js";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "../../event-bus/contracts/_shared.js";
|
|
2
|
+
export * from "../../event-bus/contracts/event-bus-adapter.contract.js";
|
|
3
|
+
export * from "../../event-bus/contracts/event-bus-factory.contract.js";
|
|
4
|
+
export * from "../../event-bus/contracts/event-bus.contract.js";
|
|
5
|
+
export * from "../../event-bus/contracts/event-bus.errors.js";
|
|
6
|
+
//# sourceMappingURL=_module-exports.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_module-exports.js","sourceRoot":"","sources":["../../../src/event-bus/contracts/_module-exports.ts"],"names":[],"mappings":"AAAA,cAAc,kCAAkC,CAAC;AACjD,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import type { Promisable } from "../../utilities/_module-exports.js";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
8
|
+
* @group Contracts
|
|
9
|
+
*/
|
|
10
|
+
export type Listener<TEvent> = (event: TEvent) => Promisable<void>;
|
|
11
|
+
/**
|
|
12
|
+
*
|
|
13
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
14
|
+
* @group Contracts
|
|
15
|
+
*/
|
|
16
|
+
export declare abstract class BaseEvent<TFields extends Record<string, unknown> = Record<string, unknown>> {
|
|
17
|
+
readonly fields: TFields;
|
|
18
|
+
constructor(fields: TFields);
|
|
19
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
7
|
+
* @group Contracts
|
|
8
|
+
*/
|
|
9
|
+
export class BaseEvent {
|
|
10
|
+
fields;
|
|
11
|
+
constructor(fields) {
|
|
12
|
+
this.fields = fields;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=_shared.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_shared.js","sourceRoot":"","sources":["../../../src/event-bus/contracts/_shared.ts"],"names":[],"mappings":"AAAA;;GAEG;AAWH;;;;GAIG;AACH,MAAM,OAAgB,SAAS;IAGN;IAArB,YAAqB,MAAe;QAAf,WAAM,GAAN,MAAM,CAAS;IAAG,CAAC;CAC3C"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import type { Listener, BaseEvent } from "../../event-bus/contracts/_shared.js";
|
|
5
|
+
/**
|
|
6
|
+
* The <i>IEventBusAdapter</i> contract defines a way for dispatching and listening to events independent of underlying technology.
|
|
7
|
+
* This contract is not meant to be used directly, instead you should use <i>IEventBus</i>
|
|
8
|
+
*
|
|
9
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
10
|
+
* @group Contracts
|
|
11
|
+
*/
|
|
12
|
+
export type IEventBusAdapter = {
|
|
13
|
+
/**
|
|
14
|
+
* The <i>addListener</i> method is used for adding <i>{@link Listener | listener}</i> for certain <i>eventName</i>.
|
|
15
|
+
*/
|
|
16
|
+
addListener(eventName: string, listener: Listener<BaseEvent>): PromiseLike<void>;
|
|
17
|
+
/**
|
|
18
|
+
* The <i>removeListener</i> method is used for removing <i>{@link Listener | listener}</i> for certain <i>eventName</i>.
|
|
19
|
+
*/
|
|
20
|
+
removeListener(eventName: string, listener: Listener<BaseEvent>): PromiseLike<void>;
|
|
21
|
+
/**
|
|
22
|
+
* The <i>dispatch</i> method is used for dispatching one or multiple <i>events</i>.
|
|
23
|
+
*/
|
|
24
|
+
dispatch(eventName: string, eventData: BaseEvent): PromiseLike<void>;
|
|
25
|
+
/**
|
|
26
|
+
* The <i>getGroup</i> method returns the group name.
|
|
27
|
+
*/
|
|
28
|
+
getGroup(): string;
|
|
29
|
+
/**
|
|
30
|
+
* The <i>withGroup</i> method returns a new <i>{@link IEventBusAdapter}</i> instance that groups events together.
|
|
31
|
+
* Only events in the same group will be listened.
|
|
32
|
+
*/
|
|
33
|
+
withGroup(group: string): IEventBusAdapter;
|
|
34
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event-bus-adapter.contract.js","sourceRoot":"","sources":["../../../src/event-bus/contracts/event-bus-adapter.contract.ts"],"names":[],"mappings":"AAAA;;GAEG"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import type { IGroupableEventBus } from "../../event-bus/contracts/event-bus.contract.js";
|
|
5
|
+
import type { BaseEvent } from "../../event-bus/contracts/_shared.js";
|
|
6
|
+
/**
|
|
7
|
+
* The <i>IEventBusFactory</i> contract makes it easy to configure and switch between different <i>{@link IGroupableEventBus}</i> dynamically.
|
|
8
|
+
*
|
|
9
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
10
|
+
* @group Contracts
|
|
11
|
+
*/
|
|
12
|
+
export type IEventBusFactory<TAdapters extends string = string> = {
|
|
13
|
+
/**
|
|
14
|
+
* The <i>use</i> method will throw an error if you provide it unregisted adapter.
|
|
15
|
+
* If no default adapter is defined an error will be thrown by <i>use</i> method.
|
|
16
|
+
* @throws {UnregisteredAdapterError} {@link UnregisteredAdapterError}
|
|
17
|
+
* @throws {DefaultAdapterNotDefinedError} {@link DefaultAdapterNotDefinedError}
|
|
18
|
+
*/
|
|
19
|
+
use<TEvents extends BaseEvent = BaseEvent>(adapterName?: TAdapters): IGroupableEventBus<TEvents>;
|
|
20
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import {
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
6
|
+
UnregisteredAdapterError,
|
|
7
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
8
|
+
DefaultAdapterNotDefinedError, } from "../../utilities/_module-exports.js";
|
|
9
|
+
//# sourceMappingURL=event-bus-factory.contract.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event-bus-factory.contract.js","sourceRoot":"","sources":["../../../src/event-bus/contracts/event-bus-factory.contract.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO;AACH,6DAA6D;AAC7D,wBAAwB;AACxB,6DAA6D;AAC7D,6BAA6B,GAChC,MAAM,gCAAgC,CAAC"}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import type { OneOrMore } from "../../utilities/_module-exports.js";
|
|
5
|
+
import type { LazyPromise } from "../../async/_module-exports.js";
|
|
6
|
+
import type { BaseEvent, Listener } from "../../event-bus/contracts/_shared.js";
|
|
7
|
+
/**
|
|
8
|
+
*
|
|
9
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
10
|
+
* @group Contracts
|
|
11
|
+
*/
|
|
12
|
+
export type EventClass<TEvents extends BaseEvent> = {
|
|
13
|
+
new (...arguments_: any[]): TEvents;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
18
|
+
* @group Contracts
|
|
19
|
+
*/
|
|
20
|
+
export type EventInstance<TEventClass extends EventClass<BaseEvent>> = TEventClass extends {
|
|
21
|
+
new (...arguments_: any[]): infer TInstance;
|
|
22
|
+
} ? TInstance : never;
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
26
|
+
* @group Contracts
|
|
27
|
+
*/
|
|
28
|
+
export type Unsubscribe = () => LazyPromise<void>;
|
|
29
|
+
/**
|
|
30
|
+
* The <i>IEventListener</i> contract defines a way listening to events independent of underlying technology
|
|
31
|
+
*
|
|
32
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
33
|
+
* @group Contracts
|
|
34
|
+
*/
|
|
35
|
+
export type IEventListener<TEvents extends BaseEvent = BaseEvent> = {
|
|
36
|
+
/**
|
|
37
|
+
* The <i>addListener</i> method is used for listening to <i>{@link BaseEvent}</i>.
|
|
38
|
+
* The same listener can only be added once for a specific event. Adding the same listener multiple times will have no effect and nothing will occur.
|
|
39
|
+
* @throws {UnableToAddListenerEventBusError} {@link UnableToAddListenerEventBusError}
|
|
40
|
+
*/
|
|
41
|
+
addListener<TEventClass extends EventClass<TEvents>>(event: TEventClass, listener: Listener<EventInstance<TEventClass>>): LazyPromise<void>;
|
|
42
|
+
/**
|
|
43
|
+
* The <i>addListenerMany</i> method is used for listening to multiple <i>{@link BaseEvent}</i>.
|
|
44
|
+
* The same listener can only be added once for a specific event. Adding the same listener multiple times will have no effect and nothing will occur.
|
|
45
|
+
* @throws {UnableToAddListenerEventBusError} {@link UnableToAddListenerEventBusError}
|
|
46
|
+
*/
|
|
47
|
+
addListenerMany<TEventClass extends EventClass<TEvents>>(events: TEventClass[], listener: Listener<EventInstance<TEventClass>>): LazyPromise<void>;
|
|
48
|
+
/**
|
|
49
|
+
* The <i>removeListener</i> method is used for stop listening to <i>{@link BaseEvent}</i>.
|
|
50
|
+
* Removing unadded listener will have no effect and nothing will occur.
|
|
51
|
+
* @throws {UnableToRemoveListenerEventBusError} {@link UnableToRemoveListenerEventBusError}
|
|
52
|
+
*/
|
|
53
|
+
removeListener<TEventClass extends EventClass<TEvents>>(event: TEventClass, listener: Listener<EventInstance<TEventClass>>): LazyPromise<void>;
|
|
54
|
+
/**
|
|
55
|
+
* The <i>removeListener</i> method is used for stop listening to multiple <i>{@link BaseEvent}</i>.
|
|
56
|
+
* Removing unadded listener will have no effect and nothing will occur.
|
|
57
|
+
* @throws {UnableToRemoveListenerEventBusError} {@link UnableToRemoveListenerEventBusError}
|
|
58
|
+
*/
|
|
59
|
+
removeListenerMany<TEventClass extends EventClass<TEvents>>(events: TEventClass[], listener: Listener<EventInstance<TEventClass>>): LazyPromise<void>;
|
|
60
|
+
/**
|
|
61
|
+
* The <i>listenOnce</i> method is used for listening to <i>{@link BaseEvent}</i> once.
|
|
62
|
+
* @throws {UnableToAddListenerEventBusError} {@link UnableToAddListenerEventBusError}
|
|
63
|
+
*/
|
|
64
|
+
listenOnce<TEventClass extends EventClass<TEvents>>(event: TEventClass, listener: Listener<EventInstance<TEventClass>>): LazyPromise<void>;
|
|
65
|
+
/**
|
|
66
|
+
* The <i>subscribe</i> method is used for listening to <i>{@link BaseEvent}</i> and it returns a cleanup function that removes listener when called.
|
|
67
|
+
* The same listener can only be added once for a specific event. Adding the same listener multiple times will have no effect and nothing will occur.
|
|
68
|
+
*/
|
|
69
|
+
subscribe<TEventClass extends EventClass<TEvents>>(event: TEventClass, listener: Listener<EventInstance<TEventClass>>): LazyPromise<Unsubscribe>;
|
|
70
|
+
/**
|
|
71
|
+
* The <i>subscribeMany</i> method is used for listening to multiple <i>{@link BaseEvent}</i> and it returns a cleanup function that removes listener when called.
|
|
72
|
+
* The same listener can only be added once for a specific event. Adding the same listener multiple times will have no effect and nothing will occur.
|
|
73
|
+
*/
|
|
74
|
+
subscribeMany<TEventClass extends EventClass<TEvents>>(events: TEventClass[], listener: Listener<EventInstance<TEventClass>>): LazyPromise<Unsubscribe>;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* The <i>IEventDispatcher</i> contract defines a way for dispatching to events independent of underlying technology.
|
|
78
|
+
*
|
|
79
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
80
|
+
* @group Contracts
|
|
81
|
+
*/
|
|
82
|
+
export type IEventDispatcher<TEvents extends BaseEvent = BaseEvent> = {
|
|
83
|
+
/**
|
|
84
|
+
* The <i>dispatch</i> method is used for dispatching a <i>{@link BaseEvent}</i>.
|
|
85
|
+
|
|
86
|
+
* @throws {UnableToDispatchEventBusError} {@link UnableToDispatchEventBusError}
|
|
87
|
+
*/
|
|
88
|
+
dispatch(event: TEvents): LazyPromise<void>;
|
|
89
|
+
/**
|
|
90
|
+
* The <i>dispatchMany</i> method is used for dispatching multiple <i>{@link BaseEvent}</i>.
|
|
91
|
+
|
|
92
|
+
* @throws {UnableToDispatchEventBusError} {@link UnableToDispatchEventBusError}
|
|
93
|
+
*/
|
|
94
|
+
dispatchMany(events: TEvents[]): LazyPromise<void>;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* The <i>IEventBus</i> contract defines a way for dispatching and listening to events independent of underlying technology.
|
|
98
|
+
* It commes with more convient methods compared to <i>IEventBusAdapter</i>.
|
|
99
|
+
*
|
|
100
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
101
|
+
* @group Contracts
|
|
102
|
+
*/
|
|
103
|
+
export type IEventBus<TEvents extends BaseEvent = BaseEvent> = IEventListener<TEvents> & IEventDispatcher<TEvents> & {
|
|
104
|
+
/**
|
|
105
|
+
* The <i>getGroup</i> method returns the group name.
|
|
106
|
+
*/
|
|
107
|
+
getGroup(): string;
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* The <i>IGroupableEventBus</i> contract defines a way for dispatching and listening to events independent of underlying technology.
|
|
111
|
+
* It commes with one extra method which is useful for multitennat applications compared to <i>IEventBus</i>.
|
|
112
|
+
*
|
|
113
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
114
|
+
* @group Contracts
|
|
115
|
+
*/
|
|
116
|
+
export type IGroupableEventBus<TEvents extends BaseEvent = BaseEvent> = IEventBus<TEvents> & {
|
|
117
|
+
/**
|
|
118
|
+
* The <i>withGroup</i> method returns a new <i>{@link IEventBus}</i> instance that groups events together.
|
|
119
|
+
* Only events in the same group will be listened to. This useful for multitennat applications.
|
|
120
|
+
*/
|
|
121
|
+
withGroup(group: OneOrMore<string>): IEventBus<TEvents>;
|
|
122
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import {
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
6
|
+
UnableToDispatchEventBusError,
|
|
7
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
8
|
+
UnableToAddListenerEventBusError,
|
|
9
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
10
|
+
UnableToRemoveListenerEventBusError, } from "../../event-bus/contracts/event-bus.errors.js";
|
|
11
|
+
//# sourceMappingURL=event-bus.contract.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event-bus.contract.js","sourceRoot":"","sources":["../../../src/event-bus/contracts/event-bus.contract.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO;AACH,6DAA6D;AAC7D,6BAA6B;AAC7B,6DAA6D;AAC7D,gCAAgC;AAChC,6DAA6D;AAC7D,mCAAmC,GACtC,MAAM,2CAA2C,CAAC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import type { IFlexibleSerde, ISerializable } from "../../serde/contracts/_module-exports.js";
|
|
5
|
+
import { type ISerializedError, type OneOrMore } from "../../utilities/_module-exports.js";
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
9
|
+
* @group Errors
|
|
10
|
+
*/
|
|
11
|
+
export declare class EventBusError extends Error implements ISerializable<ISerializedError> {
|
|
12
|
+
static deserialize(deserializedValue: ISerializedError): EventBusError;
|
|
13
|
+
constructor(message: string, cause?: unknown);
|
|
14
|
+
serialize(): ISerializedError;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
19
|
+
* @group Errors
|
|
20
|
+
*/
|
|
21
|
+
export declare class UnexpectedEventBusError extends EventBusError {
|
|
22
|
+
static deserialize(deserializedValue: ISerializedError): EventBusError;
|
|
23
|
+
constructor(message: string, cause?: unknown);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
28
|
+
* @group Errors
|
|
29
|
+
*/
|
|
30
|
+
export declare class UnableToRemoveListenerEventBusError extends UnexpectedEventBusError {
|
|
31
|
+
static deserialize(deserializedValue: ISerializedError): EventBusError;
|
|
32
|
+
constructor(message: string, cause?: unknown);
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
37
|
+
* @group Errors
|
|
38
|
+
*/
|
|
39
|
+
export declare class UnableToAddListenerEventBusError extends UnexpectedEventBusError {
|
|
40
|
+
static deserialize(deserializedValue: ISerializedError): EventBusError;
|
|
41
|
+
constructor(message: string, cause?: unknown);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
46
|
+
* @group Errors
|
|
47
|
+
*/
|
|
48
|
+
export declare class UnableToDispatchEventBusError extends UnexpectedEventBusError {
|
|
49
|
+
constructor(message: string, cause?: unknown);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* The <i>registerEventBusErrorsToSerde</i> function registers all <i>{@link IGroupableEventBus}</i> related errors with <i>IFlexibleSerde</i>, ensuring they will properly be serialized and deserialized.
|
|
53
|
+
*
|
|
54
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
55
|
+
* @group Errors
|
|
56
|
+
*/
|
|
57
|
+
export declare function registerEventBusErrorsToSerde(serde: OneOrMore<IFlexibleSerde>): void;
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import { CORE, } from "../../utilities/_module-exports.js";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
8
|
+
* @group Errors
|
|
9
|
+
*/
|
|
10
|
+
export class EventBusError extends Error {
|
|
11
|
+
static deserialize(deserializedValue) {
|
|
12
|
+
return new EventBusError(deserializedValue.message, deserializedValue.cause);
|
|
13
|
+
}
|
|
14
|
+
constructor(message, cause) {
|
|
15
|
+
super(message, { cause });
|
|
16
|
+
this.name = EventBusError.name;
|
|
17
|
+
}
|
|
18
|
+
serialize() {
|
|
19
|
+
return {
|
|
20
|
+
name: this.name,
|
|
21
|
+
message: this.message,
|
|
22
|
+
cause: this.cause,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
29
|
+
* @group Errors
|
|
30
|
+
*/
|
|
31
|
+
export class UnexpectedEventBusError extends EventBusError {
|
|
32
|
+
static deserialize(deserializedValue) {
|
|
33
|
+
return new UnexpectedEventBusError(deserializedValue.message, deserializedValue.cause);
|
|
34
|
+
}
|
|
35
|
+
constructor(message, cause) {
|
|
36
|
+
super(message, { cause });
|
|
37
|
+
this.name = UnexpectedEventBusError.name;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
43
|
+
* @group Errors
|
|
44
|
+
*/
|
|
45
|
+
export class UnableToRemoveListenerEventBusError extends UnexpectedEventBusError {
|
|
46
|
+
static deserialize(deserializedValue) {
|
|
47
|
+
return new UnableToRemoveListenerEventBusError(deserializedValue.message, deserializedValue.cause);
|
|
48
|
+
}
|
|
49
|
+
constructor(message, cause) {
|
|
50
|
+
super(message, { cause });
|
|
51
|
+
this.name = UnableToRemoveListenerEventBusError.name;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
57
|
+
* @group Errors
|
|
58
|
+
*/
|
|
59
|
+
export class UnableToAddListenerEventBusError extends UnexpectedEventBusError {
|
|
60
|
+
static deserialize(deserializedValue) {
|
|
61
|
+
return new UnableToAddListenerEventBusError(deserializedValue.message, deserializedValue.cause);
|
|
62
|
+
}
|
|
63
|
+
constructor(message, cause) {
|
|
64
|
+
super(message, { cause });
|
|
65
|
+
this.name = UnableToAddListenerEventBusError.name;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
71
|
+
* @group Errors
|
|
72
|
+
*/
|
|
73
|
+
export class UnableToDispatchEventBusError extends UnexpectedEventBusError {
|
|
74
|
+
constructor(message, cause) {
|
|
75
|
+
super(message, { cause });
|
|
76
|
+
this.name = UnableToDispatchEventBusError.name;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* The <i>registerEventBusErrorsToSerde</i> function registers all <i>{@link IGroupableEventBus}</i> related errors with <i>IFlexibleSerde</i>, ensuring they will properly be serialized and deserialized.
|
|
81
|
+
*
|
|
82
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/contracts"```
|
|
83
|
+
* @group Errors
|
|
84
|
+
*/
|
|
85
|
+
export function registerEventBusErrorsToSerde(serde) {
|
|
86
|
+
if (!Array.isArray(serde)) {
|
|
87
|
+
serde = [serde];
|
|
88
|
+
}
|
|
89
|
+
for (const serde_ of serde) {
|
|
90
|
+
serde_
|
|
91
|
+
.registerClass(EventBusError, CORE)
|
|
92
|
+
.registerClass(UnexpectedEventBusError, CORE)
|
|
93
|
+
.registerClass(UnableToRemoveListenerEventBusError, CORE)
|
|
94
|
+
.registerClass(UnableToAddListenerEventBusError, CORE)
|
|
95
|
+
.registerClass(UnableToDispatchEventBusError, CORE);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
//# sourceMappingURL=event-bus.errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event-bus.errors.js","sourceRoot":"","sources":["../../../src/event-bus/contracts/event-bus.errors.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from "../../../event-bus/implementations/adapters/memory-event-bus-adapter/_module.js";
|
|
2
|
+
export * from "../../../event-bus/implementations/adapters/no-op-event-bus-adapter/_module.js";
|
|
3
|
+
export * from "../../../event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from "../../../event-bus/implementations/adapters/memory-event-bus-adapter/_module.js";
|
|
2
|
+
export * from "../../../event-bus/implementations/adapters/no-op-event-bus-adapter/_module.js";
|
|
3
|
+
export * from "../../../event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js";
|
|
4
|
+
//# sourceMappingURL=_module-exports.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_module-exports.js","sourceRoot":"","sources":["../../../../src/event-bus/implementations/adapters/_module-exports.ts"],"names":[],"mappings":"AAAA,cAAc,0EAA0E,CAAC;AACzF,cAAc,yEAAyE,CAAC;AACxF,cAAc,iFAAiF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../../../../event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/event-bus/implementations/adapters/memory-event-bus-adapter/_module.ts"],"names":[],"mappings":"AAAA,cAAc,2FAA2F,CAAC"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module EventBus
|
|
3
|
+
*/
|
|
4
|
+
import type { BaseEvent, IEventBusAdapter, Listener } from "../../../../event-bus/contracts/_module-exports.js";
|
|
5
|
+
import { EventEmitter } from "node:events";
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/implementations/adapters"```
|
|
9
|
+
* @group Adapters
|
|
10
|
+
*/
|
|
11
|
+
export type MemoryEventBusAdapterSettings = {
|
|
12
|
+
rootGroup: string;
|
|
13
|
+
eventEmitter?: EventEmitter;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* To utilize the <i>MemoryEventBusAdapter</i>, you must create instance of it.
|
|
17
|
+
*
|
|
18
|
+
* IMPORT_PATH: ```"@daiso-tech/core/event-bus/implementations/adapters"```
|
|
19
|
+
* @group Adapters
|
|
20
|
+
*/
|
|
21
|
+
export declare class MemoryEventBusAdapter implements IEventBusAdapter {
|
|
22
|
+
private readonly group;
|
|
23
|
+
private readonly eventEmitter;
|
|
24
|
+
/**
|
|
25
|
+
* @example
|
|
26
|
+
* ```ts
|
|
27
|
+
* import { MemoryEventBusAdapter } from "@daiso-tech/core/event-bus/implementations/adapters";
|
|
28
|
+
* import { EventEmitter } from "node:events";
|
|
29
|
+
*
|
|
30
|
+
* const eventEmitter = new EventEmitter();
|
|
31
|
+
* const eventBusAdapter = new MemoryEventBusAdapter({
|
|
32
|
+
* eventEmitter
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
35
|
+
* You can also provide an <i>EVentEmitter</i>.
|
|
36
|
+
* @example
|
|
37
|
+
* ```ts
|
|
38
|
+
* import { MemoryEventBusAdapter } from "@daiso-tech/core/event-bus/implementations/adapters";
|
|
39
|
+
* import { EventEmitter } from "node:events";
|
|
40
|
+
*
|
|
41
|
+
* const eventEmitter = new EventEmitter();
|
|
42
|
+
* const eventBusAdapter = new MemoryEventBusAdapter({
|
|
43
|
+
* rootGroup: "@global",
|
|
44
|
+
* eventEmitter
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
constructor(settings: MemoryEventBusAdapterSettings);
|
|
49
|
+
getGroup(): string;
|
|
50
|
+
withGroup(group: string): IEventBusAdapter;
|
|
51
|
+
private withPrefix;
|
|
52
|
+
addListener(eventName: string, listener: Listener<BaseEvent>): Promise<void>;
|
|
53
|
+
removeListener(eventName: string, listener: Listener<BaseEvent>): Promise<void>;
|
|
54
|
+
dispatch(eventName: string, eventData: BaseEvent): Promise<void>;
|
|
55
|
+
}
|