(graph: WorkflowGraph, pendingNodeIds?: string[], fileChange?: { filePath: string; functions: string[] })
| 503 | } |
| 504 | |
| 505 | updateGraph(graph: WorkflowGraph, pendingNodeIds?: string[], fileChange?: { filePath: string; functions: string[] }) { |
| 506 | this.postMessage({ |
| 507 | command: 'updateGraph', |
| 508 | graph, |
| 509 | preserveState: true, |
| 510 | pendingNodeIds, |
| 511 | fileChange |
| 512 | }); |
| 513 | } |
| 514 | |
| 515 | /** |
| 516 | * Initialize graph after file picker closes (for cached data) |
no test coverage detected