| 28 | } |
| 29 | |
| 30 | export interface PipelineCreate { |
| 31 | name: string; |
| 32 | description?: string; |
| 33 | urls?: string[]; |
| 34 | schema?: Record<string, any>; |
| 35 | } |
| 36 | |
| 37 | export interface PipelineUpdate { |
| 38 | name?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected