Add support for 'out_lvl_switch' service

This commit is contained in:
Adrian Jagielak
2025-07-23 16:26:41 +02:00
parent f120ee382c
commit ecb49f7b77
47 changed files with 342 additions and 110 deletions

View File

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