@jay-d-tyler/homebridge-somfy-protect-automate 2.0.5 → 2.0.6
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 +1 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/config.schema.json
CHANGED
|
@@ -10,20 +10,17 @@
|
|
|
10
10
|
"name": {
|
|
11
11
|
"title": "Name",
|
|
12
12
|
"type": "string",
|
|
13
|
-
"default": "Somfy Protect Automate"
|
|
14
|
-
"required": false
|
|
13
|
+
"default": "Somfy Protect Automate"
|
|
15
14
|
},
|
|
16
15
|
"httpPort": {
|
|
17
16
|
"title": "Somfy Protect HTTP API Port",
|
|
18
17
|
"type": "integer",
|
|
19
18
|
"default": 8582,
|
|
20
|
-
"required": false,
|
|
21
19
|
"description": "The HTTP port that the Somfy Protect plugin is listening on. Must match the httpPort setting in Somfy Protect plugin. Note: Port 8581 is used by Homebridge Config UI."
|
|
22
20
|
},
|
|
23
21
|
"httpToken": {
|
|
24
22
|
"title": "HTTP API Token (Optional)",
|
|
25
23
|
"type": "string",
|
|
26
|
-
"required": false,
|
|
27
24
|
"description": "The authentication token if you configured httpToken in the Somfy Protect plugin. Leave blank if no token is set.",
|
|
28
25
|
"x-schema-form": {
|
|
29
26
|
"type": "password"
|
package/dist/index.js
CHANGED
|
@@ -16,7 +16,7 @@ class SomfyProtectAutomatePlatform {
|
|
|
16
16
|
this.api = api;
|
|
17
17
|
this.Service = this.api.hap.Service;
|
|
18
18
|
this.Characteristic = this.api.hap.Characteristic;
|
|
19
|
-
this.log.info('=== Somfy Protect Automate v2.0.
|
|
19
|
+
this.log.info('=== Somfy Protect Automate v2.0.6 Initializing ===');
|
|
20
20
|
this.log.info('Platform name:', this.config.name);
|
|
21
21
|
this.log.info('HTTP API port:', this.config.httpPort || 8582);
|
|
22
22
|
if (this.config.httpToken) {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@jay-d-tyler/homebridge-somfy-protect-automate",
|
|
3
3
|
"displayName": "Somfy Protect Automate",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "2.0.
|
|
5
|
+
"version": "2.0.6",
|
|
6
6
|
"private": false,
|
|
7
7
|
"description": "A Homebridge plugin that provides a stateless switch to disarm Somfy Protect alarms via automations",
|
|
8
8
|
"author": "Jay Tyler",
|