feat(cost-guard): global Gemini daily budget + EOC alarm; trial requires verified email

This commit is contained in:
Sven (AAMOS AI)
2026-08-12 06:43:32 +07:00
parent 2cd00f0106
commit 6c581bec1a
7 changed files with 96 additions and 10 deletions
+14 -1
View File
@@ -103,7 +103,7 @@ export interface OpsSafetyBlock {
export interface OpsWallTile {
label: string;
value: string;
tone: "ok" | "warn";
tone: "ok" | "warn" | "crit";
}
export interface OpsWallBoard {
@@ -115,6 +115,18 @@ export interface OpsWallBlock {
boards: OpsWallBoard[];
}
export interface OpsAlarm {
typ: string;
rubrik: string;
detalj?: string;
allvarlighetsgrad: "warn" | "crit";
created_at: string;
}
export interface OpsAlarmBlock {
larm: OpsAlarm[];
}
export interface OpsSummary {
app: OpsAppBlock;
ekonomi: OpsEconomyBlock;
@@ -128,6 +140,7 @@ export interface OpsSummary {
betalning: OpsPaymentBlock;
jobb: OpsQueueBlock;
sakerhet: OpsSafetyBlock;
larm: OpsAlarmBlock;
wall: OpsWallBlock;
as_of: string;
}