@zwave-js/config 10.11.1 → 10.13.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.
- package/build/ConfigManager.d.ts.map +1 -1
- package/build/ConfigManager.js +3 -1
- package/build/ConfigManager.js.map +1 -1
- package/build/Notifications.d.ts +2 -0
- package/build/Notifications.d.ts.map +1 -1
- package/build/Notifications.js +8 -0
- package/build/Notifications.js.map +1 -1
- package/build/devices/DeviceConfig.d.ts +9 -1
- package/build/devices/DeviceConfig.d.ts.map +1 -1
- package/build/devices/DeviceConfig.js +14 -2
- package/build/devices/DeviceConfig.js.map +1 -1
- package/build/utils.d.ts +1 -0
- package/build/utils.d.ts.map +1 -1
- package/build/utils.js +6 -1
- package/build/utils.js.map +1 -1
- package/config/devices/0x0129/yrd256-zw3.json +4 -0
- package/config/devices/0x015f/a8-9.json +6 -2
- package/config/devices/0x015f/mh10-pm2_5-wa_wd.json +5 -1
- package/config/devices/0x0190/adc-swm150.json +313 -0
- package/config/devices/0x027a/zen20.json +1 -1
- package/config/devices/0x0330/ves-zw-dim-001.json +10 -9
- package/config/devices/0x0330/ves-zw-hld-016.json +123 -0
- package/config/devices/0x0330/ves-zw-mot-018.json +241 -0
- package/config/devices/0x0330/ves-zw-rem-010.json +25 -0
- package/config/devices/0x0330/ves-zw-soc-28.json +62 -0
- package/config/devices/0x0330/ves-zw-swi-002.json +6 -5
- package/config/devices/0x0330/ves-zw-swi-014.json +168 -0
- package/config/devices/0x0330/ves-zw-wal-003.json +23 -0
- package/config/devices/0x0330/ves-zw-wal-008.json +25 -0
- package/config/devices/0x0330/ves-zw-wal-009.json +25 -0
- package/config/notifications.json +45 -9
- package/package.json +6 -6
|
@@ -533,30 +533,54 @@
|
|
|
533
533
|
],
|
|
534
534
|
"events": {
|
|
535
535
|
"0x01": {
|
|
536
|
-
"label": "Manual lock operation"
|
|
536
|
+
"label": "Manual lock operation",
|
|
537
|
+
"idleVariables": [
|
|
538
|
+
// Lock state - Lock jammed
|
|
539
|
+
"0x0b"
|
|
540
|
+
]
|
|
537
541
|
},
|
|
538
542
|
"0x02": {
|
|
539
|
-
"label": "Manual unlock operation"
|
|
543
|
+
"label": "Manual unlock operation",
|
|
544
|
+
"idleVariables": [
|
|
545
|
+
// Lock state - Lock jammed
|
|
546
|
+
"0x0b"
|
|
547
|
+
]
|
|
540
548
|
},
|
|
541
549
|
"0x03": {
|
|
542
|
-
"label": "RF lock operation"
|
|
550
|
+
"label": "RF lock operation",
|
|
551
|
+
"idleVariables": [
|
|
552
|
+
// Lock state - Lock jammed
|
|
553
|
+
"0x0b"
|
|
554
|
+
]
|
|
543
555
|
},
|
|
544
556
|
"0x04": {
|
|
545
|
-
"label": "RF unlock operation"
|
|
557
|
+
"label": "RF unlock operation",
|
|
558
|
+
"idleVariables": [
|
|
559
|
+
// Lock state - Lock jammed
|
|
560
|
+
"0x0b"
|
|
561
|
+
]
|
|
546
562
|
},
|
|
547
563
|
"0x05": {
|
|
548
564
|
"label": "Keypad lock operation",
|
|
549
565
|
// parameters contain User Code Report
|
|
550
566
|
"params": {
|
|
551
567
|
"type": "commandclass"
|
|
552
|
-
}
|
|
568
|
+
},
|
|
569
|
+
"idleVariables": [
|
|
570
|
+
// Lock state - Lock jammed
|
|
571
|
+
"0x0b"
|
|
572
|
+
]
|
|
553
573
|
},
|
|
554
574
|
"0x06": {
|
|
555
575
|
"label": "Keypad unlock operation",
|
|
556
576
|
// parameters contain User Code Report
|
|
557
577
|
"params": {
|
|
558
578
|
"type": "commandclass"
|
|
559
|
-
}
|
|
579
|
+
},
|
|
580
|
+
"idleVariables": [
|
|
581
|
+
// Lock state - Lock jammed
|
|
582
|
+
"0x0b"
|
|
583
|
+
]
|
|
560
584
|
},
|
|
561
585
|
"0x07": {
|
|
562
586
|
"label": "Manual not fully locked operation"
|
|
@@ -565,7 +589,11 @@
|
|
|
565
589
|
"label": "RF not fully locked operation"
|
|
566
590
|
},
|
|
567
591
|
"0x09": {
|
|
568
|
-
"label": "Auto lock locked operation"
|
|
592
|
+
"label": "Auto lock locked operation",
|
|
593
|
+
"idleVariables": [
|
|
594
|
+
// Lock state - Lock jammed
|
|
595
|
+
"0x0b"
|
|
596
|
+
]
|
|
569
597
|
},
|
|
570
598
|
"0x0a": {
|
|
571
599
|
"label": "Auto lock not fully locked operation"
|
|
@@ -608,7 +636,11 @@
|
|
|
608
636
|
"params": {
|
|
609
637
|
"type": "value",
|
|
610
638
|
"name": "user ID"
|
|
611
|
-
}
|
|
639
|
+
},
|
|
640
|
+
"idleVariables": [
|
|
641
|
+
// Lock state - Lock jammed
|
|
642
|
+
"0x0b"
|
|
643
|
+
]
|
|
612
644
|
},
|
|
613
645
|
"0x22": {
|
|
614
646
|
"label": "Unlock operation with User Code",
|
|
@@ -616,7 +648,11 @@
|
|
|
616
648
|
"params": {
|
|
617
649
|
"type": "value",
|
|
618
650
|
"name": "user ID"
|
|
619
|
-
}
|
|
651
|
+
},
|
|
652
|
+
"idleVariables": [
|
|
653
|
+
// Lock state - Lock jammed
|
|
654
|
+
"0x0b"
|
|
655
|
+
]
|
|
620
656
|
},
|
|
621
657
|
"0x41": {
|
|
622
658
|
"label": "Barrier operation (open/close) force has been exceeded"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zwave-js/config",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.13.0",
|
|
4
4
|
"description": "zwave-js: configuration files",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -66,8 +66,8 @@
|
|
|
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.
|
|
70
|
-
"@zwave-js/shared": "10.
|
|
69
|
+
"@zwave-js/core": "10.13.0",
|
|
70
|
+
"@zwave-js/shared": "10.13.0",
|
|
71
71
|
"alcalzone-shared": "^4.0.8",
|
|
72
72
|
"ansi-colors": "^4.1.3",
|
|
73
73
|
"fs-extra": "^10.1.0",
|
|
@@ -88,18 +88,18 @@
|
|
|
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.
|
|
91
|
+
"@zwave-js/maintenance": "10.13.0",
|
|
92
92
|
"ava": "^4.3.3",
|
|
93
93
|
"comment-json": "^4.2.3",
|
|
94
94
|
"del-cli": "^5.0.0",
|
|
95
95
|
"esbuild": "0.15.7",
|
|
96
|
-
"esbuild-register": "^3.
|
|
96
|
+
"esbuild-register": "^3.4.2",
|
|
97
97
|
"js-levenshtein": "^1.1.6",
|
|
98
98
|
"pegjs": "^0.10.0",
|
|
99
99
|
"prettier": "^2.8.4",
|
|
100
100
|
"sinon": "^14.0.0",
|
|
101
101
|
"ts-pegjs": "^0.3.1",
|
|
102
|
-
"typescript": "4.9.
|
|
102
|
+
"typescript": "4.9.5",
|
|
103
103
|
"xml2js": "^0.4.23",
|
|
104
104
|
"yargs": "^17.5.1"
|
|
105
105
|
}
|