mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-13 21:23:38 +00:00
* add proto * add rpc and interfaces * add protocol implementation * update faulty proto def * add rpc and interfaces * refactor implementation & write test * setup the metadata protocol as a service * fix cases where metadata service needs to be undefined * remove redundant catch block * remove addressed TODO * update import path * log errors * remove redundant code from handling incoming metadata request * update tests * add test to check for active connections * change expects * save remote peer's shard info after successful connection
18 lines
615 B
TypeScript
18 lines
615 B
TypeScript
export * as proto_message from "./lib/message.js";
|
|
export { WakuMessage } from "./lib/filter.js";
|
|
|
|
export * as proto_topic_only_message from "./lib/topic_only_message.js";
|
|
export { TopicOnlyMessage } from "./lib/topic_only_message.js";
|
|
|
|
export * as proto_filter from "./lib/filter.js";
|
|
export * as proto_filter_v2 from "./lib/filter_v2.js";
|
|
|
|
export * as proto_lightpush from "./lib/light_push.js";
|
|
export { PushResponse } from "./lib/light_push.js";
|
|
|
|
export * as proto_store from "./lib/store.js";
|
|
|
|
export * as proto_peer_exchange from "./lib/peer_exchange.js";
|
|
|
|
export * as proto_metadata from './lib/metadata.js'
|