python-omnilogic-local 0.13.2__tar.gz → 0.14.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_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/PKG-INFO +1 -1
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/filter_diagnostics.py +1 -1
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/mspconfig.py +2 -1
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyproject.toml +1 -1
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/LICENSE +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/README.md +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/__init__.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/api.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/cli.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/exceptions.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/__init__.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/const.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/leadmessage.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/telemetry.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/util.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/protocol.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/types.py +0 -0
- {python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/util.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: python-omnilogic-local
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.14.1
|
4
4
|
Summary: A library for local control of Hayward OmniHub/OmniLogic pool controllers using their local API
|
5
5
|
Home-page: https://github.com/cryptk/python-omnilogic-local
|
6
6
|
License: Apache-2.0
|
@@ -31,7 +31,7 @@ class FilterDiagnostics(BaseModel):
|
|
31
31
|
xml,
|
32
32
|
# Some things will be lists or not depending on if a pool has more than one of that piece of equipment. Here we are coercing
|
33
33
|
# everything that *could* be a list into a list to make the parsing more consistent.
|
34
|
-
force_list=("Parameter"
|
34
|
+
force_list=("Parameter"),
|
35
35
|
)
|
36
36
|
# The XML nests the Parameter entries under a Parameters entry, this is annoying to work with. Here we are adjusting the data to
|
37
37
|
# remove that extra level in the data
|
@@ -207,12 +207,13 @@ class MSPBoW(OmniBase):
|
|
207
207
|
|
208
208
|
|
209
209
|
class MSPBackyard(OmniBase):
|
210
|
-
_sub_devices = {"sensor", "bow"}
|
210
|
+
_sub_devices = {"sensor", "bow", "colorlogic_light", "relay"}
|
211
211
|
|
212
212
|
omni_type: OmniType = OmniType.BACKYARD
|
213
213
|
sensor: list[MSPSensor] | None = Field(alias="Sensor")
|
214
214
|
bow: list[MSPBoW] | None = Field(alias="Body-of-water")
|
215
215
|
relay: list[MSPRelay] | None = Field(alias="Relay")
|
216
|
+
colorlogic_light: list[MSPColorLogicLight] | None = Field(alias="ColorLogic-Light")
|
216
217
|
|
217
218
|
|
218
219
|
class MSPSchedule(OmniBase):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "python-omnilogic-local"
|
3
|
-
version = "0.
|
3
|
+
version = "0.14.1"
|
4
4
|
description = "A library for local control of Hayward OmniHub/OmniLogic pool controllers using their local API"
|
5
5
|
authors = ["cryptk <cryptk@users.noreply.github.com>", "djtimca", "garionphx"]
|
6
6
|
license = "Apache-2.0"
|
File without changes
|
File without changes
|
{python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/exceptions.py
RENAMED
File without changes
|
{python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/__init__.py
RENAMED
File without changes
|
{python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/const.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/models/util.py
RENAMED
File without changes
|
{python_omnilogic_local-0.13.2 → python_omnilogic_local-0.14.1}/pyomnilogic_local/protocol.py
RENAMED
File without changes
|
File without changes
|
File without changes
|