@zwave-js/config 12.11.1 → 13.0.0-beta.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.
Files changed (65) hide show
  1. package/build/ConfigManager.d.ts +0 -69
  2. package/build/ConfigManager.d.ts.map +1 -1
  3. package/build/ConfigManager.js +1 -542
  4. package/build/ConfigManager.js.map +1 -1
  5. package/build/JsonTemplate.js +2 -3
  6. package/build/JsonTemplate.js.map +1 -1
  7. package/build/Logic.js +2 -3
  8. package/build/Logic.js.map +1 -1
  9. package/build/Manufacturers.js +2 -3
  10. package/build/Manufacturers.js.map +1 -1
  11. package/build/devices/ConditionalItem.js +4 -5
  12. package/build/devices/ConditionalItem.js.map +1 -1
  13. package/build/devices/ConditionalPrimitive.d.ts.map +1 -1
  14. package/build/devices/ConditionalPrimitive.js +2 -2
  15. package/build/devices/ConditionalPrimitive.js.map +1 -1
  16. package/build/devices/DeviceConfig.d.ts +0 -1
  17. package/build/devices/DeviceConfig.d.ts.map +1 -1
  18. package/build/devices/DeviceConfig.js +5 -5
  19. package/build/devices/DeviceConfig.js.map +1 -1
  20. package/build/devices/DeviceMetadata.d.ts.map +1 -1
  21. package/build/devices/ParamInformation.d.ts.map +1 -1
  22. package/build/devices/ParamInformation.js +2 -2
  23. package/build/devices/ParamInformation.js.map +1 -1
  24. package/build/index.d.ts +0 -6
  25. package/build/index.d.ts.map +1 -1
  26. package/build/index.js +0 -6
  27. package/build/index.js.map +1 -1
  28. package/build/index_safe.d.ts +0 -6
  29. package/build/index_safe.d.ts.map +1 -1
  30. package/build/index_safe.js +0 -6
  31. package/build/index_safe.js.map +1 -1
  32. package/build/utils.js +6 -6
  33. package/build/utils.js.map +1 -1
  34. package/build/utils_safe.js +3 -3
  35. package/build/utils_safe.js.map +1 -1
  36. package/package.json +11 -10
  37. package/build/DeviceClasses.d.ts +0 -26
  38. package/build/DeviceClasses.d.ts.map +0 -1
  39. package/build/DeviceClasses.js +0 -127
  40. package/build/DeviceClasses.js.map +0 -1
  41. package/build/Indicators.d.ts +0 -15
  42. package/build/Indicators.d.ts.map +0 -1
  43. package/build/Indicators.js +0 -47
  44. package/build/Indicators.js.map +0 -1
  45. package/build/Meters.d.ts +0 -15
  46. package/build/Meters.d.ts.map +0 -1
  47. package/build/Meters.js +0 -44
  48. package/build/Meters.js.map +0 -1
  49. package/build/Notifications.d.ts +0 -71
  50. package/build/Notifications.d.ts.map +0 -1
  51. package/build/Notifications.js +0 -223
  52. package/build/Notifications.js.map +0 -1
  53. package/build/Scales.d.ts +0 -15
  54. package/build/Scales.d.ts.map +0 -1
  55. package/build/Scales.js +0 -37
  56. package/build/Scales.js.map +0 -1
  57. package/build/SensorTypes.d.ts +0 -11
  58. package/build/SensorTypes.d.ts.map +0 -1
  59. package/build/SensorTypes.js +0 -48
  60. package/build/SensorTypes.js.map +0 -1
  61. package/config/deviceClasses.json +0 -447
  62. package/config/indicators.json +0 -166
  63. package/config/meters.json +0 -47
  64. package/config/scales.json +0 -85
  65. package/config/sensorTypes.json +0 -707
@@ -1,707 +0,0 @@
1
- // Z-Wave multilevel sensor types and scales
2
- // based on SDS13812, version 2019-10-29
3
- {
4
- "0x01": {
5
- "label": "Air temperature",
6
- "scales": "$SCALES:temperature"
7
- },
8
- "0x02": {
9
- "label": "General purpose",
10
- "scales": {
11
- "0x00": {
12
- "label": "Percentage value",
13
- "unit": "%"
14
- },
15
- "0x01": {
16
- "label": "Dimensionless value"
17
- }
18
- }
19
- },
20
- "0x03": {
21
- "label": "Illuminance",
22
- "scales": {
23
- "0x00": {
24
- "label": "Percentage value",
25
- "unit": "%"
26
- },
27
- "0x01": {
28
- "label": "Lux",
29
- "unit": "Lux"
30
- }
31
- }
32
- },
33
- "0x04": {
34
- "label": "Power",
35
- "scales": {
36
- "0x00": {
37
- "label": "Watt",
38
- "unit": "W"
39
- },
40
- "0x01": {
41
- "label": "Btu/h",
42
- "unit": "Btu/h"
43
- }
44
- }
45
- },
46
- "0x05": {
47
- "label": "Humidity",
48
- "scales": "$SCALES:humidity"
49
- },
50
- "0x06": {
51
- "label": "Velocity",
52
- "scales": {
53
- "0x00": {
54
- "label": "m/s",
55
- "unit": "m/s"
56
- },
57
- "0x01": {
58
- "label": "Mph",
59
- "unit": "Mph"
60
- }
61
- }
62
- },
63
- "0x07": {
64
- "label": "Direction",
65
- "scales": "$SCALES:direction"
66
- },
67
- "0x08": {
68
- "label": "Atmospheric pressure",
69
- "scales": "$SCALES:air_pressure"
70
- },
71
- "0x09": {
72
- "label": "Barometric pressure",
73
- "scales": "$SCALES:air_pressure"
74
- },
75
- "0x0a": {
76
- "label": "Solar radiation",
77
- "scales": {
78
- "0x00": {
79
- "label": "Watt per square meter",
80
- "unit": "W/m²"
81
- }
82
- }
83
- },
84
- "0x0b": {
85
- "label": "Dew point",
86
- "scales": "$SCALES:temperature"
87
- },
88
- "0x0c": {
89
- "label": "Rain rate",
90
- "scales": {
91
- "0x00": {
92
- "label": "Millimeter/hour",
93
- "unit": "mm/h"
94
- },
95
- "0x01": {
96
- "label": "Inches per hour",
97
- "unit": "in/h"
98
- }
99
- }
100
- },
101
- "0x0d": {
102
- "label": "Tide level",
103
- "scales": {
104
- "0x00": {
105
- "label": "Meter",
106
- "unit": "m"
107
- },
108
- "0x01": {
109
- "label": "Feet",
110
- "unit": "ft"
111
- }
112
- }
113
- },
114
- "0x0e": {
115
- "label": "Weight",
116
- "scales": {
117
- "0x00": {
118
- "label": "Kilogram",
119
- "unit": "kg"
120
- },
121
- "0x01": {
122
- "label": "Pounds",
123
- "unit": "lb"
124
- }
125
- }
126
- },
127
- "0x0f": {
128
- "label": "Voltage",
129
- "scales": {
130
- "0x00": {
131
- "label": "Volt",
132
- "unit": "V"
133
- },
134
- "0x01": {
135
- "label": "Millivolt",
136
- "unit": "mV"
137
- }
138
- }
139
- },
140
- "0x10": {
141
- "label": "Current",
142
- "scales": {
143
- "0x00": {
144
- "label": "Ampere",
145
- "unit": "A"
146
- },
147
- "0x01": {
148
- "label": "Milliampere",
149
- "unit": "mA"
150
- }
151
- }
152
- },
153
- "0x11": {
154
- "label": "Carbon dioxide (CO₂) level",
155
- "scales": {
156
- "0x00": {
157
- "label": "Parts/million",
158
- "unit": "ppm"
159
- }
160
- }
161
- },
162
- "0x12": {
163
- "label": "Air flow",
164
- "scales": {
165
- "0x00": {
166
- "label": "Cubic meter per hour",
167
- "unit": "m³/h"
168
- },
169
- "0x01": {
170
- "label": "Cubic feet per minute",
171
- "unit": "cfm"
172
- }
173
- }
174
- },
175
- "0x13": {
176
- "label": "Tank capacity",
177
- "scales": {
178
- "0x00": {
179
- "label": "Liter",
180
- "unit": "l"
181
- },
182
- "0x01": {
183
- "label": "Cubic meter",
184
- "unit": "m³"
185
- },
186
- "0x02": {
187
- "label": "Gallons",
188
- "unit": "gallon"
189
- }
190
- }
191
- },
192
- "0x14": {
193
- "label": "Distance",
194
- "scales": {
195
- "0x00": {
196
- "label": "Meter",
197
- "unit": "m"
198
- },
199
- "0x01": {
200
- "label": "Centimeter",
201
- "unit": "cm"
202
- },
203
- "0x02": {
204
- "label": "Feet",
205
- "unit": "ft"
206
- }
207
- }
208
- },
209
- "0x15": {
210
- "label": "Angle position",
211
- "scales": {
212
- "0x00": {
213
- "label": "Percentage value",
214
- "unit": "%"
215
- },
216
- "0x01": {
217
- "label": "Degrees relative to north pole of standing eye view",
218
- "unit": "°N"
219
- },
220
- "0x02": {
221
- "label": "Degrees relative to south pole of standing eye view",
222
- "unit": "°S"
223
- }
224
- }
225
- },
226
- "0x16": {
227
- "label": "Rotation",
228
- "scales": {
229
- "0x00": {
230
- "label": "Revolutions per minute",
231
- "unit": "rpm"
232
- },
233
- "0x01": {
234
- "label": "Hertz",
235
- "unit": "Hz"
236
- }
237
- }
238
- },
239
- "0x17": {
240
- "label": "Water temperature",
241
- "scales": "$SCALES:temperature"
242
- },
243
- "0x18": {
244
- "label": "Soil temperature",
245
- "scales": "$SCALES:temperature"
246
- },
247
- "0x19": {
248
- "label": "Seismic Intensity",
249
- "scales": {
250
- "0x00": {
251
- "label": "Mercalli"
252
- },
253
- "0x01": {
254
- "label": "European Macroseismic"
255
- },
256
- "0x02": {
257
- "label": "Liedu"
258
- },
259
- "0x03": {
260
- "label": "Shindo"
261
- }
262
- }
263
- },
264
- "0x1a": {
265
- "label": "Seismic magnitude",
266
- "scales": {
267
- "0x00": {
268
- "label": "Local"
269
- },
270
- "0x01": {
271
- "label": "Moment"
272
- },
273
- "0x02": {
274
- "label": "Surface wave"
275
- },
276
- "0x03": {
277
- "label": "Body wave"
278
- }
279
- }
280
- },
281
- "0x1b": {
282
- "label": "Ultraviolet",
283
- "scales": {
284
- "0x00": {
285
- "label": "UV index"
286
- }
287
- }
288
- },
289
- "0x1c": {
290
- "label": "Electrical resistivity",
291
- "scales": {
292
- "0x00": {
293
- "label": "Ohm meter",
294
- "unit": "Ωm"
295
- }
296
- }
297
- },
298
- "0x1d": {
299
- "label": "Electrical conductivity",
300
- "scales": {
301
- "0x00": {
302
- "label": "Siemens per meter",
303
- "unit": "S/m"
304
- }
305
- }
306
- },
307
- "0x1e": {
308
- "label": "Loudness",
309
- "scales": {
310
- "0x00": {
311
- "label": "Decibel",
312
- "unit": "dB"
313
- },
314
- "0x01": {
315
- "label": "A-weighted decibels",
316
- "unit": "dBA"
317
- }
318
- }
319
- },
320
- "0x1f": {
321
- "label": "Moisture",
322
- "scales": {
323
- "0x00": {
324
- "label": "Percentage value",
325
- "unit": "%"
326
- },
327
- "0x01": {
328
- "label": "Volume water content",
329
- "unit": "m³/m³"
330
- },
331
- "0x02": {
332
- "label": "Impedance",
333
- "unit": "kΩ"
334
- },
335
- "0x03": {
336
- "label": "Water activity",
337
- "unit": "aw"
338
- }
339
- }
340
- },
341
- "0x20": {
342
- "label": "Frequency",
343
- "scales": {
344
- "0x00": {
345
- "label": "Hertz",
346
- "unit": "Hz",
347
- "description": "MUST be used until 2.147483647 GHz"
348
- },
349
- "0x01": {
350
- "label": "Kilohertz",
351
- "unit": "kHz",
352
- "description": "MUST be used after 2.147483647 GHz"
353
- }
354
- }
355
- },
356
- "0x21": {
357
- "label": "Time",
358
- "scales": {
359
- "0x00": {
360
- "label": "Second",
361
- "unit": "s"
362
- }
363
- }
364
- },
365
- "0x22": {
366
- "label": "Target temperature",
367
- "scales": "$SCALES:temperature"
368
- },
369
- "0x23": {
370
- "label": "Particulate Matter 2.5",
371
- "scales": {
372
- "0x00": {
373
- "label": "Mole per cubic meter",
374
- "unit": "mol/m³"
375
- },
376
- "0x01": {
377
- "label": "Microgram per cubic meter",
378
- "unit": "µg/m³"
379
- }
380
- }
381
- },
382
- "0x24": {
383
- "label": "Formaldehyde (CH₂O) level",
384
- "scales": {
385
- "0x00": {
386
- "label": "Mole per cubic meter",
387
- "unit": "mol/m³"
388
- }
389
- }
390
- },
391
- "0x25": {
392
- "label": "Radon concentration",
393
- "scales": {
394
- "0x00": {
395
- "label": "Becquerel per cubic meter",
396
- "unit": "bq/m³"
397
- },
398
- "0x01": {
399
- "label": "Picocuries per liter",
400
- "unit": "pCi/l"
401
- }
402
- }
403
- },
404
- "0x26": {
405
- "label": "Methane (CH₄) density",
406
- "scales": {
407
- "0x00": {
408
- "label": "Mole per cubic meter",
409
- "unit": "mol/m³"
410
- }
411
- }
412
- },
413
- "0x27": {
414
- "label": "Volatile Organic Compound level",
415
- "scales": {
416
- "0x00": {
417
- "label": "Mole per cubic meter",
418
- "unit": "mol/m³"
419
- },
420
- "0x01": {
421
- "label": "Parts/million",
422
- "unit": "ppm"
423
- }
424
- }
425
- },
426
- "0x28": {
427
- "label": "Carbon monoxide (CO) level",
428
- "scales": {
429
- "0x00": {
430
- "label": "Mole per cubic meter",
431
- "unit": "mol/m³"
432
- },
433
- "0x01": {
434
- "label": "Parts/million",
435
- "unit": "ppm"
436
- }
437
- }
438
- },
439
- "0x29": {
440
- "label": "Soil humidity",
441
- "scales": "$SCALES:percentage"
442
- },
443
- "0x2a": {
444
- "label": "Soil reactivity",
445
- "scales": "$SCALES:acidity"
446
- },
447
- "0x2b": {
448
- "label": "Soil salinity",
449
- "scales": {
450
- "0x00": {
451
- "label": "Mole per cubic meter",
452
- "unit": "mol/m³"
453
- }
454
- }
455
- },
456
- "0x2c": {
457
- "label": "Heart rate",
458
- "scales": {
459
- "0x00": {
460
- "label": "Beats per minute",
461
- "unit": "bpm"
462
- }
463
- }
464
- },
465
- "0x2d": {
466
- "label": "Blood pressure",
467
- "scales": {
468
- "0x00": {
469
- "label": "Systolic",
470
- "unit": "mmHg"
471
- },
472
- "0x01": {
473
- "label": "Diastolic",
474
- "unit": "mmHg"
475
- }
476
- }
477
- },
478
- "0x2e": {
479
- "label": "Muscle mass",
480
- "scales": "$SCALES:mass"
481
- },
482
- "0x2f": {
483
- "label": "Fat mass",
484
- "scales": "$SCALES:mass"
485
- },
486
- "0x30": {
487
- "label": "Bone mass",
488
- "scales": "$SCALES:mass"
489
- },
490
- "0x31": {
491
- "label": "Total body water (TBW)",
492
- "scales": "$SCALES:mass"
493
- },
494
- "0x32": {
495
- "label": "Basis metabolic rate (BMR)",
496
- "scales": {
497
- "0x00": {
498
- "label": "Joule",
499
- "unit": "J"
500
- }
501
- }
502
- },
503
- "0x33": {
504
- "label": "Body Mass Index (BMI)",
505
- "scales": {
506
- "0x00": {
507
- "label": "Body Mass Index"
508
- }
509
- }
510
- },
511
- "0x34": {
512
- "label": "Acceleration X-axis",
513
- "scales": "$SCALES:acceleration"
514
- },
515
- "0x35": {
516
- "label": "Acceleration Y-axis",
517
- "scales": "$SCALES:acceleration"
518
- },
519
- "0x36": {
520
- "label": "Acceleration Z-axis",
521
- "scales": "$SCALES:acceleration"
522
- },
523
- "0x37": {
524
- "label": "Smoke density",
525
- "scales": "$SCALES:percentage"
526
- },
527
- "0x38": {
528
- "label": "Water flow",
529
- "scales": {
530
- "0x00": {
531
- "label": "Liter per hour",
532
- "unit": "l/h"
533
- }
534
- }
535
- },
536
- "0x39": {
537
- "label": "Water pressure",
538
- "scales": {
539
- "0x00": {
540
- "label": "Kilopascal",
541
- "unit": "kPa"
542
- }
543
- }
544
- },
545
- "0x3a": {
546
- "label": "RF signal strength",
547
- "scales": {
548
- "0x00": {
549
- "label": "RSSI",
550
- "unit": "%"
551
- },
552
- "0x01": {
553
- "label": "Power Level",
554
- "unit": "dBm"
555
- }
556
- }
557
- },
558
- "0x3b": {
559
- "label": "Particulate Matter 10",
560
- "scales": {
561
- "0x00": {
562
- "label": "Mole per cubic meter",
563
- "unit": "mol/m³"
564
- },
565
- "0x01": {
566
- "label": "Microgram per cubic meter",
567
- "unit": "µg/m³"
568
- }
569
- }
570
- },
571
- "0x3c": {
572
- "label": "Respiratory rate",
573
- "scales": {
574
- "0x00": {
575
- "label": "Breaths per minute",
576
- "unit": "bpm"
577
- }
578
- }
579
- },
580
- "0x3d": {
581
- "label": "Relative Modulation level",
582
- "scales": "$SCALES:percentage"
583
- },
584
- "0x3e": {
585
- "label": "Boiler water temperature",
586
- "scales": "$SCALES:temperature"
587
- },
588
- "0x3f": {
589
- "label": "Domestic Hot Water (DHW) temperature",
590
- "scales": "$SCALES:temperature"
591
- },
592
- "0x40": {
593
- "label": "Outside temperature",
594
- "scales": "$SCALES:temperature"
595
- },
596
- "0x41": {
597
- "label": "Exhaust temperature",
598
- "scales": "$SCALES:temperature"
599
- },
600
- "0x42": {
601
- "label": "Water Chlorine level",
602
- "scales": {
603
- "0x00": {
604
- "label": "Milligram per liter",
605
- "unit": "mg/l"
606
- }
607
- }
608
- },
609
- "0x43": {
610
- "label": "Water acidity",
611
- "scales": "$SCALES:acidity"
612
- },
613
- "0x44": {
614
- "label": "Water Oxidation reduction potential",
615
- "scales": {
616
- "0x00": {
617
- "label": "Millivolt",
618
- "unit": "mV"
619
- }
620
- }
621
- },
622
- "0x45": {
623
- "label": "Heart Rate LF/HF ratio",
624
- "scales": "$SCALES:unitless"
625
- },
626
- "0x46": {
627
- "label": "Motion Direction",
628
- "scales": "$SCALES:direction"
629
- },
630
- "0x47": {
631
- "label": "Applied force on the sensor",
632
- "scales": {
633
- "0x00": {
634
- "label": "Newton",
635
- "unit": "N"
636
- }
637
- }
638
- },
639
- "0x48": {
640
- "label": "Return Air temperature",
641
- "scales": "$SCALES:temperature"
642
- },
643
- "0x49": {
644
- "label": "Supply Air temperature",
645
- "scales": "$SCALES:temperature"
646
- },
647
- "0x4a": {
648
- "label": "Condenser Coil temperature",
649
- "scales": "$SCALES:temperature"
650
- },
651
- "0x4b": {
652
- "label": "Evaporator Coil temperature",
653
- "scales": "$SCALES:temperature"
654
- },
655
- "0x4c": {
656
- "label": "Liquid Line temperature",
657
- "scales": "$SCALES:temperature"
658
- },
659
- "0x4d": {
660
- "label": "Discharge Line temperature",
661
- "scales": "$SCALES:temperature"
662
- },
663
- "0x4e": {
664
- "label": "Suction Pressure",
665
- "scales": "$SCALES:pressure"
666
- },
667
- "0x4f": {
668
- "label": "Discharge Pressure",
669
- "scales": "$SCALES:pressure"
670
- },
671
- "0x50": {
672
- "label": "Defrost temperature",
673
- "scales": "$SCALES:temperature"
674
- },
675
- "0x51": {
676
- "label": "Ozone",
677
- "scales": "$SCALES:density"
678
- },
679
- "0x52": {
680
- "label": "Sulfur dioxide",
681
- "scales": "$SCALES:density"
682
- },
683
- "0x53": {
684
- "label": "Nitrogen dioxide",
685
- "scales": "$SCALES:density"
686
- },
687
- "0x54": {
688
- "label": "Ammonia",
689
- "scales": "$SCALES:density"
690
- },
691
- "0x55": {
692
- "label": "Lead",
693
- "scales": "$SCALES:density"
694
- },
695
- "0x56": {
696
- "label": "Particulate Matter 1",
697
- "scales": "$SCALES:density"
698
- },
699
- "0x57": {
700
- "label": "Person counter (entering)",
701
- "scales": "$SCALES:unitless"
702
- },
703
- "0x58": {
704
- "label": "Person counter (exiting)",
705
- "scales": "$SCALES:unitless"
706
- }
707
- }