fix ha update

This commit is contained in:
Darius
2026-02-08 14:48:44 +01:00
parent 405ebe1e8e
commit e32afa0f70

View File

@@ -35,6 +35,12 @@ export type API_HA_DeskPosition = {
export type HA_Update = {
entity_id: string;
state: string;
attributes: unknown;
attributes: {
state_class?: string;
unit_of_measurement?: string;
icon?: string;
friendly_name?: string;
[key: string]: unknown;
};
timestamp: string; // datetime string
}
};