homebridge-flume
Version:
Homebridge plugin to integrate Flume devices into HomeKit.
17 lines • 870 B
JavaScript
export const SENSITIVE_KEYS = ['access_token', 'address', 'address_2', 'bridge_id', 'id', 'refresh_token', 'user_id'];
export var VolumeUnits;
(function (VolumeUnits) {
VolumeUnits["GALLONS"] = "GALLONS";
VolumeUnits["LITERS"] = "LITERS";
VolumeUnits["CUBIC_FEET"] = "CUBIC_FEET";
VolumeUnits["CUBIC_METERS"] = "CUBIC_METERS";
})(VolumeUnits || (VolumeUnits = {}));
export var NotificationType;
(function (NotificationType) {
NotificationType[NotificationType["USAGE_ALERT"] = 1] = "USAGE_ALERT";
NotificationType[NotificationType["BUDGET"] = 2] = "BUDGET";
NotificationType[NotificationType["GENERAL"] = 4] = "GENERAL";
NotificationType[NotificationType["HEARTBEAT"] = 8] = "HEARTBEAT";
NotificationType[NotificationType["BATTERY"] = 16] = "BATTERY";
})(NotificationType || (NotificationType = {}));
//# sourceMappingURL=types.js.map