python-roborock 2.5.0__tar.gz → 2.6.1__tar.gz
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.
- {python_roborock-2.5.0 → python_roborock-2.6.1}/PKG-INFO +2 -1
- {python_roborock-2.5.0 → python_roborock-2.6.1}/pyproject.toml +1 -1
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/code_mappings.py +2 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/containers.py +4 -1
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_1_apis/roborock_client_v1.py +2 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/LICENSE +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/README.md +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/__init__.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/api.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/cli.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/cloud_api.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/command_cache.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/const.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/exceptions.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/local_api.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/protocol.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/py.typed +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/roborock_future.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/roborock_message.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/roborock_typing.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/util.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_1_apis/__init__.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_1_apis/roborock_local_client_v1.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_1_apis/roborock_mqtt_client_v1.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_a01_apis/__init__.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_a01_apis/roborock_client_a01.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_a01_apis/roborock_mqtt_client_a01.py +0 -0
- {python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/web_api.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-roborock
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.6.1
|
|
4
4
|
Summary: A package to control Roborock vacuums.
|
|
5
5
|
Home-page: https://github.com/humbertogontijo/python-roborock
|
|
6
6
|
License: GPL-3.0-only
|
|
@@ -17,6 +17,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
21
|
Classifier: Topic :: Software Development :: Libraries
|
|
21
22
|
Requires-Dist: aiohttp (>=3.8.2,<4.0.0)
|
|
22
23
|
Requires-Dist: async-timeout
|
|
@@ -612,7 +612,10 @@ class CleanSummary(RoborockBase):
|
|
|
612
612
|
last_clean_t: int | None = None
|
|
613
613
|
|
|
614
614
|
def __post_init__(self) -> None:
|
|
615
|
-
|
|
615
|
+
if isinstance(self.clean_area, list):
|
|
616
|
+
_LOGGER.warning(f"Clean area is a unexpected type! Please give the following in a issue: {self.clean_area}")
|
|
617
|
+
else:
|
|
618
|
+
self.square_meter_clean_area = round(self.clean_area / 1000000, 1) if self.clean_area is not None else None
|
|
616
619
|
|
|
617
620
|
|
|
618
621
|
@dataclass
|
{python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_1_apis/roborock_client_v1.py
RENAMED
|
@@ -65,7 +65,9 @@ WASH_N_FILL_DOCK = [
|
|
|
65
65
|
RoborockDockTypeCode.empty_wash_fill_dock,
|
|
66
66
|
RoborockDockTypeCode.s8_dock,
|
|
67
67
|
RoborockDockTypeCode.p10_dock,
|
|
68
|
+
RoborockDockTypeCode.p10_pro_dock,
|
|
68
69
|
RoborockDockTypeCode.s8_maxv_ultra_dock,
|
|
70
|
+
RoborockDockTypeCode.qrevo_s_dock,
|
|
69
71
|
]
|
|
70
72
|
RT = TypeVar("RT", bound=RoborockBase)
|
|
71
73
|
EVICT_TIME = 60
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_1_apis/roborock_local_client_v1.py
RENAMED
|
File without changes
|
{python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_1_apis/roborock_mqtt_client_v1.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_roborock-2.5.0 → python_roborock-2.6.1}/roborock/version_a01_apis/roborock_client_a01.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|