@zwave-js/config 10.14.0 → 10.16.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.
@@ -130,6 +130,6 @@
130
130
  "inclusion": "Triple clicking the tamper button includes (adds) the device",
131
131
  "exclusion": "Triple clicking the tamper button excludes (removes) the device",
132
132
  "reset": "This device also allows to be reset without any involvement of a Z-Wave controller. This procedure should only be used when the primary controller is inoperable.\nOnce Cover is removed and tamper switch is tripped, push the tamper for 5 seconds until red LED blinks. Then release tamper and push it again for 5 seconds until LED blinks",
133
- "manual": "https://help.aeotec.com/support/solutions/articles/6000230382-door-window-sensor-7-basic-user-guide-zwa011-zwa041-"
133
+ "manual": "https://aeotec.freshdesk.com/support/solutions/articles/6000230382-door-window-sensor-7-basic-user-guide-zwa011-"
134
134
  }
135
135
  }
@@ -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,17 +1,9 @@
1
1
  {
2
2
  "name": "@zwave-js/config",
3
- "version": "10.14.0",
3
+ "version": "10.16.0",
4
4
  "description": "zwave-js: configuration files",
5
5
  "publishConfig": {
6
- "access": "public",
7
- "$types": "build/index.d.ts",
8
- "$typesVersions": {
9
- "*": {
10
- "safe": [
11
- "build/index_safe.d.ts"
12
- ]
13
- }
14
- }
6
+ "access": "public"
15
7
  },
16
8
  "main": "build/index.js",
17
9
  "exports": {
@@ -53,7 +45,7 @@
53
45
  },
54
46
  "scripts": {
55
47
  "codegen": "yarn ts maintenance/codegen.ts",
56
- "build": "tsc -b tsconfig.build.json",
48
+ "build": "tsc -b tsconfig.build.json --pretty",
57
49
  "clean": "del-cli build/ \"*.tsbuildinfo\"",
58
50
  "extract-api": "yarn api-extractor run",
59
51
  "lint:zwave": "yarn ts maintenance/lintConfigFiles.ts",
@@ -66,8 +58,8 @@
66
58
  "test:dirty": "node -r ../../maintenance/esbuild-register.js ../maintenance/src/resolveDirtyTests.ts --run"
67
59
  },
68
60
  "dependencies": {
69
- "@zwave-js/core": "10.14.0",
70
- "@zwave-js/shared": "10.13.0",
61
+ "@zwave-js/core": "10.16.0",
62
+ "@zwave-js/shared": "10.16.0",
71
63
  "alcalzone-shared": "^4.0.8",
72
64
  "ansi-colors": "^4.1.3",
73
65
  "fs-extra": "^10.1.0",
@@ -88,7 +80,7 @@
88
80
  "@types/sinon": "^10.0.13",
89
81
  "@types/xml2js": "^0.4.11",
90
82
  "@types/yargs": "^17.0.12",
91
- "@zwave-js/maintenance": "10.14.0",
83
+ "@zwave-js/maintenance": "10.16.0",
92
84
  "ava": "^4.3.3",
93
85
  "comment-json": "^4.2.3",
94
86
  "del-cli": "^5.0.0",
@@ -100,7 +92,7 @@
100
92
  "sinon": "^14.0.0",
101
93
  "ts-pegjs": "^0.3.1",
102
94
  "typescript": "4.9.5",
103
- "xml2js": "^0.4.23",
95
+ "xml2js": "^0.5.0",
104
96
  "yargs": "^17.5.1"
105
97
  }
106
98
  }