python-hilo 2026.3.2__tar.gz → 2026.3.4__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.
Files changed (21) hide show
  1. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/PKG-INFO +1 -1
  2. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/const.py +11 -1
  3. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyproject.toml +1 -1
  4. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/LICENSE +0 -0
  5. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/README.md +0 -0
  6. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/__init__.py +0 -0
  7. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/api.py +0 -0
  8. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/__init__.py +0 -0
  9. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/climate.py +0 -0
  10. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/graphql_value_mapper.py +0 -0
  11. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/light.py +0 -0
  12. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/sensor.py +0 -0
  13. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/device/switch.py +0 -0
  14. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/devices.py +0 -0
  15. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/event.py +0 -0
  16. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/exceptions.py +0 -0
  17. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/graphql.py +0 -0
  18. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/oauth2helper.py +0 -0
  19. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/util/__init__.py +0 -0
  20. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/util/state.py +0 -0
  21. {python_hilo-2026.3.2 → python_hilo-2026.3.4}/pyhilo/websocket.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-hilo
3
- Version: 2026.3.2
3
+ Version: 2026.3.4
4
4
  Summary: A Python3, async interface to the Hilo API
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -11,7 +11,7 @@ INSTANCE_ID: Final = str(uuid.uuid4())[24:]
11
11
  LOG: Final = logging.getLogger(__package__)
12
12
  DEFAULT_STATE_FILE: Final = "hilo_state.yaml"
13
13
  REQUEST_RETRY: Final = 9
14
- PYHILO_VERSION: Final = "2026.3.02"
14
+ PYHILO_VERSION: Final = "2026.3.04"
15
15
  # TODO: Find a way to keep previous line in sync with pyproject.toml automatically
16
16
 
17
17
  CONTENT_TYPE_FORM: Final = "application/x-www-form-urlencoded"
@@ -202,6 +202,11 @@ HILO_DEVICE_TYPES: Final = {
202
202
  "Thermostat24V": "Climate",
203
203
  "Tracker": "Sensor",
204
204
  "SinopeWaterHeater": "Switch",
205
+ "MysaThermostat": "Climate",
206
+ "TCC24V": "Climate",
207
+ "SinopeThermostat": "Climate",
208
+ "SinopeFloorThermostat": "Climate",
209
+ "Sinope24V": "Climate",
205
210
  }
206
211
 
207
212
  HILO_UNIT_CONVERSION: Final = {
@@ -247,6 +252,11 @@ HILO_PROVIDERS: Final = {
247
252
  1: "Hilo",
248
253
  2: "Netatmo",
249
254
  3: "OneLink",
255
+ 5: "Elmec",
256
+ 6: "Resideo",
257
+ 7: "Resideo TCC",
258
+ 8: "Mysa",
259
+ 9: "Sinope",
250
260
  }
251
261
 
252
262
  JASCO_MODELS: Final = [
@@ -40,7 +40,7 @@ exclude = ".venv/.*"
40
40
 
41
41
  [tool.poetry]
42
42
  name = "python-hilo"
43
- version = "2026.3.2"
43
+ version = "2026.3.4"
44
44
  description = "A Python3, async interface to the Hilo API"
45
45
  readme = "README.md"
46
46
  authors = ["David Vallee Delisle <me@dvd.dev>"]
File without changes
File without changes