@pouchy_ai/companion-sdk - v0.1.0
    Preparing search index...

    Interface InterfaceUpdatePayload

    Payload of a companion.ui_update event — a live change to an already-rendered Instant UI panel: write each { key, value } into the panel's state bag (re-evaluating templates / progress / when), without rebuilding. panelId targets one of several on-screen panels when present.

    interface InterfaceUpdatePayload {
        update: {
            panelId?: string;
            updates: { key: string; value: string | number | boolean }[];
        };
    }
    Index
    update: {
        panelId?: string;
        updates: { key: string; value: string | number | boolean }[];
    }