| 43 | } |
| 44 | |
| 45 | interface WorkflowTransition { |
| 46 | from_phase: WorkflowPhase; |
| 47 | to_phase: WorkflowPhase; |
| 48 | timestamp: string; |
| 49 | reason?: string; |
| 50 | triggered_by: string; |
| 51 | } |
| 52 | |
| 53 | interface WorkflowState { |
| 54 | pipeline_id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected