fix: update frontend field names for identity rename (applicationId, instanceId)
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:
12
ui/src/api/schema.d.ts
vendored
12
ui/src/api/schema.d.ts
vendored
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user