@qtsurfer/api-client
    Preparing search index...

    Type Alias LiveRunCompact

    A run's state as returned by PATCH /live/{runId} — narrower than LiveRun (no strategyId, params, or desired), since this endpoint is addressed by runId alone.

    type LiveRunCompact = {
        description?: string;
        name?: string;
        runId: string;
        sources: LiveSource[];
        stage: "SANDBOX" | "LIVE";
        state: string;
        visibility: "private" | "public";
    }
    Index
    description?: string
    name?: string
    runId: string
    sources: LiveSource[]
    stage: "SANDBOX" | "LIVE"
    state: string
    visibility: "private" | "public"