homebridge-legrand-radiant 0.1.4 → 0.1.5
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 +5 -9
- package/package.json +1 -1
package/config.schema.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"pluginType": "platform",
|
|
4
4
|
"singular": true,
|
|
5
5
|
"headerDisplay": "Control your Legrand Radiant WiFi smart switches and dimmers through HomeKit. Enter your Legrand Smart Lights app credentials below.",
|
|
6
|
-
"footerDisplay": "Devices are automatically discovered from your Legrand account. For issues, check the [GitHub repository](https://github.com/
|
|
6
|
+
"footerDisplay": "Devices are automatically discovered from your Legrand account. For issues, check the [GitHub repository](https://github.com/aldrichang/homebridge-legrand-radiant).",
|
|
7
7
|
"schema": {
|
|
8
8
|
"type": "object",
|
|
9
9
|
"properties": {
|
|
@@ -11,20 +11,17 @@
|
|
|
11
11
|
"title": "Platform Name",
|
|
12
12
|
"type": "string",
|
|
13
13
|
"default": "Legrand",
|
|
14
|
-
"required": true,
|
|
15
14
|
"description": "Name shown in Homebridge logs"
|
|
16
15
|
},
|
|
17
16
|
"email": {
|
|
18
17
|
"title": "Email",
|
|
19
18
|
"type": "string",
|
|
20
19
|
"format": "email",
|
|
21
|
-
"required": true,
|
|
22
20
|
"description": "Your Legrand Smart Lights account email"
|
|
23
21
|
},
|
|
24
22
|
"password": {
|
|
25
23
|
"title": "Password",
|
|
26
24
|
"type": "string",
|
|
27
|
-
"required": true,
|
|
28
25
|
"description": "Your Legrand Smart Lights account password"
|
|
29
26
|
},
|
|
30
27
|
"pollingInterval": {
|
|
@@ -54,13 +51,11 @@
|
|
|
54
51
|
"properties": {
|
|
55
52
|
"id": {
|
|
56
53
|
"title": "Device ID",
|
|
57
|
-
"type": "string"
|
|
58
|
-
"required": true
|
|
54
|
+
"type": "string"
|
|
59
55
|
},
|
|
60
56
|
"name": {
|
|
61
57
|
"title": "Device Name",
|
|
62
|
-
"type": "string"
|
|
63
|
-
"required": true
|
|
58
|
+
"type": "string"
|
|
64
59
|
},
|
|
65
60
|
"type": {
|
|
66
61
|
"title": "Device Type",
|
|
@@ -71,7 +66,8 @@
|
|
|
71
66
|
],
|
|
72
67
|
"default": "switch"
|
|
73
68
|
}
|
|
74
|
-
}
|
|
69
|
+
},
|
|
70
|
+
"required": ["id", "name"]
|
|
75
71
|
},
|
|
76
72
|
"description": "Optional: Only needed if auto-discovery doesn't work"
|
|
77
73
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-legrand-radiant",
|
|
3
3
|
"displayName": "Legrand Radiant",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5",
|
|
5
5
|
"description": "Homebridge plugin for Legrand Radiant WiFi smart switches and dimmers",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|