This commit is contained in:
RGJorge
2026-05-10 20:49:06 +00:00
parent 0ebe000a26
commit 713504dc65
34 changed files with 918 additions and 327 deletions
+14
View File
@@ -85,6 +85,20 @@ export interface StatsHistoryPoint {
export type StatsRange = "1h" | "6h" | "24h" | "7d";
export interface ActionError {
id: string;
uid: string;
action: string;
error: string;
timestamp: number;
}
export interface ServerConfig {
allowedPaths: string[];
allowNonCompose: boolean;
restrictedMode: boolean;
}
export type WSMessage =
| { type: "services"; data: Service[] }
| { type: "connections"; data: Connection[] }