| 12 | |
| 13 | // Pipeline Types |
| 14 | export interface Pipeline { |
| 15 | id: string; |
| 16 | name: string; |
| 17 | description?: string; |
| 18 | urls: string[]; |
| 19 | schema: Record<string, any>; |
| 20 | code: string; |
| 21 | generated_code?: string; |
| 22 | status: 'idle' | 'running' | 'completed' | 'failed'; |
| 23 | created_at: string; |
| 24 | updated_at: string; |
| 25 | results?: any[]; |
| 26 | results_count?: number; |
| 27 | last_run?: string; |
| 28 | } |
| 29 | |
| 30 | export interface PipelineCreate { |
| 31 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected