fix(copilot): fix execute workflow from diff store (#1894)

* Fix run from diff store

* Fix copilot run workflow
This commit is contained in:
Siddharth Ganesan
2025-11-11 11:09:17 -08:00
committed by GitHub
parent 41f3d506da
commit c86f2a0537
6 changed files with 222 additions and 14 deletions

View File

@@ -13,6 +13,12 @@ export interface ExecutionMetadata {
startTime: string
pendingBlocks?: string[]
resumeFromSnapshot?: boolean
workflowStateOverride?: {
blocks: Record<string, any>
edges: Edge[]
loops?: Record<string, any>
parallels?: Record<string, any>
}
}
export interface ExecutionCallbacks {