@homebridge-plugins/homebridge-plugin-update-check
Version:
A Homebridge plugin for checking for updates to Homebridge and plugins
18 lines • 662 B
TypeScript
import type { PlatformIdentifier, PlatformName } from 'homebridge';
export interface PluginUpdatePlatformConfig {
platform: PlatformName | PlatformIdentifier;
sensorType?: string;
checkHomebridgeUpdates?: boolean;
checkHomebridgeUIUpdates?: boolean;
checkPluginUpdates?: boolean;
checkDockerUpdates?: boolean;
initialCheckDelay?: number;
autoUpdateHomebridge?: boolean;
autoUpdateHomebridgeUI?: boolean;
autoUpdatePlugins?: boolean;
allowDirectNpmUpdates?: boolean;
autoRestartAfterUpdates?: boolean;
failureSensorType?: string;
respectDisabledPlugins?: boolean;
}
//# sourceMappingURL=configTypes.d.ts.map