| 3 | import { executeNodeAction, resetCounterTracking } from "./nodeExecutor"; |
| 4 | |
| 5 | interface NodeGraphExecutionRequest { |
| 6 | nodes: SerializedNode[]; |
| 7 | connections: SerializedConnection[]; |
| 8 | nodeConfigs?: Record<string, unknown>; |
| 9 | executionContext?: FlowExecutionContext; |
| 10 | resetCounters?: boolean; |
| 11 | } |
| 12 | interface NodeGraphExecutionResult { |
| 13 | success: boolean; |
| 14 | executionResults: Map<string, NodeExecutionResult>; |
nothing calls this directly
no outgoing calls
no test coverage detected