uxowe i funkcjonalne

This commit is contained in:
Mateusz Gruszczyński
2026-03-25 13:16:47 +01:00
parent 84fe898a74
commit 077ea315f5
7 changed files with 352 additions and 53 deletions

View File

@@ -263,13 +263,21 @@ export interface AuthUsersPayload {
}
export interface KioskChartGroup {
id: string;
title?: string | null;
metric_ids: string[];
}
export interface KioskSettingsPayload {
mode: "public" | "private";
widgets: string[];
hero_metric_ids: string[];
realtime_range: string;
analytics_range: string;
analytics_bucket: string;
compare_mode: string;
chart_groups: KioskChartGroup[];
updated_at?: string | null;
updated_by?: string | null;
}