homebridge-tesy-heater-api-v4 0.0.1 → 0.0.3
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 +47 -0
- package/package.json +1 -1
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pluginAlias": "TesyHeater",
|
|
3
|
+
"pluginType": "accessory",
|
|
4
|
+
"singular": true,
|
|
5
|
+
"schema": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"name": {
|
|
9
|
+
"title": "Name",
|
|
10
|
+
"type": "string",
|
|
11
|
+
"required": true,
|
|
12
|
+
"default": "Tesy Heater"
|
|
13
|
+
},
|
|
14
|
+
"device_id": {
|
|
15
|
+
"title": "Device ID",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"required": true
|
|
18
|
+
},
|
|
19
|
+
"username": {
|
|
20
|
+
"title": "Tesy Account Email",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"required": true
|
|
23
|
+
},
|
|
24
|
+
"password": {
|
|
25
|
+
"title": "Tesy Account Password",
|
|
26
|
+
"type": "string",
|
|
27
|
+
"required": true,
|
|
28
|
+
"format": "password"
|
|
29
|
+
},
|
|
30
|
+
"pullInterval": {
|
|
31
|
+
"title": "Refresh Interval (ms)",
|
|
32
|
+
"type": "integer",
|
|
33
|
+
"default": 10000
|
|
34
|
+
},
|
|
35
|
+
"minTemp": {
|
|
36
|
+
"title": "Minimum Temperature",
|
|
37
|
+
"type": "number",
|
|
38
|
+
"default": 10
|
|
39
|
+
},
|
|
40
|
+
"maxTemp": {
|
|
41
|
+
"title": "Maximum Temperature",
|
|
42
|
+
"type": "number",
|
|
43
|
+
"default": 30
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|