make all blocks debuggable (#3221)

This commit is contained in:
Jonathan Dobson
2025-08-18 10:07:21 -04:00
committed by GitHub
parent 4617d2b5ca
commit 88b445c7c6

View File

@@ -216,17 +216,10 @@ export const WorkflowBlockTypes = {
HttpRequest: "http_request",
} as const;
export const debuggableWorkflowBlockTypes: Set<WorkflowBlockType> = new Set([
"action",
"extraction",
"goto_url",
"login",
"navigation",
"task",
"task_v2",
"text_prompt",
"validation",
]);
// all of them
export const debuggableWorkflowBlockTypes: Set<WorkflowBlockType> = new Set(
Object.values(WorkflowBlockTypes),
);
export const scriptableWorkflowBlockTypes: Set<WorkflowBlockType> = new Set([
"action",