fix(dashboard): show account email/name in Utilization Account Split cards (#10939)

Validado no worktree combinado: typecheck:core, changelog-integrity, complexity, cognitive-complexity, file-size, lint todos verdes. Fix de UX real e bem documentado (cards de Account Split mostravam UUID cru em vez de email/nome da conta). CI vermelho é o base-red já rastreado em #9985. Obrigado!
This commit is contained in:
ZaimMarzuki
2026-08-21 14:24:10 +07:00
committed by GitHub
parent 10deb5c307
commit c0fd109e30
3 changed files with 54 additions and 4 deletions

View File

@@ -19,11 +19,18 @@ export interface ProviderUtilizationPoint {
windowKey: string;
}
export interface ConnectionMetaEntry {
email: string | null;
name: string | null;
displayName: string | null;
}
export interface ProviderUtilizationResponse {
timeRange: "1h" | "24h" | "7d" | "30d";
bucketSizeMinutes: number;
providers: string[];
data: ProviderUtilizationPoint[];
connectionMeta?: Record<string, ConnectionMetaEntry>;
}
export interface ComboHealthMetrics {