python-roborock 5.2.0__py3-none-any.whl → 5.3.0__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-roborock
3
- Version: 5.2.0
3
+ Version: 5.3.0
4
4
  Summary: A package to control Roborock vacuums.
5
5
  Project-URL: Repository, https://github.com/python-roborock/python-roborock
6
6
  Project-URL: Documentation, https://python-roborock.readthedocs.io/
@@ -60,7 +60,7 @@ roborock/devices/traits/v1/child_lock.py,sha256=NeaPqcEoBRXvEzKZGonkyINkwCBOK3xa
60
60
  roborock/devices/traits/v1/clean_summary.py,sha256=b0o_U-cGlhp1EwQ7e6SH5WzpshsuDkT2nqe7UWBt5r4,4264
61
61
  roborock/devices/traits/v1/command.py,sha256=2yNyCF_EDPkLE_vK6IN5VB8ZVypwrrwKTByCdQzJs3c,1494
62
62
  roborock/devices/traits/v1/common.py,sha256=XDY-14Tx3Kgt0nlzgPXWyWXpFVzFrv4W-jUqEtAiZ_Y,6240
63
- roborock/devices/traits/v1/consumeable.py,sha256=AAbCjYVexZEj4O4bBzQmPN7iOLFWVwY-OvUUSX6xL0U,1582
63
+ roborock/devices/traits/v1/consumeable.py,sha256=63Jpq_z1tAxfLnr_hgEZmQ0IBpdQbbhgeYZBPTUNgmw,1686
64
64
  roborock/devices/traits/v1/device_features.py,sha256=pLrewK_maJwQgaRno3ULzUysEM3hA02vuSkhR_4hcfc,3827
65
65
  roborock/devices/traits/v1/do_not_disturb.py,sha256=_pJ-DS9r9h9eoTx1MW2MZ0RcrEh9J9gbSUPMQKoMSnE,1661
66
66
  roborock/devices/traits/v1/dust_collection_mode.py,sha256=abxG5JTDz_wd9eLbkdlct4wIJW1bFCR7Zkt31KAKd8Q,505
@@ -96,8 +96,8 @@ roborock/protocols/a01_protocol.py,sha256=JCIhUuVNamcENu0gtZR2x8rBz6dpAZLcbA-NQg
96
96
  roborock/protocols/b01_q10_protocol.py,sha256=SimfXpQotkEkb58ThZq7xa7fCxPxF-hrpAJcRKI-yZE,3407
97
97
  roborock/protocols/b01_q7_protocol.py,sha256=o8repRrxhxknzspsg1K27ds643rs87ilWXbj8RJtOCs,4619
98
98
  roborock/protocols/v1_protocol.py,sha256=bSWqNJYL9feHmWch4OxoL6fVZwXf_YOjt3QnvdNsC24,9635
99
- python_roborock-5.2.0.dist-info/METADATA,sha256=69oc__dXDttXsUtwJrifQqilRho6aMfk_vrg720z7Cg,4957
100
- python_roborock-5.2.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
101
- python_roborock-5.2.0.dist-info/entry_points.txt,sha256=EvC1nMqi9ZXKgZnqlNXA33v_3nzgPNjnM0mzWlrehnY,47
102
- python_roborock-5.2.0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
103
- python_roborock-5.2.0.dist-info/RECORD,,
99
+ python_roborock-5.3.0.dist-info/METADATA,sha256=5X4GwQyvt33lKqyc2-rZc-349fN7Qv1Lyz6Gk6_x4zA,4957
100
+ python_roborock-5.3.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
101
+ python_roborock-5.3.0.dist-info/entry_points.txt,sha256=EvC1nMqi9ZXKgZnqlNXA33v_3nzgPNjnM0mzWlrehnY,47
102
+ python_roborock-5.3.0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
103
+ python_roborock-5.3.0.dist-info/RECORD,,
@@ -23,6 +23,8 @@ class ConsumableAttribute(StrEnum):
23
23
  FILTER_WORK_TIME = "filter_work_time"
24
24
  SIDE_BRUSH_WORK_TIME = "side_brush_work_time"
25
25
  MAIN_BRUSH_WORK_TIME = "main_brush_work_time"
26
+ STRAINER_WORK_TIME = "strainer_work_time"
27
+ CLEANING_BRUSH_WORK_TIME = "cleaning_brush_work_time"
26
28
 
27
29
  @classmethod
28
30
  def from_str(cls, value: str) -> Self: