From 6a24dd01e9b42380af1aa22fc2b44fb38d21c022 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Wed, 25 Mar 2026 22:06:26 +0100 Subject: [PATCH] fix: add exchange body fields to schema.d.ts for CI tsc check The CI build runs tsc --noEmit which failed because the ExecutionDetail type in schema.d.ts was missing the new inputBody/outputBody/inputHeaders/ outputHeaders fields added to the backend DTO. Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/api/schema.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/src/api/schema.d.ts b/ui/src/api/schema.d.ts index 3b3f33a8..63d14700 100644 --- a/ui/src/api/schema.d.ts +++ b/ui/src/api/schema.d.ts @@ -1329,6 +1329,10 @@ export interface components { processors: components["schemas"]["ProcessorNode"][]; applicationName?: string; children?: components["schemas"]["ProcessorNode"][]; + inputBody?: string; + outputBody?: string; + inputHeaders?: string; + outputHeaders?: string; }; ProcessorNode: { processorId: string;