Implement all sensors and low battery state

This commit is contained in:
Adrian Jagielak
2025-07-23 00:45:21 +02:00
parent ff38146ac4
commit 2c3a1bf0c5
44 changed files with 768 additions and 11 deletions

View File

@@ -17,6 +17,10 @@ export type InclusionReport = {
export type InclusionReportService = {
name?: string | null;
address?: string | null;
props?: {
sup_units?: string[] | null;
sup_events?: string[] | null;
} | null
};
export async function getInclusionReport(parameters: { adapterAddress: string; adapterService: string; deviceId: string }): Promise<InclusionReport> {