homeassistant-stubs 2025.6.0b7__py3-none-any.whl → 2025.6.0b8__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.
Files changed (29) hide show
  1. homeassistant-stubs/components/derivative/__init__.pyi +0 -1
  2. homeassistant-stubs/components/here_travel_time/__init__.pyi +1 -2
  3. homeassistant-stubs/components/here_travel_time/coordinator.pyi +6 -8
  4. homeassistant-stubs/components/here_travel_time/model.pyi +6 -10
  5. homeassistant-stubs/components/history_stats/__init__.pyi +2 -1
  6. homeassistant-stubs/components/history_stats/config_flow.pyi +1 -1
  7. homeassistant-stubs/components/integration/__init__.pyi +2 -1
  8. homeassistant-stubs/components/shelly/__init__.pyi +1 -1
  9. homeassistant-stubs/components/shelly/utils.pyi +2 -0
  10. homeassistant-stubs/components/statistics/__init__.pyi +2 -1
  11. homeassistant-stubs/components/switch_as_x/__init__.pyi +16 -3
  12. homeassistant-stubs/components/threshold/__init__.pyi +2 -1
  13. homeassistant-stubs/components/trend/__init__.pyi +2 -1
  14. homeassistant-stubs/components/zwave_js/config_flow.pyi +1 -4
  15. homeassistant-stubs/components/zwave_js/const.pyi +0 -2
  16. homeassistant-stubs/helpers/helper_integration.pyi +1 -1
  17. {homeassistant_stubs-2025.6.0b7.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/METADATA +2 -2
  18. {homeassistant_stubs-2025.6.0b7.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/RECORD +29 -29
  19. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/__init__.pyi +0 -0
  20. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/binary_sensor.pyi +0 -0
  21. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/config_flow.pyi +0 -0
  22. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/const.pyi +0 -0
  23. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/coordinator.pyi +0 -0
  24. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/diagnostics.pyi +0 -0
  25. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/entity.pyi +0 -0
  26. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/notify.pyi +0 -0
  27. /homeassistant-stubs/components/{amazon_devices → alexa_devices}/switch.pyi +0 -0
  28. {homeassistant_stubs-2025.6.0b7.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/WHEEL +0 -0
  29. {homeassistant_stubs-2025.6.0b7.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,3 @@
1
- from .const import DOMAIN as DOMAIN
2
1
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
3
2
  from homeassistant.const import CONF_SOURCE as CONF_SOURCE, Platform as Platform
4
3
  from homeassistant.core import HomeAssistant as HomeAssistant
@@ -1,6 +1,5 @@
1
- from .const import CONF_ARRIVAL_TIME as CONF_ARRIVAL_TIME, CONF_DEPARTURE_TIME as CONF_DEPARTURE_TIME, CONF_DESTINATION_ENTITY_ID as CONF_DESTINATION_ENTITY_ID, CONF_DESTINATION_LATITUDE as CONF_DESTINATION_LATITUDE, CONF_DESTINATION_LONGITUDE as CONF_DESTINATION_LONGITUDE, CONF_ORIGIN_ENTITY_ID as CONF_ORIGIN_ENTITY_ID, CONF_ORIGIN_LATITUDE as CONF_ORIGIN_LATITUDE, CONF_ORIGIN_LONGITUDE as CONF_ORIGIN_LONGITUDE, CONF_ROUTE_MODE as CONF_ROUTE_MODE, TRAVEL_MODE_PUBLIC as TRAVEL_MODE_PUBLIC
1
+ from .const import TRAVEL_MODE_PUBLIC as TRAVEL_MODE_PUBLIC
2
2
  from .coordinator import HERERoutingDataUpdateCoordinator as HERERoutingDataUpdateCoordinator, HERETransitDataUpdateCoordinator as HERETransitDataUpdateCoordinator, HereConfigEntry as HereConfigEntry
3
- from .model import HERETravelTimeConfig as HERETravelTimeConfig
4
3
  from _typeshed import Incomplete
5
4
  from homeassistant.const import CONF_API_KEY as CONF_API_KEY, CONF_MODE as CONF_MODE, Platform as Platform
6
5
  from homeassistant.core import HomeAssistant as HomeAssistant
@@ -1,9 +1,9 @@
1
- from .const import DEFAULT_SCAN_INTERVAL as DEFAULT_SCAN_INTERVAL, DOMAIN as DOMAIN, ROUTE_MODE_FASTEST as ROUTE_MODE_FASTEST
2
- from .model import HERETravelTimeConfig as HERETravelTimeConfig, HERETravelTimeData as HERETravelTimeData
1
+ from .const import CONF_ARRIVAL_TIME as CONF_ARRIVAL_TIME, CONF_DEPARTURE_TIME as CONF_DEPARTURE_TIME, CONF_DESTINATION_ENTITY_ID as CONF_DESTINATION_ENTITY_ID, CONF_DESTINATION_LATITUDE as CONF_DESTINATION_LATITUDE, CONF_DESTINATION_LONGITUDE as CONF_DESTINATION_LONGITUDE, CONF_ORIGIN_ENTITY_ID as CONF_ORIGIN_ENTITY_ID, CONF_ORIGIN_LATITUDE as CONF_ORIGIN_LATITUDE, CONF_ORIGIN_LONGITUDE as CONF_ORIGIN_LONGITUDE, CONF_ROUTE_MODE as CONF_ROUTE_MODE, DEFAULT_SCAN_INTERVAL as DEFAULT_SCAN_INTERVAL, DOMAIN as DOMAIN, ROUTE_MODE_FASTEST as ROUTE_MODE_FASTEST
2
+ from .model import HERETravelTimeAPIParams as HERETravelTimeAPIParams, HERETravelTimeData as HERETravelTimeData
3
3
  from _typeshed import Incomplete
4
4
  from datetime import datetime, time
5
5
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
- from homeassistant.const import UnitOfLength as UnitOfLength
6
+ from homeassistant.const import CONF_MODE as CONF_MODE, UnitOfLength as UnitOfLength
7
7
  from homeassistant.core import HomeAssistant as HomeAssistant
8
8
  from homeassistant.helpers.location import find_coordinates as find_coordinates
9
9
  from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
@@ -17,8 +17,7 @@ type HereConfigEntry = ConfigEntry[HERETransitDataUpdateCoordinator | HERERoutin
17
17
  class HERERoutingDataUpdateCoordinator(DataUpdateCoordinator[HERETravelTimeData]):
18
18
  config_entry: HereConfigEntry
19
19
  _api: Incomplete
20
- config: Incomplete
21
- def __init__(self, hass: HomeAssistant, config_entry: HereConfigEntry, api_key: str, config: HERETravelTimeConfig) -> None: ...
20
+ def __init__(self, hass: HomeAssistant, config_entry: HereConfigEntry, api_key: str) -> None: ...
22
21
  update_interval: Incomplete
23
22
  async def _async_update_data(self) -> HERETravelTimeData: ...
24
23
  def _parse_routing_response(self, response: dict[str, Any]) -> HERETravelTimeData: ...
@@ -26,12 +25,11 @@ class HERERoutingDataUpdateCoordinator(DataUpdateCoordinator[HERETravelTimeData]
26
25
  class HERETransitDataUpdateCoordinator(DataUpdateCoordinator[HERETravelTimeData | None]):
27
26
  config_entry: HereConfigEntry
28
27
  _api: Incomplete
29
- config: Incomplete
30
- def __init__(self, hass: HomeAssistant, config_entry: HereConfigEntry, api_key: str, config: HERETravelTimeConfig) -> None: ...
28
+ def __init__(self, hass: HomeAssistant, config_entry: HereConfigEntry, api_key: str) -> None: ...
31
29
  update_interval: Incomplete
32
30
  async def _async_update_data(self) -> HERETravelTimeData | None: ...
33
31
  def _parse_transit_response(self, response: dict[str, Any]) -> HERETravelTimeData: ...
34
32
 
35
- def prepare_parameters(hass: HomeAssistant, config: HERETravelTimeConfig) -> tuple[list[str], list[str], str | None, str | None]: ...
33
+ def prepare_parameters(hass: HomeAssistant, config_entry: HereConfigEntry) -> HERETravelTimeAPIParams: ...
36
34
  def build_hass_attribution(sections: list[dict[str, Any]]) -> str | None: ...
37
35
  def next_datetime(simple_time: time) -> datetime: ...
@@ -1,5 +1,5 @@
1
1
  from dataclasses import dataclass
2
- from datetime import time
2
+ from datetime import datetime
3
3
  from typing import TypedDict
4
4
 
5
5
  class HERETravelTimeData(TypedDict):
@@ -13,14 +13,10 @@ class HERETravelTimeData(TypedDict):
13
13
  destination_name: str | None
14
14
 
15
15
  @dataclass
16
- class HERETravelTimeConfig:
17
- destination_latitude: float | None
18
- destination_longitude: float | None
19
- destination_entity_id: str | None
20
- origin_latitude: float | None
21
- origin_longitude: float | None
22
- origin_entity_id: str | None
16
+ class HERETravelTimeAPIParams:
17
+ destination: list[str]
18
+ origin: list[str]
23
19
  travel_mode: str
24
20
  route_mode: str
25
- arrival: time | None
26
- departure: time | None
21
+ arrival: datetime | None
22
+ departure: datetime | None
@@ -4,7 +4,8 @@ from .data import HistoryStats as HistoryStats
4
4
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
5
5
  from homeassistant.const import CONF_ENTITY_ID as CONF_ENTITY_ID, CONF_STATE as CONF_STATE
6
6
  from homeassistant.core import HomeAssistant as HomeAssistant
7
- from homeassistant.helpers.device import async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
7
+ from homeassistant.helpers.device import async_entity_id_to_device_id as async_entity_id_to_device_id, async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
8
+ from homeassistant.helpers.helper_integration import async_handle_source_entity_changes as async_handle_source_entity_changes
8
9
  from homeassistant.helpers.template import Template as Template
9
10
 
10
11
  type HistoryStatsConfigEntry = ConfigEntry[HistoryStatsUpdateCoordinator]
@@ -13,7 +13,7 @@ DATA_SCHEMA_OPTIONS: Incomplete
13
13
  CONFIG_FLOW: Incomplete
14
14
  OPTIONS_FLOW: Incomplete
15
15
 
16
- class StatisticsConfigFlowHandler(SchemaConfigFlowHandler, domain=DOMAIN):
16
+ class HistoryStatsConfigFlowHandler(SchemaConfigFlowHandler, domain=DOMAIN):
17
17
  config_flow = CONFIG_FLOW
18
18
  options_flow = OPTIONS_FLOW
19
19
  def async_config_entry_title(self, options: Mapping[str, Any]) -> str: ...
@@ -2,7 +2,8 @@ from .const import CONF_SOURCE_SENSOR as CONF_SOURCE_SENSOR
2
2
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
3
3
  from homeassistant.const import Platform as Platform
4
4
  from homeassistant.core import HomeAssistant as HomeAssistant
5
- from homeassistant.helpers.device import async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
5
+ from homeassistant.helpers.device import async_entity_id_to_device_id as async_entity_id_to_device_id, async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
6
+ from homeassistant.helpers.helper_integration import async_handle_source_entity_changes as async_handle_source_entity_changes
6
7
 
7
8
  async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
8
9
  async def config_entry_update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
@@ -1,7 +1,7 @@
1
1
  from .const import BLOCK_EXPECTED_SLEEP_PERIOD as BLOCK_EXPECTED_SLEEP_PERIOD, BLOCK_WRONG_SLEEP_PERIOD as BLOCK_WRONG_SLEEP_PERIOD, CONF_COAP_PORT as CONF_COAP_PORT, CONF_SLEEP_PERIOD as CONF_SLEEP_PERIOD, DOMAIN as DOMAIN, FIRMWARE_UNSUPPORTED_ISSUE_ID as FIRMWARE_UNSUPPORTED_ISSUE_ID, LOGGER as LOGGER, MODELS_WITH_WRONG_SLEEP_PERIOD as MODELS_WITH_WRONG_SLEEP_PERIOD, PUSH_UPDATE_ISSUE_ID as PUSH_UPDATE_ISSUE_ID
2
2
  from .coordinator import ShellyBlockCoordinator as ShellyBlockCoordinator, ShellyConfigEntry as ShellyConfigEntry, ShellyEntryData as ShellyEntryData, ShellyRestCoordinator as ShellyRestCoordinator, ShellyRpcCoordinator as ShellyRpcCoordinator, ShellyRpcPollingCoordinator as ShellyRpcPollingCoordinator
3
3
  from .repairs import async_manage_ble_scanner_firmware_unsupported_issue as async_manage_ble_scanner_firmware_unsupported_issue
4
- from .utils import async_create_issue_unsupported_firmware as async_create_issue_unsupported_firmware, get_coap_context as get_coap_context, get_device_entry_gen as get_device_entry_gen, get_http_port as get_http_port, get_rpc_scripts_event_types as get_rpc_scripts_event_types, get_ws_context as get_ws_context
4
+ from .utils import async_create_issue_unsupported_firmware as async_create_issue_unsupported_firmware, get_coap_context as get_coap_context, get_device_entry_gen as get_device_entry_gen, get_http_port as get_http_port, get_rpc_scripts_event_types as get_rpc_scripts_event_types, get_ws_context as get_ws_context, remove_stale_blu_trv_devices as remove_stale_blu_trv_devices
5
5
  from _typeshed import Incomplete
6
6
  from homeassistant.components.bluetooth import async_remove_scanner as async_remove_scanner
7
7
  from homeassistant.const import CONF_HOST as CONF_HOST, CONF_MODEL as CONF_MODEL, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME, Platform as Platform
@@ -80,3 +80,5 @@ async def get_rpc_scripts_event_types(device: RpcDevice, ignore_scripts: list[st
80
80
  def get_rpc_device_info(device: RpcDevice, mac: str, key: str | None = None, emeter_phase: str | None = None) -> DeviceInfo: ...
81
81
  def get_blu_trv_device_info(config: dict[str, Any], ble_addr: str, parent_mac: str) -> DeviceInfo: ...
82
82
  def get_block_device_info(device: BlockDevice, mac: str, block: Block | None = None) -> DeviceInfo: ...
83
+ @callback
84
+ def remove_stale_blu_trv_devices(hass: HomeAssistant, rpc_device: RpcDevice, entry: ConfigEntry) -> None: ...
@@ -2,7 +2,8 @@ from _typeshed import Incomplete
2
2
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
3
3
  from homeassistant.const import CONF_ENTITY_ID as CONF_ENTITY_ID, Platform as Platform
4
4
  from homeassistant.core import HomeAssistant as HomeAssistant
5
- from homeassistant.helpers.device import async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
5
+ from homeassistant.helpers.device import async_entity_id_to_device_id as async_entity_id_to_device_id, async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
6
+ from homeassistant.helpers.helper_integration import async_handle_source_entity_changes as async_handle_source_entity_changes
6
7
 
7
8
  DOMAIN: str
8
9
  PLATFORMS: Incomplete
@@ -1,4 +1,17 @@
1
- from .light import LightSwitch as LightSwitch
2
- from homeassistant.core import callback
1
+ from .const import CONF_INVERT as CONF_INVERT, CONF_TARGET_DOMAIN as CONF_TARGET_DOMAIN
2
+ from _typeshed import Incomplete
3
+ from homeassistant.components.homeassistant import exposed_entities as exposed_entities
4
+ from homeassistant.config_entries import ConfigEntry as ConfigEntry
5
+ from homeassistant.const import CONF_ENTITY_ID as CONF_ENTITY_ID
6
+ from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
7
+ from homeassistant.helpers.helper_integration import async_handle_source_entity_changes as async_handle_source_entity_changes
3
8
 
4
- __all__ = ['LightSwitch']
9
+ _LOGGER: Incomplete
10
+
11
+ @callback
12
+ def async_add_to_device(hass: HomeAssistant, entry: ConfigEntry, entity_id: str) -> str | None: ...
13
+ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
14
+ async def async_migrate_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: ...
15
+ async def config_entry_update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
16
+ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
17
+ async def async_remove_entry(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
@@ -1,7 +1,8 @@
1
1
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
2
2
  from homeassistant.const import CONF_ENTITY_ID as CONF_ENTITY_ID, Platform as Platform
3
3
  from homeassistant.core import HomeAssistant as HomeAssistant
4
- from homeassistant.helpers.device import async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
4
+ from homeassistant.helpers.device import async_entity_id_to_device_id as async_entity_id_to_device_id, async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
5
+ from homeassistant.helpers.helper_integration import async_handle_source_entity_changes as async_handle_source_entity_changes
5
6
 
6
7
  async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
7
8
  async def config_entry_update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
@@ -2,7 +2,8 @@ from _typeshed import Incomplete
2
2
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
3
3
  from homeassistant.const import CONF_ENTITY_ID as CONF_ENTITY_ID, Platform as Platform
4
4
  from homeassistant.core import HomeAssistant as HomeAssistant
5
- from homeassistant.helpers.device import async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
5
+ from homeassistant.helpers.device import async_entity_id_to_device_id as async_entity_id_to_device_id, async_remove_stale_devices_links_keep_entity_device as async_remove_stale_devices_links_keep_entity_device
6
+ from homeassistant.helpers.helper_integration import async_handle_source_entity_changes as async_handle_source_entity_changes
6
7
 
7
8
  PLATFORMS: Incomplete
8
9
 
@@ -1,7 +1,7 @@
1
1
  import asyncio
2
2
  import voluptuous as vol
3
3
  from .addon import get_addon_manager as get_addon_manager
4
- from .const import ADDON_SLUG as ADDON_SLUG, CONF_ADDON_DEVICE as CONF_ADDON_DEVICE, CONF_ADDON_EMULATE_HARDWARE as CONF_ADDON_EMULATE_HARDWARE, CONF_ADDON_LOG_LEVEL as CONF_ADDON_LOG_LEVEL, CONF_ADDON_LR_S2_ACCESS_CONTROL_KEY as CONF_ADDON_LR_S2_ACCESS_CONTROL_KEY, CONF_ADDON_LR_S2_AUTHENTICATED_KEY as CONF_ADDON_LR_S2_AUTHENTICATED_KEY, CONF_ADDON_NETWORK_KEY as CONF_ADDON_NETWORK_KEY, CONF_ADDON_S0_LEGACY_KEY as CONF_ADDON_S0_LEGACY_KEY, CONF_ADDON_S2_ACCESS_CONTROL_KEY as CONF_ADDON_S2_ACCESS_CONTROL_KEY, CONF_ADDON_S2_AUTHENTICATED_KEY as CONF_ADDON_S2_AUTHENTICATED_KEY, CONF_ADDON_S2_UNAUTHENTICATED_KEY as CONF_ADDON_S2_UNAUTHENTICATED_KEY, CONF_INTEGRATION_CREATED_ADDON as CONF_INTEGRATION_CREATED_ADDON, CONF_KEEP_OLD_DEVICES as CONF_KEEP_OLD_DEVICES, CONF_LR_S2_ACCESS_CONTROL_KEY as CONF_LR_S2_ACCESS_CONTROL_KEY, CONF_LR_S2_AUTHENTICATED_KEY as CONF_LR_S2_AUTHENTICATED_KEY, CONF_S0_LEGACY_KEY as CONF_S0_LEGACY_KEY, CONF_S2_ACCESS_CONTROL_KEY as CONF_S2_ACCESS_CONTROL_KEY, CONF_S2_AUTHENTICATED_KEY as CONF_S2_AUTHENTICATED_KEY, CONF_S2_UNAUTHENTICATED_KEY as CONF_S2_UNAUTHENTICATED_KEY, CONF_USB_PATH as CONF_USB_PATH, CONF_USE_ADDON as CONF_USE_ADDON, DATA_CLIENT as DATA_CLIENT, DOMAIN as DOMAIN, DRIVER_READY_TIMEOUT as DRIVER_READY_TIMEOUT
4
+ from .const import ADDON_SLUG as ADDON_SLUG, CONF_ADDON_DEVICE as CONF_ADDON_DEVICE, CONF_ADDON_LR_S2_ACCESS_CONTROL_KEY as CONF_ADDON_LR_S2_ACCESS_CONTROL_KEY, CONF_ADDON_LR_S2_AUTHENTICATED_KEY as CONF_ADDON_LR_S2_AUTHENTICATED_KEY, CONF_ADDON_NETWORK_KEY as CONF_ADDON_NETWORK_KEY, CONF_ADDON_S0_LEGACY_KEY as CONF_ADDON_S0_LEGACY_KEY, CONF_ADDON_S2_ACCESS_CONTROL_KEY as CONF_ADDON_S2_ACCESS_CONTROL_KEY, CONF_ADDON_S2_AUTHENTICATED_KEY as CONF_ADDON_S2_AUTHENTICATED_KEY, CONF_ADDON_S2_UNAUTHENTICATED_KEY as CONF_ADDON_S2_UNAUTHENTICATED_KEY, CONF_INTEGRATION_CREATED_ADDON as CONF_INTEGRATION_CREATED_ADDON, CONF_KEEP_OLD_DEVICES as CONF_KEEP_OLD_DEVICES, CONF_LR_S2_ACCESS_CONTROL_KEY as CONF_LR_S2_ACCESS_CONTROL_KEY, CONF_LR_S2_AUTHENTICATED_KEY as CONF_LR_S2_AUTHENTICATED_KEY, CONF_S0_LEGACY_KEY as CONF_S0_LEGACY_KEY, CONF_S2_ACCESS_CONTROL_KEY as CONF_S2_ACCESS_CONTROL_KEY, CONF_S2_AUTHENTICATED_KEY as CONF_S2_AUTHENTICATED_KEY, CONF_S2_UNAUTHENTICATED_KEY as CONF_S2_UNAUTHENTICATED_KEY, CONF_USB_PATH as CONF_USB_PATH, CONF_USE_ADDON as CONF_USE_ADDON, DATA_CLIENT as DATA_CLIENT, DOMAIN as DOMAIN, DRIVER_READY_TIMEOUT as DRIVER_READY_TIMEOUT
5
5
  from .helpers import CannotConnect as CannotConnect, async_get_version_info as async_get_version_info
6
6
  from _typeshed import Incomplete
7
7
  from homeassistant.components import usb as usb
@@ -27,9 +27,6 @@ DEFAULT_URL: str
27
27
  TITLE: str
28
28
  ADDON_SETUP_TIMEOUT: int
29
29
  ADDON_SETUP_TIMEOUT_ROUNDS: int
30
- CONF_EMULATE_HARDWARE: str
31
- CONF_LOG_LEVEL: str
32
- ADDON_LOG_LEVELS: Incomplete
33
30
  ADDON_USER_INPUT_MAP: Incomplete
34
31
  ON_SUPERVISOR_SCHEMA: Incomplete
35
32
  MIN_MIGRATION_SDK_VERSION: Incomplete
@@ -4,8 +4,6 @@ from homeassistant.const import APPLICATION_NAME as APPLICATION_NAME
4
4
  LR_ADDON_VERSION: Incomplete
5
5
  USER_AGENT: Incomplete
6
6
  CONF_ADDON_DEVICE: str
7
- CONF_ADDON_EMULATE_HARDWARE: str
8
- CONF_ADDON_LOG_LEVEL: str
9
7
  CONF_ADDON_NETWORK_KEY: str
10
8
  CONF_ADDON_S0_LEGACY_KEY: str
11
9
  CONF_ADDON_S2_ACCESS_CONTROL_KEY: str
@@ -3,4 +3,4 @@ from collections.abc import Callable as Callable, Coroutine
3
3
  from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, Event as Event, HomeAssistant as HomeAssistant, valid_entity_id as valid_entity_id
4
4
  from typing import Any
5
5
 
6
- def async_handle_source_entity_changes(hass: HomeAssistant, *, helper_config_entry_id: str, get_helper_entity_id: Callable[[], str | None], set_source_entity_id_or_uuid: Callable[[str], None], source_device_id: str | None, source_entity_id_or_uuid: str, source_entity_removed: Callable[[], Coroutine[Any, Any, None]]) -> CALLBACK_TYPE: ...
6
+ def async_handle_source_entity_changes(hass: HomeAssistant, *, helper_config_entry_id: str, set_source_entity_id_or_uuid: Callable[[str], None], source_device_id: str | None, source_entity_id_or_uuid: str, source_entity_removed: Callable[[], Coroutine[Any, Any, None]]) -> CALLBACK_TYPE: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: homeassistant-stubs
3
- Version: 2025.6.0b7
3
+ Version: 2025.6.0b8
4
4
  Summary: PEP 484 typing stubs for Home Assistant Core
5
5
  Project-URL: Homepage, https://github.com/KapJI/homeassistant-stubs
6
6
  Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
@@ -18,7 +18,7 @@ Classifier: Topic :: Home Automation
18
18
  Classifier: Topic :: Software Development
19
19
  Classifier: Typing :: Typed
20
20
  Requires-Python: >=3.13.2
21
- Requires-Dist: homeassistant==2025.6.0b7
21
+ Requires-Dist: homeassistant==2025.6.0b8
22
22
  Description-Content-Type: text/markdown
23
23
 
24
24
  [![CI](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml/badge.svg)](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
@@ -212,17 +212,17 @@ homeassistant-stubs/components/alexa/logbook.pyi,sha256=IhG7XLy2b-HwN29z5IdYjzse
212
212
  homeassistant-stubs/components/alexa/resources.pyi,sha256=xMQBaxEGbaPEoshHfFP63Y_1Cc4syY9_HUoq43G4JYk,3942
213
213
  homeassistant-stubs/components/alexa/smart_home.pyi,sha256=RmHUf67v2P6JgBBMf6YQ9qtbUVV-SrgWyW0TbhhjPtk,2615
214
214
  homeassistant-stubs/components/alexa/state_report.pyi,sha256=z6l9miD598LoKEdlMP2dQ-CtR5PYe3aZNTY4pxXWUvI,3567
215
+ homeassistant-stubs/components/alexa_devices/__init__.pyi,sha256=vbQpzDD3kL4YWUdfuf5Y7vhi0Q4Q35l5oC4zErAyujk,467
216
+ homeassistant-stubs/components/alexa_devices/binary_sensor.pyi,sha256=NulcEAzF6MwwKM7zBxBcv-pbST_eLFJ_1lG0P7fAsqA,1297
217
+ homeassistant-stubs/components/alexa_devices/config_flow.pyi,sha256=3ncpaFJoeT5DR--JwOi9ddnN0nPNGdp4Jt66C1Q9kA8,588
218
+ homeassistant-stubs/components/alexa_devices/const.pyi,sha256=srM4_9inVetdV_nwt9oHLpkUohLNuQFGIczkvtZOil4,87
219
+ homeassistant-stubs/components/alexa_devices/coordinator.pyi,sha256=T7dk_l6SvvxLP9r9a2tNVLsS91FbDisQejDx5IgKuoo,986
220
+ homeassistant-stubs/components/alexa_devices/diagnostics.pyi,sha256=bRYiRMxTdgbGeSTQw0w0S91vwU2sCBuBNfHvyt_mgug,870
221
+ homeassistant-stubs/components/alexa_devices/entity.pyi,sha256=1oxFqfyw52JjClztThBJdtXj2BeC3_KWt0YPhsgiHrQ,914
222
+ homeassistant-stubs/components/alexa_devices/notify.pyi,sha256=knhBkG-4XTzjYT-hWyM9vgDmquulVqT_TvF82h5J5PQ,1264
223
+ homeassistant-stubs/components/alexa_devices/switch.pyi,sha256=3WiKd7_lAGTwvxDDjYkAsKqwh0dAfFJSg-UqxAWrkbk,1339
215
224
  homeassistant-stubs/components/alpha_vantage/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
225
  homeassistant-stubs/components/alpha_vantage/sensor.pyi,sha256=lOIgbkISKtkxyu3EjpM5U-Scxr95BYt2_fQcjPrFoiI,2057
217
- homeassistant-stubs/components/amazon_devices/__init__.pyi,sha256=vbQpzDD3kL4YWUdfuf5Y7vhi0Q4Q35l5oC4zErAyujk,467
218
- homeassistant-stubs/components/amazon_devices/binary_sensor.pyi,sha256=NulcEAzF6MwwKM7zBxBcv-pbST_eLFJ_1lG0P7fAsqA,1297
219
- homeassistant-stubs/components/amazon_devices/config_flow.pyi,sha256=3ncpaFJoeT5DR--JwOi9ddnN0nPNGdp4Jt66C1Q9kA8,588
220
- homeassistant-stubs/components/amazon_devices/const.pyi,sha256=srM4_9inVetdV_nwt9oHLpkUohLNuQFGIczkvtZOil4,87
221
- homeassistant-stubs/components/amazon_devices/coordinator.pyi,sha256=T7dk_l6SvvxLP9r9a2tNVLsS91FbDisQejDx5IgKuoo,986
222
- homeassistant-stubs/components/amazon_devices/diagnostics.pyi,sha256=bRYiRMxTdgbGeSTQw0w0S91vwU2sCBuBNfHvyt_mgug,870
223
- homeassistant-stubs/components/amazon_devices/entity.pyi,sha256=1oxFqfyw52JjClztThBJdtXj2BeC3_KWt0YPhsgiHrQ,914
224
- homeassistant-stubs/components/amazon_devices/notify.pyi,sha256=knhBkG-4XTzjYT-hWyM9vgDmquulVqT_TvF82h5J5PQ,1264
225
- homeassistant-stubs/components/amazon_devices/switch.pyi,sha256=3WiKd7_lAGTwvxDDjYkAsKqwh0dAfFJSg-UqxAWrkbk,1339
226
226
  homeassistant-stubs/components/amazon_polly/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
227
  homeassistant-stubs/components/amazon_polly/const.pyi,sha256=4AWIZqUdLbEYLAxKonqDaK1PvadKBRt39Mea-D1fRPA,773
228
228
  homeassistant-stubs/components/amazon_polly/tts.pyi,sha256=gNbfNGLupgS07zyPswsAa_x6jJo5DupT7WEX_v6_iEY,2555
@@ -826,7 +826,7 @@ homeassistant-stubs/components/demo/vacuum.pyi,sha256=_lpMSuXu6tbbADeLowr1Ce_X2E
826
826
  homeassistant-stubs/components/demo/valve.pyi,sha256=DZIdDXBvuSfMGcn95fmdOzEHFsbul8FCVbvU5ddFG5o,1255
827
827
  homeassistant-stubs/components/demo/water_heater.pyi,sha256=9of24jKus5o7trehJmkGm9kn21Lm73UOmRx_xYLEm3k,1603
828
828
  homeassistant-stubs/components/demo/weather.pyi,sha256=seVdWm6fXq5FzhNr2Dw-imlnDZp_-lvSDcFxljNBrWk,3216
829
- homeassistant-stubs/components/derivative/__init__.pyi,sha256=_n5YlZPMqynxtDGhSfvYZLjrbnwBrSiUBynE85JVYSA,842
829
+ homeassistant-stubs/components/derivative/__init__.pyi,sha256=-WXEtV0vOe9RRLwNzlGnr7lcHaYK-3_djM17NP0sEvQ,806
830
830
  homeassistant-stubs/components/derivative/config_flow.pyi,sha256=XQUReShh2Lj095W6ITAIVDdIhtQ9c_YhYPncXO_XlNk,1522
831
831
  homeassistant-stubs/components/derivative/const.pyi,sha256=JsEYmAzNLdHk-ISul41ZReBOD43GD2Y6JFNTC3cdkrc,114
832
832
  homeassistant-stubs/components/derivative/sensor.pyi,sha256=JZtjcKT6OpRG2UzPAbRSfQ4yEw1yyR2Gs_JAiGKVOVE,2990
@@ -1443,18 +1443,18 @@ homeassistant-stubs/components/heos/coordinator.pyi,sha256=U-jkh26aavgLXh0nKC10D
1443
1443
  homeassistant-stubs/components/heos/diagnostics.pyi,sha256=ftUXZ0IbvZw6xWRnjI04EYrdU7A_MNjvIllcavg_jBY,862
1444
1444
  homeassistant-stubs/components/heos/media_player.pyi,sha256=dDc_3dl6QXkP_-H-RL0p7ByORtZNGuYEauquKoSbF2g,5961
1445
1445
  homeassistant-stubs/components/heos/services.pyi,sha256=xjAGREHj54DyBoREonW6otR0zAiHu0KHmRae9Ff3B0Y,2183
1446
- homeassistant-stubs/components/here_travel_time/__init__.pyi,sha256=cfYr2ifJWGC2ohCaLgLOnl8VkZoGPs7ZFC9WgLIdkRc,1248
1446
+ homeassistant-stubs/components/here_travel_time/__init__.pyi,sha256=MWS140i827YRAQyLL63eiYJGnmrnxa-PFilFM8gEObg,750
1447
1447
  homeassistant-stubs/components/here_travel_time/config_flow.pyi,sha256=duIk3ZRgGysHZSMgfXIiABKFxT2CNFneGcXElwxvbWQ,3358
1448
1448
  homeassistant-stubs/components/here_travel_time/const.pyi,sha256=oa4UlSMmBXUE8LKno2jL4LMPxyXIPdLO38oshRKuTYA,998
1449
- homeassistant-stubs/components/here_travel_time/coordinator.pyi,sha256=GLMvJGsbrZi_4MynNrlbOsl8dY0mxDoT8Me6w5vamaU,2209
1450
- homeassistant-stubs/components/here_travel_time/model.pyi,sha256=Oe45s4VMYxEkoImHeUcTwvz-VrJIWUGbJUig6NXFaBk,676
1449
+ homeassistant-stubs/components/here_travel_time/coordinator.pyi,sha256=hAcCAmnTgKeKvVO527-EnYxikTLTlHEpUPEeNJ4AKlg,2540
1450
+ homeassistant-stubs/components/here_travel_time/model.pyi,sha256=OgpHKcgNOtCCeeHw7dR055oM17xspjpuXHWIV70vhUc,521
1451
1451
  homeassistant-stubs/components/here_travel_time/sensor.pyi,sha256=LMY3f2Fp2D0phZXXt7eFxrXfnQO2nx4rx52nCSAagJc,3035
1452
1452
  homeassistant-stubs/components/history/__init__.pyi,sha256=VXRt1eAK3SIeBW6WoaFb0eSOCpln_aToqmeUMA3rw9U,1613
1453
1453
  homeassistant-stubs/components/history/const.pyi,sha256=-PZ4FxcMPncwe3zKFvlt8lumPtorKkP5dViiDItRIww,71
1454
1454
  homeassistant-stubs/components/history/helpers.pyi,sha256=uBJmqYNrHPmaLLSyrIEsADASFrnGT3xOwPbYX7nEtME,416
1455
1455
  homeassistant-stubs/components/history/websocket_api.pyi,sha256=Xz5cutnG3wr_2NUz_DlBvCumasnHnVx8DEIPOZ1Ki4E,4105
1456
- homeassistant-stubs/components/history_stats/__init__.pyi,sha256=ub0dqSsk23WbVjQehZLEW3vTh_YYy_15BjEDjJBDmFc,1034
1457
- homeassistant-stubs/components/history_stats/config_flow.pyi,sha256=yqiPftQL_w8I7tAgU9sCuz_7j15MpH7bb0wcnHchsBA,1607
1456
+ homeassistant-stubs/components/history_stats/__init__.pyi,sha256=op_HMF-ete2bAs6uanIu81OtzHlEzjZjkZdzHsi_6U4,1222
1457
+ homeassistant-stubs/components/history_stats/config_flow.pyi,sha256=ZWg5wE6OozrusKmrt7N5-BwVfBt9g8LtA3nvTh1Yjv0,1609
1458
1458
  homeassistant-stubs/components/history_stats/const.pyi,sha256=JVFdRbNJsd9zd3av-vvMx_WXIQ1MM3Si9HEL1TSNcUU,306
1459
1459
  homeassistant-stubs/components/history_stats/coordinator.pyi,sha256=GjdvZvLjNhNNUMhz7wcVG5KIeZdfQRVto07F4HRO7fg,1618
1460
1460
  homeassistant-stubs/components/history_stats/data.pyi,sha256=M7porxGxu0rH7yH_fxNbibpumTbtvMBZWamV8JSVYSc,1871
@@ -1725,7 +1725,7 @@ homeassistant-stubs/components/input_select/__init__.pyi,sha256=UeebUYoPU-KO6R_f
1725
1725
  homeassistant-stubs/components/input_select/reproduce_state.pyi,sha256=v5s55L-1CT-wUuBjPPCz5VSv7wLz367uAxW8WZ_cAPY,913
1726
1726
  homeassistant-stubs/components/input_text/__init__.pyi,sha256=jlo1DHiZEESfUGVz1wPpFr-T71PNbb_9rzHv2FC6-lA,2801
1727
1727
  homeassistant-stubs/components/input_text/reproduce_state.pyi,sha256=3MUzSA15F0qPqF_zb9IvgDUcM419kwyleTA2qyd_pec,716
1728
- homeassistant-stubs/components/integration/__init__.pyi,sha256=64pi7wDuX9BJBHe7V6Z1ZgSuNyxSgIijWuTFD2S4Bls,650
1728
+ homeassistant-stubs/components/integration/__init__.pyi,sha256=CEFCCodQja8YnUL0pUU8ET9V4wawOJtZ_JHfPrZv2Yg,838
1729
1729
  homeassistant-stubs/components/integration/config_flow.pyi,sha256=Yio8QpoUFFud8-jBwR9GERbSl27foidiSQ1JNfiP7T0,1706
1730
1730
  homeassistant-stubs/components/integration/const.pyi,sha256=R7lHqjIAH5GaVha03LbSKy6qe8HkDhWxXr7WCkvr2N0,283
1731
1731
  homeassistant-stubs/components/integration/sensor.pyi,sha256=izgl3N0Zugxs8ILckiLGvGStzZAJCyS-UzK27WtePOA,7310
@@ -3233,7 +3233,7 @@ homeassistant-stubs/components/sfr_box/diagnostics.pyi,sha256=wtICgAJc_PS6ezS3DB
3233
3233
  homeassistant-stubs/components/sfr_box/models.pyi,sha256=NX-c7yYZdCBaw-JHrz0Pi_mVN2btH4sFgClWItQ0zlE,502
3234
3234
  homeassistant-stubs/components/sfr_box/sensor.pyi,sha256=gqfLkYXoXoCJJ96asNgddTuWScv6khCuldzzCGybz7c,2325
3235
3235
  homeassistant-stubs/components/shell_command/__init__.pyi,sha256=kNpviLhIniB2pTeUjh_UFQBdmeuGh0IGd0CFqNA4Bpc,654
3236
- homeassistant-stubs/components/shelly/__init__.pyi,sha256=jiqMsQemryZUNNxyYO9e5iFUU5KEszqIfz-i43hJsTo,2645
3236
+ homeassistant-stubs/components/shelly/__init__.pyi,sha256=PYm2MmsW5SYHXskH_Ny6o6fGZFJoKCz9f-st95-tYi8,2707
3237
3237
  homeassistant-stubs/components/shelly/binary_sensor.pyi,sha256=ES687ojk0KWwTtocEQlXnfOSoB76YReMzpkGQytt4EQ,3804
3238
3238
  homeassistant-stubs/components/shelly/button.pyi,sha256=slGUK8aFwpHVqKYIkft8Djcb5R0D_XWCkHpX7Ojj5is,3291
3239
3239
  homeassistant-stubs/components/shelly/climate.pyi,sha256=XYm5L-YekPWcWCBeSY70ZAEMAb5gT4CcbNsbIWQ4tsk,6519
@@ -3254,7 +3254,7 @@ homeassistant-stubs/components/shelly/sensor.pyi,sha256=AbtBQMvTqN6O0ZeAOBUxUWln
3254
3254
  homeassistant-stubs/components/shelly/switch.pyi,sha256=BP2CP9sp-2SOsiWSuN2k8YzO4i5WubCExwkcMyNidfw,4294
3255
3255
  homeassistant-stubs/components/shelly/text.pyi,sha256=qh4OnTj5qxWZoiYSNZeGAI3-8dwQyRmbRy4jLarOYVM,1423
3256
3256
  homeassistant-stubs/components/shelly/update.pyi,sha256=zTH2X1k5kowH8CnYO6lzBZru-X0CD79_9xZAji4rLIk,4298
3257
- homeassistant-stubs/components/shelly/utils.pyi,sha256=Qqgh5zztlzV7bsOOOH9BAGSzhnkfv8gd79b_52-irsE,6724
3257
+ homeassistant-stubs/components/shelly/utils.pyi,sha256=HL3pH_SZhkDVXw1lR42knH3vGcu-2Ep8l5OYC2GZ1bY,6844
3258
3258
  homeassistant-stubs/components/shelly/valve.pyi,sha256=B2Aapsj9zux6BCQfgZzji1o36DlrUGZk0r8FrlkVUuk,2145
3259
3259
  homeassistant-stubs/components/shelly/bluetooth/__init__.pyi,sha256=XuBsD_H0LeEeMkoUKhZ28UobIB-50EzL7uUh4Wxmlpc,609
3260
3260
  homeassistant-stubs/components/shopping_list/__init__.pyi,sha256=GwWcwIbVIQHeP2bLRDb4FFpbwWcCYXGjMdgTH-EBcpg,4861
@@ -3399,7 +3399,7 @@ homeassistant-stubs/components/starlink/entity.pyi,sha256=nAM7rjQUrcos6a5KxxfUeh
3399
3399
  homeassistant-stubs/components/starlink/sensor.pyi,sha256=gjcG67f5B6JXwSa8kTKDAPvpprNytqmEEyUgBldoS24,1573
3400
3400
  homeassistant-stubs/components/starlink/switch.pyi,sha256=4ME9MhPczJaAqv7XGNrgD4_EwqiUO3S_0--5kvr3Hl0,1463
3401
3401
  homeassistant-stubs/components/starlink/time.pyi,sha256=9Qa0LlXDbzqQOPmLnpj1Ys8LO-u87wQ3QTadimhli2Q,1613
3402
- homeassistant-stubs/components/statistics/__init__.pyi,sha256=E5Gociw6eSObXr7d_pu_t4NDkjOnEel19qLjlNVlmb8,679
3402
+ homeassistant-stubs/components/statistics/__init__.pyi,sha256=VFTHwH0JKCGFa7UvEMIoJ4OIRrormt-ypGxvFDAm2y8,867
3403
3403
  homeassistant-stubs/components/statistics/config_flow.pyi,sha256=zvNq67mVQLhAuj3zJ0SoxMMYVJ8GKBH4l2yCFFFyN8c,2524
3404
3404
  homeassistant-stubs/components/statistics/sensor.pyi,sha256=S5tcADtjKxfN1i4g0KLxQQwIuRSWcaAHwhvFNOQPXxk,10686
3405
3405
  homeassistant-stubs/components/steamist/__init__.pyi,sha256=m31jrUNSpGwxRa8uf6mAmk_aMgYvVhk0EDLFG56JgsU,1306
@@ -3464,7 +3464,7 @@ homeassistant-stubs/components/switch/device_trigger.pyi,sha256=uC5UaBHAFOgtfm8E
3464
3464
  homeassistant-stubs/components/switch/light.pyi,sha256=45ziIb69n6ObQ842bllECus22-9Tk-ed3ZHgt98op9w,1640
3465
3465
  homeassistant-stubs/components/switch/reproduce_state.pyi,sha256=oJOAxdJbalNMGVeSVOIgqlVQRDY86ohveaCNjvgidPY,795
3466
3466
  homeassistant-stubs/components/switch/significant_change.pyi,sha256=9nzs7ExXPeeuWrOxcNL9wBOT2NHTeSUpCW7YvVr8fF0,275
3467
- homeassistant-stubs/components/switch_as_x/__init__.pyi,sha256=rgNTv_GUJXWm6c_zROGrnSXHSHg_HPVngfci81b0nWw,113
3467
+ homeassistant-stubs/components/switch_as_x/__init__.pyi,sha256=1fCZgZE3bEPT3jYk3Dkn4NYTkqC2F1fZ-LzErmAYeVQ,1116
3468
3468
  homeassistant-stubs/components/switch_as_x/config_flow.pyi,sha256=R9bsCi5oGLaEiT2hhUGMJC80on0UvOAJp9aVWlqPpTE,904
3469
3469
  homeassistant-stubs/components/switch_as_x/const.pyi,sha256=skfhIOcruisYZr77bwuuUKhG2OL4jOgVp1sy90VuqWE,100
3470
3470
  homeassistant-stubs/components/switch_as_x/cover.pyi,sha256=qi4uimRv0E6ITQ0cfvEYTC5ngXuV0YcEGFd7BVbeCa4,1327
@@ -3607,7 +3607,7 @@ homeassistant-stubs/components/thethingsnetwork/const.pyi,sha256=fPqYXxsbX8_3Nyg
3607
3607
  homeassistant-stubs/components/thethingsnetwork/coordinator.pyi,sha256=LQ0IoWJjg3lCR5_QrGVA0ZFocuJfl3TOj2uj2UPs4XY,910
3608
3608
  homeassistant-stubs/components/thethingsnetwork/entity.pyi,sha256=qnOY57Vltb7sFGojZtGHZoM7sVwJml-R9VCillhZvd4,896
3609
3609
  homeassistant-stubs/components/thethingsnetwork/sensor.pyi,sha256=eaa_5AhBFih0vtKeDAvIJPqez5QGarFJlJGrpxjUcVQ,853
3610
- homeassistant-stubs/components/threshold/__init__.pyi,sha256=oHKX6UTyCUcXcckpBoj8Zm6jU_L-w13zVeqIQ07Ifv4,624
3610
+ homeassistant-stubs/components/threshold/__init__.pyi,sha256=UFSHTsMMdLSOvVJsbGf4NW7U65sJWdxb3byh0TLFhZ8,812
3611
3611
  homeassistant-stubs/components/threshold/binary_sensor.pyi,sha256=Kyy8mQwshSHEQeIXGqoGrvi8T2inXbkefITDj4Ytdec,3614
3612
3612
  homeassistant-stubs/components/threshold/config_flow.pyi,sha256=Kguj5Fyg4z0OeZnJLEMoQa6XjUw7kK47EiBj51GVoc8,1572
3613
3613
  homeassistant-stubs/components/threshold/const.pyi,sha256=PV6Fdzbe4WFZ8FCjrf9fwKOtXK5CW1agyEFcQZjxTnw,486
@@ -3748,7 +3748,7 @@ homeassistant-stubs/components/transmission/coordinator.pyi,sha256=YTCLsTmyJREKu
3748
3748
  homeassistant-stubs/components/transmission/errors.pyi,sha256=B64EpSInCD07mBfkBaNYXZvqqbNVdt4OkAepohYK-tk,219
3749
3749
  homeassistant-stubs/components/transmission/sensor.pyi,sha256=8xmG6p8GUOUycu95s4xpzGXxkMAuv2DdHdxMI47mlzY,2583
3750
3750
  homeassistant-stubs/components/transmission/switch.pyi,sha256=_vL3Skbh_bkDdEowx977PcpgYMkL14B_xh7oPql-plI,1924
3751
- homeassistant-stubs/components/trend/__init__.pyi,sha256=diQmNxnRey2PEZEIbBzYZWWE9KcklYzcEDtwjQk2XVM,680
3751
+ homeassistant-stubs/components/trend/__init__.pyi,sha256=psllfclkLtuJfoMEtDEvXA2paFaVAbx_EA3yjdBPnwA,868
3752
3752
  homeassistant-stubs/components/trend/binary_sensor.pyi,sha256=Jh7MXl1rNtJWrct8NAIz2sFneziG_h7ctGlTQg6t_SE,3983
3753
3753
  homeassistant-stubs/components/trend/config_flow.pyi,sha256=6e6li96SZziApWjMAIS4mjFSn2an6P6EFBiVqV2zKQk,1345
3754
3754
  homeassistant-stubs/components/trend/const.pyi,sha256=Y_V9h1hh7_hKLEX_SMWztMz8KevTaGViRQ_nKRxzW70,357
@@ -4079,9 +4079,9 @@ homeassistant-stubs/components/zwave_js/api.pyi,sha256=2bZPBXWARHYlHkLxeWchqjIx5
4079
4079
  homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=XhzvV0tVnnLSb-I4UlnaRaGIdGm327WqRSMmLJscU9E,3597
4080
4080
  homeassistant-stubs/components/zwave_js/button.pyi,sha256=2d5ilViWUTQGzjrIgD7IWz_biTKH7r2ZkKv_ngxwLCQ,2204
4081
4081
  homeassistant-stubs/components/zwave_js/climate.pyi,sha256=4ZLhK_wk3guJPjzF22I23hicZyZPp7xmAEL5sYIk1lI,4472
4082
- homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=cPfwbdTFqAvp7Yj6NsmVDw0CkfoBZuuf8VJw2u_QP_c,9060
4082
+ homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=skVcaUHRkDaxCbYOyGOHo2hmYVfZL8wANoXodh8nv40,8878
4083
4083
  homeassistant-stubs/components/zwave_js/config_validation.pyi,sha256=i0l2VLc5E1-pW3oHZjxqeKJ1FJg7h4nwcDv02KtGHzU,148
4084
- homeassistant-stubs/components/zwave_js/const.pyi,sha256=ObtTIgWWU0fsWGilO-hI91VE1Hw3mpg4PoXPVashQA8,3795
4084
+ homeassistant-stubs/components/zwave_js/const.pyi,sha256=dqnxMuyAus9BgZUgAedlM3XTRyxkDae1iZYXbFXWGo4,3736
4085
4085
  homeassistant-stubs/components/zwave_js/cover.pyi,sha256=wUuou3PgEVq45VUYOjCy1re39GWZIekzY92ueXmjlS0,5018
4086
4086
  homeassistant-stubs/components/zwave_js/device_action.pyi,sha256=W6rs2mJn0xY9KA_ICiHcYQa4sxeuuzM02M6FLxhMSDA,2615
4087
4087
  homeassistant-stubs/components/zwave_js/device_automation_helpers.pyi,sha256=r2uOE9m6UtRsElpP1De3iskTlU8qsmLYu-_8XJ9UGws,612
@@ -4159,7 +4159,7 @@ homeassistant-stubs/helpers/floor_registry.pyi,sha256=9tnqssmi8-ZiNcaE_csDDrrRZM
4159
4159
  homeassistant-stubs/helpers/frame.pyi,sha256=Nfy-6D0K6c4MY6l01gBG_Fz40Fm4OQJXK0QhE2DzDVI,2886
4160
4160
  homeassistant-stubs/helpers/group.pyi,sha256=0Hs__xX08YdzO9KVd4w-Gs3l9f6x3ArtVXlygKl9x2k,482
4161
4161
  homeassistant-stubs/helpers/hassio.pyi,sha256=MAK32PQA93ssKHOxTquC7s-2-WoE-_w2qSZVdn2srow,196
4162
- homeassistant-stubs/helpers/helper_integration.pyi,sha256=l93anDb135DvDW4irQrJrOWHSK7rP1jNFFy9EsrywAI,676
4162
+ homeassistant-stubs/helpers/helper_integration.pyi,sha256=qgEVGfeZ0KImOgffIrYNNeNBIvljH0TvzxkFVxjs_tk,628
4163
4163
  homeassistant-stubs/helpers/http.pyi,sha256=1maNdWIYgcB5tp6SzRwPs7QapOGeto5_rf1mRavO4HE,1917
4164
4164
  homeassistant-stubs/helpers/httpx_client.pyi,sha256=vnzFJ2VuP3q7Du61DDzu_WjgdPY65ERtkoEzdJggG40,1693
4165
4165
  homeassistant-stubs/helpers/icon.pyi,sha256=EFE61z2MMe98BK3zHeNTaT2ipb3VP20VF0sWBjVqjk4,1812
@@ -4257,7 +4257,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
4257
4257
  homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
4258
4258
  homeassistant-stubs/util/yaml/loader.pyi,sha256=cgUew76NjS7Q1Aml5sLBE2DB9JGrJS2fE-EDE92p-og,805
4259
4259
  homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
4260
- homeassistant_stubs-2025.6.0b7.dist-info/METADATA,sha256=WYRW4dAGUWcJasRc5qw59vIreD1ieBJ_2F_bDBwq19c,2952
4261
- homeassistant_stubs-2025.6.0b7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4262
- homeassistant_stubs-2025.6.0b7.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4263
- homeassistant_stubs-2025.6.0b7.dist-info/RECORD,,
4260
+ homeassistant_stubs-2025.6.0b8.dist-info/METADATA,sha256=hnWd0Dx-L2Lqq2n18MRAx-flfT4nRvjsqfr5QL9b8cA,2952
4261
+ homeassistant_stubs-2025.6.0b8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4262
+ homeassistant_stubs-2025.6.0b8.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4263
+ homeassistant_stubs-2025.6.0b8.dist-info/RECORD,,