node-red-contrib-home-assistant-websocket
Version:
Node-RED integration with Home Assistant through websocket and REST API
22 lines (21 loc) • 960 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.PropertySelectorType = exports.IdSelectorType = void 0;
var IdSelectorType;
(function (IdSelectorType) {
IdSelectorType["Floor"] = "floor";
IdSelectorType["Area"] = "area";
IdSelectorType["Device"] = "device";
IdSelectorType["Entity"] = "entity";
IdSelectorType["Label"] = "label";
IdSelectorType["Substring"] = "substring";
IdSelectorType["Regex"] = "regex";
})(IdSelectorType || (exports.IdSelectorType = IdSelectorType = {}));
var PropertySelectorType;
(function (PropertySelectorType) {
PropertySelectorType["Floor"] = "floor_registry";
PropertySelectorType["Area"] = "area_registry";
PropertySelectorType["Device"] = "device_registry";
PropertySelectorType["State"] = "state_object";
PropertySelectorType["Label"] = "label_registry";
})(PropertySelectorType || (exports.PropertySelectorType = PropertySelectorType = {}));
;