yale-doorman
Version:
SDK for Yale Doorman through the Yale cloud API
17 lines (16 loc) • 556 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LockStateCode = void 0;
const LockState_1 = require("./LockState");
exports.LockStateCode = {
/** Locked after a failed lock */
"1816": LockState_1.LockState.LOCK,
/** Failed to lock */
"1815": LockState_1.LockState.UNLOCK,
/** Auto-relocked */
"1807": LockState_1.LockState.LOCK,
/** Unlock from inside */
"1801": LockState_1.LockState.UNLOCK,
/** Unlock from outside, token or keypad, */
"1802": LockState_1.LockState.UNLOCK,
};