homebridge-adt-pulse 3.0.0-beta.9 → 3.0.1
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/LICENSE +198 -12
- package/README.md +167 -106
- package/build/config.schema.json +12 -13
- package/build/src/lib/accessory.js +434 -124
- package/build/src/lib/accessory.js.map +1 -1
- package/build/src/lib/api.js +276 -240
- package/build/src/lib/api.js.map +1 -1
- package/build/src/lib/detect.js +308 -280
- package/build/src/lib/detect.js.map +1 -1
- package/build/src/lib/items.js +345 -0
- package/build/src/lib/items.js.map +1 -0
- package/build/src/lib/platform.js +198 -38
- package/build/src/lib/platform.js.map +1 -1
- package/build/src/lib/regex.js +2 -2
- package/build/src/lib/regex.js.map +1 -1
- package/build/src/lib/schema.js +3 -3
- package/build/src/lib/schema.js.map +1 -1
- package/build/src/lib/utility.js +284 -38
- package/build/src/lib/utility.js.map +1 -1
- package/build/src/scripts/repl.js +23 -17
- package/build/src/scripts/repl.js.map +1 -1
- package/build/src/scripts/test-api.js +12 -12
- package/build/src/scripts/test-api.js.map +1 -1
- package/config.schema.json +12 -13
- package/package.json +25 -15
package/build/config.schema.json
CHANGED
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
]
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
|
-
"title": "Reset
|
|
87
|
+
"title": "Reset",
|
|
88
88
|
"enum": [
|
|
89
89
|
"reset"
|
|
90
90
|
]
|
|
@@ -93,10 +93,10 @@
|
|
|
93
93
|
"default": "normal"
|
|
94
94
|
},
|
|
95
95
|
"speed": {
|
|
96
|
-
"title": "
|
|
96
|
+
"title": "Synchronization Speed",
|
|
97
97
|
"type": "number",
|
|
98
98
|
"required": true,
|
|
99
|
-
"description": "Choose the
|
|
99
|
+
"description": "Choose the synchronization speed for the plugin. Designed to enhance the performance of devices with older hardware. May result in slower device updates.",
|
|
100
100
|
"oneOf": [
|
|
101
101
|
{
|
|
102
102
|
"title": "Normal Speed (1x)",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"title": "Sensors",
|
|
130
130
|
"type": "array",
|
|
131
131
|
"required": true,
|
|
132
|
-
"description": "Define your sensors here. Sensors include devices like \"Door/Window Sensor\" or \"Motion Sensor\". <strong class=\"font-weight-bold\">Please note that Z-Wave accessories are not supported.</strong>
|
|
132
|
+
"description": "Define your sensors here. Sensors include devices like \"Door/Window Sensor\" or \"Motion Sensor\". <strong class=\"font-weight-bold\">Please note that Z-Wave accessories are not supported.</strong> A maximum of 148 sensors can be added (the plugin reserves 2 accessories for the gateway and security panel).",
|
|
133
133
|
"items": {
|
|
134
134
|
"type": "object",
|
|
135
135
|
"properties": {
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
]
|
|
165
165
|
},
|
|
166
166
|
{
|
|
167
|
-
"title": "Door/Window Sensor
|
|
167
|
+
"title": "Door/Window Sensor :: Door Sensor :: Window Sensor",
|
|
168
168
|
"enum": [
|
|
169
169
|
"doorWindow"
|
|
170
170
|
]
|
|
@@ -188,21 +188,21 @@
|
|
|
188
188
|
]
|
|
189
189
|
},
|
|
190
190
|
{
|
|
191
|
-
"title": "
|
|
191
|
+
"title": "Heat (Rate-of-Rise) Detector",
|
|
192
192
|
"enum": [
|
|
193
|
-
"
|
|
193
|
+
"heat"
|
|
194
194
|
]
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
|
-
"title": "Motion Sensor
|
|
197
|
+
"title": "Motion Sensor :: Motion Sensor (Notable Events Only)",
|
|
198
198
|
"enum": [
|
|
199
199
|
"motion"
|
|
200
200
|
]
|
|
201
201
|
},
|
|
202
202
|
{
|
|
203
|
-
"title": "
|
|
203
|
+
"title": "Shock Sensor",
|
|
204
204
|
"enum": [
|
|
205
|
-
"
|
|
205
|
+
"shock"
|
|
206
206
|
]
|
|
207
207
|
},
|
|
208
208
|
{
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
226
|
},
|
|
227
|
-
"minItems":
|
|
227
|
+
"minItems": 0,
|
|
228
228
|
"maxItems": 148
|
|
229
229
|
}
|
|
230
230
|
}
|
|
@@ -283,12 +283,11 @@
|
|
|
283
283
|
"items": [
|
|
284
284
|
{
|
|
285
285
|
"key": "sensors",
|
|
286
|
-
"htmlClass": "p-10",
|
|
287
286
|
"buttonText": "Add Sensor",
|
|
288
287
|
"items": [
|
|
289
288
|
{
|
|
290
289
|
"type": "div",
|
|
291
|
-
"htmlClass": "my-
|
|
290
|
+
"htmlClass": "my-4 p-4",
|
|
292
291
|
"items": [
|
|
293
292
|
{
|
|
294
293
|
"key": "sensors[].name",
|