SignalCD Modern PoC API
    Preparing search index...

    Interface OutboundRecord

    interface OutboundRecord {
        attempts?: number;
        createdAt: number;
        documentId: string;
        id: string;
        kind?: NonChunkEnvelopeKind;
        lastAttemptAt?: number;
        payload: Uint8Array;
        state?: "pending" | "attempted";
    }
    Index
    attempts?: number
    createdAt: number
    documentId: string
    id: string

    Optional for schema compatibility with v0.0.2 records. New client records set this so recovery can compact CRDT history without discarding access control transitions that a document snapshot does not subsume.

    lastAttemptAt?: number
    payload: Uint8Array
    state?: "pending" | "attempted"