From 49d744740ae44d67a101730cd9d9c1a9ef56b341 Mon Sep 17 00:00:00 2001 From: sd0ric4 <1286518974@qq.com> Date: Thu, 27 Mar 2025 10:12:57 +0800 Subject: [PATCH] feat: Add optional workflowInteractiveResponse field to PostWorkflowDebugResponse type --- projects/app/src/global/core/workflow/api.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/app/src/global/core/workflow/api.d.ts b/projects/app/src/global/core/workflow/api.d.ts index c4a37c272..49bd6d991 100644 --- a/projects/app/src/global/core/workflow/api.d.ts +++ b/projects/app/src/global/core/workflow/api.d.ts @@ -18,5 +18,6 @@ export type PostWorkflowDebugResponse = { finishedEdges: RuntimeEdgeItemType[]; nextStepRunNodes: RuntimeNodeItemType[]; flowResponses: ChatHistoryItemResType[]; + workflowInteractiveResponse?: WorkflowInteractiveResponseType; newVariables: Record; };