python-omnilogic-local 0.17.0__tar.gz → 0.18.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (25) hide show
  1. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/PKG-INFO +1 -1
  2. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/models/mspconfig.py +6 -0
  3. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyproject.toml +1 -1
  4. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/LICENSE +0 -0
  5. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/README.md +0 -0
  6. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/__init__.py +0 -0
  7. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/api.py +0 -0
  8. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/cli/__init__.py +0 -0
  9. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/cli/cli.py +0 -0
  10. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/cli/debug/__init__.py +0 -0
  11. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/cli/debug/commands.py +0 -0
  12. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/cli/get/__init__.py +0 -0
  13. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/cli/get/commands.py +0 -0
  14. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/cli/utils.py +0 -0
  15. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/cli_legacy.py +0 -0
  16. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/exceptions.py +0 -0
  17. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/models/__init__.py +0 -0
  18. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/models/const.py +0 -0
  19. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/models/filter_diagnostics.py +0 -0
  20. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/models/leadmessage.py +0 -0
  21. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/models/telemetry.py +0 -0
  22. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/models/util.py +0 -0
  23. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/omnitypes.py +0 -0
  24. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/protocol.py +0 -0
  25. {python_omnilogic_local-0.17.0 → python_omnilogic_local-0.18.0}/pyomnilogic_local/util.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: python-omnilogic-local
3
- Version: 0.17.0
3
+ Version: 0.18.0
4
4
  Summary: A library for local control of Hayward OmniHub/OmniLogic pool controllers using their local API
5
5
  License: Apache-2.0
6
6
  Author: Chris Jowett
@@ -174,6 +174,12 @@ class MSPCSAD(OmniBase):
174
174
  calibration_value: float = Field(alias="CalibrationValue")
175
175
  ph_low_alarm_value: float = Field(alias="PHLowAlarmLevel")
176
176
  ph_high_alarm_value: float = Field(alias="PHHighAlarmLevel")
177
+ orp_target_level: int = Field(alias="ORP-Target-Level")
178
+ orp_runtime_level: int = Field(alias="ORP-Runtime-Level")
179
+ orp_low_alarm_level: int = Field(alias="ORP-Low-Alarm-Level")
180
+ orp_high_alarm_level: int = Field(alias="ORP-High-Alarm-Level")
181
+ orp_forced_on_time: int = Field(alias="ORP-Forced-On-Time")
182
+ orp_forced_enabled: bool = Field(alias="ORP-Forced-Enabled")
177
183
 
178
184
 
179
185
  class MSPColorLogicLight(OmniBase):
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "python-omnilogic-local"
3
- version = "0.17.0"
3
+ version = "0.18.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"},