node-red-contrib-home-assistant-websocket
Version:
Node-RED integration with Home Assistant through websocket and REST API
28 lines (27 loc) • 647 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = [
{
version: 0,
up: (schema) => {
const newSchema = {
...schema,
version: 0,
};
return newSchema;
},
},
{
version: 1,
up: (schema) => {
const newSchema = {
...schema,
version: 1,
exposeAsEntityConfig: '',
};
newSchema.exposeToHomeAssistant = undefined;
newSchema.haConfig = undefined;
return newSchema;
},
},
];
;