UNPKG

n8n-nodes-hubitat

Version:

n8n nodes to integrate with Hubitat smart home platform

36 lines 1.21 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HubitatApi = void 0; class HubitatApi { constructor() { this.name = 'hubitatApi'; this.displayName = 'Hubitat API'; this.documentationUrl = 'https://docs.hubitat.com/index.php?title=Maker_API'; this.properties = [ { displayName: 'Hubitat Host', name: 'hubitatHost', type: 'string', default: 'http://192.168.0.100', placeholder: 'http://192.168.0.100', description: 'The IP address or hostname of your Hubitat hub', }, { displayName: 'App ID', name: 'appId', type: 'string', default: '', description: 'The Maker API App ID', }, { displayName: 'Access Token', name: 'accessToken', type: 'string', default: '', description: 'The access token for the Maker API', }, ]; } } exports.HubitatApi = HubitatApi; //# sourceMappingURL=HubitatApi.credentials.js.map