From ae1ee384413f36b14be703a60f98b49c20866bf6 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 26 Mar 2026 18:29:47 +0100 Subject: [PATCH] feat: add attributes fields to schema.d.ts types Add optional `attributes?: Record` to ExecutionSummary, ExecutionDetail, and ProcessorNode in the manually-maintained OpenAPI schema to reflect the new backend attributes support. Co-Authored-By: Claude Sonnet 4.6 --- ui/src/api/schema.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/src/api/schema.d.ts b/ui/src/api/schema.d.ts index 63d14700..1c79acdd 100644 --- a/ui/src/api/schema.d.ts +++ b/ui/src/api/schema.d.ts @@ -1103,6 +1103,7 @@ export interface components { correlationId: string; errorMessage: string; diagramContentHash: string; + attributes?: Record; }; SearchResultExecutionSummary: { data: components["schemas"]["ExecutionSummary"][]; @@ -1333,6 +1334,7 @@ export interface components { outputBody?: string; inputHeaders?: string; outputHeaders?: string; + attributes?: Record; }; ProcessorNode: { processorId: string; @@ -1348,6 +1350,7 @@ export interface components { errorMessage: string; errorStackTrace: string; children: components["schemas"]["ProcessorNode"][]; + attributes?: Record; }; DiagramLayout: { /** Format: double */