homeassistant-stubs 2025.9.0b0__py3-none-any.whl → 2025.9.0b2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of homeassistant-stubs might be problematic. Click here for more details.
- homeassistant-stubs/components/alexa_devices/const.pyi +1 -1
- homeassistant-stubs/components/alexa_devices/sensor.pyi +1 -1
- homeassistant-stubs/components/alexa_devices/services.pyi +0 -1
- homeassistant-stubs/components/asuswrt/bridge.pyi +3 -1
- homeassistant-stubs/components/mastodon/config_flow.pyi +2 -2
- homeassistant-stubs/components/mastodon/diagnostics.pyi +2 -2
- homeassistant-stubs/components/websocket_api/http.pyi +1 -0
- homeassistant-stubs/components/yalexs_ble/__init__.pyi +3 -1
- homeassistant-stubs/components/yalexs_ble/config_cache.pyi +10 -0
- homeassistant-stubs/components/yalexs_ble/config_flow.pyi +4 -0
- homeassistant-stubs/components/zwave_js/binary_sensor.pyi +1 -0
- homeassistant-stubs/helpers/device_registry.pyi +4 -3
- homeassistant-stubs/helpers/entity_registry.pyi +6 -4
- {homeassistant_stubs-2025.9.0b0.dist-info → homeassistant_stubs-2025.9.0b2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.9.0b0.dist-info → homeassistant_stubs-2025.9.0b2.dist-info}/RECORD +17 -16
- {homeassistant_stubs-2025.9.0b0.dist-info → homeassistant_stubs-2025.9.0b2.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.9.0b0.dist-info → homeassistant_stubs-2025.9.0b2.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,7 +4,7 @@ from _typeshed import Incomplete
|
|
|
4
4
|
from aioamazondevices.api import AmazonDevice as AmazonDevice
|
|
5
5
|
from collections.abc import Callable as Callable
|
|
6
6
|
from dataclasses import dataclass
|
|
7
|
-
from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription
|
|
7
|
+
from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription, SensorStateClass as SensorStateClass
|
|
8
8
|
from homeassistant.const import LIGHT_LUX as LIGHT_LUX, UnitOfTemperature as UnitOfTemperature
|
|
9
9
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
10
10
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
|
@@ -6,6 +6,7 @@ from abc import ABC, abstractmethod
|
|
|
6
6
|
from aioasuswrt.asuswrt import AsusWrt as AsusWrtLegacy
|
|
7
7
|
from aiohttp import ClientSession as ClientSession
|
|
8
8
|
from asusrouter import AsusRouter
|
|
9
|
+
from asusrouter.config import ARConfigKey
|
|
9
10
|
from asusrouter.modules.client import AsusClient as AsusClient
|
|
10
11
|
from asusrouter.modules.data import AsusData
|
|
11
12
|
from collections.abc import Awaitable, Callable, Coroutine
|
|
@@ -93,7 +94,8 @@ class AsusWrtHttpBridge(AsusWrtBridge):
|
|
|
93
94
|
_api: Incomplete
|
|
94
95
|
def __init__(self, conf: dict[str, Any], session: ClientSession) -> None: ...
|
|
95
96
|
@staticmethod
|
|
96
|
-
def _get_api(conf: dict[str, Any], session: ClientSession) -> AsusRouter: ...
|
|
97
|
+
def _get_api(conf: dict[str, Any], session: ClientSession, config: dict[ARConfigKey, Any]) -> AsusRouter: ...
|
|
98
|
+
def _get_api_config(self) -> dict[ARConfigKey, Any]: ...
|
|
97
99
|
@property
|
|
98
100
|
def is_connected(self) -> bool: ...
|
|
99
101
|
_label_mac: Incomplete
|
|
@@ -5,7 +5,7 @@ from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowRes
|
|
|
5
5
|
from homeassistant.const import CONF_ACCESS_TOKEN as CONF_ACCESS_TOKEN, CONF_CLIENT_ID as CONF_CLIENT_ID, CONF_CLIENT_SECRET as CONF_CLIENT_SECRET
|
|
6
6
|
from homeassistant.helpers.selector import TextSelector as TextSelector, TextSelectorConfig as TextSelectorConfig, TextSelectorType as TextSelectorType
|
|
7
7
|
from homeassistant.util import slugify as slugify
|
|
8
|
-
from mastodon.Mastodon import Account as Account, Instance as Instance
|
|
8
|
+
from mastodon.Mastodon import Account as Account, Instance as Instance, InstanceV2 as InstanceV2
|
|
9
9
|
from typing import Any
|
|
10
10
|
|
|
11
11
|
STEP_USER_DATA_SCHEMA: Incomplete
|
|
@@ -15,6 +15,6 @@ def base_url_from_url(url: str) -> str: ...
|
|
|
15
15
|
class MastodonConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
16
16
|
VERSION: int
|
|
17
17
|
MINOR_VERSION: int
|
|
18
|
-
def check_connection(self, base_url: str, client_id: str, client_secret: str, access_token: str) -> tuple[Instance | None, Account | None, dict[str, str]]: ...
|
|
18
|
+
def check_connection(self, base_url: str, client_id: str, client_secret: str, access_token: str) -> tuple[InstanceV2 | Instance | None, Account | None, dict[str, str]]: ...
|
|
19
19
|
def show_user_form(self, user_input: dict[str, Any] | None = None, errors: dict[str, str] | None = None, description_placeholders: dict[str, str] | None = None, step_id: str = 'user') -> ConfigFlowResult: ...
|
|
20
20
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from .coordinator import MastodonConfigEntry as MastodonConfigEntry
|
|
2
2
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
3
|
-
from mastodon.Mastodon import Account as Account, Instance as Instance
|
|
3
|
+
from mastodon.Mastodon import Account as Account, Instance as Instance, InstanceV2 as InstanceV2
|
|
4
4
|
from typing import Any
|
|
5
5
|
|
|
6
6
|
async def async_get_config_entry_diagnostics(hass: HomeAssistant, config_entry: MastodonConfigEntry) -> dict[str, Any]: ...
|
|
7
|
-
def get_diagnostics(config_entry: MastodonConfigEntry) -> tuple[Instance, Account]: ...
|
|
7
|
+
def get_diagnostics(config_entry: MastodonConfigEntry) -> tuple[InstanceV2 | Instance, Account]: ...
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from .config_cache import async_get_validated_config as async_get_validated_config
|
|
1
2
|
from .const import CONF_ALWAYS_CONNECTED as CONF_ALWAYS_CONNECTED, CONF_KEY as CONF_KEY, CONF_LOCAL_NAME as CONF_LOCAL_NAME, CONF_SLOT as CONF_SLOT, DEVICE_TIMEOUT as DEVICE_TIMEOUT
|
|
2
3
|
from .models import YaleXSBLEData as YaleXSBLEData
|
|
3
4
|
from .util import async_find_existing_service_info as async_find_existing_service_info, bluetooth_callback_matcher as bluetooth_callback_matcher
|
|
@@ -6,11 +7,12 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
|
6
7
|
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS, EVENT_HOMEASSISTANT_STOP as EVENT_HOMEASSISTANT_STOP, Platform as Platform
|
|
7
8
|
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, CoreState as CoreState, Event as Event, HomeAssistant as HomeAssistant, callback as callback
|
|
8
9
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady
|
|
9
|
-
from yalexs_ble import ConnectionInfo as ConnectionInfo, LockInfo as LockInfo, LockState as LockState
|
|
10
|
+
from yalexs_ble import ConnectionInfo as ConnectionInfo, LockInfo as LockInfo, LockState as LockState, PushLock
|
|
10
11
|
|
|
11
12
|
type YALEXSBLEConfigEntry = ConfigEntry[YaleXSBLEData]
|
|
12
13
|
PLATFORMS: list[Platform]
|
|
13
14
|
|
|
14
15
|
async def async_setup_entry(hass: HomeAssistant, entry: YALEXSBLEConfigEntry) -> bool: ...
|
|
15
16
|
async def _async_update_listener(hass: HomeAssistant, entry: YALEXSBLEConfigEntry) -> None: ...
|
|
17
|
+
async def _async_wait_for_first_update(push_lock: PushLock, local_name: str) -> None: ...
|
|
16
18
|
async def async_unload_entry(hass: HomeAssistant, entry: YALEXSBLEConfigEntry) -> bool: ...
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
|
2
|
+
from homeassistant.util.hass_dict import HassKey as HassKey
|
|
3
|
+
from yalexs_ble import ValidatedLockConfig as ValidatedLockConfig
|
|
4
|
+
|
|
5
|
+
CONFIG_CACHE: HassKey[dict[str, ValidatedLockConfig]]
|
|
6
|
+
|
|
7
|
+
@callback
|
|
8
|
+
def async_add_validated_config(hass: HomeAssistant, address: str, config: ValidatedLockConfig) -> None: ...
|
|
9
|
+
@callback
|
|
10
|
+
def async_get_validated_config(hass: HomeAssistant, address: str) -> ValidatedLockConfig | None: ...
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from .config_cache import async_add_validated_config as async_add_validated_config, async_get_validated_config as async_get_validated_config
|
|
1
2
|
from .const import CONF_ALWAYS_CONNECTED as CONF_ALWAYS_CONNECTED, CONF_KEY as CONF_KEY, CONF_LOCAL_NAME as CONF_LOCAL_NAME, CONF_SLOT as CONF_SLOT, DOMAIN as DOMAIN
|
|
2
3
|
from .util import async_find_existing_service_info as async_find_existing_service_info, human_readable_name as human_readable_name
|
|
3
4
|
from _typeshed import Incomplete
|
|
@@ -32,7 +33,10 @@ class YalexsConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
|
32
33
|
async def async_step_integration_discovery_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
33
34
|
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> ConfigFlowResult: ...
|
|
34
35
|
async def async_step_reauth_validate(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
36
|
+
async def async_step_key_slot(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
35
37
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
38
|
+
@callback
|
|
39
|
+
def _async_get_name_from_address(self, address: str) -> str: ...
|
|
36
40
|
@staticmethod
|
|
37
41
|
@callback
|
|
38
42
|
def async_get_options_flow(config_entry: ConfigEntry) -> YaleXSBLEOptionsFlowHandler: ...
|
|
@@ -45,6 +45,7 @@ class PropertyZWaveJSEntityDescription(BinarySensorEntityDescription):
|
|
|
45
45
|
class NewNotificationZWaveJSEntityDescription(BinarySensorEntityDescription):
|
|
46
46
|
state_key: str
|
|
47
47
|
|
|
48
|
+
MIGRATED_NOTIFICATION_TYPES: Incomplete
|
|
48
49
|
NOTIFICATION_SENSOR_MAPPINGS: tuple[NotificationZWaveJSEntityDescription, ...]
|
|
49
50
|
PROPERTY_SENSOR_MAPPINGS: dict[str, PropertyZWaveJSEntityDescription]
|
|
50
51
|
BOOLEAN_SENSOR_MAPPINGS: dict[tuple[int, int | str], BinarySensorEntityDescription]
|
|
@@ -20,7 +20,7 @@ from homeassistant.util.event_type import EventType as EventType
|
|
|
20
20
|
from homeassistant.util.hass_dict import HassKey as HassKey
|
|
21
21
|
from homeassistant.util.json import format_unserializable_data as format_unserializable_data
|
|
22
22
|
from propcache.api import cached_property as under_cached_property
|
|
23
|
-
from typing import Any, Literal, TypedDict
|
|
23
|
+
from typing import Any, Final, Literal, TypedDict
|
|
24
24
|
from yarl import URL
|
|
25
25
|
|
|
26
26
|
_LOGGER: Incomplete
|
|
@@ -35,6 +35,7 @@ CONNECTION_NETWORK_MAC: str
|
|
|
35
35
|
CONNECTION_UPNP: str
|
|
36
36
|
CONNECTION_ZIGBEE: str
|
|
37
37
|
ORPHANED_DEVICE_KEEP_SECONDS: Incomplete
|
|
38
|
+
UNDEFINED_STR: Final[str]
|
|
38
39
|
RUNTIME_ONLY_ATTRS: Incomplete
|
|
39
40
|
CONFIGURATION_URL_SCHEMES: Incomplete
|
|
40
41
|
|
|
@@ -157,7 +158,7 @@ class DeletedDeviceEntry:
|
|
|
157
158
|
config_entries_subentries: dict[str, set[str | None]]
|
|
158
159
|
connections: set[tuple[str, str]]
|
|
159
160
|
created_at: datetime
|
|
160
|
-
disabled_by: DeviceEntryDisabler | None
|
|
161
|
+
disabled_by: DeviceEntryDisabler | UndefinedType | None
|
|
161
162
|
id: str
|
|
162
163
|
identifiers: set[tuple[str, str]]
|
|
163
164
|
labels: set[str]
|
|
@@ -165,7 +166,7 @@ class DeletedDeviceEntry:
|
|
|
165
166
|
name_by_user: str | None
|
|
166
167
|
orphaned_timestamp: float | None
|
|
167
168
|
_cache: dict[str, Any]
|
|
168
|
-
def to_device_entry(self, config_entry: ConfigEntry, config_subentry_id: str | None, connections: set[tuple[str, str]], identifiers: set[tuple[str, str]]) -> DeviceEntry: ...
|
|
169
|
+
def to_device_entry(self, config_entry: ConfigEntry, config_subentry_id: str | None, connections: set[tuple[str, str]], identifiers: set[tuple[str, str]], disabled_by: DeviceEntryDisabler | UndefinedType | None) -> DeviceEntry: ...
|
|
169
170
|
@under_cached_property
|
|
170
171
|
def as_storage_fragment(self) -> json_fragment: ...
|
|
171
172
|
def __init__(self, area_id, config_entries, config_entries_subentries, connections, created_at, disabled_by, id, identifiers, labels, modified_at, name_by_user, orphaned_timestamp, cache) -> None: ...
|
|
@@ -20,7 +20,7 @@ from homeassistant.util.hass_dict import HassKey as HassKey
|
|
|
20
20
|
from homeassistant.util.json import format_unserializable_data as format_unserializable_data
|
|
21
21
|
from homeassistant.util.read_only_dict import ReadOnlyDict as ReadOnlyDict
|
|
22
22
|
from propcache.api import cached_property as under_cached_property
|
|
23
|
-
from typing import Any, Literal, NotRequired, TypedDict
|
|
23
|
+
from typing import Any, Final, Literal, NotRequired, TypedDict
|
|
24
24
|
|
|
25
25
|
DATA_REGISTRY: HassKey[EntityRegistry]
|
|
26
26
|
EVENT_ENTITY_REGISTRY_UPDATED: EventType[EventEntityRegistryUpdatedData]
|
|
@@ -30,6 +30,7 @@ STORAGE_VERSION_MINOR: int
|
|
|
30
30
|
STORAGE_KEY: str
|
|
31
31
|
CLEANUP_INTERVAL: Incomplete
|
|
32
32
|
ORPHANED_ENTITY_KEEP_SECONDS: Incomplete
|
|
33
|
+
UNDEFINED_STR: Final[str]
|
|
33
34
|
ENTITY_CATEGORY_VALUE_TO_INDEX: dict[EntityCategory | None, int]
|
|
34
35
|
ENTITY_CATEGORY_INDEX_TO_VALUE: Incomplete
|
|
35
36
|
ENTITY_DESCRIBING_ATTRIBUTES: Incomplete
|
|
@@ -61,6 +62,7 @@ type ReadOnlyEntityOptionsType = ReadOnlyDict[str, ReadOnlyDict[str, Any]]
|
|
|
61
62
|
DISPLAY_DICT_OPTIONAL: Incomplete
|
|
62
63
|
|
|
63
64
|
def _protect_entity_options(data: EntityOptionsType | None) -> ReadOnlyEntityOptionsType: ...
|
|
65
|
+
def _protect_optional_entity_options(data: EntityOptionsType | UndefinedType | None) -> ReadOnlyEntityOptionsType | UndefinedType: ...
|
|
64
66
|
|
|
65
67
|
class RegistryEntry:
|
|
66
68
|
entity_id: str
|
|
@@ -132,15 +134,15 @@ class DeletedRegistryEntry:
|
|
|
132
134
|
config_subentry_id: str | None
|
|
133
135
|
created_at: datetime
|
|
134
136
|
device_class: str | None
|
|
135
|
-
disabled_by: RegistryEntryDisabler | None
|
|
137
|
+
disabled_by: RegistryEntryDisabler | UndefinedType | None
|
|
136
138
|
domain: str
|
|
137
|
-
hidden_by: RegistryEntryHider | None
|
|
139
|
+
hidden_by: RegistryEntryHider | UndefinedType | None
|
|
138
140
|
icon: str | None
|
|
139
141
|
id: str
|
|
140
142
|
labels: set[str]
|
|
141
143
|
modified_at: datetime
|
|
142
144
|
name: str | None
|
|
143
|
-
options: ReadOnlyEntityOptionsType
|
|
145
|
+
options: ReadOnlyEntityOptionsType | UndefinedType
|
|
144
146
|
orphaned_timestamp: float | None
|
|
145
147
|
_cache: dict[str, Any]
|
|
146
148
|
@domain.default
|
{homeassistant_stubs-2025.9.0b0.dist-info → homeassistant_stubs-2025.9.0b2.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant-stubs
|
|
3
|
-
Version: 2025.9.
|
|
3
|
+
Version: 2025.9.0b2
|
|
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.9.
|
|
21
|
+
Requires-Dist: homeassistant==2025.9.0b2
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.9.0b0.dist-info → homeassistant_stubs-2025.9.0b2.dist-info}/RECORD
RENAMED
|
@@ -232,13 +232,13 @@ homeassistant-stubs/components/alexa/state_report.pyi,sha256=z6l9miD598LoKEdlMP2
|
|
|
232
232
|
homeassistant-stubs/components/alexa_devices/__init__.pyi,sha256=vynmlaumQUjlYji4TJ5anL8u-BJY75whc8bmLoO9GeE,1017
|
|
233
233
|
homeassistant-stubs/components/alexa_devices/binary_sensor.pyi,sha256=VPfaNQ6tpM8vLlOefGfdG5v6XrsLnH7TR8e71pm3A1c,1362
|
|
234
234
|
homeassistant-stubs/components/alexa_devices/config_flow.pyi,sha256=a7VQKF_45mfsJZwPaNUJe806sGTSsRWMJtFseuxnegs,1193
|
|
235
|
-
homeassistant-stubs/components/alexa_devices/const.pyi,sha256=
|
|
235
|
+
homeassistant-stubs/components/alexa_devices/const.pyi,sha256=wE2gcCVQ2yNsj_-lK8KbIafnNeF8OxS8XxwQXlXK1bg,135
|
|
236
236
|
homeassistant-stubs/components/alexa_devices/coordinator.pyi,sha256=RS7MNdKpbWL5HybB3JUnWCe__2ebWawhmFpG34pww9E,1059
|
|
237
237
|
homeassistant-stubs/components/alexa_devices/diagnostics.pyi,sha256=bRYiRMxTdgbGeSTQw0w0S91vwU2sCBuBNfHvyt_mgug,870
|
|
238
238
|
homeassistant-stubs/components/alexa_devices/entity.pyi,sha256=1oxFqfyw52JjClztThBJdtXj2BeC3_KWt0YPhsgiHrQ,914
|
|
239
239
|
homeassistant-stubs/components/alexa_devices/notify.pyi,sha256=JDU6BbYvy7NlK41ivzAJz0CDDJpr5M-2OJk858PK5M4,1391
|
|
240
|
-
homeassistant-stubs/components/alexa_devices/sensor.pyi,sha256=
|
|
241
|
-
homeassistant-stubs/components/alexa_devices/services.pyi,sha256=
|
|
240
|
+
homeassistant-stubs/components/alexa_devices/sensor.pyi,sha256=PNo4r7dQ7lQtFEPbheI9mdZQ7XlheIV0mQ8zYvQ8Qhg,1473
|
|
241
|
+
homeassistant-stubs/components/alexa_devices/services.pyi,sha256=vWmwhrzZApfI3kut_KaZ0_x-Rv9rdm5YjCUphhhFzvY,1101
|
|
242
242
|
homeassistant-stubs/components/alexa_devices/switch.pyi,sha256=w3ciKjUJSg54EmohphEoFPczwTbMhK1cjszzo8Vh9mg,1411
|
|
243
243
|
homeassistant-stubs/components/alexa_devices/utils.pyi,sha256=UU3T3fQ74zYah8pDCY6y4_Hy26UhwSPJaF9Kno-xLmk,433
|
|
244
244
|
homeassistant-stubs/components/alpha_vantage/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -405,7 +405,7 @@ homeassistant-stubs/components/assist_satellite/errors.pyi,sha256=roq9cFMrbiJ4-O
|
|
|
405
405
|
homeassistant-stubs/components/assist_satellite/intent.pyi,sha256=HTbQZnSD7MC-tG_SovCLcymYfUW9q3JuDiRXpyR_K_w,621
|
|
406
406
|
homeassistant-stubs/components/assist_satellite/websocket_api.pyi,sha256=tSfIMpvJXDaYryZYiC8bHPlMv7V1GxzR4cP9k7YqdC0,1443
|
|
407
407
|
homeassistant-stubs/components/asuswrt/__init__.pyi,sha256=kqTxaQbRWiEJDZsT-JbwWPDFMtDTu0-uqVKa8YYxL_g,680
|
|
408
|
-
homeassistant-stubs/components/asuswrt/bridge.pyi,sha256=
|
|
408
|
+
homeassistant-stubs/components/asuswrt/bridge.pyi,sha256=pq97KoEp0EtvUlJ5eS2zLhROT-4fBFGGmQ_ghQZFDNE,5737
|
|
409
409
|
homeassistant-stubs/components/asuswrt/config_flow.pyi,sha256=biW1WD9C2_66xFDCc5GzZzQOq3gDL7_QXbIZFes_-j8,2709
|
|
410
410
|
homeassistant-stubs/components/asuswrt/const.pyi,sha256=Icqyk4Jxb-iFhyo5XEuj2JaR_s2N96xhRebKsdumlhE,650
|
|
411
411
|
homeassistant-stubs/components/asuswrt/device_tracker.pyi,sha256=fj1j0W6iHjeNbW062eMSPN3FmuTXuNLDwIU1sWza6Jg,1574
|
|
@@ -2167,10 +2167,10 @@ homeassistant-stubs/components/madvr/sensor.pyi,sha256=tl9Xvj79K_9FQ0SEJXJYbWkiH
|
|
|
2167
2167
|
homeassistant-stubs/components/manual/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2168
2168
|
homeassistant-stubs/components/manual/alarm_control_panel.pyi,sha256=7zZVdQk0-Bdwk1AQFesBNZjPQJGSrvMvw_LdoNek8SY,4627
|
|
2169
2169
|
homeassistant-stubs/components/mastodon/__init__.pyi,sha256=nO3D__Zf8YxGW8Bt_gc1TtFQisMe21AZ7bKHJwjVbpc,1496
|
|
2170
|
-
homeassistant-stubs/components/mastodon/config_flow.pyi,sha256=
|
|
2170
|
+
homeassistant-stubs/components/mastodon/config_flow.pyi,sha256=FS4omDedFk8CVsy4y1-XJ-irkR-MBgjPFgTubzAxa9s,1487
|
|
2171
2171
|
homeassistant-stubs/components/mastodon/const.pyi,sha256=AnJmxPXr1QnlTecOGEGRbvjOB9jRooxNECoM5SzQD-Q,326
|
|
2172
2172
|
homeassistant-stubs/components/mastodon/coordinator.pyi,sha256=eG0wWOXwUlE6QjjsWtu1pyeHphdyLckQX7J2q1_Kipc,977
|
|
2173
|
-
homeassistant-stubs/components/mastodon/diagnostics.pyi,sha256=
|
|
2173
|
+
homeassistant-stubs/components/mastodon/diagnostics.pyi,sha256=mm-EgOQTCYah9uVoyAZ0fY6LaxjcbO5VwZOK4lVwYRE,476
|
|
2174
2174
|
homeassistant-stubs/components/mastodon/entity.pyi,sha256=rK27sEfejQO2ZHWRncUI15orMIPpUY3CjZ8NCskM8D4,904
|
|
2175
2175
|
homeassistant-stubs/components/mastodon/sensor.pyi,sha256=0jSnFEKPcNUhvgmm4q4hVtUeXlWzdu3w1yzWUqpQqFI,1211
|
|
2176
2176
|
homeassistant-stubs/components/mastodon/services.pyi,sha256=AsgKL6AoP1uAb7DDkfS6S2JdbJDG5G1RfTKs4OK2hqo,1282
|
|
@@ -4075,7 +4075,7 @@ homeassistant-stubs/components/websocket_api/connection.pyi,sha256=jE0wJ7xH4hZNP
|
|
|
4075
4075
|
homeassistant-stubs/components/websocket_api/const.pyi,sha256=5CpHtWKAp62aqv5xieG8VDg_d6_0MOWvObdgbylgJLI,1147
|
|
4076
4076
|
homeassistant-stubs/components/websocket_api/decorators.pyi,sha256=Gg--Upls9u0y0CSiYmuLJl2GOSZu8dILCweylW9Vugk,1270
|
|
4077
4077
|
homeassistant-stubs/components/websocket_api/error.pyi,sha256=CFYujcIfsyBOn5j3hlScAuXUrB9X0CkAKpxHRx3XgqQ,121
|
|
4078
|
-
homeassistant-stubs/components/websocket_api/http.pyi,sha256=
|
|
4078
|
+
homeassistant-stubs/components/websocket_api/http.pyi,sha256=MTNhtLX0v_lTeKIIs9gxMvscX7MP7zjXRYwRSY-f07s,3891
|
|
4079
4079
|
homeassistant-stubs/components/websocket_api/messages.pyi,sha256=7S51KBHEtIMYCpv5xRKXksdjYNblFkQ31d4qx1EADWM,2250
|
|
4080
4080
|
homeassistant-stubs/components/websocket_api/sensor.pyi,sha256=O-Gi1s4HgWkJCuP9dm1vdHKQkTx6pcyvAyMB1-6DZr0,1073
|
|
4081
4081
|
homeassistant-stubs/components/websocket_api/util.pyi,sha256=OEWD7liL2uXXq4VKNf1x0PNy-QoGteaCtvF4ZhXf-9U,87
|
|
@@ -4169,9 +4169,10 @@ homeassistant-stubs/components/yale_smart_alarm/lock.pyi,sha256=zH9QlkHRYxfa70or
|
|
|
4169
4169
|
homeassistant-stubs/components/yale_smart_alarm/select.pyi,sha256=H1GbtwC3UGjg7zImbKjPYSUYVWXRhP6Y3VYVoqbEQDc,1123
|
|
4170
4170
|
homeassistant-stubs/components/yale_smart_alarm/sensor.pyi,sha256=kAzMXGxFpVnkLQlPBi67KL6bLcdkl6r2_-Gv6jYRUw4,890
|
|
4171
4171
|
homeassistant-stubs/components/yale_smart_alarm/switch.pyi,sha256=Rc-n2LliXloyUvfAkk7-kwq08OFkji7Vn_aWAtIJ_1c,1136
|
|
4172
|
-
homeassistant-stubs/components/yalexs_ble/__init__.pyi,sha256=
|
|
4172
|
+
homeassistant-stubs/components/yalexs_ble/__init__.pyi,sha256=WzVqOLTP-uEFBLfxDw6VvfHo7l2AF7e0Nj2n-l1KUu8,1574
|
|
4173
4173
|
homeassistant-stubs/components/yalexs_ble/binary_sensor.pyi,sha256=j4-K8dXUTVmQvWFFchv-rsJ5woqNEWaRXSb9hzH8Vzw,1001
|
|
4174
|
-
homeassistant-stubs/components/yalexs_ble/
|
|
4174
|
+
homeassistant-stubs/components/yalexs_ble/config_cache.pyi,sha256=khGwghGPUrp8etA3wcvzCmsv3_zOYGQs7vBHG3So7j8,495
|
|
4175
|
+
homeassistant-stubs/components/yalexs_ble/config_flow.pyi,sha256=QYr_lzBB8YpCzPopHe4tc3RWAjMT1K0NgywA-zhQ3W4,3088
|
|
4175
4176
|
homeassistant-stubs/components/yalexs_ble/const.pyi,sha256=w5Y9pGLavYDoqDJK4zabIUx0m7wNcNYFTGuwSAxqDfo,109
|
|
4176
4177
|
homeassistant-stubs/components/yalexs_ble/entity.pyi,sha256=PqaMn7pNAIYw4njkzsHMNT4S5x5PPZwfyCvHijG4wk8,1247
|
|
4177
4178
|
homeassistant-stubs/components/yalexs_ble/lock.pyi,sha256=U2r8ItO9oWZEV-AY3HfI_mqAC2JSC7WGGQUui0nf2gg,1557
|
|
@@ -4205,7 +4206,7 @@ homeassistant-stubs/components/zone/trigger.pyi,sha256=lZ4VXZGiwdRH6HinVkTJVcp_e
|
|
|
4205
4206
|
homeassistant-stubs/components/zwave_js/__init__.pyi,sha256=8r8zWpcWiKoDLgD2C2yu0hVFKkJqFWySJs0o3wOJJwI,8186
|
|
4206
4207
|
homeassistant-stubs/components/zwave_js/addon.pyi,sha256=6QRtRubMXA0j6e20eSGaWqXoKYhQMsqfMQs6U_Y5mIk,444
|
|
4207
4208
|
homeassistant-stubs/components/zwave_js/api.pyi,sha256=kxJPbhjJLAy3vD6aM69s1A3wMy2fxrXmymN_YXLWwQw,19937
|
|
4208
|
-
homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=
|
|
4209
|
+
homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=j9zzx4lI9Q9OwRJrE0uB3hrK84O1JNkXuZBRRouKdnA,4317
|
|
4209
4210
|
homeassistant-stubs/components/zwave_js/button.pyi,sha256=fizq4DRptMhKhZGCutC0iCY_oXga09e-w8k6wQ6b8_w,2190
|
|
4210
4211
|
homeassistant-stubs/components/zwave_js/climate.pyi,sha256=s4bPmmgVxNtTbZ_NYjUMY5Ii9IC0YLcMDo6j6KEYcVM,4458
|
|
4211
4212
|
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=tZjpMCDZj8hvuBXELtRFv8VPUQN9L_AeVDLItQ0CgXs,9629
|
|
@@ -4274,14 +4275,14 @@ homeassistant-stubs/helpers/data_entry_flow.pyi,sha256=0KALiMqnfa7sA1sT5KchZ2vtj
|
|
|
4274
4275
|
homeassistant-stubs/helpers/debounce.pyi,sha256=lnisG_0NkR1odeqez4SDZkW_Wk8BDiYt55cSfY4M9_Y,1353
|
|
4275
4276
|
homeassistant-stubs/helpers/deprecation.pyi,sha256=DzqtSPzdvyF2FOy97ev5FrUT5jjr2vY0KZ69-87ftbY,2524
|
|
4276
4277
|
homeassistant-stubs/helpers/device.pyi,sha256=Kq-Vvz1XKGq1XmpomL5NLR4YydAZVrORO2gZ53tNKcw,897
|
|
4277
|
-
homeassistant-stubs/helpers/device_registry.pyi,sha256
|
|
4278
|
+
homeassistant-stubs/helpers/device_registry.pyi,sha256=-ruJaWoRh1gKmyVNIcs8d_YKHHo8u_s6D8tnrDDf-FE,14081
|
|
4278
4279
|
homeassistant-stubs/helpers/discovery.pyi,sha256=5MZKVLTRnu2m6l8NM_ETWO-o6Ux-tRwZC2QJ66YjOH8,1835
|
|
4279
4280
|
homeassistant-stubs/helpers/discovery_flow.pyi,sha256=SLYpWAl2JuilyTFIQouqNJiEvn643aAzEJW4t9tV8R4,1863
|
|
4280
4281
|
homeassistant-stubs/helpers/dispatcher.pyi,sha256=z0VFzDAS4bG34zEuaw53-1-WgrquxGIFM2vUuhPyxSo,2545
|
|
4281
4282
|
homeassistant-stubs/helpers/entity.pyi,sha256=O2M0YaoNbvFimBDa81wg4V2-bhOJxSF8jJwNqoKeduM,13129
|
|
4282
4283
|
homeassistant-stubs/helpers/entity_component.pyi,sha256=8XMxnUcxQ5piz-arPKdlU5mMJ6AKsNo9wsj2OpZguiE,3985
|
|
4283
4284
|
homeassistant-stubs/helpers/entity_platform.pyi,sha256=ZPU6TAXlgQajetObcCTvsGjo9c8-noqy4JbWEhvr9xA,8286
|
|
4284
|
-
homeassistant-stubs/helpers/entity_registry.pyi,sha256=
|
|
4285
|
+
homeassistant-stubs/helpers/entity_registry.pyi,sha256=zo6MxkOX73KXMh0okQQEW-Ps0D7hs04B9Fpka8Qibnw,16419
|
|
4285
4286
|
homeassistant-stubs/helpers/entity_values.pyi,sha256=lxdx5isoDpSurN03yLcyJiiwkphatspaDbAPV51sKtE,509
|
|
4286
4287
|
homeassistant-stubs/helpers/entityfilter.pyi,sha256=KXooZYQHnY0I_DFpEEE5zTq0aEXSr7Eu7WQF2LPLjzw,2054
|
|
4287
4288
|
homeassistant-stubs/helpers/event.pyi,sha256=qXg8Hav1xH0njmGdy0XO2NgJxDLZNabAUKZT3gCPbD8,18159
|
|
@@ -4389,7 +4390,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4389
4390
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4390
4391
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4391
4392
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4392
|
-
homeassistant_stubs-2025.9.
|
|
4393
|
-
homeassistant_stubs-2025.9.
|
|
4394
|
-
homeassistant_stubs-2025.9.
|
|
4395
|
-
homeassistant_stubs-2025.9.
|
|
4393
|
+
homeassistant_stubs-2025.9.0b2.dist-info/METADATA,sha256=R6cOrh5jRuPCY4HdcWaX2ev9-uNm_v17Nr0obRi02Z0,2952
|
|
4394
|
+
homeassistant_stubs-2025.9.0b2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4395
|
+
homeassistant_stubs-2025.9.0b2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4396
|
+
homeassistant_stubs-2025.9.0b2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|