python-hilo 2026.3.3__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.
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/PKG-INFO +1 -1
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/const.py +6 -1
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyproject.toml +1 -1
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/LICENSE +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/README.md +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/__init__.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/api.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/device/__init__.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/device/climate.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/device/graphql_value_mapper.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/device/light.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/device/sensor.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/device/switch.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/devices.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/event.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/exceptions.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/graphql.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/oauth2helper.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/util/__init__.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/util/state.py +0 -0
- {python_hilo-2026.3.3 → python_hilo-2026.3.4}/pyhilo/websocket.py +0 -0
|
@@ -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.
|
|
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"
|
|
@@ -252,6 +252,11 @@ HILO_PROVIDERS: Final = {
|
|
|
252
252
|
1: "Hilo",
|
|
253
253
|
2: "Netatmo",
|
|
254
254
|
3: "OneLink",
|
|
255
|
+
5: "Elmec",
|
|
256
|
+
6: "Resideo",
|
|
257
|
+
7: "Resideo TCC",
|
|
258
|
+
8: "Mysa",
|
|
259
|
+
9: "Sinope",
|
|
255
260
|
}
|
|
256
261
|
|
|
257
262
|
JASCO_MODELS: Final = [
|
|
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
|