Skip to content

Graphorin API reference v0.12.1


Graphorin API reference / @graphorin/server / / RunStatus

Type Alias: RunStatus

ts
type RunStatus = 
  | "pending"
  | "running"
  | "awaiting_approval"
  | "completed"
  | "failed"
  | "aborted";

Defined in: packages/server/src/runtime/run-state.ts:32

Stable status discriminator for a run snapshot. Mirrors the values exposed on the public REST surface. 'awaiting_approval' (C3 / W-119): the run suspended on durable HITL and its resumable RunState is retained by the tracker until POST /runs/:runId/resume (or an abort) settles it.

Stable