feat: add attributes fields to schema.d.ts types
Add optional `attributes?: Record<string, string>` 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 <noreply@anthropic.com>
This commit is contained in:
3
ui/src/api/schema.d.ts
vendored
3
ui/src/api/schema.d.ts
vendored
@@ -1103,6 +1103,7 @@ export interface components {
|
|||||||
correlationId: string;
|
correlationId: string;
|
||||||
errorMessage: string;
|
errorMessage: string;
|
||||||
diagramContentHash: string;
|
diagramContentHash: string;
|
||||||
|
attributes?: Record<string, string>;
|
||||||
};
|
};
|
||||||
SearchResultExecutionSummary: {
|
SearchResultExecutionSummary: {
|
||||||
data: components["schemas"]["ExecutionSummary"][];
|
data: components["schemas"]["ExecutionSummary"][];
|
||||||
@@ -1333,6 +1334,7 @@ export interface components {
|
|||||||
outputBody?: string;
|
outputBody?: string;
|
||||||
inputHeaders?: string;
|
inputHeaders?: string;
|
||||||
outputHeaders?: string;
|
outputHeaders?: string;
|
||||||
|
attributes?: Record<string, string>;
|
||||||
};
|
};
|
||||||
ProcessorNode: {
|
ProcessorNode: {
|
||||||
processorId: string;
|
processorId: string;
|
||||||
@@ -1348,6 +1350,7 @@ export interface components {
|
|||||||
errorMessage: string;
|
errorMessage: string;
|
||||||
errorStackTrace: string;
|
errorStackTrace: string;
|
||||||
children: components["schemas"]["ProcessorNode"][];
|
children: components["schemas"]["ProcessorNode"][];
|
||||||
|
attributes?: Record<string, string>;
|
||||||
};
|
};
|
||||||
DiagramLayout: {
|
DiagramLayout: {
|
||||||
/** Format: double */
|
/** Format: double */
|
||||||
|
|||||||
Reference in New Issue
Block a user