feat: Add optional workflowInteractiveResponse field to PostWorkflowDebugResponse type

This commit is contained in:
sd0ric4
2025-03-27 10:12:57 +08:00
parent 7495b64499
commit 49d744740a

View File

@@ -18,5 +18,6 @@ export type PostWorkflowDebugResponse = {
finishedEdges: RuntimeEdgeItemType[];
nextStepRunNodes: RuntimeNodeItemType[];
flowResponses: ChatHistoryItemResType[];
workflowInteractiveResponse?: WorkflowInteractiveResponseType;
newVariables: Record<string, any>;
};