homeassistant-stubs 2024.9.2__py3-none-any.whl → 2024.9.3__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.
@@ -4,8 +4,7 @@ from _typeshed import Incomplete
4
4
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
5
5
  from homeassistant.const import CONF_EMAIL as CONF_EMAIL, CONF_PASSWORD as CONF_PASSWORD, Platform as Platform
6
6
  from homeassistant.core import HomeAssistant as HomeAssistant
7
- from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady
8
- from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
7
+ from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed
9
8
 
10
9
  _LOGGER: Incomplete
11
10
  PLATFORMS: list[str]
@@ -1,27 +1,24 @@
1
1
  from .const import DOMAIN as DOMAIN
2
2
  from .coordinator import AsekoDataUpdateCoordinator as AsekoDataUpdateCoordinator
3
3
  from .entity import AsekoEntity as AsekoEntity
4
- from _typeshed import Incomplete
5
4
  from aioaseko import Unit as Unit
6
5
  from collections.abc import Callable as Callable
7
6
  from dataclasses import dataclass
8
- from homeassistant.components.binary_sensor import BinarySensorDeviceClass as BinarySensorDeviceClass, BinarySensorEntity as BinarySensorEntity, BinarySensorEntityDescription as BinarySensorEntityDescription
7
+ from homeassistant.components.binary_sensor import BinarySensorEntity as BinarySensorEntity, BinarySensorEntityDescription as BinarySensorEntityDescription
9
8
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
10
9
  from homeassistant.core import HomeAssistant as HomeAssistant
11
10
  from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
12
11
 
13
12
  @dataclass(frozen=True, kw_only=True)
14
13
  class AsekoBinarySensorEntityDescription(BinarySensorEntityDescription):
15
- value_fn: Callable[[Unit], bool]
14
+ value_fn: Callable[[Unit], bool | None]
16
15
  def __init__(self, *, key, device_class=..., entity_category=..., entity_registry_enabled_default=..., entity_registry_visible_default=..., force_update=..., icon=..., has_entity_name=..., name=..., translation_key=..., translation_placeholders=..., unit_of_measurement=..., value_fn) -> None: ...
17
16
 
18
- UNIT_BINARY_SENSORS: tuple[AsekoBinarySensorEntityDescription, ...]
17
+ BINARY_SENSORS: tuple[AsekoBinarySensorEntityDescription, ...]
19
18
 
20
19
  async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
21
20
 
22
- class AsekoUnitBinarySensorEntity(AsekoEntity, BinarySensorEntity):
21
+ class AsekoBinarySensorEntity(AsekoEntity, BinarySensorEntity):
23
22
  entity_description: AsekoBinarySensorEntityDescription
24
- _attr_unique_id: Incomplete
25
- def __init__(self, unit: Unit, coordinator: AsekoDataUpdateCoordinator, entity_description: AsekoBinarySensorEntityDescription) -> None: ...
26
23
  @property
27
- def is_on(self) -> bool: ...
24
+ def is_on(self) -> bool | None: ...
@@ -3,7 +3,6 @@ from _typeshed import Incomplete
3
3
  from collections.abc import Mapping
4
4
  from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
5
5
  from homeassistant.const import CONF_EMAIL as CONF_EMAIL, CONF_PASSWORD as CONF_PASSWORD, CONF_UNIQUE_ID as CONF_UNIQUE_ID
6
- from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
7
6
  from typing import Any
8
7
 
9
8
  _LOGGER: Incomplete
@@ -1,11 +1,12 @@
1
+ from .const import DOMAIN as DOMAIN
1
2
  from _typeshed import Incomplete
2
- from aioaseko import Unit as Unit, Variable
3
+ from aioaseko import Aseko as Aseko, Unit
3
4
  from homeassistant.core import HomeAssistant as HomeAssistant
4
5
  from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator
5
6
 
6
7
  _LOGGER: Incomplete
7
8
 
8
- class AsekoDataUpdateCoordinator(DataUpdateCoordinator[dict[str, Variable]]):
9
- _unit: Incomplete
10
- def __init__(self, hass: HomeAssistant, unit: Unit) -> None: ...
11
- async def _async_update_data(self) -> dict[str, Variable]: ...
9
+ class AsekoDataUpdateCoordinator(DataUpdateCoordinator[dict[str, Unit]]):
10
+ _aseko: Incomplete
11
+ def __init__(self, hass: HomeAssistant, aseko: Aseko) -> None: ...
12
+ async def _async_update_data(self) -> dict[str, Unit]: ...
@@ -3,12 +3,17 @@ from .coordinator import AsekoDataUpdateCoordinator as AsekoDataUpdateCoordinato
3
3
  from _typeshed import Incomplete
4
4
  from aioaseko import Unit as Unit
5
5
  from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
6
+ from homeassistant.helpers.entity import EntityDescription as EntityDescription
6
7
  from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity
7
8
 
8
9
  class AsekoEntity(CoordinatorEntity[AsekoDataUpdateCoordinator]):
9
10
  _attr_has_entity_name: bool
11
+ entity_description: Incomplete
10
12
  _unit: Incomplete
11
- _device_model: str
12
- _device_name: Incomplete
13
+ _attr_unique_id: Incomplete
13
14
  _attr_device_info: Incomplete
14
- def __init__(self, unit: Unit, coordinator: AsekoDataUpdateCoordinator) -> None: ...
15
+ def __init__(self, unit: Unit, coordinator: AsekoDataUpdateCoordinator, description: EntityDescription) -> None: ...
16
+ @property
17
+ def unit(self) -> Unit: ...
18
+ @property
19
+ def available(self) -> bool: ...
@@ -1,24 +1,26 @@
1
1
  from .const import DOMAIN as DOMAIN
2
2
  from .coordinator import AsekoDataUpdateCoordinator as AsekoDataUpdateCoordinator
3
3
  from .entity import AsekoEntity as AsekoEntity
4
- from _typeshed import Incomplete
5
- from aioaseko import Unit as Unit, Variable as Variable
6
- from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorStateClass as SensorStateClass
4
+ from aioaseko import Unit as Unit
5
+ from collections.abc import Callable as Callable
6
+ from dataclasses import dataclass
7
+ from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription, SensorStateClass as SensorStateClass
7
8
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
9
+ from homeassistant.const import UnitOfElectricPotential as UnitOfElectricPotential, UnitOfTemperature as UnitOfTemperature
8
10
  from homeassistant.core import HomeAssistant as HomeAssistant
9
11
  from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
12
+ from homeassistant.helpers.typing import StateType as StateType
13
+
14
+ @dataclass(frozen=True, kw_only=True)
15
+ class AsekoSensorEntityDescription(SensorEntityDescription):
16
+ value_fn: Callable[[Unit], StateType]
17
+ def __init__(self, *, key, device_class=..., entity_category=..., entity_registry_enabled_default=..., entity_registry_visible_default=..., force_update=..., icon=..., has_entity_name=..., name=..., translation_key=..., translation_placeholders=..., unit_of_measurement=..., last_reset=..., native_unit_of_measurement=..., options=..., state_class=..., suggested_display_precision=..., suggested_unit_of_measurement=..., value_fn) -> None: ...
18
+
19
+ SENSORS: list[AsekoSensorEntityDescription]
10
20
 
11
21
  async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
12
22
 
13
- class VariableSensorEntity(AsekoEntity, SensorEntity):
14
- _attr_state_class: Incomplete
15
- _variable: Incomplete
16
- _attr_translation_key: Incomplete
17
- _attr_name: Incomplete
18
- _attr_unique_id: Incomplete
19
- _attr_native_unit_of_measurement: Incomplete
20
- _attr_icon: Incomplete
21
- _attr_device_class: Incomplete
22
- def __init__(self, unit: Unit, variable: Variable, coordinator: AsekoDataUpdateCoordinator) -> None: ...
23
+ class AsekoSensorEntity(AsekoEntity, SensorEntity):
24
+ entity_description: AsekoSensorEntityDescription
23
25
  @property
24
- def native_value(self) -> int | None: ...
26
+ def native_value(self) -> StateType: ...
@@ -6,6 +6,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
6
  from homeassistant.const import CONF_HOST as CONF_HOST, CONF_MODEL as CONF_MODEL, Platform as Platform
7
7
  from homeassistant.core import HomeAssistant as HomeAssistant
8
8
  from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady
9
+ from homeassistant.util.ssl import get_default_context as get_default_context
9
10
  from mozart_api.mozart_client import MozartClient
10
11
 
11
12
  @dataclass
@@ -4,6 +4,7 @@ from homeassistant.components.zeroconf import ZeroconfServiceInfo as ZeroconfSer
4
4
  from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
5
5
  from homeassistant.const import CONF_HOST as CONF_HOST, CONF_MODEL as CONF_MODEL
6
6
  from homeassistant.helpers.selector import SelectSelector as SelectSelector, SelectSelectorConfig as SelectSelectorConfig
7
+ from homeassistant.util.ssl import get_default_context as get_default_context
7
8
  from mozart_api.mozart_client import MozartClient
8
9
  from typing import Any, TypedDict
9
10
 
@@ -30,8 +30,10 @@ def suitable_nextchange_temperature(device: FritzhomeDevice) -> bool: ...
30
30
  def suitable_nextchange_time(device: FritzhomeDevice) -> bool: ...
31
31
  def suitable_temperature(device: FritzhomeDevice) -> bool: ...
32
32
  def entity_category_temperature(device: FritzhomeDevice) -> EntityCategory | None: ...
33
- def value_nextchange_preset(device: FritzhomeDevice) -> str: ...
34
- def value_scheduled_preset(device: FritzhomeDevice) -> str: ...
33
+ def value_nextchange_preset(device: FritzhomeDevice) -> str | None: ...
34
+ def value_scheduled_preset(device: FritzhomeDevice) -> str | None: ...
35
+ def value_nextchange_temperature(device: FritzhomeDevice) -> float | None: ...
36
+ def value_nextchange_time(device: FritzhomeDevice) -> datetime | None: ...
35
37
 
36
38
  SENSOR_TYPES: Final[tuple[FritzSensorEntityDescription, ...]]
37
39
 
@@ -5,6 +5,7 @@ from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFai
5
5
  from homeassistant.helpers.device_registry import format_mac as format_mac
6
6
  from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
7
7
  from jvcprojector import JvcProjector as JvcProjector
8
+ from typing import Any
8
9
 
9
10
  _LOGGER: Incomplete
10
11
  INTERVAL_SLOW: Incomplete
@@ -15,4 +16,4 @@ class JvcProjectorDataUpdateCoordinator(DataUpdateCoordinator[dict[str, str]]):
15
16
  unique_id: Incomplete
16
17
  def __init__(self, hass: HomeAssistant, device: JvcProjector) -> None: ...
17
18
  update_interval: Incomplete
18
- async def _async_update_data(self) -> dict[str, str]: ...
19
+ async def _async_update_data(self) -> dict[str, Any]: ...
@@ -1,8 +1,10 @@
1
- import abc
2
1
  from . import KNXModule as KNXModule
2
+ from .const import DOMAIN as DOMAIN
3
3
  from .storage.config_store import PlatformControllerBase as PlatformControllerBase
4
+ from .storage.const import CONF_DEVICE_INFO as CONF_DEVICE_INFO
4
5
  from _typeshed import Incomplete
5
- from abc import ABC, abstractmethod
6
+ from homeassistant.const import CONF_ENTITY_CATEGORY as CONF_ENTITY_CATEGORY, EntityCategory as EntityCategory
7
+ from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
6
8
  from homeassistant.helpers.entity import Entity as Entity
7
9
  from homeassistant.helpers.entity_platform import EntityPlatform as EntityPlatform
8
10
  from homeassistant.helpers.entity_registry import RegistryEntry as RegistryEntry
@@ -35,7 +37,10 @@ class KnxYamlEntity(_KnxEntityBase):
35
37
  _device: Incomplete
36
38
  def __init__(self, knx_module: KNXModule, device: XknxDevice) -> None: ...
37
39
 
38
- class KnxUiEntity(_KnxEntityBase, ABC, metaclass=abc.ABCMeta):
40
+ class KnxUiEntity(_KnxEntityBase):
39
41
  _attr_unique_id: str
40
- @abstractmethod
41
- def __init__(self, knx_module: KNXModule, unique_id: str, config: dict[str, Any]): ...
42
+ _attr_has_entity_name: bool
43
+ _knx_module: Incomplete
44
+ _attr_entity_category: Incomplete
45
+ _attr_device_info: Incomplete
46
+ def __init__(self, knx_module: KNXModule, unique_id: str, entity_config: dict[str, Any]) -> None: ...
@@ -2,14 +2,13 @@ from . import KNXModule as KNXModule
2
2
  from .const import CONF_SYNC_STATE as CONF_SYNC_STATE, ColorTempModes as ColorTempModes, DATA_KNX_CONFIG as DATA_KNX_CONFIG, DOMAIN as DOMAIN, KNX_ADDRESS as KNX_ADDRESS
3
3
  from .knx_entity import KnxUiEntity as KnxUiEntity, KnxUiEntityPlatformController as KnxUiEntityPlatformController, KnxYamlEntity as KnxYamlEntity
4
4
  from .schema import LightSchema as LightSchema
5
- from .storage.const import CONF_COLOR_TEMP_MAX as CONF_COLOR_TEMP_MAX, CONF_COLOR_TEMP_MIN as CONF_COLOR_TEMP_MIN, CONF_DEVICE_INFO as CONF_DEVICE_INFO, CONF_DPT as CONF_DPT, CONF_ENTITY as CONF_ENTITY, CONF_GA_BLUE_BRIGHTNESS as CONF_GA_BLUE_BRIGHTNESS, CONF_GA_BLUE_SWITCH as CONF_GA_BLUE_SWITCH, CONF_GA_BRIGHTNESS as CONF_GA_BRIGHTNESS, CONF_GA_COLOR as CONF_GA_COLOR, CONF_GA_COLOR_TEMP as CONF_GA_COLOR_TEMP, CONF_GA_GREEN_BRIGHTNESS as CONF_GA_GREEN_BRIGHTNESS, CONF_GA_GREEN_SWITCH as CONF_GA_GREEN_SWITCH, CONF_GA_HUE as CONF_GA_HUE, CONF_GA_PASSIVE as CONF_GA_PASSIVE, CONF_GA_RED_BRIGHTNESS as CONF_GA_RED_BRIGHTNESS, CONF_GA_RED_SWITCH as CONF_GA_RED_SWITCH, CONF_GA_SATURATION as CONF_GA_SATURATION, CONF_GA_STATE as CONF_GA_STATE, CONF_GA_SWITCH as CONF_GA_SWITCH, CONF_GA_WHITE_BRIGHTNESS as CONF_GA_WHITE_BRIGHTNESS, CONF_GA_WHITE_SWITCH as CONF_GA_WHITE_SWITCH, CONF_GA_WRITE as CONF_GA_WRITE
5
+ from .storage.const import CONF_COLOR_TEMP_MAX as CONF_COLOR_TEMP_MAX, CONF_COLOR_TEMP_MIN as CONF_COLOR_TEMP_MIN, CONF_DPT as CONF_DPT, CONF_ENTITY as CONF_ENTITY, CONF_GA_BLUE_BRIGHTNESS as CONF_GA_BLUE_BRIGHTNESS, CONF_GA_BLUE_SWITCH as CONF_GA_BLUE_SWITCH, CONF_GA_BRIGHTNESS as CONF_GA_BRIGHTNESS, CONF_GA_COLOR as CONF_GA_COLOR, CONF_GA_COLOR_TEMP as CONF_GA_COLOR_TEMP, CONF_GA_GREEN_BRIGHTNESS as CONF_GA_GREEN_BRIGHTNESS, CONF_GA_GREEN_SWITCH as CONF_GA_GREEN_SWITCH, CONF_GA_HUE as CONF_GA_HUE, CONF_GA_PASSIVE as CONF_GA_PASSIVE, CONF_GA_RED_BRIGHTNESS as CONF_GA_RED_BRIGHTNESS, CONF_GA_RED_SWITCH as CONF_GA_RED_SWITCH, CONF_GA_SATURATION as CONF_GA_SATURATION, CONF_GA_STATE as CONF_GA_STATE, CONF_GA_SWITCH as CONF_GA_SWITCH, CONF_GA_WHITE_BRIGHTNESS as CONF_GA_WHITE_BRIGHTNESS, CONF_GA_WHITE_SWITCH as CONF_GA_WHITE_SWITCH, CONF_GA_WRITE as CONF_GA_WRITE
6
6
  from .storage.entity_store_schema import LightColorMode as LightColorMode
7
7
  from _typeshed import Incomplete
8
8
  from homeassistant import config_entries as config_entries
9
9
  from homeassistant.components.light import ATTR_BRIGHTNESS as ATTR_BRIGHTNESS, ATTR_COLOR_TEMP_KELVIN as ATTR_COLOR_TEMP_KELVIN, ATTR_HS_COLOR as ATTR_HS_COLOR, ATTR_RGBW_COLOR as ATTR_RGBW_COLOR, ATTR_RGB_COLOR as ATTR_RGB_COLOR, ATTR_XY_COLOR as ATTR_XY_COLOR, ColorMode as ColorMode, LightEntity as LightEntity
10
10
  from homeassistant.const import CONF_ENTITY_CATEGORY as CONF_ENTITY_CATEGORY, CONF_NAME as CONF_NAME, Platform as Platform
11
11
  from homeassistant.core import HomeAssistant as HomeAssistant
12
- from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
13
12
  from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback, async_get_current_platform as async_get_current_platform
14
13
  from homeassistant.helpers.typing import ConfigType as ConfigType
15
14
  from typing import Any
@@ -55,12 +54,7 @@ class KnxYamlLight(_KnxLight, KnxYamlEntity):
55
54
  def _device_unique_id(self) -> str: ...
56
55
 
57
56
  class KnxUiLight(_KnxLight, KnxUiEntity):
58
- _attr_has_entity_name: bool
59
57
  _device: XknxLight
60
- _knx_module: Incomplete
61
58
  _attr_max_color_temp_kelvin: Incomplete
62
59
  _attr_min_color_temp_kelvin: Incomplete
63
- _attr_entity_category: Incomplete
64
- _attr_unique_id: Incomplete
65
- _attr_device_info: Incomplete
66
60
  def __init__(self, knx_module: KNXModule, unique_id: str, config: ConfigType) -> None: ...
@@ -2,13 +2,12 @@ from . import KNXModule as KNXModule
2
2
  from .const import CONF_INVERT as CONF_INVERT, CONF_RESPOND_TO_READ as CONF_RESPOND_TO_READ, CONF_SYNC_STATE as CONF_SYNC_STATE, DATA_KNX_CONFIG as DATA_KNX_CONFIG, DOMAIN as DOMAIN, KNX_ADDRESS as KNX_ADDRESS
3
3
  from .knx_entity import KnxUiEntity as KnxUiEntity, KnxUiEntityPlatformController as KnxUiEntityPlatformController, KnxYamlEntity as KnxYamlEntity
4
4
  from .schema import SwitchSchema as SwitchSchema
5
- from .storage.const import CONF_DEVICE_INFO as CONF_DEVICE_INFO, CONF_ENTITY as CONF_ENTITY, CONF_GA_PASSIVE as CONF_GA_PASSIVE, CONF_GA_STATE as CONF_GA_STATE, CONF_GA_SWITCH as CONF_GA_SWITCH, CONF_GA_WRITE as CONF_GA_WRITE
5
+ from .storage.const import CONF_ENTITY as CONF_ENTITY, CONF_GA_PASSIVE as CONF_GA_PASSIVE, CONF_GA_STATE as CONF_GA_STATE, CONF_GA_SWITCH as CONF_GA_SWITCH, CONF_GA_WRITE as CONF_GA_WRITE
6
6
  from _typeshed import Incomplete
7
7
  from homeassistant import config_entries as config_entries
8
8
  from homeassistant.components.switch import SwitchEntity as SwitchEntity
9
9
  from homeassistant.const import CONF_DEVICE_CLASS as CONF_DEVICE_CLASS, CONF_ENTITY_CATEGORY as CONF_ENTITY_CATEGORY, CONF_NAME as CONF_NAME, Platform as Platform, STATE_ON as STATE_ON, STATE_UNAVAILABLE as STATE_UNAVAILABLE, STATE_UNKNOWN as STATE_UNKNOWN
10
10
  from homeassistant.core import HomeAssistant as HomeAssistant
11
- from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
12
11
  from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback, async_get_current_platform as async_get_current_platform
13
12
  from homeassistant.helpers.restore_state import RestoreEntity as RestoreEntity
14
13
  from homeassistant.helpers.typing import ConfigType as ConfigType
@@ -33,10 +32,5 @@ class KnxYamlSwitch(_KnxSwitch, KnxYamlEntity):
33
32
  def __init__(self, knx_module: KNXModule, config: ConfigType) -> None: ...
34
33
 
35
34
  class KnxUiSwitch(_KnxSwitch, KnxUiEntity):
36
- _attr_has_entity_name: bool
37
35
  _device: XknxSwitch
38
- _knx_module: Incomplete
39
- _attr_entity_category: Incomplete
40
- _attr_unique_id: Incomplete
41
- _attr_device_info: Incomplete
42
36
  def __init__(self, knx_module: KNXModule, unique_id: str, config: dict[str, Any]) -> None: ...
@@ -1,21 +1,17 @@
1
1
  from .const import DOMAIN as DOMAIN, SURE_API_TIMEOUT as SURE_API_TIMEOUT
2
2
  from _typeshed import Incomplete
3
3
  from collections.abc import Mapping
4
- from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
4
+ from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
5
5
  from homeassistant.const import CONF_PASSWORD as CONF_PASSWORD, CONF_TOKEN as CONF_TOKEN, CONF_USERNAME as CONF_USERNAME
6
- from homeassistant.core import HomeAssistant as HomeAssistant
7
6
  from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
8
7
  from typing import Any
9
8
 
10
9
  _LOGGER: Incomplete
11
10
  USER_DATA_SCHEMA: Incomplete
12
11
 
13
- async def validate_input(hass: HomeAssistant, data: dict[str, Any]) -> dict[str, Any]: ...
14
-
15
12
  class SurePetCareConfigFlow(ConfigFlow, domain=DOMAIN):
16
13
  VERSION: int
17
- _username: Incomplete
18
- def __init__(self) -> None: ...
14
+ reauth_entry: ConfigEntry | None
19
15
  async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
20
16
  async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> ConfigFlowResult: ...
21
17
  async def async_step_reauth_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
@@ -1,25 +1,24 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: homeassistant-stubs
3
- Version: 2024.9.2
3
+ Version: 2024.9.3
4
4
  Summary: PEP 484 typing stubs for Home Assistant Core
5
- Home-page: https://github.com/KapJI/homeassistant-stubs
5
+ Project-URL: Homepage, https://github.com/KapJI/homeassistant-stubs
6
+ Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
7
+ Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
8
+ Author-email: Ruslan Sayfutdinov <ruslan@sayfutdinov.com>
6
9
  License: MIT
7
- Keywords: homeassistant,typing,pep484
8
- Author: Ruslan Sayfutdinov
9
- Author-email: ruslan@sayfutdinov.com
10
- Requires-Python: >=3.12,<3.13
11
- Classifier: Development Status :: 3 - Alpha
10
+ License-File: LICENSE
11
+ Keywords: homeassistant,pep484,typing
12
+ Classifier: Development Status :: 5 - Production/Stable
12
13
  Classifier: Intended Audience :: Developers
13
14
  Classifier: License :: OSI Approved :: MIT License
14
15
  Classifier: Operating System :: OS Independent
15
- Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Home Automation
17
18
  Classifier: Topic :: Software Development
18
19
  Classifier: Typing :: Typed
19
- Requires-Dist: homeassistant (==2024.9.2)
20
- Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
21
- Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
22
- Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
20
+ Requires-Python: <3.13,>=3.12
21
+ Requires-Dist: homeassistant==2024.9.3
23
22
  Description-Content-Type: text/markdown
24
23
 
25
24
  [![CI](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml/badge.svg)](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
@@ -33,10 +32,10 @@ You can use it to enable type checks against Home Assistant code in your custom
33
32
  ## How to use
34
33
 
35
34
  Add it to dev dependencies of your project.
36
- I recommend to use [Poetry](https://python-poetry.org/) for managing dependencies:
35
+ I recommend to use [uv](https://docs.astral.sh/uv/) for managing dependencies:
37
36
 
38
37
  ```shell
39
- poetry add --group dev homeassistant-stubs
38
+ uv add --dev homeassistant-stubs
40
39
  ```
41
40
 
42
41
  Please note that only stubs from strictly typed modules are added in this package.
@@ -61,4 +60,3 @@ But many of the Home Assistant components are currently not type checked.
61
60
  - `update_stubs.py` script extracts list of strictly typed modules from Home Assistant configs.
62
61
  - Then it runs `stubgen` which is shipped with `mypy` to generate typing stubs.
63
62
  - New versions are generated and published automatically every 12 hours.
64
-
@@ -1,14 +1,26 @@
1
1
  homeassistant-stubs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  homeassistant-stubs/__main__.pyi,sha256=82tBMuykJ_6ZcKcfFlsnfI56PCYRaRcKnDvFIrkCmps,394
3
+ homeassistant-stubs/block_async_io.pyi,sha256=mNk9ihGoyoMbmZ2M89yUe9u_L4f38JVvWO_D8OC7iEI,1106
4
+ homeassistant-stubs/bootstrap.pyi,sha256=RSf7xKhLiB11gHtej_q0Kciy8KVSn7hxPzDRhOei8y8,4761
5
+ homeassistant-stubs/config.pyi,sha256=fXEnNrBJqOnsZaNJUtO7shXXJY7Al3bytB_cg2oQanU,9160
6
+ homeassistant-stubs/config_entries.pyi,sha256=oFpOGkOSEuIj1RZFqXpmU4zwVRCtN__NCKpoOwLHEis,20361
7
+ homeassistant-stubs/const.pyi,sha256=iVHVQu--ryTHi8rrFDIyu2H1y6vLC3enPJAQL3JFl4w,25750
8
+ homeassistant-stubs/core.pyi,sha256=Tev-mbtWAQP4KFHKg39Sx0Wt1gxXWam1sCLp_8GZoEI,25858
9
+ homeassistant-stubs/data_entry_flow.pyi,sha256=SnxA4opifZbw9OOuDVHJTDil1ne6JJC-YaSG52qYHT8,8576
10
+ homeassistant-stubs/exceptions.pyi,sha256=Fph9efKLGi0Apdz5RxoxEHMLNYAWeKVSQLD8AjXTTLA,3720
11
+ homeassistant-stubs/loader.pyi,sha256=SGWOrKL3_MIMmHK4a8G_d_M5AIJGjkk44O8gZEaQ0rg,12511
12
+ homeassistant-stubs/requirements.pyi,sha256=b21vrHh7zxBD4sGQEWFKTv6k14PxgkQcw5vbkywQCUM,2391
13
+ homeassistant-stubs/runner.pyi,sha256=wqhKE_xSH0jLTDrlc3EdMq5Q7b32rG_2gk1MEuytKsM,1715
14
+ homeassistant-stubs/setup.pyi,sha256=UuGE3i35vvBo3hx2QKNZRpUFhNJMBHffJUJo7Y2r9IY,4362
3
15
  homeassistant-stubs/auth/__init__.pyi,sha256=kHGiS71hUuV13B9BcacluFXYpFrVH3HdUiSZ1DAesJw,6415
4
16
  homeassistant-stubs/auth/auth_store.pyi,sha256=hAi6bhb7VPHaiIIBWol8kDzT8ahoJSHeilBKoX7dCK8,3700
5
17
  homeassistant-stubs/auth/const.pyi,sha256=o03iLXy-TOMdtskmjahSYlkHX4KRzHYTQb_tC2Rbrfc,205
6
18
  homeassistant-stubs/auth/jwt_wrapper.pyi,sha256=arIQRjI_mfcIonb6ReKY4TEZrhvpfdO30gTvllbhjow,716
19
+ homeassistant-stubs/auth/models.pyi,sha256=MFY7_n_mYQ-tSVSSEyu88GKk1pZ8UnD5WCgMRG7lkhY,2860
7
20
  homeassistant-stubs/auth/mfa_modules/__init__.pyi,sha256=LG-NxjhYlF7MNF0NQxAmBGQW8z4KuzU3bm1rkB1AIi0,2175
8
21
  homeassistant-stubs/auth/mfa_modules/insecure_example.pyi,sha256=A5dS-WBilESL19aNVIgAuEleYnFw4JGtCftqs-ncZRA,1049
9
22
  homeassistant-stubs/auth/mfa_modules/notify.pyi,sha256=ews9O1T5Ug-McCIWCCH4McrabPv1Nj_LWbXx8qHtR_U,3117
10
23
  homeassistant-stubs/auth/mfa_modules/totp.pyi,sha256=lttSt1kkg36_3v8b6ssD1OuPs2kpCc0S8Ur5Mi6inGA,2115
11
- homeassistant-stubs/auth/models.pyi,sha256=MFY7_n_mYQ-tSVSSEyu88GKk1pZ8UnD5WCgMRG7lkhY,2860
12
24
  homeassistant-stubs/auth/permissions/__init__.pyi,sha256=_CFnkPGPXYlOup61WZWaInGeJRnioqngn0nrKht9C5w,1218
13
25
  homeassistant-stubs/auth/permissions/const.pyi,sha256=wF8_MdJqpm78jJorT1x-EX_EoefTseBoinIwD8eHmnw,112
14
26
  homeassistant-stubs/auth/permissions/entities.pyi,sha256=-YronzaGgZFaAajDGjOtXU46q_6lMFtI4UXmkvrZTVI,1277
@@ -26,8 +38,6 @@ homeassistant-stubs/auth/providers/trusted_networks.pyi,sha256=2VCzpWhLOFCfSXqyL
26
38
  homeassistant-stubs/backports/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
39
  homeassistant-stubs/backports/enum.pyi,sha256=xkDSG4CMuB2Nt6p41ZMn6ZoOadNZyKka7T6ypp01zn4,401
28
40
  homeassistant-stubs/backports/functools.pyi,sha256=CO-_1EQxS7z-7Klaxc_O6RqCgj00vSRrFlRQKuu2v9A,409
29
- homeassistant-stubs/block_async_io.pyi,sha256=mNk9ihGoyoMbmZ2M89yUe9u_L4f38JVvWO_D8OC7iEI,1106
30
- homeassistant-stubs/bootstrap.pyi,sha256=RSf7xKhLiB11gHtej_q0Kciy8KVSn7hxPzDRhOei8y8,4761
31
41
  homeassistant-stubs/components/__init__.pyi,sha256=q2bLPZGVleGG6Ui44GnodCQXtIqeQaHR5KABVOnNwb4,363
32
42
  homeassistant-stubs/components/abode/__init__.pyi,sha256=uIIUZu4RrIO2CEM6n9jbgItkUx_dG-Og11TvnB0NxR4,2072
33
43
  homeassistant-stubs/components/abode/alarm_control_panel.pyi,sha256=3oVtDqHkuuWgMgg1hXRd6WXGWRW8vLRjj1d_LTow90c,1413
@@ -311,13 +321,13 @@ homeassistant-stubs/components/aruba/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCe
311
321
  homeassistant-stubs/components/aruba/device_tracker.pyi,sha256=2MIwyD9yQ_3CIYByUUJ9kfdrSbvWD1YOeWdtEefyczM,1020
312
322
  homeassistant-stubs/components/arwn/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
313
323
  homeassistant-stubs/components/arwn/sensor.pyi,sha256=exIq_DfFqJbE2UesCjx8U5K4Qq_7cbFU_kDQd2lVzi4,1711
314
- homeassistant-stubs/components/aseko_pool_live/__init__.pyi,sha256=oJQQIm3qFt-nqY63_KJwIA9av66qHzFlnfZ0IylbTZM,919
315
- homeassistant-stubs/components/aseko_pool_live/binary_sensor.pyi,sha256=15DbzlCIQ11yG6-BMd07mHTiDcBDJdQIcEZq5p0jNDY,1749
316
- homeassistant-stubs/components/aseko_pool_live/config_flow.pyi,sha256=maZ50vwpSDpgPUvY4dk8YgV6ZOoxWkB6jZFbgPxhKmQ,1118
324
+ homeassistant-stubs/components/aseko_pool_live/__init__.pyi,sha256=QXIY8slTSwI6Xurfo1gUxa0OcAbsJnSuI7a6MS5KSW4,775
325
+ homeassistant-stubs/components/aseko_pool_live/binary_sensor.pyi,sha256=xQdt_NNgc8LXix1U-_VSNbK6osmkC8KoNS-E2PzA8xw,1492
326
+ homeassistant-stubs/components/aseko_pool_live/config_flow.pyi,sha256=t3HOaLIoxujuPNg0o-BGTmNCJ8hHR5aJLYb-kmI0J7I,1018
317
327
  homeassistant-stubs/components/aseko_pool_live/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
318
- homeassistant-stubs/components/aseko_pool_live/coordinator.pyi,sha256=wUF0htSNl9Gw9VaVtgi66upbOlB4DamSrG2vlSM2PQY,497
319
- homeassistant-stubs/components/aseko_pool_live/entity.pyi,sha256=cexy3847oioICs7VNu7cfSeH5k4bh_CQdCFjv_fKqmU,648
320
- homeassistant-stubs/components/aseko_pool_live/sensor.pyi,sha256=0zqxVappqnh7SSSmUOQ6iIgOjtSF3P092LPbGNHqyqE,1252
328
+ homeassistant-stubs/components/aseko_pool_live/coordinator.pyi,sha256=fzoqsuy589iujhTKvYMiG496P5jEBd8BQQAskFLD7TM,526
329
+ homeassistant-stubs/components/aseko_pool_live/entity.pyi,sha256=cDuG8JWKAb7XDKLRzLua7kj24GV0Rg3RCDKzP9iuyqM,872
330
+ homeassistant-stubs/components/aseko_pool_live/sensor.pyi,sha256=-9ZRNHz9yqg3NAo4SNM0ZgZRBsFt7emq-vc1JVMv24Y,1826
321
331
  homeassistant-stubs/components/assist_pipeline/__init__.pyi,sha256=inGuDhvYrb4pDBC32FV_bRhH17P9cD_Q12dDw36lSgs,1868
322
332
  homeassistant-stubs/components/assist_pipeline/audio_enhancer.pyi,sha256=hVmzzNMLJwI77w5osn79G9KHZEba7Iblhpzh2yoR-EA,1097
323
333
  homeassistant-stubs/components/assist_pipeline/const.pyi,sha256=wFRqcb7fXmDi3V_Hyj7-4ZPMx1QvWMt7b_Dp860NVLQ,410
@@ -366,14 +376,14 @@ homeassistant-stubs/components/axis/const.pyi,sha256=2qTsgdxBKYBSLfjHYv55Pebloe7
366
376
  homeassistant-stubs/components/axis/diagnostics.pyi,sha256=BD_H_dXJqE_ouenEKXPyhgKLRq80jMHk8aeTKPAM4-w,623
367
377
  homeassistant-stubs/components/axis/entity.pyi,sha256=qIyigHbybmjFvkHNICZAIq1grponkTyWa2bpOyTZzT8,1977
368
378
  homeassistant-stubs/components/axis/errors.pyi,sha256=LvYRcpyCHxOKr8gjlb6EejhtKNcozCRY6TS5ntc60U8,293
379
+ homeassistant-stubs/components/axis/light.pyi,sha256=RhdrDsg6m-NtMmtzA-pRQ-Gy5pVhZFcDeKA8eA7BgMc,2136
380
+ homeassistant-stubs/components/axis/switch.pyi,sha256=NKQ0kOnw6KEOARsV_YMzj6SW2v4UE6Qo7B8ihJWRyQ0,1758
369
381
  homeassistant-stubs/components/axis/hub/__init__.pyi,sha256=UJk7BJmgPs_VIXddxfRrEGPs_Xz9MmO_CPHXJAAvBes,82
370
382
  homeassistant-stubs/components/axis/hub/api.pyi,sha256=v40Eqiysmf5SDvnRdBVGH_FzEc82yAo3ArB9m5z7edI,635
371
383
  homeassistant-stubs/components/axis/hub/config.pyi,sha256=8WgxSdIqpuZuSXLTx65VCFltEDafIPlekOkDLKoTPAs,1098
372
384
  homeassistant-stubs/components/axis/hub/entity_loader.pyi,sha256=x4DUoIds7u65XGXO6hxkUVhqxuDsW1x_hV5YyOcJjGE,810
373
385
  homeassistant-stubs/components/axis/hub/event_source.pyi,sha256=tcfbfqqL-NxHKdVyPERqOvOVHfZkuY4vgU1pgsfNqBI,1119
374
386
  homeassistant-stubs/components/axis/hub/hub.pyi,sha256=3b84yKXowmZlGFoDuU7P-Uk3mggq-4CHHU45eXgDlQM,1489
375
- homeassistant-stubs/components/axis/light.pyi,sha256=RhdrDsg6m-NtMmtzA-pRQ-Gy5pVhZFcDeKA8eA7BgMc,2136
376
- homeassistant-stubs/components/axis/switch.pyi,sha256=NKQ0kOnw6KEOARsV_YMzj6SW2v4UE6Qo7B8ihJWRyQ0,1758
377
387
  homeassistant-stubs/components/backup/__init__.pyi,sha256=ubRKJe-Pf1PElOnebUy1xxOx6M5E-EXVgkxBFcfTHAQ,633
378
388
  homeassistant-stubs/components/backup/const.pyi,sha256=Wb2lsCfKj6ft67uCVeJPuxIADuL6H93PEeHas61MfRw,97
379
389
  homeassistant-stubs/components/backup/http.pyi,sha256=AjX3CSI8e2W3tKlgwHYBTby-qg-tZkRAIYT-9vcB9SM,615
@@ -391,8 +401,8 @@ homeassistant-stubs/components/baf/models.pyi,sha256=3O5RFjNLhdcDKv_ljGqA96Eyi5j
391
401
  homeassistant-stubs/components/baf/number.pyi,sha256=cWe2_6TilPOUhoKRzuRTKaQbWsVcgpcCPlg0IHiPxI0,1903
392
402
  homeassistant-stubs/components/baf/sensor.pyi,sha256=TTeK_3_lrRvWLbQiCBv8fsNcbkovhbRD8ePwy38AjKE,1825
393
403
  homeassistant-stubs/components/baf/switch.pyi,sha256=2aOgG-eiY6WbaBX0sLuK1l1cy9oWeDDjWZFa3dsjW2s,1635
394
- homeassistant-stubs/components/bang_olufsen/__init__.pyi,sha256=D4mKFZ15Ja4nb9PiUodLHgf0RuqLTlVvgJcDHaUX0Mw,874
395
- homeassistant-stubs/components/bang_olufsen/config_flow.pyi,sha256=UnZ1irL-PcDFfFH-eBaDm2uzjdNTsMdHJR-MglaGu_E,1563
404
+ homeassistant-stubs/components/bang_olufsen/__init__.pyi,sha256=44w2o3go_IQP9Pt_j3ZJro4xI_TfUB0OGfm2NNGydJQ,952
405
+ homeassistant-stubs/components/bang_olufsen/config_flow.pyi,sha256=drCxsSxNcu6wPUKuZ3yKT7GQNo8c9YsgV3nJxj-V_8Y,1641
396
406
  homeassistant-stubs/components/bang_olufsen/const.pyi,sha256=-37p01TnwYZbugDIG0nqz0QmU_kxvZZZe_L3Q11fcG4,1995
397
407
  homeassistant-stubs/components/bang_olufsen/entity.pyi,sha256=EXOKAxy9ffOx8dt9LTUlljM5rN_2sqS4CRZeHx1C4sU,1167
398
408
  homeassistant-stubs/components/bang_olufsen/media_player.pyi,sha256=PeqC5amx3mem9P3t6J_ap-2Szinlcnu_RPsxDdgPsCo,5452
@@ -632,10 +642,6 @@ homeassistant-stubs/components/deconz/device_trigger.pyi,sha256=ieRPmh7NHmrjdUfc
632
642
  homeassistant-stubs/components/deconz/diagnostics.pyi,sha256=9bGYs_AyWufAsc-b5pqhbNSGEjfvfEyFVPUXQ3TYoVM,586
633
643
  homeassistant-stubs/components/deconz/errors.pyi,sha256=g8FEUQf1rpQdxJAANvX5v892GRfL9g91aAkct__Dnw0,265
634
644
  homeassistant-stubs/components/deconz/fan.pyi,sha256=TYvXRGvVfWQ_jCY7zhU_2W3h0jMStgporOuAmawmTDI,1667
635
- homeassistant-stubs/components/deconz/hub/__init__.pyi,sha256=i0ejKUP20btjIQdAycRv9AD_Bls5kCu5u0kuKiWxI5M,90
636
- homeassistant-stubs/components/deconz/hub/api.pyi,sha256=U5j5PA64OuzFpQrfJc9_XUbnjQ4cFg-HiZv9IStoYHM,516
637
- homeassistant-stubs/components/deconz/hub/config.pyi,sha256=6QSJQNs6cQTykuvz9y_fAm3MeOWmUgjiJXiblj7Mhhc,977
638
- homeassistant-stubs/components/deconz/hub/hub.pyi,sha256=4m2D18p--RRoZsQly_TjED5Hv5agoAjIBVVTSeUX4Rg,2445
639
645
  homeassistant-stubs/components/deconz/light.pyi,sha256=Sjwved3Kz4N93C4SidmFDu_LsNuhtZR0fae0yfan5Ac,3422
640
646
  homeassistant-stubs/components/deconz/lock.pyi,sha256=yPocVjIpNK-CUdsM3gQ8AsWPd9omGUyMii79aKjiIzo,986
641
647
  homeassistant-stubs/components/deconz/logbook.pyi,sha256=1XS4iN6blO7cg_Kfshs-IKdN2lBsaGqQYqNtQiuI8C0,2603
@@ -647,6 +653,10 @@ homeassistant-stubs/components/deconz/services.pyi,sha256=UmDNSka1uq5mZXQrIclx2q
647
653
  homeassistant-stubs/components/deconz/siren.pyi,sha256=i5xzyf9e_EWl3cB3bHi1r9qTjx3Var21BhnT4TiXweE,1078
648
654
  homeassistant-stubs/components/deconz/switch.pyi,sha256=vfq-ydRGL_rL9Ks1FpHMcxYS3pz_rxgDn9-kxVpUg2Y,984
649
655
  homeassistant-stubs/components/deconz/util.pyi,sha256=NpEj5BWqGQpa4mjjOV6WcQE5UNlFqJcy2PPalUMtPmQ,68
656
+ homeassistant-stubs/components/deconz/hub/__init__.pyi,sha256=i0ejKUP20btjIQdAycRv9AD_Bls5kCu5u0kuKiWxI5M,90
657
+ homeassistant-stubs/components/deconz/hub/api.pyi,sha256=U5j5PA64OuzFpQrfJc9_XUbnjQ4cFg-HiZv9IStoYHM,516
658
+ homeassistant-stubs/components/deconz/hub/config.pyi,sha256=6QSJQNs6cQTykuvz9y_fAm3MeOWmUgjiJXiblj7Mhhc,977
659
+ homeassistant-stubs/components/deconz/hub/hub.pyi,sha256=4m2D18p--RRoZsQly_TjED5Hv5agoAjIBVVTSeUX4Rg,2445
650
660
  homeassistant-stubs/components/default_config/__init__.pyi,sha256=pnttmkFK--Ke54sn4Q4ArshR8Z-H9-bcIVaIvhP893U,277
651
661
  homeassistant-stubs/components/demo/__init__.pyi,sha256=V6qzFFr3NNC-qM-UJputm7HZbZ6xyrdT-TOD2lfBHn8,1151
652
662
  homeassistant-stubs/components/demo/air_quality.pyi,sha256=W31UzalpTxKszLWVnW4CX9yCfJZMyi907DG-grnMtoA,940
@@ -1067,7 +1077,7 @@ homeassistant-stubs/components/fritzbox/cover.pyi,sha256=UfaYKjbEZgF_knTp5BzqF0q
1067
1077
  homeassistant-stubs/components/fritzbox/diagnostics.pyi,sha256=Egs6uet7c6qdbdaEp8BesXynOCteHbT0Xy1RTVD3cWo,510
1068
1078
  homeassistant-stubs/components/fritzbox/light.pyi,sha256=vJosWWZC0591l7UOpXd6i4Mh6WN2Zxy7duJwSiJAFUo,1595
1069
1079
  homeassistant-stubs/components/fritzbox/model.pyi,sha256=GI6AKUiAGzY_ebf8GB99_-8pz4yikrgI7yj2yloa8Nw,496
1070
- homeassistant-stubs/components/fritzbox/sensor.pyi,sha256=ju9BX3Oh_jZpGJU4HvJzNOSQ4QlSwg6G1owYj3jVi8g,3270
1080
+ homeassistant-stubs/components/fritzbox/sensor.pyi,sha256=r_ISk5vJZymOpI9_f1lYuB_dLaMRQTh2ykuGvniYP7U,3438
1071
1081
  homeassistant-stubs/components/fritzbox/switch.pyi,sha256=2wShHUa_Or7_bbcGSst7piqWMUF_T4vWzXXo8n_Pvbg,921
1072
1082
  homeassistant-stubs/components/fritzbox_callmonitor/__init__.pyi,sha256=pWvyklPDTZKoLabtqc5HaKIDvS5W8qPhrdw_tNOZXlc,936
1073
1083
  homeassistant-stubs/components/fritzbox_callmonitor/base.pyi,sha256=3J9Ng-W_Hyi3d25WA7F-l6O0cXGnrmisPD4-uuEignA,861
@@ -1502,7 +1512,7 @@ homeassistant-stubs/components/jvc_projector/__init__.pyi,sha256=OYmfhTCXSyvnnK-
1502
1512
  homeassistant-stubs/components/jvc_projector/binary_sensor.pyi,sha256=JA0dTacVmzY7GLIBCUW09SQTGipjKF8keAnYKUM5L-E,868
1503
1513
  homeassistant-stubs/components/jvc_projector/config_flow.pyi,sha256=nFQir2Xgkcy210W2VYPkGAP1tuISiYbOYYmt4TD9Vy4,1041
1504
1514
  homeassistant-stubs/components/jvc_projector/const.pyi,sha256=dT05nEDK8A9gKMUBxG3Cn_WPcT-a4v8wfMiDJ6nmD1c,40
1505
- homeassistant-stubs/components/jvc_projector/coordinator.pyi,sha256=CSRwEJVFgI3wckan2hXH1b_Nst-7ch8XWsHq0t985Zg,846
1515
+ homeassistant-stubs/components/jvc_projector/coordinator.pyi,sha256=nw4Trkv7DsSpBGsDn3fZOdQO8YvK2yNZLBcbzhyg8a4,869
1506
1516
  homeassistant-stubs/components/jvc_projector/entity.pyi,sha256=KXtuWw2lXn9hKYP_or384JMdrCETO9BaIz8KRz_Gh6o,770
1507
1517
  homeassistant-stubs/components/jvc_projector/remote.pyi,sha256=q9YG6BcolTO6WQTOawxlghI9yviOGM6yjxdBrMARIlA,1027
1508
1518
  homeassistant-stubs/components/jvc_projector/select.pyi,sha256=GAKhCissfnpo0ExAX_QcpHNXGp6kTS_8mV2VjjNictI,1772
@@ -1533,8 +1543,8 @@ homeassistant-stubs/components/knx/device_trigger.pyi,sha256=epT2yKCIkiFdO44NppD
1533
1543
  homeassistant-stubs/components/knx/diagnostics.pyi,sha256=9_gpNHVyA6NtbhXBNqQsv8bpEVqWooyw19fNO_JGxqc,757
1534
1544
  homeassistant-stubs/components/knx/expose.pyi,sha256=Fp-VSMzckYu7JvBOHZ8VbacNj6KRgzW_oLbYLHoj9Kg,2071
1535
1545
  homeassistant-stubs/components/knx/fan.pyi,sha256=KxVs1T437o2hsmO_94EkcThFMywchvRdBUrg2p4So2c,2122
1536
- homeassistant-stubs/components/knx/knx_entity.pyi,sha256=modviRWCfyGfiEJoUZGKZ4Pv52kd9-Hzf_rDYNEz0n8,1761
1537
- homeassistant-stubs/components/knx/light.pyi,sha256=DBmt4rJFFNGq3bG1nCgMo1ToNs7PRUfGLPzl20FH8ac,4291
1546
+ homeassistant-stubs/components/knx/knx_entity.pyi,sha256=MphTCTnJn1vaF1xJfaRrt8LczlrRjb_FJubeeLXRYBI,2099
1547
+ homeassistant-stubs/components/knx/light.pyi,sha256=n6iI1XNB_Ug2e5OovChveD1ZhXii-KqPUPOYSRhKQ8k,4014
1538
1548
  homeassistant-stubs/components/knx/notify.pyi,sha256=FD66xW1mnX6dA93mXPb2owZNQO85e_lU94KvfehAdLk,2135
1539
1549
  homeassistant-stubs/components/knx/number.pyi,sha256=XHRBO5weBRhy7PZOtZLN9eN4Yb99ZkuAYQo_CYVGqh4,1842
1540
1550
  homeassistant-stubs/components/knx/project.pyi,sha256=NEIaux5l7DT114fsut7cBz8WEOAu9bH2DV6KqzD4XTw,1840
@@ -1543,14 +1553,7 @@ homeassistant-stubs/components/knx/schema.pyi,sha256=qJygNCJsOa-DyDHVqtCZjgZfxrK
1543
1553
  homeassistant-stubs/components/knx/select.pyi,sha256=o3NmCVfdd8R7iQ7tq3zsbvvd75YASo5vACKSplYyb9E,1997
1544
1554
  homeassistant-stubs/components/knx/sensor.pyi,sha256=m4f1Cb4astKM4zARMEdZDTVxAam0sYtUkg3aRvqWf6o,3553
1545
1555
  homeassistant-stubs/components/knx/services.pyi,sha256=Jgj3lSHbQDS4jBsF_tZBRZ8ji-wCrRUXQ7pdPLLBd_E,1936
1546
- homeassistant-stubs/components/knx/storage/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1547
- homeassistant-stubs/components/knx/storage/config_store.pyi,sha256=lA_KH6s3Dp_lMNwPlasKsGr5yW9cE6tGIAv46tdRLzk,1974
1548
- homeassistant-stubs/components/knx/storage/const.pyi,sha256=Iz0pWMLKrX-SLaW57lfb3QY0siM7tJIo8Jsuqzv_p5o,710
1549
- homeassistant-stubs/components/knx/storage/entity_store_schema.pyi,sha256=VKy7FgNa5zMQfoigDvMUSwfeLh_tDKulWWeBthV4oPI,2372
1550
- homeassistant-stubs/components/knx/storage/entity_store_validation.pyi,sha256=oKK9FLT_HD5nnhMvTVDYs2s61a9Q8JcClFKnIi_rSK0,806
1551
- homeassistant-stubs/components/knx/storage/keyring.pyi,sha256=oTrE8GVCNVbPdtEwfER_jEpK_WT9aNzMYJAsF5ko1iA,548
1552
- homeassistant-stubs/components/knx/storage/knx_selector.pyi,sha256=drkfKxQaDXvxpJXf-ziMck_fQfwp-QFQMeUxLBXFFPE,1029
1553
- homeassistant-stubs/components/knx/switch.pyi,sha256=d-KFJXHZGGMap9c4vUjcTJYbrpM4KyTOUeQkztwjTtI,2625
1556
+ homeassistant-stubs/components/knx/switch.pyi,sha256=R1L8lmliPX3L1X5xLibuOqZA21u1J0GL7kYEhtunj1I,2348
1554
1557
  homeassistant-stubs/components/knx/telegrams.pyi,sha256=BiOEWLpGC9a2th91r4nCVlpGMV68m7RmUaVZdgaAUe8,1991
1555
1558
  homeassistant-stubs/components/knx/text.pyi,sha256=ZeUtqhfeeC3sgb7gNpkb_XgHw7YNgX43wkUFDBzqpDo,1792
1556
1559
  homeassistant-stubs/components/knx/time.pyi,sha256=vChzsWM1fdtgvg8NFNOQTWjKRh326Gx_KFjOUgg6FKs,1739
@@ -1558,6 +1561,13 @@ homeassistant-stubs/components/knx/trigger.pyi,sha256=jYgHNrPjutHvGopE28NZAGZQbf
1558
1561
  homeassistant-stubs/components/knx/validation.pyi,sha256=vT1rAC3zea2V_wWie61Wv0jUyvCbEFoQP19dyTXGgu4,818
1559
1562
  homeassistant-stubs/components/knx/weather.pyi,sha256=PlV_tKTS3i8QXVdIYlzT3JxkZYxxb2hwxUSeOCyEyoQ,1850
1560
1563
  homeassistant-stubs/components/knx/websocket.pyi,sha256=XJ-wfcDIWOvOztJcEkD23hoDsQb-taq0ByuRLuxaTHI,3622
1564
+ homeassistant-stubs/components/knx/storage/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1565
+ homeassistant-stubs/components/knx/storage/config_store.pyi,sha256=lA_KH6s3Dp_lMNwPlasKsGr5yW9cE6tGIAv46tdRLzk,1974
1566
+ homeassistant-stubs/components/knx/storage/const.pyi,sha256=Iz0pWMLKrX-SLaW57lfb3QY0siM7tJIo8Jsuqzv_p5o,710
1567
+ homeassistant-stubs/components/knx/storage/entity_store_schema.pyi,sha256=VKy7FgNa5zMQfoigDvMUSwfeLh_tDKulWWeBthV4oPI,2372
1568
+ homeassistant-stubs/components/knx/storage/entity_store_validation.pyi,sha256=oKK9FLT_HD5nnhMvTVDYs2s61a9Q8JcClFKnIi_rSK0,806
1569
+ homeassistant-stubs/components/knx/storage/keyring.pyi,sha256=oTrE8GVCNVbPdtEwfER_jEpK_WT9aNzMYJAsF5ko1iA,548
1570
+ homeassistant-stubs/components/knx/storage/knx_selector.pyi,sha256=drkfKxQaDXvxpJXf-ziMck_fQfwp-QFQMeUxLBXFFPE,1029
1561
1571
  homeassistant-stubs/components/kraken/__init__.pyi,sha256=e_5XJyq0DhzLh2H35IdXpBTe25EgXb79a7_jdA2X3bI,1770
1562
1572
  homeassistant-stubs/components/kraken/config_flow.pyi,sha256=RzWeA4GPx_LuBJhHbU7yLdyV4gIhpYQrmN0-t1C9y3k,1073
1563
1573
  homeassistant-stubs/components/kraken/const.pyi,sha256=PhQHgK83lZwzYmSbJou7FGk89Sv6gQZZ9NHGq3QcFZ4,564
@@ -1716,14 +1726,14 @@ homeassistant-stubs/components/logbook/const.pyi,sha256=2rfDv2Qoweqdmas_CKnpit_O
1716
1726
  homeassistant-stubs/components/logbook/helpers.pyi,sha256=FW1FY0TDNicOeSbBODBTVT9ij9CyV4BPlxLmESkQCCs,2249
1717
1727
  homeassistant-stubs/components/logbook/models.pyi,sha256=TYsSbJHm8s7hob_qn6bJ038ae5MvS2wq6rdrbNLW5fA,2743
1718
1728
  homeassistant-stubs/components/logbook/processor.pyi,sha256=mSn6A6x2b69WdKtCPQxCMHKKmb_OF5_wk8rUuYiyKvc,5487
1729
+ homeassistant-stubs/components/logbook/rest_api.pyi,sha256=Q0b_RTElX5eURirBI29obIZrmuqZObK71Wn5mQt0Tas,1304
1730
+ homeassistant-stubs/components/logbook/websocket_api.pyi,sha256=ZQ_exmALtO2bTn-OEt7Fq907bl7f6qtq-Wbv9ebE6Ac,3147
1719
1731
  homeassistant-stubs/components/logbook/queries/__init__.pyi,sha256=5aXeoNlI996zJSaf5k93_P3tMMJMU8MV0UPKEs4Bzpc,932
1720
1732
  homeassistant-stubs/components/logbook/queries/all.pyi,sha256=It6Uz3NjeZEx13XQHDrPeHnjpC60ZY6zgKOjEo5NOuw,913
1721
1733
  homeassistant-stubs/components/logbook/queries/common.pyi,sha256=VqXL61Kr45R52c3Q1pODATNVpxsUtMetArW1CpL8S7Y,2382
1722
1734
  homeassistant-stubs/components/logbook/queries/devices.pyi,sha256=6xfFOHfaVT5Pz6nHfWWrM0ck-5dXVWvSmo-FtE16Qvw,1482
1723
1735
  homeassistant-stubs/components/logbook/queries/entities.pyi,sha256=y9VtJnbX0VZKq5-CZrBh_GWJ2xtr9IVBRKsFkqNWUXo,1968
1724
1736
  homeassistant-stubs/components/logbook/queries/entities_and_devices.pyi,sha256=l5RcwWzEpsGRsfKrzwhmnXfJGgIGjHzeFNwWnEMIovE,2015
1725
- homeassistant-stubs/components/logbook/rest_api.pyi,sha256=Q0b_RTElX5eURirBI29obIZrmuqZObK71Wn5mQt0Tas,1304
1726
- homeassistant-stubs/components/logbook/websocket_api.pyi,sha256=ZQ_exmALtO2bTn-OEt7Fq907bl7f6qtq-Wbv9ebE6Ac,3147
1727
1737
  homeassistant-stubs/components/logger/__init__.pyi,sha256=3QJxwTswjO1hIhFuzlkfFtmbKNLyHRg2sNXpLVRPHbg,1203
1728
1738
  homeassistant-stubs/components/logger/const.pyi,sha256=RwIY6O6zSMWHpqRP5rd4e_lhnMOq-H40c6yUxKWNcyU,469
1729
1739
  homeassistant-stubs/components/logger/helpers.pyi,sha256=XmDT7GylNnNcX4M_ETPpqrC0Au1aw1nyH1FXrv9ZEIo,2535
@@ -1916,11 +1926,6 @@ homeassistant-stubs/components/mqtt/fan.pyi,sha256=RJds1ozBpSVG4bQeDzUSAkt7Olpxh
1916
1926
  homeassistant-stubs/components/mqtt/humidifier.pyi,sha256=GgEsYArbf5q60Ck0-jdzGHNYvU7undcQ_fkenCh6iY4,5039
1917
1927
  homeassistant-stubs/components/mqtt/image.pyi,sha256=hSBZLOPrM-WNXXQ0BauTwaSl3wQFVICEjQf0NNIyMdA,2884
1918
1928
  homeassistant-stubs/components/mqtt/lawn_mower.pyi,sha256=DwU1ddix7-l6O8d6fUdvGkMpAPo5tFe815DUbXPHq9s,3305
1919
- homeassistant-stubs/components/mqtt/light/__init__.pyi,sha256=KUpS5t9UKQZm74GtEja93_QApXbFsRYQ8zDgqvYngKo,1495
1920
- homeassistant-stubs/components/mqtt/light/schema.pyi,sha256=uWMGNFfSJQ7x4bYFxOVLTa2GCgkVv6NHSt5fw0osgpA,118
1921
- homeassistant-stubs/components/mqtt/light/schema_basic.pyi,sha256=UfC82pBqpc9Ssda5qqx4Khx_oXuJwGrkNoUxhNNj9MY,6344
1922
- homeassistant-stubs/components/mqtt/light/schema_json.pyi,sha256=vd6CrZXlNuz5LiPi5CKlbmYUC5mQWiBsjpaoCzNEtzI,4994
1923
- homeassistant-stubs/components/mqtt/light/schema_template.pyi,sha256=BC2qr-nlMClmzYkwLMBXyrdesX-rXOJJQKz7KIlM9uU,3606
1924
1929
  homeassistant-stubs/components/mqtt/lock.pyi,sha256=UMs8CevKS46scIrQCvTYaKy85zY2eAkL7zcK9PDPtck,3647
1925
1930
  homeassistant-stubs/components/mqtt/mixins.pyi,sha256=P4h4US32is96ajSoS6N--lEbuue4nDRztP_pdeXo1bU,13637
1926
1931
  homeassistant-stubs/components/mqtt/models.pyi,sha256=m2i2-S2TqYhi04I76in8TYNycRkYx8RMe4Ks0M5RRLk,6129
@@ -1941,6 +1946,11 @@ homeassistant-stubs/components/mqtt/util.pyi,sha256=MOlR-JtdujTcteuJa-ZdZufDjxKP
1941
1946
  homeassistant-stubs/components/mqtt/vacuum.pyi,sha256=7MB5hna2aL5nDDIIjjEOW-8Lo1zcJqh87b96Y5frvuI,4569
1942
1947
  homeassistant-stubs/components/mqtt/valve.pyi,sha256=F2MC9I2F5SdG3oT9SrTVQT4lWjIIs6aUEvaWSZsE3DY,4412
1943
1948
  homeassistant-stubs/components/mqtt/water_heater.pyi,sha256=Hga2tzifqNkQaS4Iqbe0tqZMmn2Jh6WSpU3Ar_dODXk,4688
1949
+ homeassistant-stubs/components/mqtt/light/__init__.pyi,sha256=KUpS5t9UKQZm74GtEja93_QApXbFsRYQ8zDgqvYngKo,1495
1950
+ homeassistant-stubs/components/mqtt/light/schema.pyi,sha256=uWMGNFfSJQ7x4bYFxOVLTa2GCgkVv6NHSt5fw0osgpA,118
1951
+ homeassistant-stubs/components/mqtt/light/schema_basic.pyi,sha256=UfC82pBqpc9Ssda5qqx4Khx_oXuJwGrkNoUxhNNj9MY,6344
1952
+ homeassistant-stubs/components/mqtt/light/schema_json.pyi,sha256=vd6CrZXlNuz5LiPi5CKlbmYUC5mQWiBsjpaoCzNEtzI,4994
1953
+ homeassistant-stubs/components/mqtt/light/schema_template.pyi,sha256=BC2qr-nlMClmzYkwLMBXyrdesX-rXOJJQKz7KIlM9uU,3606
1944
1954
  homeassistant-stubs/components/my/__init__.pyi,sha256=hd2hje6JtLWqUf275vSS_yosSyxaeih0E721oaXfDwM,349
1945
1955
  homeassistant-stubs/components/mysensors/__init__.pyi,sha256=SASRxT8rD2gtLp8oTq3zFCoZK1KsB3-X1QUvy-fl-jg,1606
1946
1956
  homeassistant-stubs/components/mysensors/binary_sensor.pyi,sha256=2FdFrARPPtokIWCWhhZflsmKg4tmUURpXLH5ni-WfCA,1781
@@ -2152,6 +2162,22 @@ homeassistant-stubs/components/overkiz/alarm_control_panel.pyi,sha256=veqIvDIboG
2152
2162
  homeassistant-stubs/components/overkiz/binary_sensor.pyi,sha256=zf4DFChZ_5Q6zZ7TKAH7jAgEZSm3bo0hSzaYyeFZve0,1694
2153
2163
  homeassistant-stubs/components/overkiz/button.pyi,sha256=sFEk0ps7IQsqxcTclx2orZrXB8Hvio5fUK0o_ty5giI,1566
2154
2164
  homeassistant-stubs/components/overkiz/climate.pyi,sha256=BmZ7cUHU0QdK_FnS407YaoHeESCiOLPZ_vNzF4YjMCI,812
2165
+ homeassistant-stubs/components/overkiz/config_flow.pyi,sha256=bJVuorEXsB2pV76s3KWzG1pTDRz4ftcc_EGjaHrOjWU,2273
2166
+ homeassistant-stubs/components/overkiz/const.pyi,sha256=oykMxASm1hKzi1GdzdD7Ttd9N2PytuZfh3wOFkC-cyA,1269
2167
+ homeassistant-stubs/components/overkiz/coordinator.pyi,sha256=ksP4qlVgNtg02HG1Brw6GYJxMvOvj1II5N_EA4LJRNU,2254
2168
+ homeassistant-stubs/components/overkiz/cover.pyi,sha256=peds2coTUb0eknUmJ07_IeuleP-IYQSLvEnpZVkUXx4,746
2169
+ homeassistant-stubs/components/overkiz/diagnostics.pyi,sha256=Dj3_eFGYjLL5eFehtKbXS1O69L2s1q38tspiFIYyxz4,621
2170
+ homeassistant-stubs/components/overkiz/entity.pyi,sha256=ef8qlYwQRiclWbtNoe1XAURCbQ2nbqoK9j82Jvrglow,1411
2171
+ homeassistant-stubs/components/overkiz/executor.pyi,sha256=r2Jo3tT617tIEKeTrcwnLJa0rrEd1jxiQtold2vAtxA,1444
2172
+ homeassistant-stubs/components/overkiz/light.pyi,sha256=KiH63_1a7HC8aHNJBchbw_00xoE-90lbXR5022Y9c2U,1386
2173
+ homeassistant-stubs/components/overkiz/lock.pyi,sha256=v8cKGUcnZ4Fkcuz7FHjrv2kZU93UrpGUkU5VEGIt1mc,869
2174
+ homeassistant-stubs/components/overkiz/number.pyi,sha256=R5LICHewIe1lSw0yhDhXSIy94FdMtpwAoulZWVvTzHs,2643
2175
+ homeassistant-stubs/components/overkiz/scene.pyi,sha256=9k6YbBm9Zgtz-S37Xsba3EEejov-erQEWv-dFXLfpJ8,951
2176
+ homeassistant-stubs/components/overkiz/select.pyi,sha256=VPn98Y9MDlFCn7Ztw8ETLWKdO7rEcJiIU3iBwi8fKj0,2213
2177
+ homeassistant-stubs/components/overkiz/sensor.pyi,sha256=xEvncCK3VhHRecMnwcOt3EAz_7Ol1LUlpZmKUadq9Ks,3050
2178
+ homeassistant-stubs/components/overkiz/siren.pyi,sha256=pdyPnShU02nCoRsJs9NY2JXS3ilnYEbKaHY7wcJG14M,1016
2179
+ homeassistant-stubs/components/overkiz/switch.pyi,sha256=LQlrGG0j92Ywd6E4kw9R5e9LP0-cpSXMYxWDnRBVzB4,2058
2180
+ homeassistant-stubs/components/overkiz/water_heater.pyi,sha256=slpc_gKq2_-BOcv3EYYlmgGVPXyNCikV1HoJppXxyMI,738
2155
2181
  homeassistant-stubs/components/overkiz/climate_entities/__init__.pyi,sha256=5LmpJf2cjJ_gsAj6BdSOepWiF7-dkiqWeuFgZZ1Jqog,1904
2156
2182
  homeassistant-stubs/components/overkiz/climate_entities/atlantic_electrical_heater.pyi,sha256=9F7HF3_t8J3AzmrXdKQAjNutrWrChZAq6BDwPam-Op0,1211
2157
2183
  homeassistant-stubs/components/overkiz/climate_entities/atlantic_electrical_heater_with_adjustable_temperature_setpoint.pyi,sha256=uOFOt32BZllfDhyvks61Vhy-vOYgZLYZcnYmSb6xw-I,1848
@@ -2166,26 +2192,10 @@ homeassistant-stubs/components/overkiz/climate_entities/hitachi_air_to_air_heat_
2166
2192
  homeassistant-stubs/components/overkiz/climate_entities/somfy_heating_temperature_interface.pyi,sha256=DXLr2IFZ6djtKDZ97nj1LSnmsaJ9r-QLA7Jv4fcA2-Q,1906
2167
2193
  homeassistant-stubs/components/overkiz/climate_entities/somfy_thermostat.pyi,sha256=fUR288GYs1oi2FfyZH2nr5PK0I-gSu7Et_g9QknS98U,1831
2168
2194
  homeassistant-stubs/components/overkiz/climate_entities/valve_heating_temperature_interface.pyi,sha256=5X-PMHb5O2t2jxwvDtnEQHZhPBHC0BS0yYXKb8_P23Y,1824
2169
- homeassistant-stubs/components/overkiz/config_flow.pyi,sha256=bJVuorEXsB2pV76s3KWzG1pTDRz4ftcc_EGjaHrOjWU,2273
2170
- homeassistant-stubs/components/overkiz/const.pyi,sha256=oykMxASm1hKzi1GdzdD7Ttd9N2PytuZfh3wOFkC-cyA,1269
2171
- homeassistant-stubs/components/overkiz/coordinator.pyi,sha256=ksP4qlVgNtg02HG1Brw6GYJxMvOvj1II5N_EA4LJRNU,2254
2172
- homeassistant-stubs/components/overkiz/cover.pyi,sha256=peds2coTUb0eknUmJ07_IeuleP-IYQSLvEnpZVkUXx4,746
2173
2195
  homeassistant-stubs/components/overkiz/cover_entities/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2174
2196
  homeassistant-stubs/components/overkiz/cover_entities/awning.pyi,sha256=gZl81d3PfXwDbd3C3yto5XG560BsjbMqWoTK9Pyw3qs,915
2175
2197
  homeassistant-stubs/components/overkiz/cover_entities/generic_cover.pyi,sha256=dI40Fb39y9W8rwtUwgSu1hN_MWPO-Gr55kFJcJvO_gk,1273
2176
2198
  homeassistant-stubs/components/overkiz/cover_entities/vertical_cover.pyi,sha256=85YU8lQXafwgDMPqpZgqlzqGlJri9GXr560dcl01ejM,1694
2177
- homeassistant-stubs/components/overkiz/diagnostics.pyi,sha256=Dj3_eFGYjLL5eFehtKbXS1O69L2s1q38tspiFIYyxz4,621
2178
- homeassistant-stubs/components/overkiz/entity.pyi,sha256=ef8qlYwQRiclWbtNoe1XAURCbQ2nbqoK9j82Jvrglow,1411
2179
- homeassistant-stubs/components/overkiz/executor.pyi,sha256=r2Jo3tT617tIEKeTrcwnLJa0rrEd1jxiQtold2vAtxA,1444
2180
- homeassistant-stubs/components/overkiz/light.pyi,sha256=KiH63_1a7HC8aHNJBchbw_00xoE-90lbXR5022Y9c2U,1386
2181
- homeassistant-stubs/components/overkiz/lock.pyi,sha256=v8cKGUcnZ4Fkcuz7FHjrv2kZU93UrpGUkU5VEGIt1mc,869
2182
- homeassistant-stubs/components/overkiz/number.pyi,sha256=R5LICHewIe1lSw0yhDhXSIy94FdMtpwAoulZWVvTzHs,2643
2183
- homeassistant-stubs/components/overkiz/scene.pyi,sha256=9k6YbBm9Zgtz-S37Xsba3EEejov-erQEWv-dFXLfpJ8,951
2184
- homeassistant-stubs/components/overkiz/select.pyi,sha256=VPn98Y9MDlFCn7Ztw8ETLWKdO7rEcJiIU3iBwi8fKj0,2213
2185
- homeassistant-stubs/components/overkiz/sensor.pyi,sha256=xEvncCK3VhHRecMnwcOt3EAz_7Ol1LUlpZmKUadq9Ks,3050
2186
- homeassistant-stubs/components/overkiz/siren.pyi,sha256=pdyPnShU02nCoRsJs9NY2JXS3ilnYEbKaHY7wcJG14M,1016
2187
- homeassistant-stubs/components/overkiz/switch.pyi,sha256=LQlrGG0j92Ywd6E4kw9R5e9LP0-cpSXMYxWDnRBVzB4,2058
2188
- homeassistant-stubs/components/overkiz/water_heater.pyi,sha256=slpc_gKq2_-BOcv3EYYlmgGVPXyNCikV1HoJppXxyMI,738
2189
2199
  homeassistant-stubs/components/overkiz/water_heater_entities/__init__.pyi,sha256=Fn3PtnxL3WhUEyCspkKb8tCvVNRer0Tsv8HRsFxQ2UI,518
2190
2200
  homeassistant-stubs/components/overkiz/water_heater_entities/atlantic_domestic_hot_water_production_mlb_component.pyi,sha256=LQ5osI01GvIeERSUf9z1RwI8gGXRGRdo3j3uA7O7qZ4,1655
2191
2201
  homeassistant-stubs/components/overkiz/water_heater_entities/atlantic_pass_apc_dhw.pyi,sha256=oikcX7Fwz7bdZ5MhkEwSoulPz4zo58cbV8iy1fvziNA,1216
@@ -2350,15 +2360,6 @@ homeassistant-stubs/components/recollect_waste/entity.pyi,sha256=dDygTgDLpKqP90L
2350
2360
  homeassistant-stubs/components/recollect_waste/sensor.pyi,sha256=Op_BBbGLvvRBDATxcVneApXBmsaLh-kXZ3qYKziEE4M,1542
2351
2361
  homeassistant-stubs/components/recollect_waste/util.pyi,sha256=dkbQSgcqtp0HYr16J7GgJRPm-vW_21AHpYpBTbpiomI,353
2352
2362
  homeassistant-stubs/components/recorder/__init__.pyi,sha256=10z5DQ17UYdDCgoJkhUs3aUbbxOwciU8GTtdqwk_Asg,2479
2353
- homeassistant-stubs/components/recorder/auto_repairs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2354
- homeassistant-stubs/components/recorder/auto_repairs/events/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2355
- homeassistant-stubs/components/recorder/auto_repairs/events/schema.pyi,sha256=mrr3qEjBBsnYul8vA1bmrUCplTRM32cHJi3VSZ1U868,604
2356
- homeassistant-stubs/components/recorder/auto_repairs/schema.pyi,sha256=49BwhW8wax66k5SVzZXDwq8O2HMmPmgHOTpaCLsDuOo,1933
2357
- homeassistant-stubs/components/recorder/auto_repairs/states/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2358
- homeassistant-stubs/components/recorder/auto_repairs/states/schema.pyi,sha256=zJvQ9uJRhYmg3dXrpVQBspj1Z15xkLf9p5M-uxy4sLI,681
2359
- homeassistant-stubs/components/recorder/auto_repairs/statistics/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2360
- homeassistant-stubs/components/recorder/auto_repairs/statistics/duplicates.pyi,sha256=4j-8NcaWkul0-fzz6XfcrR3G5LEtBC-xTSv7V0abeL8,1266
2361
- homeassistant-stubs/components/recorder/auto_repairs/statistics/schema.pyi,sha256=ZGHKXHbB7gs99L-dK6HZ9hZh7eBXF9_s_cfMliOvSmM,720
2362
2363
  homeassistant-stubs/components/recorder/backup.pyi,sha256=GsFwE8bwZazWZW7vHY7-9f4cwr6R1tPDGdjYA382Wmk,425
2363
2364
  homeassistant-stubs/components/recorder/basic_websocket_api.pyi,sha256=PYHwQWF0vU1phTZaCXawTsK9WqyjYqM2FCkCQjnyH0M,384
2364
2365
  homeassistant-stubs/components/recorder/const.pyi,sha256=Q2w86v6mZRzjlqqvxocaq1Jg51yWUMNuVhiqc5bHXZ4,1484
@@ -2367,12 +2368,30 @@ homeassistant-stubs/components/recorder/db_schema.pyi,sha256=YjMSn1IwW3TNlbV1CwQ
2367
2368
  homeassistant-stubs/components/recorder/entity_registry.pyi,sha256=KQkJUlsXDdEHhnzy2f58byStPFplR3BoANWzwPIhbEM,578
2368
2369
  homeassistant-stubs/components/recorder/executor.pyi,sha256=jZUJLt2lp1TuQy9NnaK8zOaENozPLxbvsUzZQu9i0RQ,667
2369
2370
  homeassistant-stubs/components/recorder/filters.pyi,sha256=l8qnsQC0mhUcCJauqv6IDLFT0_EV_iX2u6iz3yr0Lww,2703
2371
+ homeassistant-stubs/components/recorder/migration.pyi,sha256=VkIs1A1-3PCYNakiVkTGsVSh2aioN4CwQIePEmztZr0,18571
2372
+ homeassistant-stubs/components/recorder/pool.pyi,sha256=_4F-U4XuPVmH1XNcxrj2fud9gvdbBuHEKfm3QiUZg3I,1173
2373
+ homeassistant-stubs/components/recorder/purge.pyi,sha256=rFgTAV4Un0h6OP7FdKTOa6eiP_I-Owf6dXYC2bR2JZ4,5546
2374
+ homeassistant-stubs/components/recorder/queries.pyi,sha256=yRoXtNJiBJHx1yZtTW9JPUzK-ba-NmVQ8PqZ6fLGOzA,8616
2375
+ homeassistant-stubs/components/recorder/repack.pyi,sha256=uT-A8NGsSHYz1fQo2pVBFVRzp0z0GhMiwN5Ydl4bUN4,247
2376
+ homeassistant-stubs/components/recorder/services.pyi,sha256=VULd5jf1yak05XG2PL4xrwHp5any94qRVhxdc14hdHI,1429
2377
+ homeassistant-stubs/components/recorder/statistics.pyi,sha256=lER48FXkIx9hWll41_0tc1BzwLX4_sIMb-i57_Kv10w,17512
2378
+ homeassistant-stubs/components/recorder/tasks.pyi,sha256=ktSXRYOXI7yKvDrOxXSfqa2JK8GJ-11Q5ifhAn6ehwE,5682
2379
+ homeassistant-stubs/components/recorder/util.pyi,sha256=s-AKpQBt-sWJltaAoXLqDlncKtLzYx0j5wK3ZsG2o44,5677
2380
+ homeassistant-stubs/components/recorder/websocket_api.pyi,sha256=4TfxG95G-L4elimyruJO5PQLtwiIDx8ownJVrFWSfpA,4268
2381
+ homeassistant-stubs/components/recorder/auto_repairs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2382
+ homeassistant-stubs/components/recorder/auto_repairs/schema.pyi,sha256=49BwhW8wax66k5SVzZXDwq8O2HMmPmgHOTpaCLsDuOo,1933
2383
+ homeassistant-stubs/components/recorder/auto_repairs/events/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2384
+ homeassistant-stubs/components/recorder/auto_repairs/events/schema.pyi,sha256=mrr3qEjBBsnYul8vA1bmrUCplTRM32cHJi3VSZ1U868,604
2385
+ homeassistant-stubs/components/recorder/auto_repairs/states/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2386
+ homeassistant-stubs/components/recorder/auto_repairs/states/schema.pyi,sha256=zJvQ9uJRhYmg3dXrpVQBspj1Z15xkLf9p5M-uxy4sLI,681
2387
+ homeassistant-stubs/components/recorder/auto_repairs/statistics/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2388
+ homeassistant-stubs/components/recorder/auto_repairs/statistics/duplicates.pyi,sha256=4j-8NcaWkul0-fzz6XfcrR3G5LEtBC-xTSv7V0abeL8,1266
2389
+ homeassistant-stubs/components/recorder/auto_repairs/statistics/schema.pyi,sha256=ZGHKXHbB7gs99L-dK6HZ9hZh7eBXF9_s_cfMliOvSmM,720
2370
2390
  homeassistant-stubs/components/recorder/history/__init__.pyi,sha256=Tibqdb5DGrgUDIZNSTvc2pUrGoi7243DD1cBQ45LxZI,2102
2371
2391
  homeassistant-stubs/components/recorder/history/common.pyi,sha256=x-4Swd7277gcHwDm3h_jr65bXPtPELdnTbaNuTyuq4g,153
2372
2392
  homeassistant-stubs/components/recorder/history/const.pyi,sha256=QiVq0ILuLWh_v0c_ZAhhaJuS_a2B4yKXQHgy97r81rs,212
2373
2393
  homeassistant-stubs/components/recorder/history/legacy.pyi,sha256=CtWFpp3KmHhy5d1icMSN6fHOUmo3By6xzFWwAYZRSrs,5527
2374
2394
  homeassistant-stubs/components/recorder/history/modern.pyi,sha256=IdzzRfC_HM2qNIDrUXG6Dj9-f0CNYpb5oqkip8uQbFU,5237
2375
- homeassistant-stubs/components/recorder/migration.pyi,sha256=VkIs1A1-3PCYNakiVkTGsVSh2aioN4CwQIePEmztZr0,18571
2376
2395
  homeassistant-stubs/components/recorder/models/__init__.pyi,sha256=rIegeqBnmMKhv3iJEp_1YMdjzQcSbIDwOvUmFfRQanw,1887
2377
2396
  homeassistant-stubs/components/recorder/models/context.pyi,sha256=ozPnonl9i-pXBokFkAq5QTEtsxj8Yfb7M2M444kyFRI,394
2378
2397
  homeassistant-stubs/components/recorder/models/database.pyi,sha256=59cqL8iEiBTQrF-n762RORfm9Q_xaJ8OW_7PbARe3WY,554
@@ -2382,12 +2401,6 @@ homeassistant-stubs/components/recorder/models/state.pyi,sha256=PtuGMl2qCV_s8MNJ
2382
2401
  homeassistant-stubs/components/recorder/models/state_attributes.pyi,sha256=xwVV4FNPDn5YE8PvYnnsXkEqZ-oMlgqvlSxfGjXfsWk,285
2383
2402
  homeassistant-stubs/components/recorder/models/statistics.pyi,sha256=mD2n8pKvXZc7F9mXkWtmrsHzB1xGFf-SD6LQhhdQD34,1319
2384
2403
  homeassistant-stubs/components/recorder/models/time.pyi,sha256=FyOrnrVoPMklaiNOYBUGg2p9rSiE5mO-kKjXWY93vAU,632
2385
- homeassistant-stubs/components/recorder/pool.pyi,sha256=_4F-U4XuPVmH1XNcxrj2fud9gvdbBuHEKfm3QiUZg3I,1173
2386
- homeassistant-stubs/components/recorder/purge.pyi,sha256=rFgTAV4Un0h6OP7FdKTOa6eiP_I-Owf6dXYC2bR2JZ4,5546
2387
- homeassistant-stubs/components/recorder/queries.pyi,sha256=yRoXtNJiBJHx1yZtTW9JPUzK-ba-NmVQ8PqZ6fLGOzA,8616
2388
- homeassistant-stubs/components/recorder/repack.pyi,sha256=uT-A8NGsSHYz1fQo2pVBFVRzp0z0GhMiwN5Ydl4bUN4,247
2389
- homeassistant-stubs/components/recorder/services.pyi,sha256=VULd5jf1yak05XG2PL4xrwHp5any94qRVhxdc14hdHI,1429
2390
- homeassistant-stubs/components/recorder/statistics.pyi,sha256=lER48FXkIx9hWll41_0tc1BzwLX4_sIMb-i57_Kv10w,17512
2391
2404
  homeassistant-stubs/components/recorder/system_health/__init__.pyi,sha256=q2LlaYg8VEBO51qUY9LwPPnmqFUfhn7DsEkRakEnOGg,763
2392
2405
  homeassistant-stubs/components/recorder/system_health/mysql.pyi,sha256=c_z5E_CiWWIki-QYEos1FMlZUIa2T0xOuHLWbLgpEt4,132
2393
2406
  homeassistant-stubs/components/recorder/system_health/postgresql.pyi,sha256=c_z5E_CiWWIki-QYEos1FMlZUIa2T0xOuHLWbLgpEt4,132
@@ -2400,9 +2413,6 @@ homeassistant-stubs/components/recorder/table_managers/state_attributes.pyi,sha2
2400
2413
  homeassistant-stubs/components/recorder/table_managers/states.pyi,sha256=CtMsPngDOfD9r8Kr1VMnzhu2p7PHkRevzE28KIgCOUo,836
2401
2414
  homeassistant-stubs/components/recorder/table_managers/states_meta.pyi,sha256=eoAC195GdOyZIM3-RHGVrWMhVR_1oCqjNFpWFCm6OYY,1463
2402
2415
  homeassistant-stubs/components/recorder/table_managers/statistics_meta.pyi,sha256=9mLK8SvSaK_-kV75Ook95OV1PkhwKZWM3T6HHE6tgMY,2756
2403
- homeassistant-stubs/components/recorder/tasks.pyi,sha256=ktSXRYOXI7yKvDrOxXSfqa2JK8GJ-11Q5ifhAn6ehwE,5682
2404
- homeassistant-stubs/components/recorder/util.pyi,sha256=s-AKpQBt-sWJltaAoXLqDlncKtLzYx0j5wK3ZsG2o44,5677
2405
- homeassistant-stubs/components/recorder/websocket_api.pyi,sha256=4TfxG95G-L4elimyruJO5PQLtwiIDx8ownJVrFWSfpA,4268
2406
2416
  homeassistant-stubs/components/remote/__init__.pyi,sha256=H8tu1dZvoHkzIQF75vWRhwG9ZTfPT0GKrIyZ6aYuJJs,3805
2407
2417
  homeassistant-stubs/components/remote/device_action.pyi,sha256=6Vfp_kSun-CL4YEEv4I_O2A81JnXangKitq86wbdOqY,827
2408
2418
  homeassistant-stubs/components/remote/device_condition.pyi,sha256=PjpIeqIXc4BrnDcNNu1cqcmtcGbPeumAd5XnR2-WYi4,817
@@ -2625,7 +2635,6 @@ homeassistant-stubs/components/sfr_box/models.pyi,sha256=RTiW4j-fUIztQBiB-sfYqeD
2625
2635
  homeassistant-stubs/components/sfr_box/sensor.pyi,sha256=XZ030nnjCaw-Gg_N51qy4PWJ1l1T0e6v4MmShiB7_Mk,2732
2626
2636
  homeassistant-stubs/components/shelly/__init__.pyi,sha256=ShO0Bs6P8_lIMYUyHLRJRIAohYYAseB79PHNTNXIccg,2250
2627
2637
  homeassistant-stubs/components/shelly/binary_sensor.pyi,sha256=foelmZWQROcHKseTPfqHiRjuw5MZ7Gz_njly6jNs_R4,4598
2628
- homeassistant-stubs/components/shelly/bluetooth/__init__.pyi,sha256=HT0hgl_ciFlucyyluKSuO_9H8L0RSlaSj3lY81zCwwc,530
2629
2638
  homeassistant-stubs/components/shelly/button.pyi,sha256=K1doJxslfVaedeQIszGzDi0DFjeU3TIVGwdJ9zU7kDc,2594
2630
2639
  homeassistant-stubs/components/shelly/climate.pyi,sha256=zUk1BNjKWXyuFpoXz6W_Hx7I_p3fUu4AvB-tDD0Bciw,5573
2631
2640
  homeassistant-stubs/components/shelly/config_flow.pyi,sha256=Lcf2KunZYOUzfVq9Z_JMOja7dBiWDB5y839du_Y3Eys,3451
@@ -2646,6 +2655,7 @@ homeassistant-stubs/components/shelly/text.pyi,sha256=FwCLH7yN9XlJOyoM0amiZgIQSL
2646
2655
  homeassistant-stubs/components/shelly/update.pyi,sha256=mHGHjj9EhDepzlkFfj0WZOoRWzTdx5x5BTs38H2TrGo,4845
2647
2656
  homeassistant-stubs/components/shelly/utils.pyi,sha256=tlRjpfQDlmopseot2TbPxD_3TxuDIoSJ-w_9nuaCXnA,5128
2648
2657
  homeassistant-stubs/components/shelly/valve.pyi,sha256=OLl0lsvDn0elf9g54gcckRz9Tq9bPEmjNPwlq-ipT4I,2443
2658
+ homeassistant-stubs/components/shelly/bluetooth/__init__.pyi,sha256=HT0hgl_ciFlucyyluKSuO_9H8L0RSlaSj3lY81zCwwc,530
2649
2659
  homeassistant-stubs/components/shopping_list/__init__.pyi,sha256=SAuctSuQY53LFbrl4-e5gFG-SOLppLqJOLdyGlp4Tr4,4669
2650
2660
  homeassistant-stubs/components/shopping_list/config_flow.pyi,sha256=pZ_rPWc8tyyDavIxaSEPrQt0kFfswEUmqpjih7qIGbk,482
2651
2661
  homeassistant-stubs/components/shopping_list/const.pyi,sha256=V3v2bjwmRf0bVxTX2Tz7q2PfF7e_vJHD8_MnOzLLhS8,354
@@ -2780,7 +2790,7 @@ homeassistant-stubs/components/sun/sensor.pyi,sha256=fhaVfFxUdbdbnVs8Q0Jp2mQQXEU
2780
2790
  homeassistant-stubs/components/sun/trigger.pyi,sha256=hjdVz5vwuUwmbsKZM0Liy3hIXBWY_G9dpDtuC-xTflg,803
2781
2791
  homeassistant-stubs/components/surepetcare/__init__.pyi,sha256=PqwhLBa2n6oPZMxnzCIGHYrVwD5Jyd22BTAhVvd0IWM,931
2782
2792
  homeassistant-stubs/components/surepetcare/binary_sensor.pyi,sha256=2WH_cOryxmJCLBrog6smU-ovdiy5c4fS3FaNxXrFLYE,2048
2783
- homeassistant-stubs/components/surepetcare/config_flow.pyi,sha256=BsnHPK1qJtVSOXZA4I7jbeiJwe_L9Eq62FE3SyF-RJQ,1141
2793
+ homeassistant-stubs/components/surepetcare/config_flow.pyi,sha256=ipVKwFdZbEZy-ZYiBClrX3Mz0sfP8mrYQITKjBzZhN8,990
2784
2794
  homeassistant-stubs/components/surepetcare/const.pyi,sha256=GTd4mgCeqWxDDccLYudb0xceAh3KtLSqy2-xTcJOvZ0,346
2785
2795
  homeassistant-stubs/components/surepetcare/coordinator.pyi,sha256=ErlTJ_Tn3PjUJ1rsYG4aq5EStpf_ZXzqAncxLAlpi0Q,1397
2786
2796
  homeassistant-stubs/components/surepetcare/entity.pyi,sha256=D70wJz_WJRNiVI45AbIr-FvsVQAyr0FpkUAnko47wZY,916
@@ -3074,6 +3084,11 @@ homeassistant-stubs/components/unifi/device_tracker.pyi,sha256=5Tnnk0rlx8rWaGyOz
3074
3084
  homeassistant-stubs/components/unifi/diagnostics.pyi,sha256=WtPzraJZq_Wp5-gNIR6plxwvrbg2le87kCoc6p1ecAU,975
3075
3085
  homeassistant-stubs/components/unifi/entity.pyi,sha256=-CqKixDBrQAkOHpT_9OmAwwBVMArm5WyL_VUi5KYFO8,3709
3076
3086
  homeassistant-stubs/components/unifi/errors.pyi,sha256=h1_5yfcesViHv8-8Bd-geo5moFY7_SkjvvcN3ydwaHo,339
3087
+ homeassistant-stubs/components/unifi/image.pyi,sha256=U99cFTuHBydofWCjzcK5tXSIwKgQKyCqOFIk6knLJ5g,2460
3088
+ homeassistant-stubs/components/unifi/sensor.pyi,sha256=0OL3PpFyiHg97-ANH4eVzvqO1dDytl0-jz_LBQ2C1A0,5807
3089
+ homeassistant-stubs/components/unifi/services.pyi,sha256=qI0CBk86u0vJLN5H6Rn-wKkMy_7vbXYamVNLh8uQuIM,852
3090
+ homeassistant-stubs/components/unifi/switch.pyi,sha256=tWGGxmw6QOHlc6ZYBwJJ5jASgBBmeWhXPiZjfM4LAH8,4398
3091
+ homeassistant-stubs/components/unifi/update.pyi,sha256=8v2yXmpSxhCg7Y7Ij3lSzBS3Ue1VXxOiqk0zIsVBpDs,2666
3077
3092
  homeassistant-stubs/components/unifi/hub/__init__.pyi,sha256=K2teqMCWeW8pZuBy8DFHzx6gKkLEMQENsClr1SW6tco,86
3078
3093
  homeassistant-stubs/components/unifi/hub/api.pyi,sha256=wwqzaOyGcDlUuSmEjHkBtkuAx1rEimoDZUftuaev4xg,661
3079
3094
  homeassistant-stubs/components/unifi/hub/config.pyi,sha256=nysp8Xr1YX9STOQokvRcdtCBuF0habYDYWgILo4eK_k,2404
@@ -3081,11 +3096,6 @@ homeassistant-stubs/components/unifi/hub/entity_helper.pyi,sha256=67JmXMvtCpyMX4
3081
3096
  homeassistant-stubs/components/unifi/hub/entity_loader.pyi,sha256=mlpRE8-RmjYLLYt8zr2nqXIBN-7_UcvgxCU4UiniaaM,1959
3082
3097
  homeassistant-stubs/components/unifi/hub/hub.pyi,sha256=syjJxVmOpv_WQVeAbi4tI84EnW4N_Zx4eBhv5aXpP90,2002
3083
3098
  homeassistant-stubs/components/unifi/hub/websocket.pyi,sha256=ah4FRwEgyW2bg_DNueSIcaq8WN0ieGv0tcY8K6zcDA8,1017
3084
- homeassistant-stubs/components/unifi/image.pyi,sha256=U99cFTuHBydofWCjzcK5tXSIwKgQKyCqOFIk6knLJ5g,2460
3085
- homeassistant-stubs/components/unifi/sensor.pyi,sha256=0OL3PpFyiHg97-ANH4eVzvqO1dDytl0-jz_LBQ2C1A0,5807
3086
- homeassistant-stubs/components/unifi/services.pyi,sha256=qI0CBk86u0vJLN5H6Rn-wKkMy_7vbXYamVNLh8uQuIM,852
3087
- homeassistant-stubs/components/unifi/switch.pyi,sha256=tWGGxmw6QOHlc6ZYBwJJ5jASgBBmeWhXPiZjfM4LAH8,4398
3088
- homeassistant-stubs/components/unifi/update.pyi,sha256=8v2yXmpSxhCg7Y7Ij3lSzBS3Ue1VXxOiqk0zIsVBpDs,2666
3089
3099
  homeassistant-stubs/components/unifiprotect/__init__.pyi,sha256=oOQ7QuK_FzJOBKeMs48csCJFzEaaPg4xasMc97UiIuw,2140
3090
3100
  homeassistant-stubs/components/unifiprotect/binary_sensor.pyi,sha256=abvry4eeRKxInslVgjkLodzEw6FiW_1hSSTqQEv5jh0,4729
3091
3101
  homeassistant-stubs/components/unifiprotect/button.pyi,sha256=C7AUlooXmxr34czB1TEIj4pERY4Ppr_f9NKspsnB-X8,2664
@@ -3372,25 +3382,19 @@ homeassistant-stubs/components/zwave_js/logbook.pyi,sha256=aN7cEbfcEkHGMp096AvXt
3372
3382
  homeassistant-stubs/components/zwave_js/migrate.pyi,sha256=HJla2hlVGl_Qfx7R4zviL7NAWHZKQ9Lpny9qwpH6jpg,1746
3373
3383
  homeassistant-stubs/components/zwave_js/number.pyi,sha256=kGQ6oyaIOVc1eYo4_jGLfppAZUcbuiGbG5a76dji4fY,2458
3374
3384
  homeassistant-stubs/components/zwave_js/repairs.pyi,sha256=xpPR1G0xdZ3dbuVyE7bgRZOqHM753PqT1eZGwkYftrE,1024
3375
- homeassistant-stubs/components/zwave_js/scripts/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3376
- homeassistant-stubs/components/zwave_js/scripts/convert_device_diagnostics_to_fixture.pyi,sha256=uMDffPobbZwZEkOIwAL2sEgVwJnbKOX_GoqV2aZkVcc,402
3377
3385
  homeassistant-stubs/components/zwave_js/select.pyi,sha256=bgpyT9oUTJ2xEsC-QkOeI-YUJ0VleJxDDQamEZWQySA,2621
3378
3386
  homeassistant-stubs/components/zwave_js/sensor.pyi,sha256=b6QRKgOKsXpl0nf4AqO69MfPr1wPxbuNGy-NWUfXGA0,9149
3379
3387
  homeassistant-stubs/components/zwave_js/services.pyi,sha256=Ljf5jEBPbB7LUFL_Eot5fPdkfJcMK1VbC7AAO4kCGhQ,2889
3380
3388
  homeassistant-stubs/components/zwave_js/siren.pyi,sha256=C9DxLWSrsy59D5Dade-e4m0FL1ByRUOSajYbm-o1BCk,1415
3381
3389
  homeassistant-stubs/components/zwave_js/switch.pyi,sha256=MKhcjSteR6LQvLDQbxxoW851FytY7nZCiRqrdT4uUQ0,2334
3382
3390
  homeassistant-stubs/components/zwave_js/trigger.pyi,sha256=UNiYSuS4Ub9U3WIdE09TDhBincAs-5TVwvE0hFRL00o,811
3391
+ homeassistant-stubs/components/zwave_js/update.pyi,sha256=DZ89qey4VhEIz4DzjIi5tNowLsJcyz6I-h6zSysXJ10,3847
3392
+ homeassistant-stubs/components/zwave_js/scripts/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3393
+ homeassistant-stubs/components/zwave_js/scripts/convert_device_diagnostics_to_fixture.pyi,sha256=uMDffPobbZwZEkOIwAL2sEgVwJnbKOX_GoqV2aZkVcc,402
3383
3394
  homeassistant-stubs/components/zwave_js/triggers/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3384
3395
  homeassistant-stubs/components/zwave_js/triggers/event.pyi,sha256=M9qaV8Z7TsjP9ozDtQD8il2Ud6-r9LlIfDJdarvIr9U,1823
3385
3396
  homeassistant-stubs/components/zwave_js/triggers/trigger_helpers.pyi,sha256=9XFyV-R9E7PaFihF77ztMkh0aRPKr7yznRqM_eMJ7tI,536
3386
3397
  homeassistant-stubs/components/zwave_js/triggers/value_updated.pyi,sha256=G4qlSHg9vpzczpN5zKl0ZLyO8Ebvd4e5NKy3t3aFosM,1950
3387
- homeassistant-stubs/components/zwave_js/update.pyi,sha256=DZ89qey4VhEIz4DzjIi5tNowLsJcyz6I-h6zSysXJ10,3847
3388
- homeassistant-stubs/config.pyi,sha256=fXEnNrBJqOnsZaNJUtO7shXXJY7Al3bytB_cg2oQanU,9160
3389
- homeassistant-stubs/config_entries.pyi,sha256=oFpOGkOSEuIj1RZFqXpmU4zwVRCtN__NCKpoOwLHEis,20361
3390
- homeassistant-stubs/const.pyi,sha256=iVHVQu--ryTHi8rrFDIyu2H1y6vLC3enPJAQL3JFl4w,25750
3391
- homeassistant-stubs/core.pyi,sha256=Tev-mbtWAQP4KFHKg39Sx0Wt1gxXWam1sCLp_8GZoEI,25858
3392
- homeassistant-stubs/data_entry_flow.pyi,sha256=SnxA4opifZbw9OOuDVHJTDil1ne6JJC-YaSG52qYHT8,8576
3393
- homeassistant-stubs/exceptions.pyi,sha256=Fph9efKLGi0Apdz5RxoxEHMLNYAWeKVSQLD8AjXTTLA,3720
3394
3398
  homeassistant-stubs/generated/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3395
3399
  homeassistant-stubs/generated/amazon_polly.pyi,sha256=KsAy-gqLDdrbwvL3v8WXkApQjm_OoZIELN24fTW8rSo,130
3396
3400
  homeassistant-stubs/generated/application_credentials.pyi,sha256=lfr55vRqxwVIC88Ug5-KzbdUEeqzuT2JSyaILFr1OlM,70
@@ -3459,9 +3463,6 @@ homeassistant-stubs/helpers/script_variables.pyi,sha256=oH8USW9PDMHyCACqINIUIm2Z
3459
3463
  homeassistant-stubs/helpers/selector.pyi,sha256=hFRjQMFzICmXCdCsOHaTnPRpsjN6bRyfktvXeOHqKXA,15210
3460
3464
  homeassistant-stubs/helpers/sensor.pyi,sha256=lElWOartDwgLVi4vvGlqHFEJ8u25O_PiiEUOSo-CQOg,263
3461
3465
  homeassistant-stubs/helpers/service.pyi,sha256=rss0xVdKh5kDxCGxjuz6c_114VbHY0bBvss-gR9zGCE,7631
3462
- homeassistant-stubs/helpers/service_info/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3463
- homeassistant-stubs/helpers/service_info/bluetooth.pyi,sha256=kHDeoPorAhi-bJvJ_O--xHFnFE6U4JswHm44saDXqHg,118
3464
- homeassistant-stubs/helpers/service_info/mqtt.pyi,sha256=hAzJcAwGMa75J_5B8QR9QMHTCN3Qu8tTrp3CiyC1u-g,427
3465
3466
  homeassistant-stubs/helpers/signal.pyi,sha256=yJU7YSElKWWu4dIlBqdyyY2NebUTKWz3makJ0sw1Q-4,451
3466
3467
  homeassistant-stubs/helpers/significant_change.pyi,sha256=JrHyvAAP6hnWbpm0-Fub6-MdBxmNyc2dYtmIDGGSW1o,2108
3467
3468
  homeassistant-stubs/helpers/singleton.pyi,sha256=Ojibp3X11gC__g7mGdpw0ZIyIeO83ycmYpZSAWm1amo,471
@@ -3478,16 +3479,15 @@ homeassistant-stubs/helpers/trigger.pyi,sha256=NWy5lbeRfDJzoV9YAeh76U9Zn421KjVzG
3478
3479
  homeassistant-stubs/helpers/trigger_template_entity.pyi,sha256=5FKR0fBqDmGvvtBH4Mz6agRVaVgkmssIYgJFOEqWxOg,2749
3479
3480
  homeassistant-stubs/helpers/typing.pyi,sha256=BYmOe6_4Km0Uxe6CCa72gpmnfMrt1C1I_D0EzmEArHw,1056
3480
3481
  homeassistant-stubs/helpers/update_coordinator.pyi,sha256=Kx7F3RJXGinLDMDrdOMhrkbmjIGVgtXzCao2vxkRQOA,4810
3481
- homeassistant-stubs/loader.pyi,sha256=SGWOrKL3_MIMmHK4a8G_d_M5AIJGjkk44O8gZEaQ0rg,12511
3482
- homeassistant-stubs/requirements.pyi,sha256=b21vrHh7zxBD4sGQEWFKTv6k14PxgkQcw5vbkywQCUM,2391
3483
- homeassistant-stubs/runner.pyi,sha256=wqhKE_xSH0jLTDrlc3EdMq5Q7b32rG_2gk1MEuytKsM,1715
3482
+ homeassistant-stubs/helpers/service_info/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3483
+ homeassistant-stubs/helpers/service_info/bluetooth.pyi,sha256=kHDeoPorAhi-bJvJ_O--xHFnFE6U4JswHm44saDXqHg,118
3484
+ homeassistant-stubs/helpers/service_info/mqtt.pyi,sha256=hAzJcAwGMa75J_5B8QR9QMHTCN3Qu8tTrp3CiyC1u-g,427
3484
3485
  homeassistant-stubs/scripts/__init__.pyi,sha256=6-aUyvd8TH1rT-jsOnFdRs3KTxAZh5fOKAaydeLvo24,565
3485
3486
  homeassistant-stubs/scripts/auth.pyi,sha256=b39ndwwj4KTiYbPRNz7Rgj1tG89I87fWkFuWpHGleA4,986
3486
- homeassistant-stubs/scripts/benchmark/__init__.pyi,sha256=sKIsSNUWtA3GdMfh5nUALju53DrUB1gFBZoJwtOyfPA,996
3487
3487
  homeassistant-stubs/scripts/check_config.pyi,sha256=x7gmS2pEOXiCG9mEp47nv1V4BkkBgud4q8HK_gr2Hxk,1022
3488
3488
  homeassistant-stubs/scripts/ensure_config.pyi,sha256=-E8MyEcsyevgmBM6IGLFRHqCIK3ylUKCv6NYubP3B4k,119
3489
+ homeassistant-stubs/scripts/benchmark/__init__.pyi,sha256=sKIsSNUWtA3GdMfh5nUALju53DrUB1gFBZoJwtOyfPA,996
3489
3490
  homeassistant-stubs/scripts/macos/__init__.pyi,sha256=Ku7kyf71v_YPYpupqsU1mFIsdG0tjVdmNUuik60zm4s,101
3490
- homeassistant-stubs/setup.pyi,sha256=UuGE3i35vvBo3hx2QKNZRpUFhNJMBHffJUJo7Y2r9IY,4362
3491
3491
  homeassistant-stubs/util/__init__.pyi,sha256=vGcM5Exc-wwgEjlyPOoacQjnfazEcJsn3DhCSi4YhIg,987
3492
3492
  homeassistant-stubs/util/aiohttp.pyi,sha256=aDSU5haSs1YLWRasqWwrqsQ5o0D7Ju_P07M2Xha2AIo,1206
3493
3493
  homeassistant-stubs/util/async_.pyi,sha256=poqvbkB11AgZLgfCxS35WPIk5OVDbtSqNM1aduh43b8,872
@@ -3529,7 +3529,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
3529
3529
  homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
3530
3530
  homeassistant-stubs/util/yaml/loader.pyi,sha256=FJDEgKwYTwuB8hBeJVjqwYqJ5hQZTSF_DtsnuO-E-pM,4758
3531
3531
  homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
3532
- homeassistant_stubs-2024.9.2.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
3533
- homeassistant_stubs-2024.9.2.dist-info/METADATA,sha256=S8YxuSM0mpRH4pIxeZDOgpGYEKMeciemtksE_pNJWSU,3011
3534
- homeassistant_stubs-2024.9.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
3535
- homeassistant_stubs-2024.9.2.dist-info/RECORD,,
3532
+ homeassistant_stubs-2024.9.3.dist-info/METADATA,sha256=m268ovfTbWchupgQsyv5Llxrlj6c0OOpuNRW75X7th0,2952
3533
+ homeassistant_stubs-2024.9.3.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
3534
+ homeassistant_stubs-2024.9.3.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
3535
+ homeassistant_stubs-2024.9.3.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: hatchling 1.25.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any