node-red-contrib-home-assistant-websocket
Version:
Node-RED integration with Home Assistant through websocket and REST API
38 lines (37 loc) • 986 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,
outputProperties: [],
location: undefined,
locationType: undefined,
};
if (schema.locationType !== 'none') {
newSchema.outputProperties = [
{
property: schema.location,
propertyType: schema.locationType,
value: '',
valueType: 'results',
},
];
}
return newSchema;
},
},
];
;