add HA Update

This commit is contained in:
Darius
2026-02-08 14:36:11 +01:00
parent 9688c9581a
commit 1fb937973c
3 changed files with 14 additions and 1 deletions

View File

@@ -31,3 +31,10 @@ export type API_HA_DeskPosition = {
last_changed: string;
last_changed_seconds: number;
};
export type HA_Update = {
entity_id: string;
state: string;
attributes: unknown;
timestamp: string; // datetime string
}