mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-05-18 05:19:36 +00:00
* feat: introduce HealthManager * feat: make health accessible on Waku object * feat: update health from protocols * chore: add access modifiers to healthmanager * feat: use a HealthManager singleton * chore: add tests for Filter, LightPush and Store * feat: add overall node health * chore: update protocol health to consider Store protocol * chore: setup generic test utils instead of using filter utils * tests: add a health status matrix check from 0-3 * chore: increase timeout for failing tests in CI tests pass locally without an increased timeout, but fail in CI * chore: move name inference to HealthManager * tests: abstract away node creation and teardown utils * fix: import
30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
export { createEncoder, createDecoder } from "./lib/message/version_0.js";
|
|
export type {
|
|
Encoder,
|
|
Decoder,
|
|
DecodedMessage
|
|
} from "./lib/message/version_0.js";
|
|
export * as message from "./lib/message/index.js";
|
|
|
|
export * as waku_filter from "./lib/filter/index.js";
|
|
export { FilterCore, FilterCodecs } from "./lib/filter/index.js";
|
|
|
|
export * as waku_light_push from "./lib/light_push/index.js";
|
|
export { LightPushCodec, LightPushCore } from "./lib/light_push/index.js";
|
|
|
|
export * as waku_store from "./lib/store/index.js";
|
|
export { StoreCore } from "./lib/store/index.js";
|
|
|
|
export { PageDirection } from "./lib/store/index.js";
|
|
|
|
export { waitForRemotePeer } from "./lib/wait_for_remote_peer.js";
|
|
|
|
export { ConnectionManager } from "./lib/connection_manager.js";
|
|
|
|
export { getHealthManager } from "./lib/health_manager.js";
|
|
|
|
export { KeepAliveManager } from "./lib/keep_alive_manager.js";
|
|
export { StreamManager } from "./lib/stream_manager/index.js";
|
|
|
|
export { MetadataCodec, wakuMetadata } from "./lib/metadata/index.js";
|