@graphrefly/graphrefly 0.19.0 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/README.md +20 -3
  2. package/dist/{chunk-JC2SN46B.js → chunk-2UDLYZHT.js} +3 -3
  3. package/dist/{chunk-YXR3WW3Q.js → chunk-4MQ2J6IG.js} +4 -4
  4. package/dist/{chunk-YXR3WW3Q.js.map → chunk-4MQ2J6IG.js.map} +1 -1
  5. package/dist/{chunk-XUOY3YKN.js → chunk-7IGHIFTT.js} +2 -2
  6. package/dist/{chunk-AHRKWMNI.js → chunk-DOSLSFKL.js} +3 -3
  7. package/dist/{chunk-BER7UYLM.js → chunk-ECN37NVS.js} +161 -199
  8. package/dist/chunk-ECN37NVS.js.map +1 -0
  9. package/dist/{chunk-YLR5JUJZ.js → chunk-G66H6ZRK.js} +3 -3
  10. package/dist/{chunk-IRZAGZUB.js → chunk-VOQFK7YN.js} +26 -2
  11. package/dist/chunk-VOQFK7YN.js.map +1 -0
  12. package/dist/{chunk-OO5QOAXI.js → chunk-XWBVAO2R.js} +22 -9
  13. package/dist/chunk-XWBVAO2R.js.map +1 -0
  14. package/dist/{chunk-UW77D7SP.js → chunk-ZTCDY5NQ.js} +3 -3
  15. package/dist/compat/nestjs/index.cjs +15 -6
  16. package/dist/compat/nestjs/index.cjs.map +1 -1
  17. package/dist/compat/nestjs/index.js +7 -7
  18. package/dist/core/index.cjs +3 -3
  19. package/dist/core/index.cjs.map +1 -1
  20. package/dist/core/index.d.cts +1 -1
  21. package/dist/core/index.d.ts +1 -1
  22. package/dist/core/index.js +3 -3
  23. package/dist/extra/index.cjs +183 -199
  24. package/dist/extra/index.cjs.map +1 -1
  25. package/dist/extra/index.d.cts +1 -1
  26. package/dist/extra/index.d.ts +1 -1
  27. package/dist/extra/index.js +7 -3
  28. package/dist/graph/index.cjs +1 -1
  29. package/dist/graph/index.cjs.map +1 -1
  30. package/dist/graph/index.js +4 -4
  31. package/dist/{index-CvKzv0AW.d.ts → index-BHfg_Ez3.d.ts} +1 -1
  32. package/dist/{index-BBUYZfJ1.d.cts → index-Bc_diYYJ.d.cts} +1 -1
  33. package/dist/{index-BnkMgNNa.d.ts → index-DuN3bhtm.d.ts} +47 -2
  34. package/dist/{index-Bjh5C1Tp.d.cts → index-SFzE_KTa.d.cts} +47 -2
  35. package/dist/index.cjs +463 -281
  36. package/dist/index.cjs.map +1 -1
  37. package/dist/index.d.cts +275 -10
  38. package/dist/index.d.ts +275 -10
  39. package/dist/index.js +284 -90
  40. package/dist/index.js.map +1 -1
  41. package/dist/patterns/reactive-layout/index.cjs +1 -1
  42. package/dist/patterns/reactive-layout/index.cjs.map +1 -1
  43. package/dist/patterns/reactive-layout/index.js +4 -4
  44. package/package.json +3 -2
  45. package/dist/chunk-BER7UYLM.js.map +0 -1
  46. package/dist/chunk-IRZAGZUB.js.map +0 -1
  47. package/dist/chunk-OO5QOAXI.js.map +0 -1
  48. /package/dist/{chunk-JC2SN46B.js.map → chunk-2UDLYZHT.js.map} +0 -0
  49. /package/dist/{chunk-XUOY3YKN.js.map → chunk-7IGHIFTT.js.map} +0 -0
  50. /package/dist/{chunk-AHRKWMNI.js.map → chunk-DOSLSFKL.js.map} +0 -0
  51. /package/dist/{chunk-YLR5JUJZ.js.map → chunk-G66H6ZRK.js.map} +0 -0
  52. /package/dist/{chunk-UW77D7SP.js.map → chunk-ZTCDY5NQ.js.map} +0 -0
@@ -4,16 +4,16 @@ import {
4
4
  createDagCborZstdCodec,
5
5
  negotiateCodec,
6
6
  replayWAL
7
- } from "../chunk-YLR5JUJZ.js";
7
+ } from "../chunk-G66H6ZRK.js";
8
8
  import {
9
9
  GRAPH_META_SEGMENT,
10
10
  Graph,
11
11
  graphProfile,
12
12
  reachable,
13
13
  sizeof
14
- } from "../chunk-JC2SN46B.js";
15
- import "../chunk-XUOY3YKN.js";
16
- import "../chunk-YXR3WW3Q.js";
14
+ } from "../chunk-2UDLYZHT.js";
15
+ import "../chunk-7IGHIFTT.js";
16
+ import "../chunk-4MQ2J6IG.js";
17
17
  export {
18
18
  GRAPH_META_SEGMENT,
19
19
  Graph,
@@ -475,7 +475,7 @@ declare function derived<T = unknown>(deps: readonly Node[], fn: NodeFn<T>, opts
475
475
  *
476
476
  * @category core
477
477
  */
478
- declare function effect(deps: readonly Node[], fn: NodeFn<unknown>): Node<unknown>;
478
+ declare function effect(deps: readonly Node[], fn: NodeFn<unknown>, opts?: NodeOptions): Node<unknown>;
479
479
  /** Unary transform used by {@link pipe} (typically returns a new node wrapping `n`). */
480
480
  type PipeOperator = (n: Node) => Node;
481
481
  /**
@@ -475,7 +475,7 @@ declare function derived<T = unknown>(deps: readonly Node[], fn: NodeFn<T>, opts
475
475
  *
476
476
  * @category core
477
477
  */
478
- declare function effect(deps: readonly Node[], fn: NodeFn<unknown>): Node<unknown>;
478
+ declare function effect(deps: readonly Node[], fn: NodeFn<unknown>, opts?: NodeOptions): Node<unknown>;
479
479
  /** Unary transform used by {@link pipe} (typically returns a new node wrapping `n`). */
480
480
  type PipeOperator = (n: Node) => Node;
481
481
  /**
@@ -871,6 +871,48 @@ declare function firstWhere<T>(source: Node<T>, predicate: (value: T) => boolean
871
871
  * @category extra
872
872
  */
873
873
  declare const shareReplay: typeof replay;
874
+ /**
875
+ * Activate a compute node's upstream wiring without a real sink.
876
+ *
877
+ * Derived/effect nodes are lazy — they don't compute until at least one
878
+ * subscriber exists (COMPOSITION-GUIDE §5). `keepalive` subscribes with an
879
+ * empty sink so the node stays wired for `.get()` and upstream propagation.
880
+ *
881
+ * Returns the unsubscribe handle. Common usage:
882
+ * `graph.addDisposer(keepalive(node))`.
883
+ *
884
+ * @category extra
885
+ */
886
+ declare function keepalive(n: Node<unknown>): () => void;
887
+ /** Bundle returned by {@link reactiveCounter}. */
888
+ type ReactiveCounterBundle = {
889
+ /** Reactive node holding the current count. */
890
+ readonly node: Node<number>;
891
+ /** Increment by 1. Returns `false` if cap would be exceeded. */
892
+ increment(): boolean;
893
+ /** Current count (synchronous read). */
894
+ get(): number;
895
+ /** Whether the counter has reached its cap. */
896
+ atCap(): boolean;
897
+ };
898
+ /**
899
+ * Reactive counter with a cap — the building block for circuit breakers.
900
+ *
901
+ * Wraps a `state(0)` node with `increment()` that respects a maximum.
902
+ * The `node` is subscribable and composable like any reactive node. When
903
+ * the cap is reached, `increment()` returns `false`.
904
+ *
905
+ * ```ts
906
+ * const retries = reactiveCounter(10);
907
+ * retries.increment(); // true — count is now 1
908
+ * retries.node.subscribe(...); // reactive updates
909
+ * retries.atCap(); // false
910
+ * ```
911
+ *
912
+ * @param cap - Maximum value (inclusive). 0 = no increments allowed.
913
+ * @category extra
914
+ */
915
+ declare function reactiveCounter(cap: number): ReactiveCounterBundle;
874
916
 
875
917
  /**
876
918
  * Protocol, system, and ingest adapters (roadmap §5.2, §5.2c).
@@ -4356,6 +4398,7 @@ type index_PulsarMessage<T = unknown> = PulsarMessage<T>;
4356
4398
  type index_PulsarProducerLike = PulsarProducerLike;
4357
4399
  type index_RabbitMQChannelLike = RabbitMQChannelLike;
4358
4400
  type index_RabbitMQMessage<T = unknown> = RabbitMQMessage<T>;
4401
+ type index_ReactiveCounterBundle = ReactiveCounterBundle;
4359
4402
  type index_ReactiveIndexBundle<K, V = unknown> = ReactiveIndexBundle<K, V>;
4360
4403
  type index_ReactiveIndexOptions = ReactiveIndexOptions;
4361
4404
  type index_ReactiveListBundle<T> = ReactiveListBundle<T>;
@@ -4497,6 +4540,7 @@ declare const index_fromWebSocket: typeof fromWebSocket;
4497
4540
  declare const index_fromWebhook: typeof fromWebhook;
4498
4541
  declare const index_globToRegExp: typeof globToRegExp;
4499
4542
  declare const index_interval: typeof interval;
4543
+ declare const index_keepalive: typeof keepalive;
4500
4544
  declare const index_last: typeof last;
4501
4545
  declare const index_linear: typeof linear;
4502
4546
  declare const index_logSlice: typeof logSlice;
@@ -4518,6 +4562,7 @@ declare const index_pausable: typeof pausable;
4518
4562
  declare const index_pubsub: typeof pubsub;
4519
4563
  declare const index_race: typeof race;
4520
4564
  declare const index_rateLimiter: typeof rateLimiter;
4565
+ declare const index_reactiveCounter: typeof reactiveCounter;
4521
4566
  declare const index_reactiveIndex: typeof reactiveIndex;
4522
4567
  declare const index_reactiveList: typeof reactiveList;
4523
4568
  declare const index_reactiveLog: typeof reactiveLog;
@@ -4582,7 +4627,7 @@ declare const index_workerBridge: typeof workerBridge;
4582
4627
  declare const index_workerSelf: typeof workerSelf;
4583
4628
  declare const index_zip: typeof zip;
4584
4629
  declare namespace index {
4585
- export { type index_AdapterHandlers as AdapterHandlers, type index_AsyncSourceOpts as AsyncSourceOpts, type index_BackoffPreset as BackoffPreset, type index_BackoffStrategy as BackoffStrategy, type index_BatchMessage as BatchMessage, type index_BridgeMessage as BridgeMessage, type index_BufferedSinkHandle as BufferedSinkHandle, type index_CSVRow as CSVRow, type index_CacheEvictionPolicy as CacheEvictionPolicy, type index_CacheTier as CacheTier, type index_CascadingCache as CascadingCache, type index_CascadingCacheOptions as CascadingCacheOptions, type index_CheckpointAdapter as CheckpointAdapter, type index_CheckpointToRedisOptions as CheckpointToRedisOptions, type index_CheckpointToS3Options as CheckpointToS3Options, type index_CircuitBreaker as CircuitBreaker, type index_CircuitBreakerOptions as CircuitBreakerOptions, index_CircuitOpenError as CircuitOpenError, type index_CircuitState as CircuitState, type index_ClickHouseClientLike as ClickHouseClientLike, type index_ClickHouseInsertClientLike as ClickHouseInsertClientLike, type index_ClickHouseRow as ClickHouseRow, type index_CronSchedule as CronSchedule, index_DictCheckpointAdapter as DictCheckpointAdapter, type index_DistillBundle as DistillBundle, type index_DistillOptions as DistillOptions, type index_DrizzleQueryLike as DrizzleQueryLike, type index_ErrorMessage as ErrorMessage, type index_EventTargetLike as EventTargetLike, type index_ExponentialBackoffOptions as ExponentialBackoffOptions, type index_Extraction as Extraction, type index_FSEvent as FSEvent, type index_FSEventType as FSEventType, index_FileCheckpointAdapter as FileCheckpointAdapter, type index_FileWriterLike as FileWriterLike, type index_FromCSVOptions as FromCSVOptions, type index_FromClickHouseWatchOptions as FromClickHouseWatchOptions, type index_FromCronOptions as FromCronOptions, type index_FromDrizzleOptions as FromDrizzleOptions, type index_FromFSWatchOptions as FromFSWatchOptions, type index_FromGitHookOptions as FromGitHookOptions, type index_FromHTTPOptions as FromHTTPOptions, type index_FromKafkaOptions as FromKafkaOptions, type index_FromKyselyOptions as FromKyselyOptions, type index_FromMCPOptions as FromMCPOptions, type index_FromNATSOptions as FromNATSOptions, type index_FromNDJSONOptions as FromNDJSONOptions, type index_FromOTelOptions as FromOTelOptions, type index_FromPrismaOptions as FromPrismaOptions, type index_FromPrometheusOptions as FromPrometheusOptions, type index_FromPulsarOptions as FromPulsarOptions, type index_FromRabbitMQOptions as FromRabbitMQOptions, type index_FromRedisStreamOptions as FromRedisStreamOptions, type index_FromSqliteOptions as FromSqliteOptions, type index_FromStatsDOptions as FromStatsDOptions, type index_FromSyslogOptions as FromSyslogOptions, type index_GitEvent as GitEvent, type index_GitHookType as GitHookType, type index_HTTPBundle as HTTPBundle, type index_IndexRow as IndexRow, type index_IndexedDbCheckpointSpec as IndexedDbCheckpointSpec, type index_InitMessage as InitMessage, type index_JitterMode as JitterMode, type index_KafkaConsumerLike as KafkaConsumerLike, type index_KafkaMessage as KafkaMessage, type index_KafkaProducerLike as KafkaProducerLike, type index_KyselyQueryLike as KyselyQueryLike, type index_LokiClientLike as LokiClientLike, type index_LokiStream as LokiStream, type index_MCPClientLike as MCPClientLike, index_MemoryCheckpointAdapter as MemoryCheckpointAdapter, type index_MergeMapOptions as MergeMapOptions, type index_MongoCollectionLike as MongoCollectionLike, type index_NATSClientLike as NATSClientLike, type index_NATSMessage as NATSMessage, type index_NATSSubscriptionLike as NATSSubscriptionLike, index_NS_PER_MS as NS_PER_MS, index_NS_PER_SEC as NS_PER_SEC, type index_NodeInput as NodeInput, type index_OTelBundle as OTelBundle, type index_OTelLog as OTelLog, type index_OTelMetric as OTelMetric, type index_OTelRegister as OTelRegister, type index_OTelSpan as OTelSpan, type index_PostgresClientLike as PostgresClientLike, type index_PrismaModelLike as PrismaModelLike, type index_PrometheusMetric as PrometheusMetric, type index_PubSubHub as PubSubHub, type index_PulsarConsumerLike as PulsarConsumerLike, type index_PulsarMessage as PulsarMessage, type index_PulsarProducerLike as PulsarProducerLike, type index_RabbitMQChannelLike as RabbitMQChannelLike, type index_RabbitMQMessage as RabbitMQMessage, type index_ReactiveIndexBundle as ReactiveIndexBundle, type index_ReactiveIndexOptions as ReactiveIndexOptions, type index_ReactiveListBundle as ReactiveListBundle, type index_ReactiveListOptions as ReactiveListOptions, type index_ReactiveLogBundle as ReactiveLogBundle, type index_ReactiveLogOptions as ReactiveLogOptions, type index_ReactiveMapBundle as ReactiveMapBundle, type index_ReactiveMapOptions as ReactiveMapOptions, type index_ReadyMessage as ReadyMessage, type index_RedisCheckpointClientLike as RedisCheckpointClientLike, type index_RedisClientLike as RedisClientLike, type index_RedisStreamEntry as RedisStreamEntry, type index_RetryOptions as RetryOptions, type index_S3ClientLike as S3ClientLike, type index_SignalMessage as SignalMessage, type index_SinkHandle as SinkHandle, type index_SinkTransportError as SinkTransportError, index_SqliteCheckpointAdapter as SqliteCheckpointAdapter, type index_SqliteDbLike as SqliteDbLike, type index_StatsDMetric as StatsDMetric, type index_StatsDRegister as StatsDRegister, type index_StatusValue as StatusValue, type index_SyslogMessage as SyslogMessage, type index_SyslogRegister as SyslogRegister, type index_TapObserver as TapObserver, type index_TempoClientLike as TempoClientLike, type index_ThrottleOptions as ThrottleOptions, type index_TieredStorage as TieredStorage, type index_TieredStorageOptions as TieredStorageOptions, index_TimeoutError as TimeoutError, type index_ToCSVOptions as ToCSVOptions, type index_ToClickHouseOptions as ToClickHouseOptions, type index_ToFileOptions as ToFileOptions, type index_ToKafkaOptions as ToKafkaOptions, type index_ToLokiOptions as ToLokiOptions, type index_ToMongoOptions as ToMongoOptions, type index_ToNATSOptions as ToNATSOptions, index_ToObservableOptions as ToObservableOptions, type index_ToPostgresOptions as ToPostgresOptions, type index_ToPulsarOptions as ToPulsarOptions, type index_ToRabbitMQOptions as ToRabbitMQOptions, type index_ToRedisStreamOptions as ToRedisStreamOptions, type index_ToS3Options as ToS3Options, type index_ToSSEOptions as ToSSEOptions, type index_ToSqliteOptions as ToSqliteOptions, type index_ToTempoOptions as ToTempoOptions, type index_ToWebSocketOptions as ToWebSocketOptions, type index_ToWebSocketTransportError as ToWebSocketTransportError, type index_TokenBucket as TokenBucket, type index_ValueMessage as ValueMessage, type index_VerifiableBundle as VerifiableBundle, type index_VerifiableOptions as VerifiableOptions, type index_VerifyValue as VerifyValue, type index_WatermarkController as WatermarkController, type index_WatermarkOptions as WatermarkOptions, type index_WebSocketLike as WebSocketLike, type index_WebSocketMessageEventLike as WebSocketMessageEventLike, type index_WebSocketRegister as WebSocketRegister, type index_WebhookRegister as WebhookRegister, type index_WithBreakerBundle as WithBreakerBundle, type index_WithStatusBundle as WithStatusBundle, type index_WorkerBridge as WorkerBridge, type index_WorkerBridgeOptions as WorkerBridgeOptions, type index_WorkerSelfHandle as WorkerSelfHandle, type index_WorkerSelfOptions as WorkerSelfOptions, type index_WorkerTransport as WorkerTransport, index_audit as audit, index_buffer as buffer, index_bufferCount as bufferCount, index_bufferTime as bufferTime, index_cache as cache, index_cached as cached, index_cascadingCache as cascadingCache, index_catchError as catchError, index_checkpointNodeValue as checkpointNodeValue, index_checkpointToRedis as checkpointToRedis, index_checkpointToS3 as checkpointToS3, index_circuitBreaker as circuitBreaker, index_combine as combine, index_combineLatest as combineLatest, index_concat as concat, index_concatMap as concatMap, index_constant as constant, index_createTransport as createTransport, index_createWatermarkController as createWatermarkController, index_debounce as debounce, index_debounceTime as debounceTime, index_decorrelatedJitter as decorrelatedJitter, index_delay as delay, index_deserializeError as deserializeError, index_distill as distill, index_distinctUntilChanged as distinctUntilChanged, index_elementAt as elementAt, index_empty as empty, index_escapeRegexChar as escapeRegexChar, index_exhaustMap as exhaustMap, index_exponential as exponential, index_fallback as fallback, index_fibonacci as fibonacci, index_filter as filter, index_find as find, index_first as first, index_firstValueFrom as firstValueFrom, index_firstWhere as firstWhere, index_flatMap as flatMap, index_forEach as forEach, index_fromAny as fromAny, index_fromAsyncIter as fromAsyncIter, index_fromCSV as fromCSV, index_fromClickHouseWatch as fromClickHouseWatch, index_fromCron as fromCron, index_fromDrizzle as fromDrizzle, index_fromEvent as fromEvent, index_fromFSWatch as fromFSWatch, index_fromGitHook as fromGitHook, index_fromHTTP as fromHTTP, index_fromIDBRequest as fromIDBRequest, index_fromIDBTransaction as fromIDBTransaction, index_fromIter as fromIter, index_fromKafka as fromKafka, index_fromKysely as fromKysely, index_fromMCP as fromMCP, index_fromNATS as fromNATS, index_fromNDJSON as fromNDJSON, index_fromOTel as fromOTel, index_fromPrisma as fromPrisma, index_fromPrometheus as fromPrometheus, index_fromPromise as fromPromise, index_fromPulsar as fromPulsar, index_fromRabbitMQ as fromRabbitMQ, index_fromRedisStream as fromRedisStream, index_fromSqlite as fromSqlite, index_fromStatsD as fromStatsD, index_fromSyslog as fromSyslog, index_fromTimer as fromTimer, index_fromWebSocket as fromWebSocket, index_fromWebhook as fromWebhook, index_globToRegExp as globToRegExp, index_interval as interval, index_last as last, index_linear as linear, index_logSlice as logSlice, index_lru as lru, index_map as map, index_matchesAnyPattern as matchesAnyPattern, index_matchesCron as matchesCron, index_merge as merge, index_mergeMap as mergeMap, index_nameToSignal as nameToSignal, index_never as never, index_of as of, index_pairwise as pairwise, index_parseCron as parseCron, index_parsePrometheusText as parsePrometheusText, index_parseStatsD as parseStatsD, index_parseSyslog as parseSyslog, index_pausable as pausable, index_pubsub as pubsub, index_race as race, index_rateLimiter as rateLimiter, index_reactiveIndex as reactiveIndex, index_reactiveList as reactiveList, index_reactiveLog as reactiveLog, index_reactiveMap as reactiveMap, index_reduce as reduce, index_repeat as repeat, index_replay as replay, index_rescue as rescue, index_resolveBackoffPreset as resolveBackoffPreset, index_restoreGraphCheckpoint as restoreGraphCheckpoint, index_restoreGraphCheckpointIndexedDb as restoreGraphCheckpointIndexedDb, index_retry as retry, index_sample as sample, index_saveGraphCheckpoint as saveGraphCheckpoint, index_saveGraphCheckpointIndexedDb as saveGraphCheckpointIndexedDb, index_scan as scan, index_serializeError as serializeError, index_share as share, index_shareReplay as shareReplay, index_signalToName as signalToName, index_skip as skip, index_switchMap as switchMap, index_take as take, index_takeUntil as takeUntil, index_takeWhile as takeWhile, index_tap as tap, index_throttle as throttle, index_throttleTime as throttleTime, index_throwError as throwError, index_tieredStorage as tieredStorage, index_timeout as timeout, index_toArray as toArray, index_toCSV as toCSV, index_toClickHouse as toClickHouse, index_toFile as toFile, index_toKafka as toKafka, index_toLoki as toLoki, index_toMongo as toMongo, index_toNATS as toNATS, index_toObservable as toObservable, index_toPostgres as toPostgres, index_toPulsar as toPulsar, index_toRabbitMQ as toRabbitMQ, index_toRedisStream as toRedisStream, index_toS3 as toS3, index_toSSE as toSSE, index_toSqlite as toSqlite, index_toTempo as toTempo, index_toWebSocket as toWebSocket, index_tokenBucket as tokenBucket, index_tokenTracker as tokenTracker, index_valve as valve, index_verifiable as verifiable, index_window as window, index_windowCount as windowCount, index_windowTime as windowTime, index_withBreaker as withBreaker, index_withLatestFrom as withLatestFrom, index_withMaxAttempts as withMaxAttempts, index_withStatus as withStatus, index_workerBridge as workerBridge, index_workerSelf as workerSelf, index_zip as zip };
4630
+ export { type index_AdapterHandlers as AdapterHandlers, type index_AsyncSourceOpts as AsyncSourceOpts, type index_BackoffPreset as BackoffPreset, type index_BackoffStrategy as BackoffStrategy, type index_BatchMessage as BatchMessage, type index_BridgeMessage as BridgeMessage, type index_BufferedSinkHandle as BufferedSinkHandle, type index_CSVRow as CSVRow, type index_CacheEvictionPolicy as CacheEvictionPolicy, type index_CacheTier as CacheTier, type index_CascadingCache as CascadingCache, type index_CascadingCacheOptions as CascadingCacheOptions, type index_CheckpointAdapter as CheckpointAdapter, type index_CheckpointToRedisOptions as CheckpointToRedisOptions, type index_CheckpointToS3Options as CheckpointToS3Options, type index_CircuitBreaker as CircuitBreaker, type index_CircuitBreakerOptions as CircuitBreakerOptions, index_CircuitOpenError as CircuitOpenError, type index_CircuitState as CircuitState, type index_ClickHouseClientLike as ClickHouseClientLike, type index_ClickHouseInsertClientLike as ClickHouseInsertClientLike, type index_ClickHouseRow as ClickHouseRow, type index_CronSchedule as CronSchedule, index_DictCheckpointAdapter as DictCheckpointAdapter, type index_DistillBundle as DistillBundle, type index_DistillOptions as DistillOptions, type index_DrizzleQueryLike as DrizzleQueryLike, type index_ErrorMessage as ErrorMessage, type index_EventTargetLike as EventTargetLike, type index_ExponentialBackoffOptions as ExponentialBackoffOptions, type index_Extraction as Extraction, type index_FSEvent as FSEvent, type index_FSEventType as FSEventType, index_FileCheckpointAdapter as FileCheckpointAdapter, type index_FileWriterLike as FileWriterLike, type index_FromCSVOptions as FromCSVOptions, type index_FromClickHouseWatchOptions as FromClickHouseWatchOptions, type index_FromCronOptions as FromCronOptions, type index_FromDrizzleOptions as FromDrizzleOptions, type index_FromFSWatchOptions as FromFSWatchOptions, type index_FromGitHookOptions as FromGitHookOptions, type index_FromHTTPOptions as FromHTTPOptions, type index_FromKafkaOptions as FromKafkaOptions, type index_FromKyselyOptions as FromKyselyOptions, type index_FromMCPOptions as FromMCPOptions, type index_FromNATSOptions as FromNATSOptions, type index_FromNDJSONOptions as FromNDJSONOptions, type index_FromOTelOptions as FromOTelOptions, type index_FromPrismaOptions as FromPrismaOptions, type index_FromPrometheusOptions as FromPrometheusOptions, type index_FromPulsarOptions as FromPulsarOptions, type index_FromRabbitMQOptions as FromRabbitMQOptions, type index_FromRedisStreamOptions as FromRedisStreamOptions, type index_FromSqliteOptions as FromSqliteOptions, type index_FromStatsDOptions as FromStatsDOptions, type index_FromSyslogOptions as FromSyslogOptions, type index_GitEvent as GitEvent, type index_GitHookType as GitHookType, type index_HTTPBundle as HTTPBundle, type index_IndexRow as IndexRow, type index_IndexedDbCheckpointSpec as IndexedDbCheckpointSpec, type index_InitMessage as InitMessage, type index_JitterMode as JitterMode, type index_KafkaConsumerLike as KafkaConsumerLike, type index_KafkaMessage as KafkaMessage, type index_KafkaProducerLike as KafkaProducerLike, type index_KyselyQueryLike as KyselyQueryLike, type index_LokiClientLike as LokiClientLike, type index_LokiStream as LokiStream, type index_MCPClientLike as MCPClientLike, index_MemoryCheckpointAdapter as MemoryCheckpointAdapter, type index_MergeMapOptions as MergeMapOptions, type index_MongoCollectionLike as MongoCollectionLike, type index_NATSClientLike as NATSClientLike, type index_NATSMessage as NATSMessage, type index_NATSSubscriptionLike as NATSSubscriptionLike, index_NS_PER_MS as NS_PER_MS, index_NS_PER_SEC as NS_PER_SEC, type index_NodeInput as NodeInput, type index_OTelBundle as OTelBundle, type index_OTelLog as OTelLog, type index_OTelMetric as OTelMetric, type index_OTelRegister as OTelRegister, type index_OTelSpan as OTelSpan, type index_PostgresClientLike as PostgresClientLike, type index_PrismaModelLike as PrismaModelLike, type index_PrometheusMetric as PrometheusMetric, type index_PubSubHub as PubSubHub, type index_PulsarConsumerLike as PulsarConsumerLike, type index_PulsarMessage as PulsarMessage, type index_PulsarProducerLike as PulsarProducerLike, type index_RabbitMQChannelLike as RabbitMQChannelLike, type index_RabbitMQMessage as RabbitMQMessage, type index_ReactiveCounterBundle as ReactiveCounterBundle, type index_ReactiveIndexBundle as ReactiveIndexBundle, type index_ReactiveIndexOptions as ReactiveIndexOptions, type index_ReactiveListBundle as ReactiveListBundle, type index_ReactiveListOptions as ReactiveListOptions, type index_ReactiveLogBundle as ReactiveLogBundle, type index_ReactiveLogOptions as ReactiveLogOptions, type index_ReactiveMapBundle as ReactiveMapBundle, type index_ReactiveMapOptions as ReactiveMapOptions, type index_ReadyMessage as ReadyMessage, type index_RedisCheckpointClientLike as RedisCheckpointClientLike, type index_RedisClientLike as RedisClientLike, type index_RedisStreamEntry as RedisStreamEntry, type index_RetryOptions as RetryOptions, type index_S3ClientLike as S3ClientLike, type index_SignalMessage as SignalMessage, type index_SinkHandle as SinkHandle, type index_SinkTransportError as SinkTransportError, index_SqliteCheckpointAdapter as SqliteCheckpointAdapter, type index_SqliteDbLike as SqliteDbLike, type index_StatsDMetric as StatsDMetric, type index_StatsDRegister as StatsDRegister, type index_StatusValue as StatusValue, type index_SyslogMessage as SyslogMessage, type index_SyslogRegister as SyslogRegister, type index_TapObserver as TapObserver, type index_TempoClientLike as TempoClientLike, type index_ThrottleOptions as ThrottleOptions, type index_TieredStorage as TieredStorage, type index_TieredStorageOptions as TieredStorageOptions, index_TimeoutError as TimeoutError, type index_ToCSVOptions as ToCSVOptions, type index_ToClickHouseOptions as ToClickHouseOptions, type index_ToFileOptions as ToFileOptions, type index_ToKafkaOptions as ToKafkaOptions, type index_ToLokiOptions as ToLokiOptions, type index_ToMongoOptions as ToMongoOptions, type index_ToNATSOptions as ToNATSOptions, index_ToObservableOptions as ToObservableOptions, type index_ToPostgresOptions as ToPostgresOptions, type index_ToPulsarOptions as ToPulsarOptions, type index_ToRabbitMQOptions as ToRabbitMQOptions, type index_ToRedisStreamOptions as ToRedisStreamOptions, type index_ToS3Options as ToS3Options, type index_ToSSEOptions as ToSSEOptions, type index_ToSqliteOptions as ToSqliteOptions, type index_ToTempoOptions as ToTempoOptions, type index_ToWebSocketOptions as ToWebSocketOptions, type index_ToWebSocketTransportError as ToWebSocketTransportError, type index_TokenBucket as TokenBucket, type index_ValueMessage as ValueMessage, type index_VerifiableBundle as VerifiableBundle, type index_VerifiableOptions as VerifiableOptions, type index_VerifyValue as VerifyValue, type index_WatermarkController as WatermarkController, type index_WatermarkOptions as WatermarkOptions, type index_WebSocketLike as WebSocketLike, type index_WebSocketMessageEventLike as WebSocketMessageEventLike, type index_WebSocketRegister as WebSocketRegister, type index_WebhookRegister as WebhookRegister, type index_WithBreakerBundle as WithBreakerBundle, type index_WithStatusBundle as WithStatusBundle, type index_WorkerBridge as WorkerBridge, type index_WorkerBridgeOptions as WorkerBridgeOptions, type index_WorkerSelfHandle as WorkerSelfHandle, type index_WorkerSelfOptions as WorkerSelfOptions, type index_WorkerTransport as WorkerTransport, index_audit as audit, index_buffer as buffer, index_bufferCount as bufferCount, index_bufferTime as bufferTime, index_cache as cache, index_cached as cached, index_cascadingCache as cascadingCache, index_catchError as catchError, index_checkpointNodeValue as checkpointNodeValue, index_checkpointToRedis as checkpointToRedis, index_checkpointToS3 as checkpointToS3, index_circuitBreaker as circuitBreaker, index_combine as combine, index_combineLatest as combineLatest, index_concat as concat, index_concatMap as concatMap, index_constant as constant, index_createTransport as createTransport, index_createWatermarkController as createWatermarkController, index_debounce as debounce, index_debounceTime as debounceTime, index_decorrelatedJitter as decorrelatedJitter, index_delay as delay, index_deserializeError as deserializeError, index_distill as distill, index_distinctUntilChanged as distinctUntilChanged, index_elementAt as elementAt, index_empty as empty, index_escapeRegexChar as escapeRegexChar, index_exhaustMap as exhaustMap, index_exponential as exponential, index_fallback as fallback, index_fibonacci as fibonacci, index_filter as filter, index_find as find, index_first as first, index_firstValueFrom as firstValueFrom, index_firstWhere as firstWhere, index_flatMap as flatMap, index_forEach as forEach, index_fromAny as fromAny, index_fromAsyncIter as fromAsyncIter, index_fromCSV as fromCSV, index_fromClickHouseWatch as fromClickHouseWatch, index_fromCron as fromCron, index_fromDrizzle as fromDrizzle, index_fromEvent as fromEvent, index_fromFSWatch as fromFSWatch, index_fromGitHook as fromGitHook, index_fromHTTP as fromHTTP, index_fromIDBRequest as fromIDBRequest, index_fromIDBTransaction as fromIDBTransaction, index_fromIter as fromIter, index_fromKafka as fromKafka, index_fromKysely as fromKysely, index_fromMCP as fromMCP, index_fromNATS as fromNATS, index_fromNDJSON as fromNDJSON, index_fromOTel as fromOTel, index_fromPrisma as fromPrisma, index_fromPrometheus as fromPrometheus, index_fromPromise as fromPromise, index_fromPulsar as fromPulsar, index_fromRabbitMQ as fromRabbitMQ, index_fromRedisStream as fromRedisStream, index_fromSqlite as fromSqlite, index_fromStatsD as fromStatsD, index_fromSyslog as fromSyslog, index_fromTimer as fromTimer, index_fromWebSocket as fromWebSocket, index_fromWebhook as fromWebhook, index_globToRegExp as globToRegExp, index_interval as interval, index_keepalive as keepalive, index_last as last, index_linear as linear, index_logSlice as logSlice, index_lru as lru, index_map as map, index_matchesAnyPattern as matchesAnyPattern, index_matchesCron as matchesCron, index_merge as merge, index_mergeMap as mergeMap, index_nameToSignal as nameToSignal, index_never as never, index_of as of, index_pairwise as pairwise, index_parseCron as parseCron, index_parsePrometheusText as parsePrometheusText, index_parseStatsD as parseStatsD, index_parseSyslog as parseSyslog, index_pausable as pausable, index_pubsub as pubsub, index_race as race, index_rateLimiter as rateLimiter, index_reactiveCounter as reactiveCounter, index_reactiveIndex as reactiveIndex, index_reactiveList as reactiveList, index_reactiveLog as reactiveLog, index_reactiveMap as reactiveMap, index_reduce as reduce, index_repeat as repeat, index_replay as replay, index_rescue as rescue, index_resolveBackoffPreset as resolveBackoffPreset, index_restoreGraphCheckpoint as restoreGraphCheckpoint, index_restoreGraphCheckpointIndexedDb as restoreGraphCheckpointIndexedDb, index_retry as retry, index_sample as sample, index_saveGraphCheckpoint as saveGraphCheckpoint, index_saveGraphCheckpointIndexedDb as saveGraphCheckpointIndexedDb, index_scan as scan, index_serializeError as serializeError, index_share as share, index_shareReplay as shareReplay, index_signalToName as signalToName, index_skip as skip, index_switchMap as switchMap, index_take as take, index_takeUntil as takeUntil, index_takeWhile as takeWhile, index_tap as tap, index_throttle as throttle, index_throttleTime as throttleTime, index_throwError as throwError, index_tieredStorage as tieredStorage, index_timeout as timeout, index_toArray as toArray, index_toCSV as toCSV, index_toClickHouse as toClickHouse, index_toFile as toFile, index_toKafka as toKafka, index_toLoki as toLoki, index_toMongo as toMongo, index_toNATS as toNATS, index_toObservable as toObservable, index_toPostgres as toPostgres, index_toPulsar as toPulsar, index_toRabbitMQ as toRabbitMQ, index_toRedisStream as toRedisStream, index_toS3 as toS3, index_toSSE as toSSE, index_toSqlite as toSqlite, index_toTempo as toTempo, index_toWebSocket as toWebSocket, index_tokenBucket as tokenBucket, index_tokenTracker as tokenTracker, index_valve as valve, index_verifiable as verifiable, index_window as window, index_windowCount as windowCount, index_windowTime as windowTime, index_withBreaker as withBreaker, index_withLatestFrom as withLatestFrom, index_withMaxAttempts as withMaxAttempts, index_withStatus as withStatus, index_workerBridge as workerBridge, index_workerSelf as workerSelf, index_zip as zip };
4586
4631
  }
4587
4632
 
4588
- export { type FromRedisStreamOptions as $, type AdapterHandlers as A, type BackoffPreset as B, type CSVRow as C, type DistillBundle as D, type Extraction as E, type FSEvent as F, type FSEventType as G, FileCheckpointAdapter as H, type FileWriterLike as I, type FromCSVOptions as J, type FromClickHouseWatchOptions as K, type FromCronOptions as L, type FromDrizzleOptions as M, type NodeInput as N, type FromFSWatchOptions as O, type FromGitHookOptions as P, type FromHTTPOptions as Q, type FromKafkaOptions as R, type FromKyselyOptions as S, type FromMCPOptions as T, type FromNATSOptions as U, type FromNDJSONOptions as V, type FromOTelOptions as W, type FromPrismaOptions as X, type FromPrometheusOptions as Y, type FromPulsarOptions as Z, type FromRabbitMQOptions as _, type AsyncSourceOpts as a, type TapObserver as a$, type FromSqliteOptions as a0, type FromStatsDOptions as a1, type FromSyslogOptions as a2, type GitEvent as a3, type GitHookType as a4, type HTTPBundle as a5, type IndexRow as a6, type IndexedDbCheckpointSpec as a7, type InitMessage as a8, type JitterMode as a9, type PulsarProducerLike as aA, type RabbitMQChannelLike as aB, type RabbitMQMessage as aC, type ReactiveIndexBundle as aD, type ReactiveIndexOptions as aE, type ReactiveListBundle as aF, type ReactiveListOptions as aG, type ReactiveLogBundle as aH, type ReactiveLogOptions as aI, type ReactiveMapBundle as aJ, type ReactiveMapOptions as aK, type ReadyMessage as aL, type RedisCheckpointClientLike as aM, type RedisClientLike as aN, type RedisStreamEntry as aO, type RetryOptions as aP, type S3ClientLike as aQ, type SignalMessage as aR, type SinkHandle as aS, type SinkTransportError as aT, SqliteCheckpointAdapter as aU, type SqliteDbLike as aV, type StatsDMetric as aW, type StatsDRegister as aX, type StatusValue as aY, type SyslogMessage as aZ, type SyslogRegister as a_, type KafkaConsumerLike as aa, type KafkaMessage as ab, type KafkaProducerLike as ac, type KyselyQueryLike as ad, type LokiClientLike as ae, type LokiStream as af, type MCPClientLike as ag, MemoryCheckpointAdapter as ah, type MergeMapOptions as ai, type MongoCollectionLike as aj, type NATSClientLike as ak, type NATSMessage as al, type NATSSubscriptionLike as am, NS_PER_MS as an, NS_PER_SEC as ao, type OTelBundle as ap, type OTelLog as aq, type OTelMetric as ar, type OTelRegister as as, type OTelSpan as at, type PostgresClientLike as au, type PrismaModelLike as av, type PrometheusMetric as aw, type PubSubHub as ax, type PulsarConsumerLike as ay, type PulsarMessage as az, type BackoffStrategy as b, deserializeError as b$, type TempoClientLike as b0, type ThrottleOptions as b1, type TieredStorage as b2, type TieredStorageOptions as b3, TimeoutError as b4, type ToCSVOptions as b5, type ToClickHouseOptions as b6, type ToFileOptions as b7, type ToKafkaOptions as b8, type ToLokiOptions as b9, type WorkerBridgeOptions as bA, type WorkerSelfHandle as bB, type WorkerSelfOptions as bC, type WorkerTransport as bD, audit as bE, buffer as bF, bufferCount as bG, bufferTime as bH, cache as bI, cached as bJ, cascadingCache as bK, catchError as bL, checkpointNodeValue as bM, checkpointToRedis as bN, checkpointToS3 as bO, circuitBreaker as bP, combine as bQ, combineLatest as bR, concat as bS, concatMap as bT, constant as bU, createTransport as bV, createWatermarkController as bW, debounce as bX, debounceTime as bY, decorrelatedJitter as bZ, delay as b_, type ToMongoOptions as ba, type ToNATSOptions as bb, type ToPostgresOptions as bc, type ToPulsarOptions as bd, type ToRabbitMQOptions as be, type ToRedisStreamOptions as bf, type ToS3Options as bg, type ToSSEOptions as bh, type ToSqliteOptions as bi, type ToTempoOptions as bj, type ToWebSocketOptions as bk, type ToWebSocketTransportError as bl, type TokenBucket as bm, type ValueMessage as bn, type VerifiableBundle as bo, type VerifiableOptions as bp, type VerifyValue as bq, type WatermarkController as br, type WatermarkOptions as bs, type WebSocketLike as bt, type WebSocketMessageEventLike as bu, type WebSocketRegister as bv, type WebhookRegister as bw, type WithBreakerBundle as bx, type WithStatusBundle as by, type WorkerBridge as bz, type BatchMessage as c, parseCron as c$, distill as c0, distinctUntilChanged as c1, elementAt as c2, empty as c3, escapeRegexChar as c4, exhaustMap as c5, exponential as c6, index as c7, fallback as c8, fibonacci as c9, fromPrisma as cA, fromPrometheus as cB, fromPromise as cC, fromPulsar as cD, fromRabbitMQ as cE, fromRedisStream as cF, fromSqlite as cG, fromStatsD as cH, fromSyslog as cI, fromTimer as cJ, fromWebSocket as cK, fromWebhook as cL, globToRegExp as cM, interval as cN, last as cO, linear as cP, logSlice as cQ, lru as cR, map as cS, matchesAnyPattern as cT, matchesCron as cU, merge as cV, mergeMap as cW, nameToSignal as cX, never as cY, of as cZ, pairwise as c_, filter as ca, find as cb, first as cc, firstValueFrom as cd, firstWhere as ce, flatMap as cf, forEach as cg, fromAny as ch, fromAsyncIter as ci, fromCSV as cj, fromClickHouseWatch as ck, fromCron as cl, fromDrizzle as cm, fromEvent as cn, fromFSWatch as co, fromGitHook as cp, fromHTTP as cq, fromIDBRequest as cr, fromIDBTransaction as cs, fromIter as ct, fromKafka as cu, fromKysely as cv, fromMCP as cw, fromNATS as cx, fromNDJSON as cy, fromOTel as cz, type BridgeMessage as d, withBreaker as d$, parsePrometheusText as d0, parseStatsD as d1, parseSyslog as d2, pausable as d3, pubsub as d4, race as d5, rateLimiter as d6, reactiveIndex as d7, reactiveList as d8, reactiveLog as d9, throwError as dA, tieredStorage as dB, timeout as dC, toArray as dD, toCSV as dE, toClickHouse as dF, toFile as dG, toKafka as dH, toLoki as dI, toMongo as dJ, toNATS as dK, toPostgres as dL, toPulsar as dM, toRabbitMQ as dN, toRedisStream as dO, toS3 as dP, toSSE as dQ, toSqlite as dR, toTempo as dS, toWebSocket as dT, tokenBucket as dU, tokenTracker as dV, valve as dW, verifiable as dX, window as dY, windowCount as dZ, windowTime as d_, reactiveMap as da, reduce as db, repeat as dc, replay as dd, rescue as de, resolveBackoffPreset as df, restoreGraphCheckpoint as dg, restoreGraphCheckpointIndexedDb as dh, retry as di, sample as dj, saveGraphCheckpoint as dk, saveGraphCheckpointIndexedDb as dl, scan as dm, serializeError as dn, share as dp, shareReplay as dq, signalToName as dr, skip as ds, switchMap as dt, take as du, takeUntil as dv, takeWhile as dw, tap as dx, throttle as dy, throttleTime as dz, type BufferedSinkHandle as e, withLatestFrom as e0, withMaxAttempts as e1, withStatus as e2, workerBridge as e3, workerSelf as e4, zip as e5, type CacheEvictionPolicy as f, type CacheTier as g, type CascadingCache as h, type CascadingCacheOptions as i, type CheckpointAdapter as j, type CheckpointToRedisOptions as k, type CheckpointToS3Options as l, type CircuitBreaker as m, type CircuitBreakerOptions as n, CircuitOpenError as o, type CircuitState as p, type ClickHouseClientLike as q, type ClickHouseInsertClientLike as r, type ClickHouseRow as s, type CronSchedule as t, DictCheckpointAdapter as u, type DistillOptions as v, type DrizzleQueryLike as w, type ErrorMessage as x, type EventTargetLike as y, type ExponentialBackoffOptions as z };
4633
+ export { type FromRedisStreamOptions as $, type AdapterHandlers as A, type BackoffPreset as B, type CSVRow as C, type DistillBundle as D, type Extraction as E, type FSEvent as F, type FSEventType as G, FileCheckpointAdapter as H, type FileWriterLike as I, type FromCSVOptions as J, type FromClickHouseWatchOptions as K, type FromCronOptions as L, type FromDrizzleOptions as M, type NodeInput as N, type FromFSWatchOptions as O, type FromGitHookOptions as P, type FromHTTPOptions as Q, type FromKafkaOptions as R, type FromKyselyOptions as S, type FromMCPOptions as T, type FromNATSOptions as U, type FromNDJSONOptions as V, type FromOTelOptions as W, type FromPrismaOptions as X, type FromPrometheusOptions as Y, type FromPulsarOptions as Z, type FromRabbitMQOptions as _, type AsyncSourceOpts as a, type SyslogRegister as a$, type FromSqliteOptions as a0, type FromStatsDOptions as a1, type FromSyslogOptions as a2, type GitEvent as a3, type GitHookType as a4, type HTTPBundle as a5, type IndexRow as a6, type IndexedDbCheckpointSpec as a7, type InitMessage as a8, type JitterMode as a9, type PulsarProducerLike as aA, type RabbitMQChannelLike as aB, type RabbitMQMessage as aC, type ReactiveCounterBundle as aD, type ReactiveIndexBundle as aE, type ReactiveIndexOptions as aF, type ReactiveListBundle as aG, type ReactiveListOptions as aH, type ReactiveLogBundle as aI, type ReactiveLogOptions as aJ, type ReactiveMapBundle as aK, type ReactiveMapOptions as aL, type ReadyMessage as aM, type RedisCheckpointClientLike as aN, type RedisClientLike as aO, type RedisStreamEntry as aP, type RetryOptions as aQ, type S3ClientLike as aR, type SignalMessage as aS, type SinkHandle as aT, type SinkTransportError as aU, SqliteCheckpointAdapter as aV, type SqliteDbLike as aW, type StatsDMetric as aX, type StatsDRegister as aY, type StatusValue as aZ, type SyslogMessage as a_, type KafkaConsumerLike as aa, type KafkaMessage as ab, type KafkaProducerLike as ac, type KyselyQueryLike as ad, type LokiClientLike as ae, type LokiStream as af, type MCPClientLike as ag, MemoryCheckpointAdapter as ah, type MergeMapOptions as ai, type MongoCollectionLike as aj, type NATSClientLike as ak, type NATSMessage as al, type NATSSubscriptionLike as am, NS_PER_MS as an, NS_PER_SEC as ao, type OTelBundle as ap, type OTelLog as aq, type OTelMetric as ar, type OTelRegister as as, type OTelSpan as at, type PostgresClientLike as au, type PrismaModelLike as av, type PrometheusMetric as aw, type PubSubHub as ax, type PulsarConsumerLike as ay, type PulsarMessage as az, type BackoffStrategy as b, delay as b$, type TapObserver as b0, type TempoClientLike as b1, type ThrottleOptions as b2, type TieredStorage as b3, type TieredStorageOptions as b4, TimeoutError as b5, type ToCSVOptions as b6, type ToClickHouseOptions as b7, type ToFileOptions as b8, type ToKafkaOptions as b9, type WorkerBridge as bA, type WorkerBridgeOptions as bB, type WorkerSelfHandle as bC, type WorkerSelfOptions as bD, type WorkerTransport as bE, audit as bF, buffer as bG, bufferCount as bH, bufferTime as bI, cache as bJ, cached as bK, cascadingCache as bL, catchError as bM, checkpointNodeValue as bN, checkpointToRedis as bO, checkpointToS3 as bP, circuitBreaker as bQ, combine as bR, combineLatest as bS, concat as bT, concatMap as bU, constant as bV, createTransport as bW, createWatermarkController as bX, debounce as bY, debounceTime as bZ, decorrelatedJitter as b_, type ToLokiOptions as ba, type ToMongoOptions as bb, type ToNATSOptions as bc, type ToPostgresOptions as bd, type ToPulsarOptions as be, type ToRabbitMQOptions as bf, type ToRedisStreamOptions as bg, type ToS3Options as bh, type ToSSEOptions as bi, type ToSqliteOptions as bj, type ToTempoOptions as bk, type ToWebSocketOptions as bl, type ToWebSocketTransportError as bm, type TokenBucket as bn, type ValueMessage as bo, type VerifiableBundle as bp, type VerifiableOptions as bq, type VerifyValue as br, type WatermarkController as bs, type WatermarkOptions as bt, type WebSocketLike as bu, type WebSocketMessageEventLike as bv, type WebSocketRegister as bw, type WebhookRegister as bx, type WithBreakerBundle as by, type WithStatusBundle as bz, type BatchMessage as c, of as c$, deserializeError as c0, distill as c1, distinctUntilChanged as c2, elementAt as c3, empty as c4, escapeRegexChar as c5, exhaustMap as c6, exponential as c7, index as c8, fallback as c9, fromOTel as cA, fromPrisma as cB, fromPrometheus as cC, fromPromise as cD, fromPulsar as cE, fromRabbitMQ as cF, fromRedisStream as cG, fromSqlite as cH, fromStatsD as cI, fromSyslog as cJ, fromTimer as cK, fromWebSocket as cL, fromWebhook as cM, globToRegExp as cN, interval as cO, keepalive as cP, last as cQ, linear as cR, logSlice as cS, lru as cT, map as cU, matchesAnyPattern as cV, matchesCron as cW, merge as cX, mergeMap as cY, nameToSignal as cZ, never as c_, fibonacci as ca, filter as cb, find as cc, first as cd, firstValueFrom as ce, firstWhere as cf, flatMap as cg, forEach as ch, fromAny as ci, fromAsyncIter as cj, fromCSV as ck, fromClickHouseWatch as cl, fromCron as cm, fromDrizzle as cn, fromEvent as co, fromFSWatch as cp, fromGitHook as cq, fromHTTP as cr, fromIDBRequest as cs, fromIDBTransaction as ct, fromIter as cu, fromKafka as cv, fromKysely as cw, fromMCP as cx, fromNATS as cy, fromNDJSON as cz, type BridgeMessage as d, window as d$, pairwise as d0, parseCron as d1, parsePrometheusText as d2, parseStatsD as d3, parseSyslog as d4, pausable as d5, pubsub as d6, race as d7, rateLimiter as d8, reactiveCounter as d9, tap as dA, throttle as dB, throttleTime as dC, throwError as dD, tieredStorage as dE, timeout as dF, toArray as dG, toCSV as dH, toClickHouse as dI, toFile as dJ, toKafka as dK, toLoki as dL, toMongo as dM, toNATS as dN, toPostgres as dO, toPulsar as dP, toRabbitMQ as dQ, toRedisStream as dR, toS3 as dS, toSSE as dT, toSqlite as dU, toTempo as dV, toWebSocket as dW, tokenBucket as dX, tokenTracker as dY, valve as dZ, verifiable as d_, reactiveIndex as da, reactiveList as db, reactiveLog as dc, reactiveMap as dd, reduce as de, repeat as df, replay as dg, rescue as dh, resolveBackoffPreset as di, restoreGraphCheckpoint as dj, restoreGraphCheckpointIndexedDb as dk, retry as dl, sample as dm, saveGraphCheckpoint as dn, saveGraphCheckpointIndexedDb as dp, scan as dq, serializeError as dr, share as ds, shareReplay as dt, signalToName as du, skip as dv, switchMap as dw, take as dx, takeUntil as dy, takeWhile as dz, type BufferedSinkHandle as e, windowCount as e0, windowTime as e1, withBreaker as e2, withLatestFrom as e3, withMaxAttempts as e4, withStatus as e5, workerBridge as e6, workerSelf as e7, zip as e8, type CacheEvictionPolicy as f, type CacheTier as g, type CascadingCache as h, type CascadingCacheOptions as i, type CheckpointAdapter as j, type CheckpointToRedisOptions as k, type CheckpointToS3Options as l, type CircuitBreaker as m, type CircuitBreakerOptions as n, CircuitOpenError as o, type CircuitState as p, type ClickHouseClientLike as q, type ClickHouseInsertClientLike as r, type ClickHouseRow as s, type CronSchedule as t, DictCheckpointAdapter as u, type DistillOptions as v, type DrizzleQueryLike as w, type ErrorMessage as x, type EventTargetLike as y, type ExponentialBackoffOptions as z };
@@ -871,6 +871,48 @@ declare function firstWhere<T>(source: Node<T>, predicate: (value: T) => boolean
871
871
  * @category extra
872
872
  */
873
873
  declare const shareReplay: typeof replay;
874
+ /**
875
+ * Activate a compute node's upstream wiring without a real sink.
876
+ *
877
+ * Derived/effect nodes are lazy — they don't compute until at least one
878
+ * subscriber exists (COMPOSITION-GUIDE §5). `keepalive` subscribes with an
879
+ * empty sink so the node stays wired for `.get()` and upstream propagation.
880
+ *
881
+ * Returns the unsubscribe handle. Common usage:
882
+ * `graph.addDisposer(keepalive(node))`.
883
+ *
884
+ * @category extra
885
+ */
886
+ declare function keepalive(n: Node<unknown>): () => void;
887
+ /** Bundle returned by {@link reactiveCounter}. */
888
+ type ReactiveCounterBundle = {
889
+ /** Reactive node holding the current count. */
890
+ readonly node: Node<number>;
891
+ /** Increment by 1. Returns `false` if cap would be exceeded. */
892
+ increment(): boolean;
893
+ /** Current count (synchronous read). */
894
+ get(): number;
895
+ /** Whether the counter has reached its cap. */
896
+ atCap(): boolean;
897
+ };
898
+ /**
899
+ * Reactive counter with a cap — the building block for circuit breakers.
900
+ *
901
+ * Wraps a `state(0)` node with `increment()` that respects a maximum.
902
+ * The `node` is subscribable and composable like any reactive node. When
903
+ * the cap is reached, `increment()` returns `false`.
904
+ *
905
+ * ```ts
906
+ * const retries = reactiveCounter(10);
907
+ * retries.increment(); // true — count is now 1
908
+ * retries.node.subscribe(...); // reactive updates
909
+ * retries.atCap(); // false
910
+ * ```
911
+ *
912
+ * @param cap - Maximum value (inclusive). 0 = no increments allowed.
913
+ * @category extra
914
+ */
915
+ declare function reactiveCounter(cap: number): ReactiveCounterBundle;
874
916
 
875
917
  /**
876
918
  * Protocol, system, and ingest adapters (roadmap §5.2, §5.2c).
@@ -4356,6 +4398,7 @@ type index_PulsarMessage<T = unknown> = PulsarMessage<T>;
4356
4398
  type index_PulsarProducerLike = PulsarProducerLike;
4357
4399
  type index_RabbitMQChannelLike = RabbitMQChannelLike;
4358
4400
  type index_RabbitMQMessage<T = unknown> = RabbitMQMessage<T>;
4401
+ type index_ReactiveCounterBundle = ReactiveCounterBundle;
4359
4402
  type index_ReactiveIndexBundle<K, V = unknown> = ReactiveIndexBundle<K, V>;
4360
4403
  type index_ReactiveIndexOptions = ReactiveIndexOptions;
4361
4404
  type index_ReactiveListBundle<T> = ReactiveListBundle<T>;
@@ -4497,6 +4540,7 @@ declare const index_fromWebSocket: typeof fromWebSocket;
4497
4540
  declare const index_fromWebhook: typeof fromWebhook;
4498
4541
  declare const index_globToRegExp: typeof globToRegExp;
4499
4542
  declare const index_interval: typeof interval;
4543
+ declare const index_keepalive: typeof keepalive;
4500
4544
  declare const index_last: typeof last;
4501
4545
  declare const index_linear: typeof linear;
4502
4546
  declare const index_logSlice: typeof logSlice;
@@ -4518,6 +4562,7 @@ declare const index_pausable: typeof pausable;
4518
4562
  declare const index_pubsub: typeof pubsub;
4519
4563
  declare const index_race: typeof race;
4520
4564
  declare const index_rateLimiter: typeof rateLimiter;
4565
+ declare const index_reactiveCounter: typeof reactiveCounter;
4521
4566
  declare const index_reactiveIndex: typeof reactiveIndex;
4522
4567
  declare const index_reactiveList: typeof reactiveList;
4523
4568
  declare const index_reactiveLog: typeof reactiveLog;
@@ -4582,7 +4627,7 @@ declare const index_workerBridge: typeof workerBridge;
4582
4627
  declare const index_workerSelf: typeof workerSelf;
4583
4628
  declare const index_zip: typeof zip;
4584
4629
  declare namespace index {
4585
- export { type index_AdapterHandlers as AdapterHandlers, type index_AsyncSourceOpts as AsyncSourceOpts, type index_BackoffPreset as BackoffPreset, type index_BackoffStrategy as BackoffStrategy, type index_BatchMessage as BatchMessage, type index_BridgeMessage as BridgeMessage, type index_BufferedSinkHandle as BufferedSinkHandle, type index_CSVRow as CSVRow, type index_CacheEvictionPolicy as CacheEvictionPolicy, type index_CacheTier as CacheTier, type index_CascadingCache as CascadingCache, type index_CascadingCacheOptions as CascadingCacheOptions, type index_CheckpointAdapter as CheckpointAdapter, type index_CheckpointToRedisOptions as CheckpointToRedisOptions, type index_CheckpointToS3Options as CheckpointToS3Options, type index_CircuitBreaker as CircuitBreaker, type index_CircuitBreakerOptions as CircuitBreakerOptions, index_CircuitOpenError as CircuitOpenError, type index_CircuitState as CircuitState, type index_ClickHouseClientLike as ClickHouseClientLike, type index_ClickHouseInsertClientLike as ClickHouseInsertClientLike, type index_ClickHouseRow as ClickHouseRow, type index_CronSchedule as CronSchedule, index_DictCheckpointAdapter as DictCheckpointAdapter, type index_DistillBundle as DistillBundle, type index_DistillOptions as DistillOptions, type index_DrizzleQueryLike as DrizzleQueryLike, type index_ErrorMessage as ErrorMessage, type index_EventTargetLike as EventTargetLike, type index_ExponentialBackoffOptions as ExponentialBackoffOptions, type index_Extraction as Extraction, type index_FSEvent as FSEvent, type index_FSEventType as FSEventType, index_FileCheckpointAdapter as FileCheckpointAdapter, type index_FileWriterLike as FileWriterLike, type index_FromCSVOptions as FromCSVOptions, type index_FromClickHouseWatchOptions as FromClickHouseWatchOptions, type index_FromCronOptions as FromCronOptions, type index_FromDrizzleOptions as FromDrizzleOptions, type index_FromFSWatchOptions as FromFSWatchOptions, type index_FromGitHookOptions as FromGitHookOptions, type index_FromHTTPOptions as FromHTTPOptions, type index_FromKafkaOptions as FromKafkaOptions, type index_FromKyselyOptions as FromKyselyOptions, type index_FromMCPOptions as FromMCPOptions, type index_FromNATSOptions as FromNATSOptions, type index_FromNDJSONOptions as FromNDJSONOptions, type index_FromOTelOptions as FromOTelOptions, type index_FromPrismaOptions as FromPrismaOptions, type index_FromPrometheusOptions as FromPrometheusOptions, type index_FromPulsarOptions as FromPulsarOptions, type index_FromRabbitMQOptions as FromRabbitMQOptions, type index_FromRedisStreamOptions as FromRedisStreamOptions, type index_FromSqliteOptions as FromSqliteOptions, type index_FromStatsDOptions as FromStatsDOptions, type index_FromSyslogOptions as FromSyslogOptions, type index_GitEvent as GitEvent, type index_GitHookType as GitHookType, type index_HTTPBundle as HTTPBundle, type index_IndexRow as IndexRow, type index_IndexedDbCheckpointSpec as IndexedDbCheckpointSpec, type index_InitMessage as InitMessage, type index_JitterMode as JitterMode, type index_KafkaConsumerLike as KafkaConsumerLike, type index_KafkaMessage as KafkaMessage, type index_KafkaProducerLike as KafkaProducerLike, type index_KyselyQueryLike as KyselyQueryLike, type index_LokiClientLike as LokiClientLike, type index_LokiStream as LokiStream, type index_MCPClientLike as MCPClientLike, index_MemoryCheckpointAdapter as MemoryCheckpointAdapter, type index_MergeMapOptions as MergeMapOptions, type index_MongoCollectionLike as MongoCollectionLike, type index_NATSClientLike as NATSClientLike, type index_NATSMessage as NATSMessage, type index_NATSSubscriptionLike as NATSSubscriptionLike, index_NS_PER_MS as NS_PER_MS, index_NS_PER_SEC as NS_PER_SEC, type index_NodeInput as NodeInput, type index_OTelBundle as OTelBundle, type index_OTelLog as OTelLog, type index_OTelMetric as OTelMetric, type index_OTelRegister as OTelRegister, type index_OTelSpan as OTelSpan, type index_PostgresClientLike as PostgresClientLike, type index_PrismaModelLike as PrismaModelLike, type index_PrometheusMetric as PrometheusMetric, type index_PubSubHub as PubSubHub, type index_PulsarConsumerLike as PulsarConsumerLike, type index_PulsarMessage as PulsarMessage, type index_PulsarProducerLike as PulsarProducerLike, type index_RabbitMQChannelLike as RabbitMQChannelLike, type index_RabbitMQMessage as RabbitMQMessage, type index_ReactiveIndexBundle as ReactiveIndexBundle, type index_ReactiveIndexOptions as ReactiveIndexOptions, type index_ReactiveListBundle as ReactiveListBundle, type index_ReactiveListOptions as ReactiveListOptions, type index_ReactiveLogBundle as ReactiveLogBundle, type index_ReactiveLogOptions as ReactiveLogOptions, type index_ReactiveMapBundle as ReactiveMapBundle, type index_ReactiveMapOptions as ReactiveMapOptions, type index_ReadyMessage as ReadyMessage, type index_RedisCheckpointClientLike as RedisCheckpointClientLike, type index_RedisClientLike as RedisClientLike, type index_RedisStreamEntry as RedisStreamEntry, type index_RetryOptions as RetryOptions, type index_S3ClientLike as S3ClientLike, type index_SignalMessage as SignalMessage, type index_SinkHandle as SinkHandle, type index_SinkTransportError as SinkTransportError, index_SqliteCheckpointAdapter as SqliteCheckpointAdapter, type index_SqliteDbLike as SqliteDbLike, type index_StatsDMetric as StatsDMetric, type index_StatsDRegister as StatsDRegister, type index_StatusValue as StatusValue, type index_SyslogMessage as SyslogMessage, type index_SyslogRegister as SyslogRegister, type index_TapObserver as TapObserver, type index_TempoClientLike as TempoClientLike, type index_ThrottleOptions as ThrottleOptions, type index_TieredStorage as TieredStorage, type index_TieredStorageOptions as TieredStorageOptions, index_TimeoutError as TimeoutError, type index_ToCSVOptions as ToCSVOptions, type index_ToClickHouseOptions as ToClickHouseOptions, type index_ToFileOptions as ToFileOptions, type index_ToKafkaOptions as ToKafkaOptions, type index_ToLokiOptions as ToLokiOptions, type index_ToMongoOptions as ToMongoOptions, type index_ToNATSOptions as ToNATSOptions, index_ToObservableOptions as ToObservableOptions, type index_ToPostgresOptions as ToPostgresOptions, type index_ToPulsarOptions as ToPulsarOptions, type index_ToRabbitMQOptions as ToRabbitMQOptions, type index_ToRedisStreamOptions as ToRedisStreamOptions, type index_ToS3Options as ToS3Options, type index_ToSSEOptions as ToSSEOptions, type index_ToSqliteOptions as ToSqliteOptions, type index_ToTempoOptions as ToTempoOptions, type index_ToWebSocketOptions as ToWebSocketOptions, type index_ToWebSocketTransportError as ToWebSocketTransportError, type index_TokenBucket as TokenBucket, type index_ValueMessage as ValueMessage, type index_VerifiableBundle as VerifiableBundle, type index_VerifiableOptions as VerifiableOptions, type index_VerifyValue as VerifyValue, type index_WatermarkController as WatermarkController, type index_WatermarkOptions as WatermarkOptions, type index_WebSocketLike as WebSocketLike, type index_WebSocketMessageEventLike as WebSocketMessageEventLike, type index_WebSocketRegister as WebSocketRegister, type index_WebhookRegister as WebhookRegister, type index_WithBreakerBundle as WithBreakerBundle, type index_WithStatusBundle as WithStatusBundle, type index_WorkerBridge as WorkerBridge, type index_WorkerBridgeOptions as WorkerBridgeOptions, type index_WorkerSelfHandle as WorkerSelfHandle, type index_WorkerSelfOptions as WorkerSelfOptions, type index_WorkerTransport as WorkerTransport, index_audit as audit, index_buffer as buffer, index_bufferCount as bufferCount, index_bufferTime as bufferTime, index_cache as cache, index_cached as cached, index_cascadingCache as cascadingCache, index_catchError as catchError, index_checkpointNodeValue as checkpointNodeValue, index_checkpointToRedis as checkpointToRedis, index_checkpointToS3 as checkpointToS3, index_circuitBreaker as circuitBreaker, index_combine as combine, index_combineLatest as combineLatest, index_concat as concat, index_concatMap as concatMap, index_constant as constant, index_createTransport as createTransport, index_createWatermarkController as createWatermarkController, index_debounce as debounce, index_debounceTime as debounceTime, index_decorrelatedJitter as decorrelatedJitter, index_delay as delay, index_deserializeError as deserializeError, index_distill as distill, index_distinctUntilChanged as distinctUntilChanged, index_elementAt as elementAt, index_empty as empty, index_escapeRegexChar as escapeRegexChar, index_exhaustMap as exhaustMap, index_exponential as exponential, index_fallback as fallback, index_fibonacci as fibonacci, index_filter as filter, index_find as find, index_first as first, index_firstValueFrom as firstValueFrom, index_firstWhere as firstWhere, index_flatMap as flatMap, index_forEach as forEach, index_fromAny as fromAny, index_fromAsyncIter as fromAsyncIter, index_fromCSV as fromCSV, index_fromClickHouseWatch as fromClickHouseWatch, index_fromCron as fromCron, index_fromDrizzle as fromDrizzle, index_fromEvent as fromEvent, index_fromFSWatch as fromFSWatch, index_fromGitHook as fromGitHook, index_fromHTTP as fromHTTP, index_fromIDBRequest as fromIDBRequest, index_fromIDBTransaction as fromIDBTransaction, index_fromIter as fromIter, index_fromKafka as fromKafka, index_fromKysely as fromKysely, index_fromMCP as fromMCP, index_fromNATS as fromNATS, index_fromNDJSON as fromNDJSON, index_fromOTel as fromOTel, index_fromPrisma as fromPrisma, index_fromPrometheus as fromPrometheus, index_fromPromise as fromPromise, index_fromPulsar as fromPulsar, index_fromRabbitMQ as fromRabbitMQ, index_fromRedisStream as fromRedisStream, index_fromSqlite as fromSqlite, index_fromStatsD as fromStatsD, index_fromSyslog as fromSyslog, index_fromTimer as fromTimer, index_fromWebSocket as fromWebSocket, index_fromWebhook as fromWebhook, index_globToRegExp as globToRegExp, index_interval as interval, index_last as last, index_linear as linear, index_logSlice as logSlice, index_lru as lru, index_map as map, index_matchesAnyPattern as matchesAnyPattern, index_matchesCron as matchesCron, index_merge as merge, index_mergeMap as mergeMap, index_nameToSignal as nameToSignal, index_never as never, index_of as of, index_pairwise as pairwise, index_parseCron as parseCron, index_parsePrometheusText as parsePrometheusText, index_parseStatsD as parseStatsD, index_parseSyslog as parseSyslog, index_pausable as pausable, index_pubsub as pubsub, index_race as race, index_rateLimiter as rateLimiter, index_reactiveIndex as reactiveIndex, index_reactiveList as reactiveList, index_reactiveLog as reactiveLog, index_reactiveMap as reactiveMap, index_reduce as reduce, index_repeat as repeat, index_replay as replay, index_rescue as rescue, index_resolveBackoffPreset as resolveBackoffPreset, index_restoreGraphCheckpoint as restoreGraphCheckpoint, index_restoreGraphCheckpointIndexedDb as restoreGraphCheckpointIndexedDb, index_retry as retry, index_sample as sample, index_saveGraphCheckpoint as saveGraphCheckpoint, index_saveGraphCheckpointIndexedDb as saveGraphCheckpointIndexedDb, index_scan as scan, index_serializeError as serializeError, index_share as share, index_shareReplay as shareReplay, index_signalToName as signalToName, index_skip as skip, index_switchMap as switchMap, index_take as take, index_takeUntil as takeUntil, index_takeWhile as takeWhile, index_tap as tap, index_throttle as throttle, index_throttleTime as throttleTime, index_throwError as throwError, index_tieredStorage as tieredStorage, index_timeout as timeout, index_toArray as toArray, index_toCSV as toCSV, index_toClickHouse as toClickHouse, index_toFile as toFile, index_toKafka as toKafka, index_toLoki as toLoki, index_toMongo as toMongo, index_toNATS as toNATS, index_toObservable as toObservable, index_toPostgres as toPostgres, index_toPulsar as toPulsar, index_toRabbitMQ as toRabbitMQ, index_toRedisStream as toRedisStream, index_toS3 as toS3, index_toSSE as toSSE, index_toSqlite as toSqlite, index_toTempo as toTempo, index_toWebSocket as toWebSocket, index_tokenBucket as tokenBucket, index_tokenTracker as tokenTracker, index_valve as valve, index_verifiable as verifiable, index_window as window, index_windowCount as windowCount, index_windowTime as windowTime, index_withBreaker as withBreaker, index_withLatestFrom as withLatestFrom, index_withMaxAttempts as withMaxAttempts, index_withStatus as withStatus, index_workerBridge as workerBridge, index_workerSelf as workerSelf, index_zip as zip };
4630
+ export { type index_AdapterHandlers as AdapterHandlers, type index_AsyncSourceOpts as AsyncSourceOpts, type index_BackoffPreset as BackoffPreset, type index_BackoffStrategy as BackoffStrategy, type index_BatchMessage as BatchMessage, type index_BridgeMessage as BridgeMessage, type index_BufferedSinkHandle as BufferedSinkHandle, type index_CSVRow as CSVRow, type index_CacheEvictionPolicy as CacheEvictionPolicy, type index_CacheTier as CacheTier, type index_CascadingCache as CascadingCache, type index_CascadingCacheOptions as CascadingCacheOptions, type index_CheckpointAdapter as CheckpointAdapter, type index_CheckpointToRedisOptions as CheckpointToRedisOptions, type index_CheckpointToS3Options as CheckpointToS3Options, type index_CircuitBreaker as CircuitBreaker, type index_CircuitBreakerOptions as CircuitBreakerOptions, index_CircuitOpenError as CircuitOpenError, type index_CircuitState as CircuitState, type index_ClickHouseClientLike as ClickHouseClientLike, type index_ClickHouseInsertClientLike as ClickHouseInsertClientLike, type index_ClickHouseRow as ClickHouseRow, type index_CronSchedule as CronSchedule, index_DictCheckpointAdapter as DictCheckpointAdapter, type index_DistillBundle as DistillBundle, type index_DistillOptions as DistillOptions, type index_DrizzleQueryLike as DrizzleQueryLike, type index_ErrorMessage as ErrorMessage, type index_EventTargetLike as EventTargetLike, type index_ExponentialBackoffOptions as ExponentialBackoffOptions, type index_Extraction as Extraction, type index_FSEvent as FSEvent, type index_FSEventType as FSEventType, index_FileCheckpointAdapter as FileCheckpointAdapter, type index_FileWriterLike as FileWriterLike, type index_FromCSVOptions as FromCSVOptions, type index_FromClickHouseWatchOptions as FromClickHouseWatchOptions, type index_FromCronOptions as FromCronOptions, type index_FromDrizzleOptions as FromDrizzleOptions, type index_FromFSWatchOptions as FromFSWatchOptions, type index_FromGitHookOptions as FromGitHookOptions, type index_FromHTTPOptions as FromHTTPOptions, type index_FromKafkaOptions as FromKafkaOptions, type index_FromKyselyOptions as FromKyselyOptions, type index_FromMCPOptions as FromMCPOptions, type index_FromNATSOptions as FromNATSOptions, type index_FromNDJSONOptions as FromNDJSONOptions, type index_FromOTelOptions as FromOTelOptions, type index_FromPrismaOptions as FromPrismaOptions, type index_FromPrometheusOptions as FromPrometheusOptions, type index_FromPulsarOptions as FromPulsarOptions, type index_FromRabbitMQOptions as FromRabbitMQOptions, type index_FromRedisStreamOptions as FromRedisStreamOptions, type index_FromSqliteOptions as FromSqliteOptions, type index_FromStatsDOptions as FromStatsDOptions, type index_FromSyslogOptions as FromSyslogOptions, type index_GitEvent as GitEvent, type index_GitHookType as GitHookType, type index_HTTPBundle as HTTPBundle, type index_IndexRow as IndexRow, type index_IndexedDbCheckpointSpec as IndexedDbCheckpointSpec, type index_InitMessage as InitMessage, type index_JitterMode as JitterMode, type index_KafkaConsumerLike as KafkaConsumerLike, type index_KafkaMessage as KafkaMessage, type index_KafkaProducerLike as KafkaProducerLike, type index_KyselyQueryLike as KyselyQueryLike, type index_LokiClientLike as LokiClientLike, type index_LokiStream as LokiStream, type index_MCPClientLike as MCPClientLike, index_MemoryCheckpointAdapter as MemoryCheckpointAdapter, type index_MergeMapOptions as MergeMapOptions, type index_MongoCollectionLike as MongoCollectionLike, type index_NATSClientLike as NATSClientLike, type index_NATSMessage as NATSMessage, type index_NATSSubscriptionLike as NATSSubscriptionLike, index_NS_PER_MS as NS_PER_MS, index_NS_PER_SEC as NS_PER_SEC, type index_NodeInput as NodeInput, type index_OTelBundle as OTelBundle, type index_OTelLog as OTelLog, type index_OTelMetric as OTelMetric, type index_OTelRegister as OTelRegister, type index_OTelSpan as OTelSpan, type index_PostgresClientLike as PostgresClientLike, type index_PrismaModelLike as PrismaModelLike, type index_PrometheusMetric as PrometheusMetric, type index_PubSubHub as PubSubHub, type index_PulsarConsumerLike as PulsarConsumerLike, type index_PulsarMessage as PulsarMessage, type index_PulsarProducerLike as PulsarProducerLike, type index_RabbitMQChannelLike as RabbitMQChannelLike, type index_RabbitMQMessage as RabbitMQMessage, type index_ReactiveCounterBundle as ReactiveCounterBundle, type index_ReactiveIndexBundle as ReactiveIndexBundle, type index_ReactiveIndexOptions as ReactiveIndexOptions, type index_ReactiveListBundle as ReactiveListBundle, type index_ReactiveListOptions as ReactiveListOptions, type index_ReactiveLogBundle as ReactiveLogBundle, type index_ReactiveLogOptions as ReactiveLogOptions, type index_ReactiveMapBundle as ReactiveMapBundle, type index_ReactiveMapOptions as ReactiveMapOptions, type index_ReadyMessage as ReadyMessage, type index_RedisCheckpointClientLike as RedisCheckpointClientLike, type index_RedisClientLike as RedisClientLike, type index_RedisStreamEntry as RedisStreamEntry, type index_RetryOptions as RetryOptions, type index_S3ClientLike as S3ClientLike, type index_SignalMessage as SignalMessage, type index_SinkHandle as SinkHandle, type index_SinkTransportError as SinkTransportError, index_SqliteCheckpointAdapter as SqliteCheckpointAdapter, type index_SqliteDbLike as SqliteDbLike, type index_StatsDMetric as StatsDMetric, type index_StatsDRegister as StatsDRegister, type index_StatusValue as StatusValue, type index_SyslogMessage as SyslogMessage, type index_SyslogRegister as SyslogRegister, type index_TapObserver as TapObserver, type index_TempoClientLike as TempoClientLike, type index_ThrottleOptions as ThrottleOptions, type index_TieredStorage as TieredStorage, type index_TieredStorageOptions as TieredStorageOptions, index_TimeoutError as TimeoutError, type index_ToCSVOptions as ToCSVOptions, type index_ToClickHouseOptions as ToClickHouseOptions, type index_ToFileOptions as ToFileOptions, type index_ToKafkaOptions as ToKafkaOptions, type index_ToLokiOptions as ToLokiOptions, type index_ToMongoOptions as ToMongoOptions, type index_ToNATSOptions as ToNATSOptions, index_ToObservableOptions as ToObservableOptions, type index_ToPostgresOptions as ToPostgresOptions, type index_ToPulsarOptions as ToPulsarOptions, type index_ToRabbitMQOptions as ToRabbitMQOptions, type index_ToRedisStreamOptions as ToRedisStreamOptions, type index_ToS3Options as ToS3Options, type index_ToSSEOptions as ToSSEOptions, type index_ToSqliteOptions as ToSqliteOptions, type index_ToTempoOptions as ToTempoOptions, type index_ToWebSocketOptions as ToWebSocketOptions, type index_ToWebSocketTransportError as ToWebSocketTransportError, type index_TokenBucket as TokenBucket, type index_ValueMessage as ValueMessage, type index_VerifiableBundle as VerifiableBundle, type index_VerifiableOptions as VerifiableOptions, type index_VerifyValue as VerifyValue, type index_WatermarkController as WatermarkController, type index_WatermarkOptions as WatermarkOptions, type index_WebSocketLike as WebSocketLike, type index_WebSocketMessageEventLike as WebSocketMessageEventLike, type index_WebSocketRegister as WebSocketRegister, type index_WebhookRegister as WebhookRegister, type index_WithBreakerBundle as WithBreakerBundle, type index_WithStatusBundle as WithStatusBundle, type index_WorkerBridge as WorkerBridge, type index_WorkerBridgeOptions as WorkerBridgeOptions, type index_WorkerSelfHandle as WorkerSelfHandle, type index_WorkerSelfOptions as WorkerSelfOptions, type index_WorkerTransport as WorkerTransport, index_audit as audit, index_buffer as buffer, index_bufferCount as bufferCount, index_bufferTime as bufferTime, index_cache as cache, index_cached as cached, index_cascadingCache as cascadingCache, index_catchError as catchError, index_checkpointNodeValue as checkpointNodeValue, index_checkpointToRedis as checkpointToRedis, index_checkpointToS3 as checkpointToS3, index_circuitBreaker as circuitBreaker, index_combine as combine, index_combineLatest as combineLatest, index_concat as concat, index_concatMap as concatMap, index_constant as constant, index_createTransport as createTransport, index_createWatermarkController as createWatermarkController, index_debounce as debounce, index_debounceTime as debounceTime, index_decorrelatedJitter as decorrelatedJitter, index_delay as delay, index_deserializeError as deserializeError, index_distill as distill, index_distinctUntilChanged as distinctUntilChanged, index_elementAt as elementAt, index_empty as empty, index_escapeRegexChar as escapeRegexChar, index_exhaustMap as exhaustMap, index_exponential as exponential, index_fallback as fallback, index_fibonacci as fibonacci, index_filter as filter, index_find as find, index_first as first, index_firstValueFrom as firstValueFrom, index_firstWhere as firstWhere, index_flatMap as flatMap, index_forEach as forEach, index_fromAny as fromAny, index_fromAsyncIter as fromAsyncIter, index_fromCSV as fromCSV, index_fromClickHouseWatch as fromClickHouseWatch, index_fromCron as fromCron, index_fromDrizzle as fromDrizzle, index_fromEvent as fromEvent, index_fromFSWatch as fromFSWatch, index_fromGitHook as fromGitHook, index_fromHTTP as fromHTTP, index_fromIDBRequest as fromIDBRequest, index_fromIDBTransaction as fromIDBTransaction, index_fromIter as fromIter, index_fromKafka as fromKafka, index_fromKysely as fromKysely, index_fromMCP as fromMCP, index_fromNATS as fromNATS, index_fromNDJSON as fromNDJSON, index_fromOTel as fromOTel, index_fromPrisma as fromPrisma, index_fromPrometheus as fromPrometheus, index_fromPromise as fromPromise, index_fromPulsar as fromPulsar, index_fromRabbitMQ as fromRabbitMQ, index_fromRedisStream as fromRedisStream, index_fromSqlite as fromSqlite, index_fromStatsD as fromStatsD, index_fromSyslog as fromSyslog, index_fromTimer as fromTimer, index_fromWebSocket as fromWebSocket, index_fromWebhook as fromWebhook, index_globToRegExp as globToRegExp, index_interval as interval, index_keepalive as keepalive, index_last as last, index_linear as linear, index_logSlice as logSlice, index_lru as lru, index_map as map, index_matchesAnyPattern as matchesAnyPattern, index_matchesCron as matchesCron, index_merge as merge, index_mergeMap as mergeMap, index_nameToSignal as nameToSignal, index_never as never, index_of as of, index_pairwise as pairwise, index_parseCron as parseCron, index_parsePrometheusText as parsePrometheusText, index_parseStatsD as parseStatsD, index_parseSyslog as parseSyslog, index_pausable as pausable, index_pubsub as pubsub, index_race as race, index_rateLimiter as rateLimiter, index_reactiveCounter as reactiveCounter, index_reactiveIndex as reactiveIndex, index_reactiveList as reactiveList, index_reactiveLog as reactiveLog, index_reactiveMap as reactiveMap, index_reduce as reduce, index_repeat as repeat, index_replay as replay, index_rescue as rescue, index_resolveBackoffPreset as resolveBackoffPreset, index_restoreGraphCheckpoint as restoreGraphCheckpoint, index_restoreGraphCheckpointIndexedDb as restoreGraphCheckpointIndexedDb, index_retry as retry, index_sample as sample, index_saveGraphCheckpoint as saveGraphCheckpoint, index_saveGraphCheckpointIndexedDb as saveGraphCheckpointIndexedDb, index_scan as scan, index_serializeError as serializeError, index_share as share, index_shareReplay as shareReplay, index_signalToName as signalToName, index_skip as skip, index_switchMap as switchMap, index_take as take, index_takeUntil as takeUntil, index_takeWhile as takeWhile, index_tap as tap, index_throttle as throttle, index_throttleTime as throttleTime, index_throwError as throwError, index_tieredStorage as tieredStorage, index_timeout as timeout, index_toArray as toArray, index_toCSV as toCSV, index_toClickHouse as toClickHouse, index_toFile as toFile, index_toKafka as toKafka, index_toLoki as toLoki, index_toMongo as toMongo, index_toNATS as toNATS, index_toObservable as toObservable, index_toPostgres as toPostgres, index_toPulsar as toPulsar, index_toRabbitMQ as toRabbitMQ, index_toRedisStream as toRedisStream, index_toS3 as toS3, index_toSSE as toSSE, index_toSqlite as toSqlite, index_toTempo as toTempo, index_toWebSocket as toWebSocket, index_tokenBucket as tokenBucket, index_tokenTracker as tokenTracker, index_valve as valve, index_verifiable as verifiable, index_window as window, index_windowCount as windowCount, index_windowTime as windowTime, index_withBreaker as withBreaker, index_withLatestFrom as withLatestFrom, index_withMaxAttempts as withMaxAttempts, index_withStatus as withStatus, index_workerBridge as workerBridge, index_workerSelf as workerSelf, index_zip as zip };
4586
4631
  }
4587
4632
 
4588
- export { type FromRedisStreamOptions as $, type AdapterHandlers as A, type BackoffPreset as B, type CSVRow as C, type DistillBundle as D, type Extraction as E, type FSEvent as F, type FSEventType as G, FileCheckpointAdapter as H, type FileWriterLike as I, type FromCSVOptions as J, type FromClickHouseWatchOptions as K, type FromCronOptions as L, type FromDrizzleOptions as M, type NodeInput as N, type FromFSWatchOptions as O, type FromGitHookOptions as P, type FromHTTPOptions as Q, type FromKafkaOptions as R, type FromKyselyOptions as S, type FromMCPOptions as T, type FromNATSOptions as U, type FromNDJSONOptions as V, type FromOTelOptions as W, type FromPrismaOptions as X, type FromPrometheusOptions as Y, type FromPulsarOptions as Z, type FromRabbitMQOptions as _, type AsyncSourceOpts as a, type TapObserver as a$, type FromSqliteOptions as a0, type FromStatsDOptions as a1, type FromSyslogOptions as a2, type GitEvent as a3, type GitHookType as a4, type HTTPBundle as a5, type IndexRow as a6, type IndexedDbCheckpointSpec as a7, type InitMessage as a8, type JitterMode as a9, type PulsarProducerLike as aA, type RabbitMQChannelLike as aB, type RabbitMQMessage as aC, type ReactiveIndexBundle as aD, type ReactiveIndexOptions as aE, type ReactiveListBundle as aF, type ReactiveListOptions as aG, type ReactiveLogBundle as aH, type ReactiveLogOptions as aI, type ReactiveMapBundle as aJ, type ReactiveMapOptions as aK, type ReadyMessage as aL, type RedisCheckpointClientLike as aM, type RedisClientLike as aN, type RedisStreamEntry as aO, type RetryOptions as aP, type S3ClientLike as aQ, type SignalMessage as aR, type SinkHandle as aS, type SinkTransportError as aT, SqliteCheckpointAdapter as aU, type SqliteDbLike as aV, type StatsDMetric as aW, type StatsDRegister as aX, type StatusValue as aY, type SyslogMessage as aZ, type SyslogRegister as a_, type KafkaConsumerLike as aa, type KafkaMessage as ab, type KafkaProducerLike as ac, type KyselyQueryLike as ad, type LokiClientLike as ae, type LokiStream as af, type MCPClientLike as ag, MemoryCheckpointAdapter as ah, type MergeMapOptions as ai, type MongoCollectionLike as aj, type NATSClientLike as ak, type NATSMessage as al, type NATSSubscriptionLike as am, NS_PER_MS as an, NS_PER_SEC as ao, type OTelBundle as ap, type OTelLog as aq, type OTelMetric as ar, type OTelRegister as as, type OTelSpan as at, type PostgresClientLike as au, type PrismaModelLike as av, type PrometheusMetric as aw, type PubSubHub as ax, type PulsarConsumerLike as ay, type PulsarMessage as az, type BackoffStrategy as b, deserializeError as b$, type TempoClientLike as b0, type ThrottleOptions as b1, type TieredStorage as b2, type TieredStorageOptions as b3, TimeoutError as b4, type ToCSVOptions as b5, type ToClickHouseOptions as b6, type ToFileOptions as b7, type ToKafkaOptions as b8, type ToLokiOptions as b9, type WorkerBridgeOptions as bA, type WorkerSelfHandle as bB, type WorkerSelfOptions as bC, type WorkerTransport as bD, audit as bE, buffer as bF, bufferCount as bG, bufferTime as bH, cache as bI, cached as bJ, cascadingCache as bK, catchError as bL, checkpointNodeValue as bM, checkpointToRedis as bN, checkpointToS3 as bO, circuitBreaker as bP, combine as bQ, combineLatest as bR, concat as bS, concatMap as bT, constant as bU, createTransport as bV, createWatermarkController as bW, debounce as bX, debounceTime as bY, decorrelatedJitter as bZ, delay as b_, type ToMongoOptions as ba, type ToNATSOptions as bb, type ToPostgresOptions as bc, type ToPulsarOptions as bd, type ToRabbitMQOptions as be, type ToRedisStreamOptions as bf, type ToS3Options as bg, type ToSSEOptions as bh, type ToSqliteOptions as bi, type ToTempoOptions as bj, type ToWebSocketOptions as bk, type ToWebSocketTransportError as bl, type TokenBucket as bm, type ValueMessage as bn, type VerifiableBundle as bo, type VerifiableOptions as bp, type VerifyValue as bq, type WatermarkController as br, type WatermarkOptions as bs, type WebSocketLike as bt, type WebSocketMessageEventLike as bu, type WebSocketRegister as bv, type WebhookRegister as bw, type WithBreakerBundle as bx, type WithStatusBundle as by, type WorkerBridge as bz, type BatchMessage as c, parseCron as c$, distill as c0, distinctUntilChanged as c1, elementAt as c2, empty as c3, escapeRegexChar as c4, exhaustMap as c5, exponential as c6, index as c7, fallback as c8, fibonacci as c9, fromPrisma as cA, fromPrometheus as cB, fromPromise as cC, fromPulsar as cD, fromRabbitMQ as cE, fromRedisStream as cF, fromSqlite as cG, fromStatsD as cH, fromSyslog as cI, fromTimer as cJ, fromWebSocket as cK, fromWebhook as cL, globToRegExp as cM, interval as cN, last as cO, linear as cP, logSlice as cQ, lru as cR, map as cS, matchesAnyPattern as cT, matchesCron as cU, merge as cV, mergeMap as cW, nameToSignal as cX, never as cY, of as cZ, pairwise as c_, filter as ca, find as cb, first as cc, firstValueFrom as cd, firstWhere as ce, flatMap as cf, forEach as cg, fromAny as ch, fromAsyncIter as ci, fromCSV as cj, fromClickHouseWatch as ck, fromCron as cl, fromDrizzle as cm, fromEvent as cn, fromFSWatch as co, fromGitHook as cp, fromHTTP as cq, fromIDBRequest as cr, fromIDBTransaction as cs, fromIter as ct, fromKafka as cu, fromKysely as cv, fromMCP as cw, fromNATS as cx, fromNDJSON as cy, fromOTel as cz, type BridgeMessage as d, withBreaker as d$, parsePrometheusText as d0, parseStatsD as d1, parseSyslog as d2, pausable as d3, pubsub as d4, race as d5, rateLimiter as d6, reactiveIndex as d7, reactiveList as d8, reactiveLog as d9, throwError as dA, tieredStorage as dB, timeout as dC, toArray as dD, toCSV as dE, toClickHouse as dF, toFile as dG, toKafka as dH, toLoki as dI, toMongo as dJ, toNATS as dK, toPostgres as dL, toPulsar as dM, toRabbitMQ as dN, toRedisStream as dO, toS3 as dP, toSSE as dQ, toSqlite as dR, toTempo as dS, toWebSocket as dT, tokenBucket as dU, tokenTracker as dV, valve as dW, verifiable as dX, window as dY, windowCount as dZ, windowTime as d_, reactiveMap as da, reduce as db, repeat as dc, replay as dd, rescue as de, resolveBackoffPreset as df, restoreGraphCheckpoint as dg, restoreGraphCheckpointIndexedDb as dh, retry as di, sample as dj, saveGraphCheckpoint as dk, saveGraphCheckpointIndexedDb as dl, scan as dm, serializeError as dn, share as dp, shareReplay as dq, signalToName as dr, skip as ds, switchMap as dt, take as du, takeUntil as dv, takeWhile as dw, tap as dx, throttle as dy, throttleTime as dz, type BufferedSinkHandle as e, withLatestFrom as e0, withMaxAttempts as e1, withStatus as e2, workerBridge as e3, workerSelf as e4, zip as e5, type CacheEvictionPolicy as f, type CacheTier as g, type CascadingCache as h, type CascadingCacheOptions as i, type CheckpointAdapter as j, type CheckpointToRedisOptions as k, type CheckpointToS3Options as l, type CircuitBreaker as m, type CircuitBreakerOptions as n, CircuitOpenError as o, type CircuitState as p, type ClickHouseClientLike as q, type ClickHouseInsertClientLike as r, type ClickHouseRow as s, type CronSchedule as t, DictCheckpointAdapter as u, type DistillOptions as v, type DrizzleQueryLike as w, type ErrorMessage as x, type EventTargetLike as y, type ExponentialBackoffOptions as z };
4633
+ export { type FromRedisStreamOptions as $, type AdapterHandlers as A, type BackoffPreset as B, type CSVRow as C, type DistillBundle as D, type Extraction as E, type FSEvent as F, type FSEventType as G, FileCheckpointAdapter as H, type FileWriterLike as I, type FromCSVOptions as J, type FromClickHouseWatchOptions as K, type FromCronOptions as L, type FromDrizzleOptions as M, type NodeInput as N, type FromFSWatchOptions as O, type FromGitHookOptions as P, type FromHTTPOptions as Q, type FromKafkaOptions as R, type FromKyselyOptions as S, type FromMCPOptions as T, type FromNATSOptions as U, type FromNDJSONOptions as V, type FromOTelOptions as W, type FromPrismaOptions as X, type FromPrometheusOptions as Y, type FromPulsarOptions as Z, type FromRabbitMQOptions as _, type AsyncSourceOpts as a, type SyslogRegister as a$, type FromSqliteOptions as a0, type FromStatsDOptions as a1, type FromSyslogOptions as a2, type GitEvent as a3, type GitHookType as a4, type HTTPBundle as a5, type IndexRow as a6, type IndexedDbCheckpointSpec as a7, type InitMessage as a8, type JitterMode as a9, type PulsarProducerLike as aA, type RabbitMQChannelLike as aB, type RabbitMQMessage as aC, type ReactiveCounterBundle as aD, type ReactiveIndexBundle as aE, type ReactiveIndexOptions as aF, type ReactiveListBundle as aG, type ReactiveListOptions as aH, type ReactiveLogBundle as aI, type ReactiveLogOptions as aJ, type ReactiveMapBundle as aK, type ReactiveMapOptions as aL, type ReadyMessage as aM, type RedisCheckpointClientLike as aN, type RedisClientLike as aO, type RedisStreamEntry as aP, type RetryOptions as aQ, type S3ClientLike as aR, type SignalMessage as aS, type SinkHandle as aT, type SinkTransportError as aU, SqliteCheckpointAdapter as aV, type SqliteDbLike as aW, type StatsDMetric as aX, type StatsDRegister as aY, type StatusValue as aZ, type SyslogMessage as a_, type KafkaConsumerLike as aa, type KafkaMessage as ab, type KafkaProducerLike as ac, type KyselyQueryLike as ad, type LokiClientLike as ae, type LokiStream as af, type MCPClientLike as ag, MemoryCheckpointAdapter as ah, type MergeMapOptions as ai, type MongoCollectionLike as aj, type NATSClientLike as ak, type NATSMessage as al, type NATSSubscriptionLike as am, NS_PER_MS as an, NS_PER_SEC as ao, type OTelBundle as ap, type OTelLog as aq, type OTelMetric as ar, type OTelRegister as as, type OTelSpan as at, type PostgresClientLike as au, type PrismaModelLike as av, type PrometheusMetric as aw, type PubSubHub as ax, type PulsarConsumerLike as ay, type PulsarMessage as az, type BackoffStrategy as b, delay as b$, type TapObserver as b0, type TempoClientLike as b1, type ThrottleOptions as b2, type TieredStorage as b3, type TieredStorageOptions as b4, TimeoutError as b5, type ToCSVOptions as b6, type ToClickHouseOptions as b7, type ToFileOptions as b8, type ToKafkaOptions as b9, type WorkerBridge as bA, type WorkerBridgeOptions as bB, type WorkerSelfHandle as bC, type WorkerSelfOptions as bD, type WorkerTransport as bE, audit as bF, buffer as bG, bufferCount as bH, bufferTime as bI, cache as bJ, cached as bK, cascadingCache as bL, catchError as bM, checkpointNodeValue as bN, checkpointToRedis as bO, checkpointToS3 as bP, circuitBreaker as bQ, combine as bR, combineLatest as bS, concat as bT, concatMap as bU, constant as bV, createTransport as bW, createWatermarkController as bX, debounce as bY, debounceTime as bZ, decorrelatedJitter as b_, type ToLokiOptions as ba, type ToMongoOptions as bb, type ToNATSOptions as bc, type ToPostgresOptions as bd, type ToPulsarOptions as be, type ToRabbitMQOptions as bf, type ToRedisStreamOptions as bg, type ToS3Options as bh, type ToSSEOptions as bi, type ToSqliteOptions as bj, type ToTempoOptions as bk, type ToWebSocketOptions as bl, type ToWebSocketTransportError as bm, type TokenBucket as bn, type ValueMessage as bo, type VerifiableBundle as bp, type VerifiableOptions as bq, type VerifyValue as br, type WatermarkController as bs, type WatermarkOptions as bt, type WebSocketLike as bu, type WebSocketMessageEventLike as bv, type WebSocketRegister as bw, type WebhookRegister as bx, type WithBreakerBundle as by, type WithStatusBundle as bz, type BatchMessage as c, of as c$, deserializeError as c0, distill as c1, distinctUntilChanged as c2, elementAt as c3, empty as c4, escapeRegexChar as c5, exhaustMap as c6, exponential as c7, index as c8, fallback as c9, fromOTel as cA, fromPrisma as cB, fromPrometheus as cC, fromPromise as cD, fromPulsar as cE, fromRabbitMQ as cF, fromRedisStream as cG, fromSqlite as cH, fromStatsD as cI, fromSyslog as cJ, fromTimer as cK, fromWebSocket as cL, fromWebhook as cM, globToRegExp as cN, interval as cO, keepalive as cP, last as cQ, linear as cR, logSlice as cS, lru as cT, map as cU, matchesAnyPattern as cV, matchesCron as cW, merge as cX, mergeMap as cY, nameToSignal as cZ, never as c_, fibonacci as ca, filter as cb, find as cc, first as cd, firstValueFrom as ce, firstWhere as cf, flatMap as cg, forEach as ch, fromAny as ci, fromAsyncIter as cj, fromCSV as ck, fromClickHouseWatch as cl, fromCron as cm, fromDrizzle as cn, fromEvent as co, fromFSWatch as cp, fromGitHook as cq, fromHTTP as cr, fromIDBRequest as cs, fromIDBTransaction as ct, fromIter as cu, fromKafka as cv, fromKysely as cw, fromMCP as cx, fromNATS as cy, fromNDJSON as cz, type BridgeMessage as d, window as d$, pairwise as d0, parseCron as d1, parsePrometheusText as d2, parseStatsD as d3, parseSyslog as d4, pausable as d5, pubsub as d6, race as d7, rateLimiter as d8, reactiveCounter as d9, tap as dA, throttle as dB, throttleTime as dC, throwError as dD, tieredStorage as dE, timeout as dF, toArray as dG, toCSV as dH, toClickHouse as dI, toFile as dJ, toKafka as dK, toLoki as dL, toMongo as dM, toNATS as dN, toPostgres as dO, toPulsar as dP, toRabbitMQ as dQ, toRedisStream as dR, toS3 as dS, toSSE as dT, toSqlite as dU, toTempo as dV, toWebSocket as dW, tokenBucket as dX, tokenTracker as dY, valve as dZ, verifiable as d_, reactiveIndex as da, reactiveList as db, reactiveLog as dc, reactiveMap as dd, reduce as de, repeat as df, replay as dg, rescue as dh, resolveBackoffPreset as di, restoreGraphCheckpoint as dj, restoreGraphCheckpointIndexedDb as dk, retry as dl, sample as dm, saveGraphCheckpoint as dn, saveGraphCheckpointIndexedDb as dp, scan as dq, serializeError as dr, share as ds, shareReplay as dt, signalToName as du, skip as dv, switchMap as dw, take as dx, takeUntil as dy, takeWhile as dz, type BufferedSinkHandle as e, windowCount as e0, windowTime as e1, withBreaker as e2, withLatestFrom as e3, withMaxAttempts as e4, withStatus as e5, workerBridge as e6, workerSelf as e7, zip as e8, type CacheEvictionPolicy as f, type CacheTier as g, type CascadingCache as h, type CascadingCacheOptions as i, type CheckpointAdapter as j, type CheckpointToRedisOptions as k, type CheckpointToS3Options as l, type CircuitBreaker as m, type CircuitBreakerOptions as n, CircuitOpenError as o, type CircuitState as p, type ClickHouseClientLike as q, type ClickHouseInsertClientLike as r, type ClickHouseRow as s, type CronSchedule as t, DictCheckpointAdapter as u, type DistillOptions as v, type DrizzleQueryLike as w, type ErrorMessage as x, type EventTargetLike as y, type ExponentialBackoffOptions as z };