From de223c97879f0f043e0aa51d7a0779491ba5b9bb Mon Sep 17 00:00:00 2001 From: Marc Kelechava Date: Thu, 18 Dec 2025 19:16:59 -0800 Subject: [PATCH] Preserve data schema when cloning file parser blocks (#4337) --- .../src/routes/workflows/editor/workflowEditorUtils.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts b/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts index 0d1a1e13..37666bfd 100644 --- a/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts +++ b/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts @@ -3254,6 +3254,7 @@ function convertBlocksToBlockYAML( block_type: "file_url_parser", file_url: block.file_url, file_type: block.file_type, + json_schema: block.json_schema, }; return blockYaml; } @@ -3298,6 +3299,7 @@ function convertBlocksToBlockYAML( url: block.url, headers: block.headers, body: block.body, + files: block.files, timeout: block.timeout, follow_redirects: block.follow_redirects, parameter_keys: block.parameters.map((p) => p.key),