UNPKG

node-red-contrib-home-assistant-websocket

Version:
38 lines (37 loc) 986 B
"use strict"; 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; }, }, ];