| 32 | |
| 33 | |
| 34 | export interface IRun { |
| 35 | id: string; |
| 36 | platformId: string; |
| 37 | filename: string; |
| 38 | isConnected: boolean; |
| 39 | startDate: string; |
| 40 | endDate?: string; |
| 41 | status: 'pending' | 'running' | 'success' | 'error' | 'stopped' | 'vectorizing'; |
| 42 | url: string; |
| 43 | exportSize?: number; |
| 44 | exportPath?: string; |
| 45 | company: string; |
| 46 | name: string; |
| 47 | currentStep?: string; |
| 48 | isUpdated?: boolean; |
| 49 | vectorize_config?: any; |
| 50 | vectorization_progress?: any; |
| 51 | logs?: string; |
| 52 | vectorizationProgress?: { |
| 53 | current: number; |
| 54 | total: number; |
| 55 | percentage: number; |
| 56 | }; |
| 57 | } |
nothing calls this directly
no outgoing calls
no test coverage detected