homebridge-aeg-robot
Version:
AEG RX9 / Electrolux Pure i9 robot vacuum plugin for Homebridge
15 lines • 614 B
TypeScript
export interface PollIntervals {
statusSeconds: number;
}
export type HideService = 'Battery' | 'Contact Sensor' | 'Fan' | 'Filter Maintenance' | 'Occupancy Sensor' | 'Switch Clean' | 'Switch Home';
export type DebugFeatures = 'Run API Tests' | 'Run Unsafe API Tests' | 'Log API Headers' | 'Log API Bodies' | 'Log Appliance IDs' | 'Log Debug as Info';
export interface Config {
platform: string;
apiKey: string;
accessToken: string;
refreshToken: string;
pollIntervals: PollIntervals;
hideServices: HideService[];
debug: DebugFeatures[];
}
//# sourceMappingURL=config-types.d.ts.map