Skip to content

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 reached
  • caught — errored but a Catch handled it and the run continued
  • running — entered but not yet exited (in-progress execution)
  • notReached — never entered by this execution