homebridge-unifi-access
Version:
Homebridge UniFi Access plugin providing complete HomeKit integration for the UniFi Access ecosystem with full support for most features including autoconfiguration, motion detection, multiple controllers, and realtime updates.
16 lines • 758 B
JavaScript
/* Copyright(C) 2020-2025, HJD (https://github.com/hjdhjd). All rights reserved.
*
* access-types.ts: Interface and type definitions for UniFi Access.
*/
// HBUA reserved names.
export var AccessReservedNames;
(function (AccessReservedNames) {
// Manage our contact sensor types.
AccessReservedNames["CONTACT_DPS"] = "ContactSensor.DPS";
// Manage our switch types.
AccessReservedNames["SWITCH_DOORBELL_TRIGGER"] = "DoorbellTrigger";
AccessReservedNames["SWITCH_LOCK_TRIGGER"] = "LockTrigger";
AccessReservedNames["SWITCH_MOTION_SENSOR"] = "MotionSensorSwitch";
AccessReservedNames["SWITCH_MOTION_TRIGGER"] = "MotionSensorTrigger";
})(AccessReservedNames || (AccessReservedNames = {}));
//# sourceMappingURL=access-types.js.map