@zwave-js/config 10.16.0 → 10.19.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/devices/CompatConfig.d.ts +1 -0
- package/build/devices/CompatConfig.d.ts.map +1 -1
- package/build/devices/CompatConfig.js +13 -5
- package/build/devices/CompatConfig.js.map +1 -1
- package/config/devices/0x0157/ev100.json +11 -0
- package/config/devices/0x0234/templates/logic_group_template.json +23 -0
- package/config/devices/0x0234/zdb5100.json +6 -3
- package/config/devices/0x0258/nas-pd03z.json +5 -1
- package/config/devices/0x027a/templates/zooz_template.json +172 -16
- package/config/devices/0x027a/zen04.json +46 -4
- package/config/devices/0x027a/zen30.json +4 -4
- package/config/devices/0x027a/zen32.json +2 -2
- package/config/devices/0x027a/zen51.json +4 -4
- package/config/devices/0x027a/zen52.json +7 -7
- package/config/devices/0x027a/zen53.json +234 -0
- package/config/devices/0x027a/zen54.json +152 -0
- package/config/devices/0x027a/zen55.json +185 -0
- package/config/devices/0x027a/zen71.json +3 -3
- package/config/devices/0x027a/zen72.json +2 -2
- package/config/devices/0x027a/zen73.json +3 -3
- package/config/devices/0x027a/zen74.json +2 -2
- package/config/devices/0x027a/zen76.json +3 -3
- package/config/devices/0x027a/zen77.json +2 -2
- package/config/devices/0x0330/ves-zw-hld-016.json +1 -1
- package/package.json +15 -15
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"#": "3",
|
|
47
|
-
"$import": "templates/zooz_template.json#
|
|
47
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x"
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
"#": "5",
|
|
51
|
-
"$import": "templates/zooz_template.json#
|
|
51
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"#": "7[0x01]",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
"#": "16",
|
|
95
|
-
"$import": "templates/zooz_template.json#
|
|
95
|
+
"$import": "templates/zooz_template.json#association_reports_binary"
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
98
|
"#": "17",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
"#": "3",
|
|
60
|
-
"$import": "templates/zooz_template.json#
|
|
60
|
+
"$import": "templates/zooz_template.json#auto_off_timer_3x_7x"
|
|
61
61
|
},
|
|
62
62
|
{
|
|
63
63
|
"#": "5",
|
|
64
|
-
"$import": "templates/zooz_template.json#
|
|
64
|
+
"$import": "templates/zooz_template.json#auto_on_timer_3x_7x"
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
"#": "7[0x01]",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zwave-js/config",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.19.0",
|
|
4
4
|
"description": "zwave-js: configuration files",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -58,14 +58,14 @@
|
|
|
58
58
|
"test:dirty": "node -r ../../maintenance/esbuild-register.js ../maintenance/src/resolveDirtyTests.ts --run"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@zwave-js/core": "10.
|
|
62
|
-
"@zwave-js/shared": "10.
|
|
61
|
+
"@zwave-js/core": "10.19.0",
|
|
62
|
+
"@zwave-js/shared": "10.17.0",
|
|
63
63
|
"alcalzone-shared": "^4.0.8",
|
|
64
64
|
"ansi-colors": "^4.1.3",
|
|
65
65
|
"fs-extra": "^10.1.0",
|
|
66
66
|
"json-logic-js": "^2.0.2",
|
|
67
|
-
"json5": "^2.2.
|
|
68
|
-
"semver": "^7.
|
|
67
|
+
"json5": "^2.2.3",
|
|
68
|
+
"semver": "^7.5.0",
|
|
69
69
|
"winston": "^3.8.2"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
@@ -73,26 +73,26 @@
|
|
|
73
73
|
"@microsoft/api-extractor": "*",
|
|
74
74
|
"@types/fs-extra": "^9.0.13",
|
|
75
75
|
"@types/js-levenshtein": "^1.1.1",
|
|
76
|
-
"@types/json-logic-js": "^2.0.
|
|
77
|
-
"@types/node": "^14.18.
|
|
76
|
+
"@types/json-logic-js": "^2.0.2",
|
|
77
|
+
"@types/node": "^14.18.43",
|
|
78
78
|
"@types/pegjs": "^0.10.3",
|
|
79
|
-
"@types/semver": "^7.3.
|
|
80
|
-
"@types/sinon": "^10.0.
|
|
79
|
+
"@types/semver": "^7.3.13",
|
|
80
|
+
"@types/sinon": "^10.0.14",
|
|
81
81
|
"@types/xml2js": "^0.4.11",
|
|
82
|
-
"@types/yargs": "^17.0.
|
|
83
|
-
"@zwave-js/maintenance": "10.
|
|
82
|
+
"@types/yargs": "^17.0.24",
|
|
83
|
+
"@zwave-js/maintenance": "10.19.0",
|
|
84
84
|
"ava": "^4.3.3",
|
|
85
85
|
"comment-json": "^4.2.3",
|
|
86
86
|
"del-cli": "^5.0.0",
|
|
87
|
-
"esbuild": "0.15.
|
|
87
|
+
"esbuild": "0.15.18",
|
|
88
88
|
"esbuild-register": "^3.4.2",
|
|
89
89
|
"js-levenshtein": "^1.1.6",
|
|
90
90
|
"pegjs": "^0.10.0",
|
|
91
|
-
"prettier": "^2.8.
|
|
92
|
-
"sinon": "^14.0.
|
|
91
|
+
"prettier": "^2.8.8",
|
|
92
|
+
"sinon": "^14.0.2",
|
|
93
93
|
"ts-pegjs": "^0.3.1",
|
|
94
94
|
"typescript": "4.9.5",
|
|
95
95
|
"xml2js": "^0.5.0",
|
|
96
|
-
"yargs": "^17.
|
|
96
|
+
"yargs": "^17.7.2"
|
|
97
97
|
}
|
|
98
98
|
}
|