Anchorage API reference
    Preparing search index...

    Minimal structural mirror of do-runner's RunSummary — only the JSON-safe fields a run frame carries. Defined locally (not imported) so approval-ui stays free of a do-runner/Mastra dependency; a real RunSummary is structurally assignable to it.

    interface StreamRunSummary {
        createdAt?: string;
        error?: string;
        result?: unknown;
        resumeCount?: Record<string, number>;
        resumedAt?: Record<string, number>;
        runId: string;
        status: string;
        suspended?: string[][];
        suspendedAt?: Record<string, number>;
        suspendPayload?: unknown;
        updatedAt?: string;
    }
    Index

    Properties

    createdAt?: string
    error?: string
    result?: unknown
    resumeCount?: Record<string, number>
    resumedAt?: Record<string, number>
    runId: string
    status: string
    suspended?: string[][]
    suspendedAt?: Record<string, number>
    suspendPayload?: unknown
    updatedAt?: string