@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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"event-bus.test-suite.js","sourceRoot":"","sources":["../../../../../src/event-bus/implementations/_shared/event-bus.test-suite.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from "../../../event-bus/implementations/adapters/memory-event-bus-adapter/_module";
|
|
2
|
-
export * from "../../../event-bus/implementations/adapters/no-op-event-bus-adapter/_module";
|
|
3
|
-
export * from "../../../event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module";
|
|
4
|
-
//# sourceMappingURL=_module.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/event-bus/implementations/adapters/_module.ts"],"names":[],"mappings":"AAAA,cAAc,uEAAuE,CAAC;AACtF,cAAc,sEAAsE,CAAC;AACrF,cAAc,8EAA8E,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/adapters/memory-event-bus-adapter/_module.ts"],"names":[],"mappings":"AAAA,cAAc,wFAAwF,CAAC"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { simplifyGroupName } from "../../../../utilities/_module";
|
|
2
|
-
import { EventEmitter } from "node:events";
|
|
3
|
-
export class MemoryEventBusAdapter {
|
|
4
|
-
group;
|
|
5
|
-
eventEmitter;
|
|
6
|
-
constructor(settings) {
|
|
7
|
-
const { rootGroup, eventEmitter = new EventEmitter() } = settings;
|
|
8
|
-
this.eventEmitter = eventEmitter;
|
|
9
|
-
this.group = rootGroup;
|
|
10
|
-
}
|
|
11
|
-
getGroup() {
|
|
12
|
-
return this.group;
|
|
13
|
-
}
|
|
14
|
-
withGroup(group) {
|
|
15
|
-
return new MemoryEventBusAdapter({
|
|
16
|
-
rootGroup: simplifyGroupName([this.group, group]),
|
|
17
|
-
eventEmitter: this.eventEmitter,
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
withPrefix(event) {
|
|
21
|
-
return simplifyGroupName([this.group, event]);
|
|
22
|
-
}
|
|
23
|
-
async addListener(eventName, listener) {
|
|
24
|
-
this.eventEmitter.on(this.withPrefix(eventName), listener);
|
|
25
|
-
}
|
|
26
|
-
async removeListener(eventName, listener) {
|
|
27
|
-
this.eventEmitter.off(this.withPrefix(eventName), listener);
|
|
28
|
-
}
|
|
29
|
-
async dispatch(eventName, eventData) {
|
|
30
|
-
this.eventEmitter.emit(this.withPrefix(eventName), eventData);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
//# sourceMappingURL=memory-event-bus-adapter.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"memory-event-bus-adapter.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/adapters/memory-event-bus-adapter/memory-event-bus-adapter.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAMxD,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAc3C,MAAM,OAAO,qBAAqB;IACb,KAAK,CAAS;IACd,YAAY,CAAe;IA0B5C,YAAY,QAAuC;QAC/C,MAAM,EAAE,SAAS,EAAE,YAAY,GAAG,IAAI,YAAY,EAAE,EAAE,GAAG,QAAQ,CAAC;QAClE,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC;IAC3B,CAAC;IAED,QAAQ;QACJ,OAAO,IAAI,CAAC,KAAK,CAAC;IACtB,CAAC;IAED,SAAS,CAAC,KAAa;QACnB,OAAO,IAAI,qBAAqB,CAAC;YAC7B,SAAS,EAAE,iBAAiB,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;YACjD,YAAY,EAAE,IAAI,CAAC,YAAY;SAClC,CAAC,CAAC;IACP,CAAC;IAEO,UAAU,CAAC,KAAa;QAC5B,OAAO,iBAAiB,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;IAClD,CAAC;IAGD,KAAK,CAAC,WAAW,CACb,SAAiB,EACjB,QAA6B;QAG7B,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,QAAQ,CAAC,CAAC;IAC/D,CAAC;IAGD,KAAK,CAAC,cAAc,CAChB,SAAiB,EACjB,QAA6B;QAG7B,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,QAAQ,CAAC,CAAC;IAChE,CAAC;IAGD,KAAK,CAAC,QAAQ,CAAC,SAAiB,EAAE,SAAoB;QAClD,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,SAAS,CAAC,CAAC;IAClE,CAAC;CACJ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/adapters/no-op-event-bus-adapter/_module.ts"],"names":[],"mappings":"AAAA,cAAc,sFAAsF,CAAC"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export class NoOpEventBusAdapter {
|
|
2
|
-
getGroup() {
|
|
3
|
-
return "";
|
|
4
|
-
}
|
|
5
|
-
withGroup(_group) {
|
|
6
|
-
return new NoOpEventBusAdapter();
|
|
7
|
-
}
|
|
8
|
-
addListener(_eventName, _listener) {
|
|
9
|
-
return Promise.resolve();
|
|
10
|
-
}
|
|
11
|
-
removeListener(_eventName, _listener) {
|
|
12
|
-
return Promise.resolve();
|
|
13
|
-
}
|
|
14
|
-
dispatch(_eventName, _eventData) {
|
|
15
|
-
return Promise.resolve();
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
//# sourceMappingURL=no-op-event-bus-adapter.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"no-op-event-bus-adapter.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/adapters/no-op-event-bus-adapter/no-op-event-bus-adapter.ts"],"names":[],"mappings":"AAeA,MAAM,OAAO,mBAAmB;IAC5B,QAAQ;QACJ,OAAO,EAAE,CAAC;IACd,CAAC;IAED,SAAS,CAAC,MAAc;QACpB,OAAO,IAAI,mBAAmB,EAAE,CAAC;IACrC,CAAC;IAED,WAAW,CACP,UAAkB,EAClB,SAA8B;QAE9B,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC;IAC7B,CAAC;IAED,cAAc,CACV,UAAkB,EAClB,SAA8B;QAE9B,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC;IAC7B,CAAC;IAED,QAAQ,CAAC,UAAkB,EAAE,UAAqB;QAC9C,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC;IAC7B,CAAC;CACJ"}
|
package/dist/esm/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/_module.ts"],"names":[],"mappings":"AAAA,cAAc,sGAAsG,CAAC"}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { RedisSerde, } from "../../../../serde/implementations/_module";
|
|
2
|
-
import { EventEmitter } from "node:events";
|
|
3
|
-
import { simplifyGroupName } from "../../../../utilities/_module";
|
|
4
|
-
export class RedisPubSubEventBusAdapter {
|
|
5
|
-
group;
|
|
6
|
-
baseSerde;
|
|
7
|
-
redisSerde;
|
|
8
|
-
dispatcherClient;
|
|
9
|
-
listenerClient;
|
|
10
|
-
eventEmitter = new EventEmitter();
|
|
11
|
-
constructor({ dispatcherClient, listenerClient, serde, rootGroup, }) {
|
|
12
|
-
this.group = rootGroup;
|
|
13
|
-
this.dispatcherClient = dispatcherClient;
|
|
14
|
-
this.listenerClient = listenerClient;
|
|
15
|
-
this.baseSerde = serde;
|
|
16
|
-
this.redisSerde = new RedisSerde(serde);
|
|
17
|
-
}
|
|
18
|
-
getGroup() {
|
|
19
|
-
return this.group;
|
|
20
|
-
}
|
|
21
|
-
withGroup(group) {
|
|
22
|
-
return new RedisPubSubEventBusAdapter({
|
|
23
|
-
listenerClient: this.listenerClient,
|
|
24
|
-
dispatcherClient: this.dispatcherClient,
|
|
25
|
-
serde: this.baseSerde,
|
|
26
|
-
rootGroup: simplifyGroupName([this.group, group]),
|
|
27
|
-
});
|
|
28
|
-
}
|
|
29
|
-
withPrefix(eventName) {
|
|
30
|
-
return simplifyGroupName([this.group, eventName]);
|
|
31
|
-
}
|
|
32
|
-
redisListener = (channel, message) => {
|
|
33
|
-
this.eventEmitter.emit(channel, this.redisSerde.deserialize(message));
|
|
34
|
-
};
|
|
35
|
-
async addListener(eventName, listener) {
|
|
36
|
-
this.eventEmitter.on(this.withPrefix(eventName), listener);
|
|
37
|
-
await this.listenerClient.subscribe(this.withPrefix(eventName));
|
|
38
|
-
this.listenerClient.on("message", this.redisListener);
|
|
39
|
-
}
|
|
40
|
-
async removeListener(eventName, listener) {
|
|
41
|
-
this.eventEmitter.off(this.withPrefix(eventName), listener);
|
|
42
|
-
await this.listenerClient.unsubscribe(this.withPrefix(eventName));
|
|
43
|
-
}
|
|
44
|
-
async dispatch(eventName, eventData) {
|
|
45
|
-
await this.dispatcherClient.publish(this.withPrefix(eventName), this.redisSerde.serialize(eventData));
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
//# sourceMappingURL=redis-pub-sub-event-bus-adapter.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"redis-pub-sub-event-bus-adapter.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/adapters/redis-pub-sub-event-bus-adapter/redis-pub-sub-event-bus-adapter.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,UAAU,GAGb,MAAM,iCAAiC,CAAC;AAOzC,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAgBxD,MAAM,OAAO,0BAA0B;IAClB,KAAK,CAAS;IACd,SAAS,CAAiB;IAC1B,UAAU,CAAiB;IAC3B,gBAAgB,CAAQ;IACxB,cAAc,CAAQ;IACtB,YAAY,GAAG,IAAI,YAAY,EAAE,CAAC;IAmBnD,YAAY,EACR,gBAAgB,EAChB,cAAc,EACd,KAAK,EACL,SAAS,GACwB;QACjC,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC;QACvB,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;QACzC,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,KAAK,CAAC,CAAC;IAC5C,CAAC;IAED,QAAQ;QACJ,OAAO,IAAI,CAAC,KAAK,CAAC;IACtB,CAAC;IAED,SAAS,CAAC,KAAa;QACnB,OAAO,IAAI,0BAA0B,CAAC;YAClC,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,gBAAgB,EAAE,IAAI,CAAC,gBAAgB;YACvC,KAAK,EAAE,IAAI,CAAC,SAAS;YACrB,SAAS,EAAE,iBAAiB,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;SACpD,CAAC,CAAC;IACP,CAAC;IAEO,UAAU,CAAC,SAAiB;QAChC,OAAO,iBAAiB,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC;IACtD,CAAC;IAEO,aAAa,GAAG,CAAC,OAAe,EAAE,OAAe,EAAQ,EAAE;QAC/D,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1E,CAAC,CAAC;IAEF,KAAK,CAAC,WAAW,CACb,SAAiB,EACjB,QAA6B;QAG7B,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,QAAQ,CAAC,CAAC;QAE3D,MAAM,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC;QAGhE,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,SAAS,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;IAC1D,CAAC;IAED,KAAK,CAAC,cAAc,CAChB,SAAiB,EACjB,QAA6B;QAG7B,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,QAAQ,CAAC,CAAC;QAE5D,MAAM,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC;IACtE,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,SAAiB,EAAE,SAAoB;QAClD,MAAM,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAC/B,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAC1B,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,SAAS,CAAC,CACvC,CAAC;IACN,CAAC;CACJ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../src/event-bus/implementations/derivables/_module.ts"],"names":[],"mappings":"AAAA,cAAc,kEAAkE,CAAC;AACjF,cAAc,0DAA0D,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/derivables/event-bus/_module.ts"],"names":[],"mappings":"AAAA,cAAc,4DAA4D,CAAC"}
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
import { LazyPromise } from "../../../../async/_module";
|
|
2
|
-
import { UnableToDispatchEventBusError, UnableToRemoveListenerEventBusError, UnableToAddListenerEventBusError, } from "../../../../event-bus/contracts/_module";
|
|
3
|
-
import { getConstructorName, isArrayEmpty, simplifyGroupName, } from "../../../../utilities/_module";
|
|
4
|
-
export class EventBus {
|
|
5
|
-
adapter;
|
|
6
|
-
retryAttempts;
|
|
7
|
-
backoffPolicy;
|
|
8
|
-
retryPolicy;
|
|
9
|
-
timeout;
|
|
10
|
-
constructor(settings) {
|
|
11
|
-
const { adapter, retryAttempts = null, backoffPolicy = null, retryPolicy = null, timeout = null, } = settings;
|
|
12
|
-
this.retryAttempts = retryAttempts;
|
|
13
|
-
this.backoffPolicy = backoffPolicy;
|
|
14
|
-
this.retryPolicy = retryPolicy;
|
|
15
|
-
this.timeout = timeout;
|
|
16
|
-
this.adapter = adapter;
|
|
17
|
-
}
|
|
18
|
-
createLayPromise(asyncFn) {
|
|
19
|
-
return new LazyPromise(asyncFn)
|
|
20
|
-
.setRetryAttempts(this.retryAttempts)
|
|
21
|
-
.setBackoffPolicy(this.backoffPolicy)
|
|
22
|
-
.setRetryPolicy(this.retryPolicy)
|
|
23
|
-
.setTimeout(this.timeout);
|
|
24
|
-
}
|
|
25
|
-
withGroup(group) {
|
|
26
|
-
return new EventBus({
|
|
27
|
-
adapter: this.adapter.withGroup(simplifyGroupName(group)),
|
|
28
|
-
retryAttempts: this.retryAttempts,
|
|
29
|
-
backoffPolicy: this.backoffPolicy,
|
|
30
|
-
retryPolicy: this.retryPolicy,
|
|
31
|
-
timeout: this.timeout,
|
|
32
|
-
});
|
|
33
|
-
}
|
|
34
|
-
getGroup() {
|
|
35
|
-
return this.adapter.getGroup();
|
|
36
|
-
}
|
|
37
|
-
addListener(event, listener) {
|
|
38
|
-
return this.createLayPromise(async () => {
|
|
39
|
-
try {
|
|
40
|
-
await this.adapter.addListener(event.name, listener);
|
|
41
|
-
}
|
|
42
|
-
catch (error) {
|
|
43
|
-
throw new UnableToAddListenerEventBusError(`A listener with name of "${listener.name}" could not added for "${String(event)}" event`, error);
|
|
44
|
-
}
|
|
45
|
-
});
|
|
46
|
-
}
|
|
47
|
-
removeListener(event, listener) {
|
|
48
|
-
return this.createLayPromise(async () => {
|
|
49
|
-
try {
|
|
50
|
-
await this.adapter.removeListener(event.name, listener);
|
|
51
|
-
}
|
|
52
|
-
catch (error) {
|
|
53
|
-
throw new UnableToRemoveListenerEventBusError(`A listener with name of "${listener.name}" could not removed of "${String(event)}" event`, error);
|
|
54
|
-
}
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
addListenerMany(events, listener) {
|
|
58
|
-
return this.createLayPromise(async () => {
|
|
59
|
-
if (isArrayEmpty(events)) {
|
|
60
|
-
return;
|
|
61
|
-
}
|
|
62
|
-
const promises = [];
|
|
63
|
-
for (const event of events) {
|
|
64
|
-
promises.push(this.addListener(event, listener));
|
|
65
|
-
}
|
|
66
|
-
await Promise.all(promises);
|
|
67
|
-
});
|
|
68
|
-
}
|
|
69
|
-
removeListenerMany(events, listener) {
|
|
70
|
-
return this.createLayPromise(async () => {
|
|
71
|
-
if (isArrayEmpty(events)) {
|
|
72
|
-
return;
|
|
73
|
-
}
|
|
74
|
-
const promises = [];
|
|
75
|
-
for (const event of events) {
|
|
76
|
-
promises.push(this.removeListener(event, listener));
|
|
77
|
-
}
|
|
78
|
-
await Promise.all(promises);
|
|
79
|
-
});
|
|
80
|
-
}
|
|
81
|
-
listenOnce(event, listener) {
|
|
82
|
-
return this.createLayPromise(async () => {
|
|
83
|
-
const wrappedListener = async (event_) => {
|
|
84
|
-
try {
|
|
85
|
-
await listener(event_);
|
|
86
|
-
}
|
|
87
|
-
finally {
|
|
88
|
-
await this.removeListener(event, wrappedListener);
|
|
89
|
-
}
|
|
90
|
-
};
|
|
91
|
-
await this.addListener(event, wrappedListener);
|
|
92
|
-
});
|
|
93
|
-
}
|
|
94
|
-
subscribe(event, listener) {
|
|
95
|
-
return this.subscribeMany([event], listener);
|
|
96
|
-
}
|
|
97
|
-
subscribeMany(events, listener) {
|
|
98
|
-
return this.createLayPromise(async () => {
|
|
99
|
-
await this.addListenerMany(events, listener);
|
|
100
|
-
const unsubscribe = () => {
|
|
101
|
-
return this.createLayPromise(async () => {
|
|
102
|
-
await this.removeListenerMany(events, listener);
|
|
103
|
-
});
|
|
104
|
-
};
|
|
105
|
-
return unsubscribe;
|
|
106
|
-
});
|
|
107
|
-
}
|
|
108
|
-
dispatchMany(events) {
|
|
109
|
-
return this.createLayPromise(async () => {
|
|
110
|
-
try {
|
|
111
|
-
const promises = [];
|
|
112
|
-
for (const event of events) {
|
|
113
|
-
promises.push(this.adapter.dispatch(getConstructorName(event), event));
|
|
114
|
-
}
|
|
115
|
-
await Promise.all(promises);
|
|
116
|
-
}
|
|
117
|
-
catch (error) {
|
|
118
|
-
throw new UnableToDispatchEventBusError(`Events of types "${events.map((event) => getConstructorName(event)).join(", ")}" could not be dispatched`, error);
|
|
119
|
-
}
|
|
120
|
-
});
|
|
121
|
-
}
|
|
122
|
-
dispatch(event) {
|
|
123
|
-
return this.createLayPromise(async () => {
|
|
124
|
-
try {
|
|
125
|
-
await this.adapter.dispatch(getConstructorName(event), event);
|
|
126
|
-
}
|
|
127
|
-
catch (error) {
|
|
128
|
-
throw new UnableToDispatchEventBusError(`Event of type "${String(getConstructorName(event))}" could not be dispatched`, error);
|
|
129
|
-
}
|
|
130
|
-
});
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
//# sourceMappingURL=event-bus.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"event-bus.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/derivables/event-bus/event-bus.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/derivables/event-bus-factory/_module.ts"],"names":[],"mappings":"AAAA,cAAc,4EAA4E,CAAC"}
|
package/dist/esm/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.js
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import { registerEventBusErrors, } from "../../../../event-bus/contracts/_module";
|
|
2
|
-
import { EventBus } from "../../../../event-bus/implementations/derivables/event-bus/event-bus";
|
|
3
|
-
import { DefaultAdapterNotDefinedError, UnregisteredAdapterError, } from "../../../../utilities/_module";
|
|
4
|
-
export class EventBusFactory {
|
|
5
|
-
eventBusRecord = {};
|
|
6
|
-
serde;
|
|
7
|
-
defaultAdapter;
|
|
8
|
-
retryAttempts;
|
|
9
|
-
backoffPolicy;
|
|
10
|
-
retryPolicy;
|
|
11
|
-
timeout;
|
|
12
|
-
shouldRegisterErrors;
|
|
13
|
-
constructor(settings) {
|
|
14
|
-
const { adapters, shouldRegisterErrors = true, serde, defaultAdapter, retryAttempts, backoffPolicy, retryPolicy, timeout, } = settings;
|
|
15
|
-
this.shouldRegisterErrors = shouldRegisterErrors;
|
|
16
|
-
this.serde = serde;
|
|
17
|
-
this.retryAttempts = retryAttempts;
|
|
18
|
-
this.backoffPolicy = backoffPolicy;
|
|
19
|
-
this.retryPolicy = retryPolicy;
|
|
20
|
-
this.timeout = timeout;
|
|
21
|
-
this.defaultAdapter = defaultAdapter;
|
|
22
|
-
this.eventBusRecord = this.init(adapters);
|
|
23
|
-
}
|
|
24
|
-
init(adapters) {
|
|
25
|
-
if (this.shouldRegisterErrors) {
|
|
26
|
-
registerEventBusErrors(this.serde);
|
|
27
|
-
}
|
|
28
|
-
const eventBusRecord = {};
|
|
29
|
-
for (const key in adapters) {
|
|
30
|
-
const { [key]: adapter } = adapters;
|
|
31
|
-
if (adapter === undefined) {
|
|
32
|
-
continue;
|
|
33
|
-
}
|
|
34
|
-
eventBusRecord[key] = new EventBus({
|
|
35
|
-
adapter,
|
|
36
|
-
retryAttempts: this.retryAttempts,
|
|
37
|
-
backoffPolicy: this.backoffPolicy,
|
|
38
|
-
retryPolicy: this.retryPolicy,
|
|
39
|
-
timeout: this.timeout,
|
|
40
|
-
});
|
|
41
|
-
}
|
|
42
|
-
return eventBusRecord;
|
|
43
|
-
}
|
|
44
|
-
use(adapterName = this.defaultAdapter) {
|
|
45
|
-
if (adapterName === undefined) {
|
|
46
|
-
throw new DefaultAdapterNotDefinedError(EventBusFactory.name);
|
|
47
|
-
}
|
|
48
|
-
const eventBus = this.eventBusRecord[adapterName];
|
|
49
|
-
if (eventBus === undefined) {
|
|
50
|
-
throw new UnregisteredAdapterError(adapterName);
|
|
51
|
-
}
|
|
52
|
-
return eventBus;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
//# sourceMappingURL=event-bus-factory.js.map
|
package/dist/esm/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"event-bus-factory.js","sourceRoot":"","sources":["../../../../../../src/event-bus/implementations/derivables/event-bus-factory/event-bus-factory.ts"],"names":[],"mappings":"AAKA,OAAO,EAKH,sBAAsB,GACzB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,4DAA4D,CAAC;AAEtF,OAAO,EACH,6BAA6B,EAC7B,wBAAwB,GAC3B,MAAM,qBAAqB,CAAC;AAuE7B,MAAM,OAAO,eAAe;IAGP,cAAc,GAAG,EAA+B,CAAC;IACjD,KAAK,CAA4B;IACjC,cAAc,CAAa;IAC3B,aAAa,CAAiB;IAC9B,aAAa,CAAwB;IACrC,WAAW,CAAsB;IACjC,OAAO,CAAmB;IAC1B,oBAAoB,CAAW;IAyBhD,YAAY,QAA4C;QACpD,MAAM,EACF,QAAQ,EACR,oBAAoB,GAAG,IAAI,EAC3B,KAAK,EACL,cAAc,EACd,aAAa,EACb,aAAa,EACb,WAAW,EACX,OAAO,GACV,GAAG,QAAQ,CAAC;QACb,IAAI,CAAC,oBAAoB,GAAG,oBAAoB,CAAC;QACjD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;QACnC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;QACnC,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IAC9C,CAAC;IAEO,IAAI,CACR,QAAqC;QAErC,IAAI,IAAI,CAAC,oBAAoB,EAAE,CAAC;YAC5B,sBAAsB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACvC,CAAC;QACD,MAAM,cAAc,GAA8B,EAAE,CAAC;QACrD,KAAK,MAAM,GAAG,IAAI,QAAQ,EAAE,CAAC;YACzB,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,OAAO,EAAE,GAAG,QAAQ,CAAC;YACpC,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;gBACxB,SAAS;YACb,CAAC;YACD,cAAc,CAAC,GAAG,CAAC,GAAG,IAAI,QAAQ,CAAC;gBAC/B,OAAO;gBACP,aAAa,EAAE,IAAI,CAAC,aAAa;gBACjC,aAAa,EAAE,IAAI,CAAC,aAAa;gBACjC,WAAW,EAAE,IAAI,CAAC,WAAW;gBAC7B,OAAO,EAAE,IAAI,CAAC,OAAO;aACxB,CAAC,CAAC;QACP,CAAC;QACD,OAAO,cAAc,CAAC;IAC1B,CAAC;IAED,GAAG,CACC,cAAqC,IAAI,CAAC,cAAc;QAExD,IAAI,WAAW,KAAK,SAAS,EAAE,CAAC;YAC5B,MAAM,IAAI,6BAA6B,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAClE,CAAC;QACD,MAAM,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC;QAClD,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;YACzB,MAAM,IAAI,wBAAwB,CAAC,WAAW,CAAC,CAAC;QACpD,CAAC;QACD,OAAO,QAAQ,CAAC;IACpB,CAAC;CACJ"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * from "../../lock/contracts/lock-adapter.contract";
|
|
2
|
-
export * from "../../lock/contracts/database-lock-adapter.contract";
|
|
3
|
-
export * from "../../lock/contracts/lock-provider.contract";
|
|
4
|
-
export * from "../../lock/contracts/lock-provider-factory.contract";
|
|
5
|
-
export * from "../../lock/contracts/lock.contract";
|
|
6
|
-
export * from "../../lock/contracts/lock.errors";
|
|
7
|
-
export * from "../../lock/contracts/lock.events";
|
|
8
|
-
//# sourceMappingURL=_module.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_module.js","sourceRoot":"","sources":["../../../../src/lock/contracts/_module.ts"],"names":[],"mappings":"AAAA,cAAc,wCAAwC,CAAC;AACvD,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,iDAAiD,CAAC;AAChE,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=database-lock-adapter.contract.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"database-lock-adapter.contract.js","sourceRoot":"","sources":["../../../../src/lock/contracts/database-lock-adapter.contract.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=lock-adapter.contract.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lock-adapter.contract.js","sourceRoot":"","sources":["../../../../src/lock/contracts/lock-adapter.contract.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=lock-provider-factory.contract.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lock-provider-factory.contract.js","sourceRoot":"","sources":["../../../../src/lock/contracts/lock-provider-factory.contract.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=lock-provider.contract.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lock-provider.contract.js","sourceRoot":"","sources":["../../../../src/lock/contracts/lock-provider.contract.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=lock.contract.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lock.contract.js","sourceRoot":"","sources":["../../../../src/lock/contracts/lock.contract.ts"],"names":[],"mappings":""}
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
export class LockError extends Error {
|
|
2
|
-
static deserialize(serializedError) {
|
|
3
|
-
return new LockError(serializedError.message, serializedError.cause);
|
|
4
|
-
}
|
|
5
|
-
constructor(message, cause) {
|
|
6
|
-
super(message, { cause });
|
|
7
|
-
}
|
|
8
|
-
serialize() {
|
|
9
|
-
return {
|
|
10
|
-
cause: this.cause,
|
|
11
|
-
message: this.message,
|
|
12
|
-
name: this.name,
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export class UnexpectedLockError extends LockError {
|
|
17
|
-
static deserialize(serializedError) {
|
|
18
|
-
return new UnexpectedLockError(serializedError.message, serializedError.cause);
|
|
19
|
-
}
|
|
20
|
-
constructor(message, cause) {
|
|
21
|
-
super(message, { cause });
|
|
22
|
-
}
|
|
23
|
-
serialize() {
|
|
24
|
-
return {
|
|
25
|
-
cause: this.cause,
|
|
26
|
-
message: this.message,
|
|
27
|
-
name: this.name,
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
export class UnableToAquireLockError extends UnexpectedLockError {
|
|
32
|
-
static deserialize(serializedError) {
|
|
33
|
-
return new UnableToAquireLockError(serializedError.message, serializedError.cause);
|
|
34
|
-
}
|
|
35
|
-
constructor(message, cause) {
|
|
36
|
-
super(message, { cause });
|
|
37
|
-
}
|
|
38
|
-
serialize() {
|
|
39
|
-
return {
|
|
40
|
-
cause: this.cause,
|
|
41
|
-
message: this.message,
|
|
42
|
-
name: this.name,
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
export class UnableToReleaseLockError extends UnexpectedLockError {
|
|
47
|
-
static deserialize(serializedError) {
|
|
48
|
-
return new UnableToReleaseLockError(serializedError.message, serializedError.cause);
|
|
49
|
-
}
|
|
50
|
-
constructor(message, cause) {
|
|
51
|
-
super(message, { cause });
|
|
52
|
-
}
|
|
53
|
-
serialize() {
|
|
54
|
-
return {
|
|
55
|
-
cause: this.cause,
|
|
56
|
-
message: this.message,
|
|
57
|
-
name: this.name,
|
|
58
|
-
};
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
export class KeyAlreadyAcquiredLockError extends LockError {
|
|
62
|
-
static deserialize(serializedError) {
|
|
63
|
-
return new KeyAlreadyAcquiredLockError(serializedError.message, serializedError.cause);
|
|
64
|
-
}
|
|
65
|
-
constructor(message, cause) {
|
|
66
|
-
super(message, { cause });
|
|
67
|
-
}
|
|
68
|
-
serialize() {
|
|
69
|
-
return {
|
|
70
|
-
cause: this.cause,
|
|
71
|
-
message: this.message,
|
|
72
|
-
name: this.name,
|
|
73
|
-
};
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
export class UnownedReleaseLockError extends LockError {
|
|
77
|
-
static deserialize(serializedError) {
|
|
78
|
-
return new UnownedReleaseLockError(serializedError.message, serializedError.cause);
|
|
79
|
-
}
|
|
80
|
-
constructor(message, cause) {
|
|
81
|
-
super(message, { cause });
|
|
82
|
-
}
|
|
83
|
-
serialize() {
|
|
84
|
-
return {
|
|
85
|
-
cause: this.cause,
|
|
86
|
-
message: this.message,
|
|
87
|
-
name: this.name,
|
|
88
|
-
};
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
export class UnownedExtendLockError extends LockError {
|
|
92
|
-
static deserialize(serializedError) {
|
|
93
|
-
return new UnownedExtendLockError(serializedError.message, serializedError.cause);
|
|
94
|
-
}
|
|
95
|
-
constructor(message, cause) {
|
|
96
|
-
super(message, { cause });
|
|
97
|
-
}
|
|
98
|
-
serialize() {
|
|
99
|
-
return {
|
|
100
|
-
cause: this.cause,
|
|
101
|
-
message: this.message,
|
|
102
|
-
name: this.name,
|
|
103
|
-
};
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
export function registerLockErrorsToSerde(serde) {
|
|
107
|
-
if (!Array.isArray(serde)) {
|
|
108
|
-
serde = [serde];
|
|
109
|
-
}
|
|
110
|
-
for (const serde_ of serde) {
|
|
111
|
-
serde_
|
|
112
|
-
.registerClass(LockError)
|
|
113
|
-
.registerClass(UnexpectedLockError)
|
|
114
|
-
.registerClass(UnableToAquireLockError)
|
|
115
|
-
.registerClass(UnableToReleaseLockError)
|
|
116
|
-
.registerClass(KeyAlreadyAcquiredLockError)
|
|
117
|
-
.registerClass(UnownedReleaseLockError);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
//# sourceMappingURL=lock.errors.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lock.errors.js","sourceRoot":"","sources":["../../../../src/lock/contracts/lock.errors.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { BaseEvent } from "../../event-bus/contracts/_module";
|
|
2
|
-
export class KeyAcquiredLockEvent extends BaseEvent {
|
|
3
|
-
}
|
|
4
|
-
export class KeyReleasedLockEvent extends BaseEvent {
|
|
5
|
-
}
|
|
6
|
-
export class KeyForceReleasedLockEvent extends BaseEvent {
|
|
7
|
-
}
|
|
8
|
-
export class UnownedReleaseLockEvent extends BaseEvent {
|
|
9
|
-
}
|
|
10
|
-
export class UnownedRefreshLockEvent extends BaseEvent {
|
|
11
|
-
}
|
|
12
|
-
export class KeyAlreadyAcquiredLockEvent extends BaseEvent {
|
|
13
|
-
}
|
|
14
|
-
export class KeyRefreshedLockEvent extends BaseEvent {
|
|
15
|
-
}
|
|
16
|
-
export class UnexpectedErrorLockEvent extends BaseEvent {
|
|
17
|
-
}
|
|
18
|
-
export function registerLockEventsToSerde(serde) {
|
|
19
|
-
if (!Array.isArray(serde)) {
|
|
20
|
-
serde = [serde];
|
|
21
|
-
}
|
|
22
|
-
for (const serde_ of serde) {
|
|
23
|
-
serde_
|
|
24
|
-
.registerEvent(KeyAcquiredLockEvent)
|
|
25
|
-
.registerEvent(KeyReleasedLockEvent)
|
|
26
|
-
.registerEvent(UnownedReleaseLockEvent)
|
|
27
|
-
.registerEvent(KeyAlreadyAcquiredLockEvent)
|
|
28
|
-
.registerEvent(UnownedRefreshLockEvent)
|
|
29
|
-
.registerEvent(UnexpectedErrorLockEvent);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
//# sourceMappingURL=lock.events.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lock.events.js","sourceRoot":"","sources":["../../../../src/lock/contracts/lock.events.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAQ1D,MAAM,OAAO,oBAAqB,SAAQ,SAIxC;CAAG;AAKL,MAAM,OAAO,oBAAqB,SAAQ,SAGxC;CAAG;AAKL,MAAM,OAAO,yBAA0B,SAAQ,SAE7C;CAAG;AAKL,MAAM,OAAO,uBAAwB,SAAQ,SAG3C;CAAG;AAKL,MAAM,OAAO,uBAAwB,SAAQ,SAG3C;CAAG;AAKL,MAAM,OAAO,2BAA4B,SAAQ,SAG/C;CAAG;AAKL,MAAM,OAAO,qBAAsB,SAAQ,SAIzC;CAAG;AAKL,MAAM,OAAO,wBAAyB,SAAQ,SAK5C;CAAG;AAmBL,MAAM,UAAU,yBAAyB,CACrC,KAAgC;IAEhC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;QACxB,KAAK,GAAG,CAAC,KAAK,CAAC,CAAC;IACpB,CAAC;IACD,KAAK,MAAM,MAAM,IAAI,KAAK,EAAE,CAAC;QACzB,MAAM;aACD,aAAa,CAAC,oBAAoB,CAAC;aACnC,aAAa,CAAC,oBAAoB,CAAC;aACnC,aAAa,CAAC,uBAAuB,CAAC;aACtC,aAAa,CAAC,2BAA2B,CAAC;aAC1C,aAAa,CAAC,uBAAuB,CAAC;aACtC,aAAa,CAAC,wBAAwB,CAAC,CAAC;IACjD,CAAC;AACL,CAAC"}
|