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

    Interface A2UISurface

    An A2UI surface = a flat component map + a root id + the data model. The pouchy block carries panel-level extensions A2UI has no slot for.

    interface A2UISurface {
        components: Record<string, A2UIComponent>;
        dataModel: Record<string, StateValue>;
        pouchy?: {
            allowedActions?: string[];
            computed?: Record<string, GenuiComputed>;
            reportChanges?: boolean;
            title?: string;
        };
        root: string;
    }
    Index
    components: Record<string, A2UIComponent>
    dataModel: Record<string, StateValue>
    pouchy?: {
        allowedActions?: string[];
        computed?: Record<string, GenuiComputed>;
        reportChanges?: boolean;
        title?: string;
    }
    root: string