@zwave-js/config 10.14.0 → 10.15.0

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.
@@ -174,6 +174,7 @@
174
174
  {
175
175
  "#": "100",
176
176
  "label": "Endpoints I2 Notification Type and Event",
177
+ "description": "After changing this parameter, the device MUST be excluded and then re-included after waiting 30 seconds.",
177
178
  "valueSize": 1,
178
179
  "defaultValue": 1,
179
180
  "unsigned": true,
@@ -216,6 +217,7 @@
216
217
  {
217
218
  "#": "101",
218
219
  "label": "Endpoints I3 Notification Type and Event",
220
+ "description": "After changing this parameter, the device MUST be excluded and then re-included after waiting 30 seconds.",
219
221
  "valueSize": 1,
220
222
  "defaultValue": 1,
221
223
  "unsigned": true,
@@ -272,5 +274,9 @@
272
274
  "maxValue": 127,
273
275
  "defaultValue": 5
274
276
  }
275
- ]
277
+ ],
278
+ "compat": {
279
+ // The device has user-configurable endpoints. We shouldn't hide them
280
+ "preserveEndpoints": "*"
281
+ }
276
282
  }
@@ -568,7 +568,11 @@
568
568
  },
569
569
  "idleVariables": [
570
570
  // Lock state - Lock jammed
571
- "0x0b"
571
+ "0x0b",
572
+ // Keypad state - Keypad temporary disabled
573
+ "0x10",
574
+ // Keypad state - Keypad busy
575
+ "0x11"
572
576
  ]
573
577
  },
574
578
  "0x06": {
@@ -579,7 +583,11 @@
579
583
  },
580
584
  "idleVariables": [
581
585
  // Lock state - Lock jammed
582
- "0x0b"
586
+ "0x0b",
587
+ // Keypad state - Keypad temporary disabled
588
+ "0x10",
589
+ // Keypad state - Keypad busy
590
+ "0x11"
583
591
  ]
584
592
  },
585
593
  "0x07": {
@@ -628,7 +636,13 @@
628
636
  "params": {
629
637
  "type": "value",
630
638
  "name": "user ID"
631
- }
639
+ },
640
+ "idleVariables": [
641
+ // Keypad state - Keypad temporary disabled
642
+ "0x10",
643
+ // Keypad state - Keypad busy
644
+ "0x11"
645
+ ]
632
646
  },
633
647
  "0x21": {
634
648
  "label": "Lock operation with User Code",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwave-js/config",
3
- "version": "10.14.0",
3
+ "version": "10.15.0",
4
4
  "description": "zwave-js: configuration files",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -66,7 +66,7 @@
66
66
  "test:dirty": "node -r ../../maintenance/esbuild-register.js ../maintenance/src/resolveDirtyTests.ts --run"
67
67
  },
68
68
  "dependencies": {
69
- "@zwave-js/core": "10.14.0",
69
+ "@zwave-js/core": "10.15.0",
70
70
  "@zwave-js/shared": "10.13.0",
71
71
  "alcalzone-shared": "^4.0.8",
72
72
  "ansi-colors": "^4.1.3",
@@ -88,7 +88,7 @@
88
88
  "@types/sinon": "^10.0.13",
89
89
  "@types/xml2js": "^0.4.11",
90
90
  "@types/yargs": "^17.0.12",
91
- "@zwave-js/maintenance": "10.14.0",
91
+ "@zwave-js/maintenance": "10.15.0",
92
92
  "ava": "^4.3.3",
93
93
  "comment-json": "^4.2.3",
94
94
  "del-cli": "^5.0.0",
@@ -100,7 +100,7 @@
100
100
  "sinon": "^14.0.0",
101
101
  "ts-pegjs": "^0.3.1",
102
102
  "typescript": "4.9.5",
103
- "xml2js": "^0.4.23",
103
+ "xml2js": "^0.5.0",
104
104
  "yargs": "^17.5.1"
105
105
  }
106
106
  }