Type Alias ChatRunStatus

ChatRunStatus:
    | "queued"
    | "running"
    | "waiting_for_user"
    | "completed"
    | "partial_failure"
    | "failed"
    | "cancelled"

Durable hosted chat run status.

Mirrors the canonical state machine from @sogni/creative-agent/backbone ChatRunStatus. The duplicate declaration here keeps the SDK self-contained — the shared package is not a runtime SDK dependency.