mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-23 07:32:20 +03:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user