MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / Pipeline

Interface Pipeline

frontend/src/types/index.ts:14–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12
13// Pipeline Types
14export 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
30export interface PipelineCreate {
31 name: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected