From b69274eebf87ddae026787fbde3405afec823ccd Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Tue, 27 Jan 2026 08:59:02 -0800 Subject: [PATCH] fix(hitl): default output must exist in block outputs --- apps/sim/blocks/blocks/human_in_the_loop.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/sim/blocks/blocks/human_in_the_loop.ts b/apps/sim/blocks/blocks/human_in_the_loop.ts index df3d24a48..addc05af4 100644 --- a/apps/sim/blocks/blocks/human_in_the_loop.ts +++ b/apps/sim/blocks/blocks/human_in_the_loop.ts @@ -162,5 +162,9 @@ export const HumanInTheLoopBlock: BlockConfig = { type: 'string', description: 'Resume API endpoint URL for direct curl requests', }, + response: { type: 'json', description: 'Display data shown to the approver' }, + submission: { type: 'json', description: 'Form submission data from the approver' }, + resumeInput: { type: 'json', description: 'Raw input data submitted when resuming' }, + submittedAt: { type: 'string', description: 'ISO timestamp when the workflow was resumed' }, }, }