| 33 | } |
| 34 | |
| 35 | interface ApprovalRequest { |
| 36 | id: string; |
| 37 | phase: WorkflowPhase; |
| 38 | action: string; |
| 39 | data: any; |
| 40 | created_at: string; |
| 41 | expires_at?: string; |
| 42 | status: 'pending' | 'approved' | 'rejected' | 'expired'; |
| 43 | } |
| 44 | |
| 45 | interface WorkflowTransition { |
| 46 | from_phase: WorkflowPhase; |
nothing calls this directly
no outgoing calls
no test coverage detected