@homebridge-plugins/homebridge-smarthq 0.2.0-beta.8 → 0.2.0-beta.9

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.
@@ -54,10 +54,10 @@
54
54
  "description": "This is the name that will be used to identify the device in HomeKit."
55
55
  },
56
56
  "applianceId": {
57
- "title": "Device ID",
57
+ "title": "Application ID",
58
58
  "type": "string",
59
59
  "placeholder": "FCB97E120A84",
60
- "description": "This is devices unique id."
60
+ "description": "This is devices unique applicationId."
61
61
  },
62
62
  "hide_device": {
63
63
  "title": "Hide Device",
@@ -65,7 +65,7 @@
65
65
  "default": false,
66
66
  "description": "If enabled, the device will not be added to HomeKit.",
67
67
  "condition": {
68
- "functionBody": "return (model.devices && model.devices[arrayIndices].id);"
68
+ "functionBody": "return (model.devices && model.devices[arrayIndices].applianceId);"
69
69
  }
70
70
  },
71
71
  "firmware": {
@@ -73,7 +73,7 @@
73
73
  "type": "string",
74
74
  "placeholder": "1.2.8",
75
75
  "condition": {
76
- "functionBody": "return (model.devices && model.devices[arrayIndices].id && !model.options.devices[arrayIndices].hide_device);"
76
+ "functionBody": "return (model.devices && model.devices[arrayIndices].applianceId && !model.options.devices[arrayIndices].hide_device);"
77
77
  }
78
78
  },
79
79
  "external": {
@@ -82,7 +82,7 @@
82
82
  "default": false,
83
83
  "description": "If enabled, the device will be exposed to HomeKit as an external device.",
84
84
  "condition": {
85
- "functionBody": "return (model.devices && model.devices[arrayIndices].id && !model.options.devices[arrayIndices].hide_device);"
85
+ "functionBody": "return (model.devices && model.devices[arrayIndices].applianceId && !model.options.devices[arrayIndices].hide_device);"
86
86
  }
87
87
  },
88
88
  "refreshRate": {
@@ -92,7 +92,7 @@
92
92
  "placeholder": 1800,
93
93
  "description": "Indicates the number of seconds between polls of the SmartHQ service.",
94
94
  "condition": {
95
- "functionBody": "return (model.devices && model.devices[arrayIndices].id && !model.options.devices[arrayIndices].hide_device);"
95
+ "functionBody": "return (model.devices && model.devices[arrayIndices].applianceId && !model.options.devices[arrayIndices].hide_device);"
96
96
  }
97
97
  },
98
98
  "logging": {
@@ -119,7 +119,7 @@
119
119
  }
120
120
  ],
121
121
  "condition": {
122
- "functionBody": "return (model.options && model.options.devices && model.options.devices[arrayIndices].id && !model.options.devices[arrayIndices].hide_device);"
122
+ "functionBody": "return (model.options && model.options.devices && model.options.devices[arrayIndices].applianceId && !model.options.devices[arrayIndices].hide_device);"
123
123
  }
124
124
  }
125
125
  },
@@ -190,7 +190,7 @@
190
190
  "key": "devices",
191
191
  "notitle": true,
192
192
  "type": "tabarray",
193
- "title": "{{ value.configDeviceName || value.id || 'New SmartHQ Device' }}",
193
+ "title": "{{ value.configDeviceName || value.applianceId || 'New SmartHQ Device' }}",
194
194
  "expandable": true,
195
195
  "expanded": false,
196
196
  "orderable": false,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@homebridge-plugins/homebridge-smarthq",
3
3
  "displayName": "SmartHQ",
4
4
  "type": "module",
5
- "version": "0.2.0-beta.8",
5
+ "version": "0.2.0-beta.9",
6
6
  "description": "The SmartHQ plugin allows you to interact with SmartHQ Devices in HomeKit and with Siri.",
7
7
  "author": {
8
8
  "name": "donavanbecker",