feat(ops): wall board härlett ur summary-värden

This commit is contained in:
Sven (AAMOS AI)
2026-08-11 02:36:08 +07:00
parent b1b6eb994c
commit 4296a64aef
3 changed files with 241 additions and 1 deletions
+16
View File
@@ -100,6 +100,21 @@ export interface OpsSafetyBlock {
senaste_kontroll: string | null;
}
export interface OpsWallTile {
label: string;
value: string;
tone: "ok" | "warn";
}
export interface OpsWallBoard {
title: string;
tiles: OpsWallTile[];
}
export interface OpsWallBlock {
boards: OpsWallBoard[];
}
export interface OpsSummary {
app: OpsAppBlock;
ekonomi: OpsEconomyBlock;
@@ -113,5 +128,6 @@ export interface OpsSummary {
betalning: OpsPaymentBlock;
jobb: OpsQueueBlock;
sakerhet: OpsSafetyBlock;
wall: OpsWallBlock;
as_of: string;
}