fix: correct response field mappings and add logout button
All checks were successful
CI / build (push) Successful in 1m28s
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Successful in 50s
CI / deploy (push) Successful in 38s
CI / deploy-feature (push) Has been skipped

- SearchResult uses 'data' not 'items', 'total' not 'totalCount'
- ExecutionStats uses 'p99LatencyMs' not 'p99DurationMs'
- TimeseriesBucket uses 'time' not 'timestamp'
- Add user Dropdown with logout action to LayoutShell

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-19 18:06:49 +01:00
parent ea5b5a685d
commit f2744e3094
4 changed files with 28 additions and 14 deletions

View File

@@ -151,7 +151,7 @@ export interface components {
totalCount: number;
failedCount: number;
avgDurationMs: number;
p99DurationMs: number;
p99LatencyMs: number;
activeCount: number;
totalToday: number;
prevTotalCount: number;
@@ -163,7 +163,7 @@ export interface components {
buckets: components['schemas']['TimeseriesBucket'][];
};
TimeseriesBucket: {
timestamp: string;
time: string;
totalCount: number;
failedCount: number;
avgDurationMs: number;
@@ -171,8 +171,10 @@ export interface components {
activeCount: number;
};
SearchResultExecutionSummary: {
items: components['schemas']['ExecutionSummary'][];
totalCount: number;
data: components['schemas']['ExecutionSummary'][];
total: number;
offset: number;
limit: number;
};
UserInfo: {
userId: string;
@@ -228,7 +230,7 @@ export interface components {
exchangeCount: number;
successRate: number;
avgDurationMs: number;
p99DurationMs: number;
p99LatencyMs: number;
errorRate: number;
throughputPerSec: number;
sparkline: number[];