homebridge-tuya-plus 3.6.0 → 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config.schema.json +2 -2
- package/package.json +1 -1
package/config.schema.json
CHANGED
|
@@ -260,14 +260,14 @@
|
|
|
260
260
|
"type": "integer",
|
|
261
261
|
"placeholder": "255",
|
|
262
262
|
"condition": {
|
|
263
|
-
"functionBody": "return model.devices && model.devices[arrayIndices] && ['RGBTWLight','RGBTWOutlet', 'FanLight'].includes(model.devices[arrayIndices].type);"
|
|
263
|
+
"functionBody": "return model.devices && model.devices[arrayIndices] && ['TWLight','RGBTWLight','RGBTWOutlet', 'FanLight'].includes(model.devices[arrayIndices].type);"
|
|
264
264
|
}
|
|
265
265
|
},
|
|
266
266
|
"scaleWhiteColor": {
|
|
267
267
|
"type": "integer",
|
|
268
268
|
"placeholder": "255",
|
|
269
269
|
"condition": {
|
|
270
|
-
"functionBody": "return model.devices && model.devices[arrayIndices] && ['RGBTWLight','RGBTWOutlet'].includes(model.devices[arrayIndices].type);"
|
|
270
|
+
"functionBody": "return model.devices && model.devices[arrayIndices] && ['TWLight','RGBTWLight','RGBTWOutlet'].includes(model.devices[arrayIndices].type);"
|
|
271
271
|
}
|
|
272
272
|
},
|
|
273
273
|
"outletCount": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-tuya-plus",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"description": "A community-maintained Homebridge plugin for controlling Tuya devices locally over LAN. Includes new features, fixes, and updated device support.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|