UNPKG

homebridge-jci-hitachi-platform

Version:

Homebridge platform plugin providing HomeKit support for Jci Hitachi air conditioners.

17 lines 963 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DEVICE_STATUS_REFRESH_INTERVAL = exports.LOGIN_TOKEN_REFRESH_INTERVAL = exports.MAX_NO_OF_FAILED_LOGIN_ATTEMPTS = exports.LOGIN_RETRY_DELAY = exports.PLATFORM_NAME = exports.PLUGIN_NAME = void 0; // Name of the plugin (must match the `name` of the package.json). exports.PLUGIN_NAME = 'homebridge-JciHitachi-platform'; // The platform the plugin creates (see config.json). exports.PLATFORM_NAME = 'JciHitachi Platform'; // 360 sec = 6 min exports.LOGIN_RETRY_DELAY = 360 * 1000; exports.MAX_NO_OF_FAILED_LOGIN_ATTEMPTS = 5; // Used to renew the token periodically. Only a safety measure, since we are handling // network errors dynamically and re-issuing a login upon a 401 Unauthorized error. // 604,800 sec = 7 days exports.LOGIN_TOKEN_REFRESH_INTERVAL = 604800 * 1000; // 60 sec = 1 min exports.DEVICE_STATUS_REFRESH_INTERVAL = 60 * 1000; //# sourceMappingURL=settings.js.map