UNPKG

@palekseii/homebridge-tuya-platform

Version:

Fork version of official Tuya Homebridge plugin. Brings a bunch of bug fix and new device support.

29 lines 1.17 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.homeOptionsSchema = exports.customOptionsSchema = void 0; exports.customOptionsSchema = { properties: { endpoint: { type: 'string', format: 'url', required: true }, accessId: { type: 'string', required: true }, accessKey: { type: 'string', required: true }, deviceOverrides: { 'type': 'array' }, debug: { type: 'boolean' }, debugLevel: { 'type': 'string' }, }, }; exports.homeOptionsSchema = { properties: { accessId: { type: 'string', required: true }, accessKey: { type: 'string', required: true }, endpoint: { type: 'string', format: 'url' }, countryCode: { 'type': 'integer', 'minimum': 1, required: true }, username: { type: 'string', required: true }, password: { type: 'string', required: true }, appSchema: { 'type': 'string', required: true }, homeWhitelist: { 'type': 'array' }, deviceOverrides: { 'type': 'array' }, debug: { type: 'boolean' }, debugLevel: { 'type': 'string' }, }, }; //# sourceMappingURL=config.js.map