matterbridge-aeg-robot
Version:
A Matterbridge plugin that connects AEG RX 9 / Electrolux Pure i9 robot vacuums to the Matter smart home ecosystem.
17 lines • 577 B
TypeScript
export type DebugFeatures = 'Run API Tests' | 'Run Unsafe API Tests' | 'Log Endpoint Debug' | 'Log API Headers' | 'Log API Bodies' | 'Log Appliance IDs' | 'Log Debug as Info';
export interface Config {
name: string;
type: string;
version: string;
whiteList: string[];
blackList: string[];
apiKey: string;
accessToken: string;
accessTokenURL?: string;
refreshToken: string;
pollIntervalSeconds: number;
debug: boolean;
debugFeatures: DebugFeatures[];
unregisterOnShutdown: boolean;
}
//# sourceMappingURL=config-types.d.ts.map