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

    Interface EndSessionResult

    The server's memory-consolidation diagnostic from endSession() / close(). ok is whether consolidation ran; facts is how many memories it wrote; skipped (when present) says why nothing was written ('no_session' | 'no_content' | 'throttled').

    interface EndSessionResult {
        facts?: number;
        ok: boolean;
        skipped?: string;
    }
    Index
    facts?: number
    ok: boolean
    skipped?: string