fix: update frontend field names for identity rename (applicationId, instanceId)
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Failing after 32s
CI / docker (push) Has been skipped
CI / deploy (push) Has been skipped
CI / deploy-feature (push) Has been skipped

The backend identity rename (applicationName → applicationId,
agentId → instanceId) was not reflected in the frontend. This caused
drilldown to fail (detail.applicationName was undefined, disabling
the diagram fetch) and various display issues.

Updated schema.d.ts, ExchangeHeader, ExecutionDiagram, Dashboard,
AgentHealth, AgentInstance, LayoutShell, LogTab, InfoTab, DetailPanel,
ExchangesPage, and tracing-store.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-01 18:22:16 +02:00
parent aa2d203f4e
commit 4cdbcdaeea
12 changed files with 47 additions and 47 deletions

View File

@@ -1487,8 +1487,8 @@ export interface components {
ExecutionSummary: {
executionId: string;
routeId: string;
agentId: string;
applicationName: string;
instanceId: string;
applicationId: string;
status: string;
/** Format: date-time */
startTime: string;
@@ -1807,8 +1807,8 @@ export interface components {
ExecutionDetail: {
executionId: string;
routeId: string;
agentId: string;
applicationName: string;
instanceId: string;
applicationId: string;
status: string;
/** Format: date-time */
startTime: string;
@@ -1959,8 +1959,8 @@ export interface components {
AgentEventResponse: {
/** Format: int64 */
id: number;
agentId: string;
appId: string;
instanceId: string;
applicationId: string;
eventType: string;
detail: string;
/** Format: date-time */