Marmot-TS
    Preparing search index...

    Type Alias InviteManagerEvents

    Events emitted by InviteManager

    type InviteManagerEvents = {
        decrypted: (invite: UnreadInvite) => void;
        error: (error: Error, eventId: string) => void;
        processed: (inviteId: string) => void;
        read: (inviteId: string) => void;
        received: (invite: ReceivedGiftWrap) => void;
    }
    Index

    Client - Invite Manager

    Client - Invite Manager

    decrypted: (invite: UnreadInvite) => void

    Emitted when an invite is successfully decrypted

    error: (error: Error, eventId: string) => void

    Emitted when an event fails to decrypt or parse

    processed: (inviteId: string) => void

    Emitted when a received gift wrap is processed (decrypted or failed)

    read: (inviteId: string) => void

    Emitted when an invite is marked as read and removed

    received: (invite: ReceivedGiftWrap) => void

    Emitted when a gift wrap is ingested and stored