Skip to main content

Type Alias: SkipReason

SkipReason = { failedNodeId: string; kind: "upstream_failed"; } | { droppedAt: string; kind: "filtered_out"; } | { detail: string; kind: "missing_config"; }

Defined in: packages/core/src/core/hooks.ts:125

Reason a step's onStepSkipped fires. Typed so callers can match exhaustively when writing skip state to external stores.