ExecutionStateStatus
type ExecutionStateStatus = "caught" | "failed" | "notReached" | "running" | "succeeded";Defined in: src/types/index.ts:1042
Outcome of a single state within an execution.
succeeded— entered and completed normally (possibly after retries)failed— errored terminally, or a Fail state that was reachedcaught— errored but a Catch handled it and the run continuedrunning— entered but not yet exited (in-progress execution)notReached— never entered by this execution