add grist record to fullinfo

This commit is contained in:
Darius
2026-02-06 19:49:46 +01:00
parent 27dc6f2b12
commit ec4c9ec492
6 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
import type { GristRecord_PersonalGoals } from "./grist";
import type { API_HA_DeskPosition } from "./homeassistant";
import type { TidalGetCurrent } from "./tidal";
@@ -5,4 +6,5 @@ export type FullInformation = {
ha_desk_position: API_HA_DeskPosition | null;
ha_temp: string | null;
tidal_current: TidalGetCurrent | null;
grist_personal_goals: GristRecord_PersonalGoals | null;
};