MCPcopy Create free account
hub / github.com/Surfer-Org/Protocol / IRun

Interface IRun

desktop/src/renderer/types/interfaces.ts:34–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32
33
34export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected