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

Interface WorkflowState

frontend/src/store/workflowStore.ts:53–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51}
52
53interface WorkflowState {
54 pipeline_id: string;
55 phase: WorkflowPhase;
56 urls: URLInfo[];
57 urls_validated: boolean;
58 schema_fields: SchemaField[];
59 schema_validated: boolean;
60 generated_code: string;
61 code_validated: boolean;
62 execution_results: any[];
63 execution_status?: string;
64 pending_approvals: ApprovalRequest[];
65 approval_history: ApprovalRequest[];
66 phase_transitions: WorkflowTransition[];
67 user_modifications: any[];
68 created_at: string;
69 updated_at: string;
70 created_by: string;
71 last_modified_by: string;
72 version: number;
73}
74
75interface WorkflowStore {
76 // State

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected