homeassistant-stubs 2024.4.0b1__py3-none-any.whl → 2024.4.0b2__py3-none-any.whl
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.
- homeassistant-stubs/components/overkiz/climate.pyi +1 -0
- homeassistant-stubs/components/overkiz/climate_entities/atlantic_pass_apc_heating_zone.pyi +2 -2
- homeassistant-stubs/components/overkiz/climate_entities/atlantic_pass_apc_zone_control_zone.pyi +30 -7
- {homeassistant_stubs-2024.4.0b1.dist-info → homeassistant_stubs-2024.4.0b2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.4.0b1.dist-info → homeassistant_stubs-2024.4.0b2.dist-info}/RECORD +7 -7
- {homeassistant_stubs-2024.4.0b1.dist-info → homeassistant_stubs-2024.4.0b2.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.4.0b1.dist-info → homeassistant_stubs-2024.4.0b2.dist-info}/WHEEL +0 -0
@@ -4,6 +4,7 @@ from .const import DOMAIN as DOMAIN
|
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
5
5
|
from homeassistant.const import Platform as Platform
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
|
+
from homeassistant.helpers.entity import Entity as Entity
|
7
8
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
8
9
|
|
9
10
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
|
@@ -34,7 +34,7 @@ class AtlanticPassAPCHeatingZone(OverkizEntity, ClimateEntity):
|
|
34
34
|
async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None: ...
|
35
35
|
async def async_set_preset_mode(self, preset_mode: str) -> None: ...
|
36
36
|
@property
|
37
|
-
def preset_mode(self) -> str: ...
|
37
|
+
def preset_mode(self) -> str | None: ...
|
38
38
|
@property
|
39
|
-
def target_temperature(self) -> float: ...
|
39
|
+
def target_temperature(self) -> float | None: ...
|
40
40
|
async def async_set_temperature(self, **kwargs: Any) -> None: ...
|
homeassistant-stubs/components/overkiz/climate_entities/atlantic_pass_apc_zone_control_zone.pyi
CHANGED
@@ -1,33 +1,56 @@
|
|
1
1
|
from ..coordinator import OverkizDataUpdateCoordinator as OverkizDataUpdateCoordinator
|
2
|
+
from ..executor import OverkizExecutor as OverkizExecutor
|
2
3
|
from .atlantic_pass_apc_heating_zone import AtlanticPassAPCHeatingZone as AtlanticPassAPCHeatingZone
|
3
|
-
from .atlantic_pass_apc_zone_control import OVERKIZ_TO_HVAC_MODE as OVERKIZ_TO_HVAC_MODE
|
4
4
|
from _typeshed import Incomplete
|
5
|
-
from
|
6
|
-
from homeassistant.
|
5
|
+
from functools import cached_property as cached_property
|
6
|
+
from homeassistant.components.climate import ATTR_TARGET_TEMP_HIGH as ATTR_TARGET_TEMP_HIGH, ATTR_TARGET_TEMP_LOW as ATTR_TARGET_TEMP_LOW, ClimateEntityFeature as ClimateEntityFeature, HVACAction as HVACAction, HVACMode as HVACMode, PRESET_NONE as PRESET_NONE
|
7
|
+
from homeassistant.const import ATTR_TEMPERATURE as ATTR_TEMPERATURE, PRECISION_HALVES as PRECISION_HALVES
|
8
|
+
from pyoverkiz.enums import OverkizCommandParam, OverkizState
|
7
9
|
from typing import Any
|
8
10
|
|
9
11
|
PRESET_SCHEDULE: str
|
10
12
|
PRESET_MANUAL: str
|
11
13
|
OVERKIZ_MODE_TO_PRESET_MODES: dict[str, str]
|
12
14
|
PRESET_MODES_TO_OVERKIZ: Incomplete
|
15
|
+
OVERKIZ_TO_HVAC_ACTION: dict[str, HVACAction]
|
16
|
+
HVAC_ACTION_TO_OVERKIZ_PROFILE_STATE: dict[HVACAction, OverkizState]
|
17
|
+
HVAC_ACTION_TO_OVERKIZ_MODE_STATE: dict[HVACAction, OverkizState]
|
13
18
|
TEMPERATURE_ZONECONTROL_DEVICE_INDEX: int
|
19
|
+
SUPPORTED_FEATURES: ClimateEntityFeature
|
20
|
+
OVERKIZ_THERMAL_CONFIGURATION_TO_HVAC_MODE: dict[OverkizCommandParam, tuple[HVACMode, ClimateEntityFeature]]
|
14
21
|
|
15
22
|
class AtlanticPassAPCZoneControlZone(AtlanticPassAPCHeatingZone):
|
23
|
+
_attr_target_temperature_step = PRECISION_HALVES
|
16
24
|
_attr_hvac_modes: Incomplete
|
25
|
+
_attr_supported_features: Incomplete
|
17
26
|
_attr_preset_modes: Incomplete
|
18
|
-
|
27
|
+
zone_control_executor: Incomplete
|
19
28
|
def __init__(self, device_url: str, coordinator: OverkizDataUpdateCoordinator) -> None: ...
|
29
|
+
@cached_property
|
30
|
+
def thermal_configuration(self) -> tuple[HVACMode, ClimateEntityFeature] | None: ...
|
31
|
+
@cached_property
|
32
|
+
def device_hvac_mode(self) -> HVACMode | None: ...
|
20
33
|
@property
|
21
34
|
def is_using_derogated_temperature_fallback(self) -> bool: ...
|
22
35
|
@property
|
23
|
-
def
|
36
|
+
def zone_control_hvac_action(self) -> HVACAction: ...
|
37
|
+
@property
|
38
|
+
def hvac_action(self) -> HVACAction | None: ...
|
24
39
|
@property
|
25
40
|
def hvac_mode(self) -> HVACMode: ...
|
26
41
|
async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None: ...
|
27
42
|
@property
|
28
|
-
def preset_mode(self) -> str: ...
|
43
|
+
def preset_mode(self) -> str | None: ...
|
29
44
|
async def async_set_preset_mode(self, preset_mode: str) -> None: ...
|
30
45
|
@property
|
31
|
-
def target_temperature(self) -> float: ...
|
46
|
+
def target_temperature(self) -> float | None: ...
|
47
|
+
@property
|
48
|
+
def target_temperature_high(self) -> float | None: ...
|
49
|
+
@property
|
50
|
+
def target_temperature_low(self) -> float | None: ...
|
32
51
|
async def async_set_temperature(self, **kwargs: Any) -> None: ...
|
33
52
|
async def async_refresh_modes(self) -> None: ...
|
53
|
+
@property
|
54
|
+
def min_temp(self) -> float: ...
|
55
|
+
@property
|
56
|
+
def max_temp(self) -> float: ...
|
{homeassistant_stubs-2024.4.0b1.dist-info → homeassistant_stubs-2024.4.0b2.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.4.
|
3
|
+
Version: 2024.4.0b2
|
4
4
|
Summary: PEP 484 typing stubs for Home Assistant Core
|
5
5
|
Home-page: https://github.com/KapJI/homeassistant-stubs
|
6
6
|
License: MIT
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
17
17
|
Classifier: Topic :: Software Development
|
18
18
|
Classifier: Typing :: Typed
|
19
|
-
Requires-Dist: homeassistant (==2024.4.
|
19
|
+
Requires-Dist: homeassistant (==2024.4.0b2)
|
20
20
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
21
21
|
Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
|
22
22
|
Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
|
{homeassistant_stubs-2024.4.0b1.dist-info → homeassistant_stubs-2024.4.0b2.dist-info}/RECORD
RENAMED
@@ -1962,15 +1962,15 @@ homeassistant-stubs/components/overkiz/__init__.pyi,sha256=YgGFCSHfyeMWo0gAkmRJz
|
|
1962
1962
|
homeassistant-stubs/components/overkiz/alarm_control_panel.pyi,sha256=2rrCfH4hXJw4IN46XtNPCkZKgYLQZQuD3aro7RM1LAM,4219
|
1963
1963
|
homeassistant-stubs/components/overkiz/binary_sensor.pyi,sha256=CoroXwjdzrO17BEl9yJDQZvowEQk-kgNSBKNnznTFUo,1650
|
1964
1964
|
homeassistant-stubs/components/overkiz/button.pyi,sha256=_Sny4TgFoLriCh20oRi-pQhsyszTba6KMegwyHmaO7U,1518
|
1965
|
-
homeassistant-stubs/components/overkiz/climate.pyi,sha256=
|
1965
|
+
homeassistant-stubs/components/overkiz/climate.pyi,sha256=2wiYOJNLSQniHPn26JYsKPP_lsKZpFbC15fdu8WhYso,842
|
1966
1966
|
homeassistant-stubs/components/overkiz/climate_entities/__init__.pyi,sha256=oJfsTrpPoRia3UYIil9ECBdDrncZr_r4NXBYXWJ51Z8,1681
|
1967
1967
|
homeassistant-stubs/components/overkiz/climate_entities/atlantic_electrical_heater.pyi,sha256=9F7HF3_t8J3AzmrXdKQAjNutrWrChZAq6BDwPam-Op0,1211
|
1968
1968
|
homeassistant-stubs/components/overkiz/climate_entities/atlantic_electrical_heater_with_adjustable_temperature_setpoint.pyi,sha256=uOFOt32BZllfDhyvks61Vhy-vOYgZLYZcnYmSb6xw-I,1848
|
1969
1969
|
homeassistant-stubs/components/overkiz/climate_entities/atlantic_electrical_towel_dryer.pyi,sha256=Eoz5Zyvf4F9bBuVsK8yuHWzHiNG6F66Hlbd_57Vo0bE,1644
|
1970
1970
|
homeassistant-stubs/components/overkiz/climate_entities/atlantic_heat_recovery_ventilation.pyi,sha256=J6kNDM8k-pLX7sR_dan_1odxKRa1Nz_Qw8lmh0SlDhI,1672
|
1971
|
-
homeassistant-stubs/components/overkiz/climate_entities/atlantic_pass_apc_heating_zone.pyi,sha256=
|
1971
|
+
homeassistant-stubs/components/overkiz/climate_entities/atlantic_pass_apc_heating_zone.pyi,sha256=HNlXqrELHWc0vPOvVfGdB9aY6nAs2A01HqUSZHGP9W8,1963
|
1972
1972
|
homeassistant-stubs/components/overkiz/climate_entities/atlantic_pass_apc_zone_control.pyi,sha256=_UPA9UQrea-HyAVUtnBDV3eSd07rfJzJwn-mUtOkai4,989
|
1973
|
-
homeassistant-stubs/components/overkiz/climate_entities/atlantic_pass_apc_zone_control_zone.pyi,sha256=
|
1973
|
+
homeassistant-stubs/components/overkiz/climate_entities/atlantic_pass_apc_zone_control_zone.pyi,sha256=4GkZFmgdiiyga7tfOjdrHTbHwC_nGDKN9fabL5LvMrU,2750
|
1974
1974
|
homeassistant-stubs/components/overkiz/climate_entities/hitachi_air_to_air_heat_pump_hlrrwifi.pyi,sha256=jx2CUjtbxDjlb3TGWEYJOLlTsTNH4XhwIIpCkY0UcAo,2782
|
1975
1975
|
homeassistant-stubs/components/overkiz/climate_entities/hitachi_air_to_air_heat_pump_ovp.pyi,sha256=9CoHS4iOv-3PXeIkx6AZwO7AZyNgNl0_BeVSbvLkJ5M,2971
|
1976
1976
|
homeassistant-stubs/components/overkiz/climate_entities/somfy_heating_temperature_interface.pyi,sha256=DXLr2IFZ6djtKDZ97nj1LSnmsaJ9r-QLA7Jv4fcA2-Q,1906
|
@@ -3265,7 +3265,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3265
3265
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3266
3266
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_KzmG0bGDiN9zpcdhSx9p3leawOwjmdZDKE4ciEMfKc,4272
|
3267
3267
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=89c0boOGMdQvHxVk7Xs42DKMj3ldlozxjrpiV74RkGY,457
|
3268
|
-
homeassistant_stubs-2024.4.
|
3269
|
-
homeassistant_stubs-2024.4.
|
3270
|
-
homeassistant_stubs-2024.4.
|
3271
|
-
homeassistant_stubs-2024.4.
|
3268
|
+
homeassistant_stubs-2024.4.0b2.dist-info/METADATA,sha256=kghMk3j6ojw6cJ2zC1eJR460iVhn2PlH6KUmIvulZr0,3015
|
3269
|
+
homeassistant_stubs-2024.4.0b2.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3270
|
+
homeassistant_stubs-2024.4.0b2.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3271
|
+
homeassistant_stubs-2024.4.0b2.dist-info/RECORD,,
|
{homeassistant_stubs-2024.4.0b1.dist-info → homeassistant_stubs-2024.4.0b2.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|