python-omnilogic-local 0.18.0__tar.gz → 0.19.0__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.18.0 → python_omnilogic_local-0.19.0}/PKG-INFO +1 -1
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/omnitypes.py +13 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyproject.toml +1 -1
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/LICENSE +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/README.md +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/__init__.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/api.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/__init__.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/cli.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/debug/__init__.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/debug/commands.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/get/__init__.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/get/commands.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/utils.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli_legacy.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/exceptions.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/__init__.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/const.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/filter_diagnostics.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/leadmessage.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/mspconfig.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/telemetry.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/util.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/protocol.py +0 -0
- {python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/util.py +0 -0
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/omnitypes.py
RENAMED
@@ -107,11 +107,17 @@ class ChlorinatorDispenserType(str, PrettyEnum):
|
|
107
107
|
|
108
108
|
|
109
109
|
class ChlorinatorCellType(PrettyEnum):
|
110
|
+
UNKNOWN = "CELL_TYPE_UNKNOWN"
|
110
111
|
T3 = "CELL_TYPE_T3"
|
111
112
|
T5 = "CELL_TYPE_T5"
|
112
113
|
T9 = "CELL_TYPE_T9"
|
113
114
|
T15 = "CELL_TYPE_T15"
|
115
|
+
T15_LS = "CELL_TYPE_T15_LS"
|
116
|
+
TCELLS315 = "CELL_TYPE_TCELLS315"
|
117
|
+
TCELLS325 = "CELL_TYPE_TCELLS325"
|
118
|
+
TCELLS340 = "CELL_TYPE_TCELLS340"
|
114
119
|
LIQUID = "CELL_TYPE_LIQUID"
|
120
|
+
TABLET = "CELL_TYPE_TABLET"
|
115
121
|
|
116
122
|
# There is probably an easier way to do this
|
117
123
|
def __int__(self) -> int:
|
@@ -119,10 +125,17 @@ class ChlorinatorCellType(PrettyEnum):
|
|
119
125
|
|
120
126
|
|
121
127
|
class ChlorinatorCellInt(IntEnum):
|
128
|
+
UNKNOWN = 0
|
122
129
|
T3 = 1
|
123
130
|
T5 = 2
|
124
131
|
T9 = 3
|
125
132
|
T15 = 4
|
133
|
+
T15_LS = 5
|
134
|
+
TCELLS315 = 6
|
135
|
+
TCELLS325 = 7
|
136
|
+
TCELLS340 = 8
|
137
|
+
LIQUID = 9
|
138
|
+
TABLET = 10
|
126
139
|
|
127
140
|
|
128
141
|
# Lights
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "python-omnilogic-local"
|
3
|
-
version = "0.
|
3
|
+
version = "0.19.0"
|
4
4
|
description = "A library for local control of Hayward OmniHub/OmniLogic pool controllers using their local API"
|
5
5
|
authors = [
|
6
6
|
{name = "Chris Jowett",email = "421501+cryptk@users.noreply.github.com"},
|
File without changes
|
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/__init__.py
RENAMED
File without changes
|
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/__init__.py
RENAMED
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/cli.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli/utils.py
RENAMED
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/cli_legacy.py
RENAMED
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/exceptions.py
RENAMED
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/__init__.py
RENAMED
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/const.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/models/util.py
RENAMED
File without changes
|
{python_omnilogic_local-0.18.0 → python_omnilogic_local-0.19.0}/pyomnilogic_local/protocol.py
RENAMED
File without changes
|
File without changes
|