Skip to main content

Type Alias: TransitionProgressEvent

TransitionProgressEvent = { artifactId: string; satisfied: boolean; type: "requires-check"; } | { artifactId: string; complete: number; incomplete: number; total: number; type: "task-completion-failed"; } | { command: string; hookId: string; phase: "pre" | "post"; type: "hook-start"; } | { exitCode: number; hookId: string; phase: "pre" | "post"; success: boolean; type: "hook-done"; } | { from: ChangeState; to: ChangeState; type: "transitioned"; }

Defined in: packages/core/src/application/use-cases/transition-change.ts:57

Progress event emitted during a transition.