@apocaliss92/nodedreame 1.7.1 → 1.7.2

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/dist/index.d.cts CHANGED
@@ -764,7 +764,7 @@ declare function encodeAiFeatureWrite(raw: AiDetectionRaw, feature: DreameAiFeat
764
764
  * hardcoded per-model list, mirroring how the HA integration derives support.
765
765
  */
766
766
  /** Stable consumable keys (kebab-case so a consumer can use them verbatim). */
767
- type DreameConsumableKey = 'main-brush' | 'side-brush' | 'filter' | 'sensor' | 'tank-filter' | 'mop-pad' | 'silver-ion' | 'detergent' | 'squeegee' | 'dust-bag';
767
+ type DreameConsumableKey = 'main-brush' | 'side-brush' | 'filter' | 'sensor' | 'tank-filter' | 'mop-pad' | 'silver-ion' | 'detergent' | 'squeegee' | 'deodorizer' | 'wheel' | 'scale-inhibitor' | 'dust-bag';
768
768
  /** One consumable's wire coordinates: remaining-life property + optional reset action. */
769
769
  interface ConsumableSpec {
770
770
  readonly key: DreameConsumableKey;
package/dist/index.d.ts CHANGED
@@ -764,7 +764,7 @@ declare function encodeAiFeatureWrite(raw: AiDetectionRaw, feature: DreameAiFeat
764
764
  * hardcoded per-model list, mirroring how the HA integration derives support.
765
765
  */
766
766
  /** Stable consumable keys (kebab-case so a consumer can use them verbatim). */
767
- type DreameConsumableKey = 'main-brush' | 'side-brush' | 'filter' | 'sensor' | 'tank-filter' | 'mop-pad' | 'silver-ion' | 'detergent' | 'squeegee' | 'dust-bag';
767
+ type DreameConsumableKey = 'main-brush' | 'side-brush' | 'filter' | 'sensor' | 'tank-filter' | 'mop-pad' | 'silver-ion' | 'detergent' | 'squeegee' | 'deodorizer' | 'wheel' | 'scale-inhibitor' | 'dust-bag';
768
768
  /** One consumable's wire coordinates: remaining-life property + optional reset action. */
769
769
  interface ConsumableSpec {
770
770
  readonly key: DreameConsumableKey;
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // src/support/version.ts
2
2
  var LIBRARY_NAME = "nodedreame";
3
- var LIBRARY_VERSION = "1.7.1";
3
+ var LIBRARY_VERSION = "1.7.2";
4
4
 
5
5
  // src/transport/errors.ts
6
6
  var DreameError = class extends Error {
@@ -1581,6 +1581,9 @@ var VACUUM_CONSUMABLES = [
1581
1581
  { key: "silver-ion", label: "Silver-ion", life: { siid: 19, piid: 2 }, reset: { siid: 19, aiid: 1 } },
1582
1582
  { key: "detergent", label: "Detergent", life: { siid: 20, piid: 1 }, reset: { siid: 20, aiid: 1 } },
1583
1583
  { key: "squeegee", label: "Squeegee", life: { siid: 24, piid: 1 }, reset: { siid: 24, aiid: 1 } },
1584
+ { key: "deodorizer", label: "Deodorizer", life: { siid: 29, piid: 2 }, reset: { siid: 29, aiid: 1 } },
1585
+ { key: "wheel", label: "Wheel", life: { siid: 30, piid: 2 }, reset: { siid: 30, aiid: 1 } },
1586
+ { key: "scale-inhibitor", label: "Scale Inhibitor", life: { siid: 31, piid: 2 }, reset: { siid: 31, aiid: 1 } },
1584
1587
  { key: "dust-bag", label: "Dust Bag", life: { siid: 27, piid: 17 }, reset: null }
1585
1588
  ];
1586
1589
  function consumableSpec(key2) {