Type Alias: SkipReason
SkipReason = {
failedNodeId:string;kind:"upstream_failed"; } | {droppedAt:string;kind:"filtered_out"; } | {detail:string;kind:"missing_config"; }
Defined in: packages/core/src/graph/types.ts:53
Reason a step's onStepSkipped fires. Typed so callers can match exhaustively when writing skip state to external stores.