mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-12 10:43:08 +00:00
* wip * feat: integrate sds-r with message channels * feat: add SDS-R events * fix: fixed buffer handling incoming and outgoing * fix: more buffer fixes * fix: remove some magic numbers * fix: buffer optimisation, backwards compatible senderId * fix: fix implementation guide, remove unrelated claude file * fix: further buffer optimisations * fix: linting errors * fix: suggestions from code review Co-authored-by: Sasha <118575614+weboko@users.noreply.github.com> Co-authored-by: fryorcraken <110212804+fryorcraken@users.noreply.github.com> * fix: remove implementation guide * fix: build errors, remove override, improve buffer * fix: consistent use of MessageId and ParticipantId * fix: switch to conditionally constructed from conditionally executed --------- Co-authored-by: fryorcraken <commits@fryorcraken.xyz> Co-authored-by: Sasha <118575614+weboko@users.noreply.github.com> Co-authored-by: fryorcraken <110212804+fryorcraken@users.noreply.github.com>
28 lines
684 B
TypeScript
28 lines
684 B
TypeScript
import { BloomFilter } from "./bloom_filter/bloom.js";
|
|
|
|
export {
|
|
MessageChannel,
|
|
MessageChannelEvent,
|
|
MessageChannelOptions,
|
|
isContentMessage,
|
|
isSyncMessage,
|
|
isEphemeralMessage,
|
|
Message,
|
|
ContentMessage,
|
|
SyncMessage,
|
|
EphemeralMessage,
|
|
type HistoryEntry,
|
|
type ChannelId,
|
|
type MessageChannelEvents,
|
|
type ParticipantId,
|
|
type MessageId
|
|
} from "./message_channel/index.js";
|
|
|
|
/**
|
|
* @deprecated Use ParticipantId instead. SenderId has been renamed to ParticipantId
|
|
* to better reflect that it represents a channel participant, not just a message sender.
|
|
*/
|
|
export type { ParticipantId as SenderId } from "./message_channel/index.js";
|
|
|
|
export { BloomFilter };
|