homeassistant-stubs 2025.6.0b6__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.
- homeassistant-stubs/components/derivative/__init__.pyi +0 -1
- homeassistant-stubs/components/here_travel_time/__init__.pyi +1 -2
- homeassistant-stubs/components/here_travel_time/coordinator.pyi +6 -8
- homeassistant-stubs/components/here_travel_time/model.pyi +6 -10
- homeassistant-stubs/components/history_stats/__init__.pyi +2 -1
- homeassistant-stubs/components/history_stats/config_flow.pyi +1 -1
- homeassistant-stubs/components/homeassistant/__init__.pyi +0 -1
- homeassistant-stubs/components/integration/__init__.pyi +2 -1
- homeassistant-stubs/components/jewish_calendar/sensor.pyi +1 -2
- homeassistant-stubs/components/nest/config_flow.pyi +0 -2
- homeassistant-stubs/components/shelly/__init__.pyi +1 -1
- homeassistant-stubs/components/shelly/utils.pyi +2 -0
- homeassistant-stubs/components/statistics/__init__.pyi +2 -1
- homeassistant-stubs/components/switch_as_x/__init__.pyi +16 -3
- homeassistant-stubs/components/threshold/__init__.pyi +2 -1
- homeassistant-stubs/components/trend/__init__.pyi +2 -1
- homeassistant-stubs/components/zwave_js/config_flow.pyi +1 -4
- homeassistant-stubs/components/zwave_js/const.pyi +0 -2
- homeassistant-stubs/helpers/device.pyi +1 -1
- homeassistant-stubs/helpers/helper_integration.pyi +3 -2
- {homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/RECORD +33 -33
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/__init__.pyi +0 -0
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/binary_sensor.pyi +0 -0
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/config_flow.pyi +0 -0
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/const.pyi +0 -0
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/coordinator.pyi +0 -0
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/diagnostics.pyi +0 -0
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/entity.pyi +0 -0
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/notify.pyi +0 -0
- /homeassistant-stubs/components/{amazon_devices → alexa_devices}/switch.pyi +0 -0
- {homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,5 @@
|
|
1
|
-
from .const import
|
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
|
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
|
-
|
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
|
-
|
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,
|
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
|
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
|
17
|
-
|
18
|
-
|
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:
|
26
|
-
departure:
|
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
|
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: ...
|
@@ -10,7 +10,6 @@ from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as Se
|
|
10
10
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError, Unauthorized as Unauthorized, UnknownUser as UnknownUser
|
11
11
|
from homeassistant.helpers import recorder as recorder, restore_state as restore_state
|
12
12
|
from homeassistant.helpers.entity_component import async_update_entity as async_update_entity
|
13
|
-
from homeassistant.helpers.importlib import async_import_module as async_import_module
|
14
13
|
from homeassistant.helpers.issue_registry import IssueSeverity as IssueSeverity
|
15
14
|
from homeassistant.helpers.service import async_extract_config_entry_ids as async_extract_config_entry_ids, async_extract_referenced_entity_ids as async_extract_referenced_entity_ids, async_register_admin_service as async_register_admin_service
|
16
15
|
from homeassistant.helpers.signal import KEY_HA_STOP as KEY_HA_STOP
|
@@ -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: ...
|
@@ -34,8 +34,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: JewishCalendarCon
|
|
34
34
|
|
35
35
|
class JewishCalendarBaseSensor(JewishCalendarEntity, SensorEntity):
|
36
36
|
_attr_entity_category: Incomplete
|
37
|
-
async def
|
38
|
-
async def async_update_data(self) -> None: ...
|
37
|
+
async def async_update(self) -> None: ...
|
39
38
|
|
40
39
|
class JewishCalendarSensor(JewishCalendarBaseSensor):
|
41
40
|
entity_description: JewishCalendarSensorDescription
|
@@ -8,7 +8,6 @@ from google_nest_sdm.structure import Structure as Structure
|
|
8
8
|
from homeassistant.config_entries import ConfigFlowResult as ConfigFlowResult, SOURCE_REAUTH as SOURCE_REAUTH
|
9
9
|
from homeassistant.helpers import config_entry_oauth2_flow as config_entry_oauth2_flow
|
10
10
|
from homeassistant.helpers.selector import SelectSelector as SelectSelector, SelectSelectorConfig as SelectSelectorConfig, SelectSelectorMode as SelectSelectorMode
|
11
|
-
from homeassistant.helpers.service_info.dhcp import DhcpServiceInfo as DhcpServiceInfo
|
12
11
|
from homeassistant.util import get_random_string as get_random_string
|
13
12
|
from typing import Any
|
14
13
|
|
@@ -55,4 +54,3 @@ class NestFlowHandler(config_entry_oauth2_flow.AbstractOAuth2FlowHandler, domain
|
|
55
54
|
async def async_step_pubsub_topic_confirm(self, user_input: dict | None = None) -> ConfigFlowResult: ...
|
56
55
|
async def async_step_pubsub_subscription(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
57
56
|
async def _async_finish(self) -> ConfigFlowResult: ...
|
58
|
-
async def async_step_dhcp(self, discovery_info: DhcpServiceInfo) -> ConfigFlowResult: ...
|
@@ -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 .
|
2
|
-
from
|
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
|
-
|
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,
|
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
|
@@ -8,6 +8,6 @@ def async_device_info_to_link_from_entity(hass: HomeAssistant, entity_id_or_uuid
|
|
8
8
|
@callback
|
9
9
|
def async_device_info_to_link_from_device_id(hass: HomeAssistant, device_id: str | None) -> dr.DeviceInfo | None: ...
|
10
10
|
@callback
|
11
|
-
def async_remove_stale_devices_links_keep_entity_device(hass: HomeAssistant, entry_id: str, source_entity_id_or_uuid: str) -> None: ...
|
11
|
+
def async_remove_stale_devices_links_keep_entity_device(hass: HomeAssistant, entry_id: str, source_entity_id_or_uuid: str | None) -> None: ...
|
12
12
|
@callback
|
13
13
|
def async_remove_stale_devices_links_keep_current_device(hass: HomeAssistant, entry_id: str, current_device_id: str | None) -> None: ...
|
@@ -1,5 +1,6 @@
|
|
1
1
|
from .event import async_track_entity_registry_updated_event as async_track_entity_registry_updated_event
|
2
|
-
from collections.abc import Callable as Callable
|
2
|
+
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
|
+
from typing import Any
|
4
5
|
|
5
|
-
def async_handle_source_entity_changes(hass: HomeAssistant, *, helper_config_entry_id: str,
|
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: ...
|
{homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.6.
|
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.
|
21
|
+
Requires-Dist: homeassistant==2025.6.0b8
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b8.dist-info}/RECORD
RENAMED
@@ -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
|
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=
|
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=
|
1450
|
-
homeassistant-stubs/components/here_travel_time/model.pyi,sha256=
|
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=
|
1457
|
-
homeassistant-stubs/components/history_stats/config_flow.pyi,sha256=
|
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
|
@@ -1484,7 +1484,7 @@ homeassistant-stubs/components/home_connect/services.pyi,sha256=nNgd34iZZhY3X3yg
|
|
1484
1484
|
homeassistant-stubs/components/home_connect/switch.pyi,sha256=FWGNrgpyELuidsZUuf9APVJXKP-RFVt8k4ISfM13rkE,2550
|
1485
1485
|
homeassistant-stubs/components/home_connect/time.pyi,sha256=4BCnoXJvKrNNPMYzn-QhX2S1Dt4LUUVWUQT3UO9tFEk,1897
|
1486
1486
|
homeassistant-stubs/components/home_connect/utils.pyi,sha256=2FCMFNNiLYdWwptLrh3HnTf-yDf2tJa1pp8jLPk_WiU,277
|
1487
|
-
homeassistant-stubs/components/homeassistant/__init__.pyi,sha256=
|
1487
|
+
homeassistant-stubs/components/homeassistant/__init__.pyi,sha256=4-7a11t8brVrjLO4pgKx8LU3hKXN7Y-acvEhmyEtU6Y,3000
|
1488
1488
|
homeassistant-stubs/components/homeassistant/const.pyi,sha256=3gwvKZJQfXdRl1r6-UmXpOevhfjo-WIuV8gcNMntow4,362
|
1489
1489
|
homeassistant-stubs/components/homeassistant/exposed_entities.pyi,sha256=0k6PqPe0ayHx73rqBcB3cwDi2Qy-pqW4ztOlWZZC-8g,4956
|
1490
1490
|
homeassistant-stubs/components/homeassistant/logbook.pyi,sha256=1-k5oFMPpgDg0PhIXuSpb5UyMP8_V38YG7BGbeOaJKE,887
|
@@ -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=
|
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
|
@@ -1817,7 +1817,7 @@ homeassistant-stubs/components/jewish_calendar/config_flow.pyi,sha256=GUccAK-YIE
|
|
1817
1817
|
homeassistant-stubs/components/jewish_calendar/const.pyi,sha256=dTqsUsfW8XlvWAYzpy7-ab6L27rrrLKq6CVMZ-iv5v4,320
|
1818
1818
|
homeassistant-stubs/components/jewish_calendar/diagnostics.pyi,sha256=HTWTg_O5KoQ4lDzcHaHHxgMiIQrUHKn3voNjtxaUNjc,575
|
1819
1819
|
homeassistant-stubs/components/jewish_calendar/entity.pyi,sha256=WYMkfIK8bxihpKseOuJJaxZbECxZAzIPaGv7yNOG2-4,1312
|
1820
|
-
homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=
|
1820
|
+
homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=aavPmAAnJNXPXnGg3gQRZAKQ-x10jaLoPAk1d3wriCs,2680
|
1821
1821
|
homeassistant-stubs/components/jewish_calendar/service.pyi,sha256=Q9SWAx1ouF7vQ1ORzUw0mSXtc4fYtVHjbMI2XGMh8R8,866
|
1822
1822
|
homeassistant-stubs/components/jvc_projector/__init__.pyi,sha256=sh-EsPzGEZEtqhz-gi1KolvkRy08HTpZIkoP_8e-sUY,751
|
1823
1823
|
homeassistant-stubs/components/jvc_projector/binary_sensor.pyi,sha256=3VZ4tXMOvlm3mHD9Ky7cdtNPWPT0c7taDA7xWw1PPIA,912
|
@@ -2428,7 +2428,7 @@ homeassistant-stubs/components/nest/api.pyi,sha256=1yHgXkF12szXKMNyu9yilbY9CdgxW
|
|
2428
2428
|
homeassistant-stubs/components/nest/application_credentials.pyi,sha256=6FJeSY56LumWCAyaIGYgl_lYqbkON3G4JRInkguyBsE,394
|
2429
2429
|
homeassistant-stubs/components/nest/camera.pyi,sha256=TklZ5S_AHiY4aSmn_l33rzqtxjUmw_tGjQ5pOesso-4,4058
|
2430
2430
|
homeassistant-stubs/components/nest/climate.pyi,sha256=fjhFP4YfKVU-zkFRhH0YeOQB5Su5lQDk-Qonz0KWqfs,3339
|
2431
|
-
homeassistant-stubs/components/nest/config_flow.pyi,sha256=
|
2431
|
+
homeassistant-stubs/components/nest/config_flow.pyi,sha256=siGnaPe5KxuDiYn1c22u7FayLRzSXFMs-SWihZrcJZo,3328
|
2432
2432
|
homeassistant-stubs/components/nest/const.pyi,sha256=XxP-x5930Td5uB20AgyRGQBw2izuV2iMiRNKV5ZcZ7w,405
|
2433
2433
|
homeassistant-stubs/components/nest/device_info.pyi,sha256=bEIA0lGEfIjRGnO7UWIUkzaQmX9orLe_GLZztf2pIBk,999
|
2434
2434
|
homeassistant-stubs/components/nest/device_trigger.pyi,sha256=v2z_GXRoQTfnCy4YMUoQKZ6PbMcShCpmTS7W6RD8szM,1164
|
@@ -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=
|
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=
|
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=
|
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=
|
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=
|
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=
|
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=
|
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=
|
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
|
@@ -4143,7 +4143,7 @@ homeassistant-stubs/helpers/config_validation.pyi,sha256=TVL8TUSDdi7h1S_hJYXWARO
|
|
4143
4143
|
homeassistant-stubs/helpers/data_entry_flow.pyi,sha256=VwH5up0Ad8Wa5NdfJ1WbJDckspFWcNzD2uvDhqzDdvE,1407
|
4144
4144
|
homeassistant-stubs/helpers/debounce.pyi,sha256=lnisG_0NkR1odeqez4SDZkW_Wk8BDiYt55cSfY4M9_Y,1353
|
4145
4145
|
homeassistant-stubs/helpers/deprecation.pyi,sha256=DzqtSPzdvyF2FOy97ev5FrUT5jjr2vY0KZ69-87ftbY,2524
|
4146
|
-
homeassistant-stubs/helpers/device.pyi,sha256=
|
4146
|
+
homeassistant-stubs/helpers/device.pyi,sha256=Ta2qKcZqN6OKigBsVdVYc01X7DDZKNX6KD299HyOhUU,782
|
4147
4147
|
homeassistant-stubs/helpers/device_registry.pyi,sha256=j5O26DAmwslddkGbwziIyQQZq6WYevlqIW111vrgwFo,13348
|
4148
4148
|
homeassistant-stubs/helpers/discovery.pyi,sha256=5MZKVLTRnu2m6l8NM_ETWO-o6Ux-tRwZC2QJ66YjOH8,1835
|
4149
4149
|
homeassistant-stubs/helpers/discovery_flow.pyi,sha256=SLYpWAl2JuilyTFIQouqNJiEvn643aAzEJW4t9tV8R4,1863
|
@@ -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=
|
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.
|
4261
|
-
homeassistant_stubs-2025.6.
|
4262
|
-
homeassistant_stubs-2025.6.
|
4263
|
-
homeassistant_stubs-2025.6.
|
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,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|