zigbee-herdsman-converters 20.33.0 → 20.35.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/devices/chacon.d.ts +4 -0
  3. package/devices/chacon.d.ts.map +1 -0
  4. package/devices/chacon.js +18 -0
  5. package/devices/chacon.js.map +1 -0
  6. package/devices/develco.d.ts.map +1 -1
  7. package/devices/develco.js +11 -10
  8. package/devices/develco.js.map +1 -1
  9. package/devices/ewelink.d.ts.map +1 -1
  10. package/devices/ewelink.js +14 -0
  11. package/devices/ewelink.js.map +1 -1
  12. package/devices/gledopto.d.ts.map +1 -1
  13. package/devices/gledopto.js +7 -0
  14. package/devices/gledopto.js.map +1 -1
  15. package/devices/ikea.d.ts.map +1 -1
  16. package/devices/ikea.js +14 -3
  17. package/devices/ikea.js.map +1 -1
  18. package/devices/index.d.ts.map +1 -1
  19. package/devices/index.js +2 -0
  20. package/devices/index.js.map +1 -1
  21. package/devices/innr.d.ts.map +1 -1
  22. package/devices/innr.js +8 -1
  23. package/devices/innr.js.map +1 -1
  24. package/devices/lidl.d.ts.map +1 -1
  25. package/devices/lidl.js +1 -9
  26. package/devices/lidl.js.map +1 -1
  27. package/devices/nodon.d.ts.map +1 -1
  28. package/devices/nodon.js +158 -62
  29. package/devices/nodon.js.map +1 -1
  30. package/devices/philips.d.ts.map +1 -1
  31. package/devices/philips.js +21 -0
  32. package/devices/philips.js.map +1 -1
  33. package/devices/tuya.d.ts.map +1 -1
  34. package/devices/tuya.js +3 -4
  35. package/devices/tuya.js.map +1 -1
  36. package/lib/ikea.js +6 -6
  37. package/lib/ikea.js.map +1 -1
  38. package/lib/modernExtend.d.ts +4 -3
  39. package/lib/modernExtend.d.ts.map +1 -1
  40. package/lib/modernExtend.js +66 -54
  41. package/lib/modernExtend.js.map +1 -1
  42. package/lib/tuya.js +1 -1
  43. package/lib/tuya.js.map +1 -1
  44. package/package.json +1 -1
package/devices/tuya.js CHANGED
@@ -8679,7 +8679,6 @@ const definitions = [
8679
8679
  '_TZ3000_qystbcjg',
8680
8680
  '_TZ3000_zrm3oxsh',
8681
8681
  '_TZ3000_303avxxt',
8682
- '_TZ3000_6l1pjfqe',
8683
8682
  '_TZ3000_zjchz7pd',
8684
8683
  ]),
8685
8684
  model: 'TS011F_with_threshold',
@@ -8698,7 +8697,7 @@ const definitions = [
8698
8697
  toZigbee: [tzLocal.TS011F_threshold],
8699
8698
  exposes: (device, options) => {
8700
8699
  const exposes = [e.linkquality()];
8701
- if (!['_TZ3000_303avxxt', '_TZ3000_zjchz7pd', '_TZ3000_6l1pjfqe'].includes(device?.manufacturerName)) {
8700
+ if (!['_TZ3000_303avxxt', '_TZ3000_zjchz7pd'].includes(device?.manufacturerName)) {
8702
8701
  exposes.push(e.temperature(), e
8703
8702
  .numeric('temperature_threshold', ea.STATE_SET)
8704
8703
  .withValueMin(40)
@@ -8753,7 +8752,7 @@ const definitions = [
8753
8752
  tuya.whitelabel('EARU', 'EAKCB-T-M-Z', 'Smart circuit breaker', ['_TZ3000_lepzuhto']),
8754
8753
  tuya.whitelabel('EARU', 'EAYCB-Z-2P', 'Smart circuit breaker with leakage protection', ['_TZ3000_zrm3oxsh']),
8755
8754
  tuya.whitelabel('UNSH', 'SMKG-1KNL-EU-Z', 'Smart circuit Breaker', ['_TZ3000_qystbcjg']),
8756
- tuya.whitelabel('Tomzn', 'TOB9Z-VAP', 'Smart circuit breaker', ['_TZ3000_303avxxt', '_TZ3000_6l1pjfqe']),
8755
+ tuya.whitelabel('Tomzn', 'TOB9Z-VAP', 'Smart circuit breaker', ['_TZ3000_303avxxt']),
8757
8756
  tuya.whitelabel('Immax', '07573L', 'Smart circuit breaker', ['_TZ3000_zjchz7pd']),
8758
8757
  ],
8759
8758
  },
@@ -9732,7 +9731,7 @@ const definitions = [
9732
9731
  e.numeric('upper', ea.STATE_SET).withValueMin(0).withValueMax(50).withValueStep(1).withUnit('%').withDescription('Up movement limit'),
9733
9732
  e.numeric('delay', ea.STATE_SET).withValueMin(0).withValueMax(10).withValueStep(1).withUnit('s').withDescription('Sustain time'),
9734
9733
  e.binary('reverse', ea.STATE_SET, 'ON', 'OFF').withDescription('Reverse'),
9735
- e.binary('touch', ea.STATE_SET, 'ON', 'OFF').withDescription('Touch controll'),
9734
+ e.binary('touch', ea.STATE_SET, 'ON', 'OFF').withDescription('Touch control'),
9736
9735
  ],
9737
9736
  configure: async (device, coordinatorEndpoint) => {
9738
9737
  await tuya.configureMagicPacket(device, coordinatorEndpoint);