fix: add exchange body fields to schema.d.ts for CI tsc check
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 54s
CI / docker (push) Successful in 9s
CI / deploy (push) Successful in 19s
CI / deploy-feature (push) Has been skipped

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) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-25 22:06:26 +01:00
parent e10f021c54
commit 6a24dd01e9

View File

@@ -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;