Member Junction
    Preparing search index...

    The coalesced scene delta fed into the live agent context ("What the agent sees"). Replace-current-state semantics: each entry is the item's CURRENT state, not an edit log. When reset is true the items array replaces the agent's entire view of the board (emitted after undo/redo/load, or when the journal no longer reaches the caller's token).

    interface WhiteboardSceneDelta {
        added: WhiteboardCompactItem[];
        items?: WhiteboardCompactItem[];
        moved: { id: string; x: number; y: number }[];
        op: "scene-delta";
        pages: WhiteboardScenePage[];
        removed: string[];
        reset?: boolean;
        seq: number;
        summary: string;
        updated: WhiteboardCompactItem[];
    }
    Index

    Properties

    moved: { id: string; x: number; y: number }[]
    op: "scene-delta"

    The board's page list — active: true marks the page the item entries describe.

    removed: string[]
    reset?: boolean
    seq: number
    summary: string