ISPO SDK
    Preparing search index...

    Interface AgentScheduledRun

    Markdown

    A queued or completed one-shot overnight run (§27.5). scheduledRunId is an opaque SERVER id — safe to key UI on, but NEVER a proj_/ten_/run_ id; the host redacts the internal project id and hosted run id before this crosses the bridge.

    interface AgentScheduledRun {
        createdAt: string;
        error?: { code: string };
        outputSummary?: { bytes: number; count: number };
        prompt: string;
        runAt: string;
        scheduledRunId: string;
        status: AgentScheduledRunStatus;
        updatedAt: string;
    }
    Index
    createdAt: string
    error?: { code: string }

    A failed run's cause, reduced to a stable, id-free category. The host scrubs the worker's raw error blob before it crosses the bridge — the free-form message and any hosted run_ id are dropped, only code survives.

    outputSummary?: { bytes: number; count: number }

    Bounded review metadata for staged output. The output bytes remain in Cloud until the user commits or discards them in host chrome.

    prompt: string
    runAt: string

    ISO-8601 target time the run becomes claimable.

    scheduledRunId: string
    updatedAt: string