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