python-roborock 2.8.1rc1__tar.gz → 2.8.2__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.8.1rc1 → python_roborock-2.8.2}/PKG-INFO +1 -1
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/pyproject.toml +2 -11
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/containers.py +4 -3
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/LICENSE +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/README.md +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/__init__.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/api.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/cli.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/cloud_api.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/code_mappings.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/command_cache.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/const.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/exceptions.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/local_api.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/protocol.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/py.typed +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/roborock_future.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/roborock_message.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/roborock_typing.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/util.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_1_apis/__init__.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_1_apis/roborock_client_v1.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_1_apis/roborock_local_client_v1.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_1_apis/roborock_mqtt_client_v1.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_a01_apis/__init__.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_a01_apis/roborock_client_a01.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_a01_apis/roborock_mqtt_client_a01.py +0 -0
- {python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/web_api.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "python-roborock"
|
|
3
|
-
version = "2.8.
|
|
3
|
+
version = "2.8.2"
|
|
4
4
|
description = "A package to control Roborock vacuums."
|
|
5
5
|
authors = ["humbertogontijo <humbertogontijo@users.noreply.github.com>"]
|
|
6
6
|
license = "GPL-3.0-only"
|
|
@@ -47,18 +47,9 @@ codespell = "*"
|
|
|
47
47
|
pyshark = "^0.6"
|
|
48
48
|
|
|
49
49
|
[tool.semantic_release]
|
|
50
|
+
branch = "main"
|
|
50
51
|
version_toml = ["pyproject.toml:tool.poetry.version"]
|
|
51
52
|
build_command = "pip install poetry && poetry build"
|
|
52
|
-
|
|
53
|
-
[semantic_release.branches.main]
|
|
54
|
-
match = "release"
|
|
55
|
-
prerelease = false
|
|
56
|
-
|
|
57
|
-
[tool.semantic_release.branches.other]
|
|
58
|
-
match = ".*"
|
|
59
|
-
prerelease_token = "rc"
|
|
60
|
-
prerelease = true
|
|
61
|
-
|
|
62
53
|
[tool.semantic_release.commit_parser_options]
|
|
63
54
|
allowed_tags = [
|
|
64
55
|
"chore",
|
|
@@ -141,12 +141,12 @@ class RoborockBase:
|
|
|
141
141
|
cls_annotations.update(getattr(base, "__annotations__", {}))
|
|
142
142
|
remove_keys = []
|
|
143
143
|
for key, value in data.items():
|
|
144
|
-
if value == "None" or value is None:
|
|
145
|
-
data[key] = None
|
|
146
|
-
continue
|
|
147
144
|
if key not in cls_annotations:
|
|
148
145
|
remove_keys.append(key)
|
|
149
146
|
continue
|
|
147
|
+
if value == "None" or value is None:
|
|
148
|
+
data[key] = None
|
|
149
|
+
continue
|
|
150
150
|
field_type: str = cls_annotations[key]
|
|
151
151
|
if "|" in field_type:
|
|
152
152
|
# It's a union
|
|
@@ -577,6 +577,7 @@ class Q7MaxStatus(Status):
|
|
|
577
577
|
class QRevoMasterStatus(Status):
|
|
578
578
|
fan_power: RoborockFanSpeedQRevoMaster | None = None
|
|
579
579
|
water_box_mode: RoborockMopIntensityQRevoMaster | None = None
|
|
580
|
+
mop_mode: RoborockMopModeS7 | None = None
|
|
580
581
|
|
|
581
582
|
|
|
582
583
|
@dataclass
|
|
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
|
|
File without changes
|
{python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_1_apis/roborock_client_v1.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_roborock-2.8.1rc1 → python_roborock-2.8.2}/roborock/version_a01_apis/roborock_client_a01.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|