node-red-contrib-home-assistant-websocket
Version:
Node-RED integration with Home Assistant through websocket and REST API
16 lines (15 loc) • 531 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApiProtocol = exports.ApiMethod = void 0;
var ApiMethod;
(function (ApiMethod) {
ApiMethod["Delete"] = "delete";
ApiMethod["Get"] = "get";
ApiMethod["Post"] = "post";
ApiMethod["Put"] = "put";
})(ApiMethod || (exports.ApiMethod = ApiMethod = {}));
var ApiProtocol;
(function (ApiProtocol) {
ApiProtocol["Http"] = "http";
ApiProtocol["Websocket"] = "websocket";
})(ApiProtocol || (exports.ApiProtocol = ApiProtocol = {}));
;