homeassistant-stubs 2025.8.0b2__py3-none-any.whl → 2025.8.0b4__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/airthings/__init__.pyi +1 -3
- homeassistant-stubs/components/airthings/coordinator.pyi +3 -1
- homeassistant-stubs/components/asuswrt/router.pyi +3 -1
- homeassistant-stubs/components/downloader/services.pyi +1 -0
- homeassistant-stubs/components/matter/vacuum.pyi +0 -1
- homeassistant-stubs/components/mqtt/vacuum.pyi +4 -3
- homeassistant-stubs/components/openai_conversation/__init__.pyi +1 -0
- homeassistant-stubs/components/opower/config_flow.pyi +12 -7
- homeassistant-stubs/components/opower/const.pyi +1 -0
- homeassistant-stubs/components/opower/coordinator.pyi +1 -1
- homeassistant-stubs/components/unifi/hub/entity_loader.pyi +3 -2
- homeassistant-stubs/components/vacuum/__init__.pyi +1 -0
- homeassistant-stubs/components/zwave_js/__init__.pyi +1 -1
- homeassistant-stubs/components/zwave_js/config_flow.pyi +1 -0
- {homeassistant_stubs-2025.8.0b2.dist-info → homeassistant_stubs-2025.8.0b4.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.8.0b2.dist-info → homeassistant_stubs-2025.8.0b4.dist-info}/RECORD +18 -18
- {homeassistant_stubs-2025.8.0b2.dist-info → homeassistant_stubs-2025.8.0b4.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.8.0b2.dist-info → homeassistant_stubs-2025.8.0b4.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
from .const import CONF_SECRET as CONF_SECRET
|
|
2
|
-
from .coordinator import AirthingsDataUpdateCoordinator as AirthingsDataUpdateCoordinator
|
|
2
|
+
from .coordinator import AirthingsConfigEntry as AirthingsConfigEntry, AirthingsDataUpdateCoordinator as AirthingsDataUpdateCoordinator
|
|
3
3
|
from _typeshed import Incomplete
|
|
4
|
-
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
5
4
|
from homeassistant.const import CONF_ID as CONF_ID, Platform as Platform
|
|
6
5
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
7
6
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
|
@@ -9,7 +8,6 @@ from homeassistant.helpers.aiohttp_client import async_get_clientsession as asyn
|
|
|
9
8
|
_LOGGER: Incomplete
|
|
10
9
|
PLATFORMS: list[Platform]
|
|
11
10
|
SCAN_INTERVAL: Incomplete
|
|
12
|
-
type AirthingsConfigEntry = ConfigEntry[AirthingsDataUpdateCoordinator]
|
|
13
11
|
|
|
14
12
|
async def async_setup_entry(hass: HomeAssistant, entry: AirthingsConfigEntry) -> bool: ...
|
|
15
13
|
async def async_unload_entry(hass: HomeAssistant, entry: AirthingsConfigEntry) -> bool: ...
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
from .const import DOMAIN as DOMAIN
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from airthings import Airthings as Airthings, AirthingsDevice
|
|
4
|
+
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
4
5
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
5
6
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
|
6
7
|
|
|
7
8
|
_LOGGER: Incomplete
|
|
8
9
|
SCAN_INTERVAL: Incomplete
|
|
10
|
+
type AirthingsConfigEntry = ConfigEntry[AirthingsDataUpdateCoordinator]
|
|
9
11
|
|
|
10
12
|
class AirthingsDataUpdateCoordinator(DataUpdateCoordinator[dict[str, AirthingsDevice]]):
|
|
11
13
|
airthings: Incomplete
|
|
12
|
-
def __init__(self, hass: HomeAssistant, airthings: Airthings) -> None: ...
|
|
14
|
+
def __init__(self, hass: HomeAssistant, airthings: Airthings, config_entry: AirthingsConfigEntry) -> None: ...
|
|
13
15
|
async def _update_method(self) -> dict[str, AirthingsDevice]: ...
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from . import AsusWrtConfigEntry as AsusWrtConfigEntry
|
|
1
2
|
from .bridge import AsusWrtBridge as AsusWrtBridge, WrtDevice as WrtDevice
|
|
2
3
|
from .const import CONF_DNSMASQ as CONF_DNSMASQ, CONF_INTERFACE as CONF_INTERFACE, CONF_REQUIRE_IP as CONF_REQUIRE_IP, CONF_TRACK_UNKNOWN as CONF_TRACK_UNKNOWN, DEFAULT_DNSMASQ as DEFAULT_DNSMASQ, DEFAULT_INTERFACE as DEFAULT_INTERFACE, DEFAULT_TRACK_UNKNOWN as DEFAULT_TRACK_UNKNOWN, DOMAIN as DOMAIN, KEY_COORDINATOR as KEY_COORDINATOR, KEY_METHOD as KEY_METHOD, KEY_SENSORS as KEY_SENSORS, SENSORS_CONNECTED_DEVICE as SENSORS_CONNECTED_DEVICE
|
|
3
4
|
from _typeshed import Incomplete
|
|
@@ -22,8 +23,9 @@ _LOGGER: Incomplete
|
|
|
22
23
|
class AsusWrtSensorDataHandler:
|
|
23
24
|
_hass: Incomplete
|
|
24
25
|
_api: Incomplete
|
|
26
|
+
_entry: Incomplete
|
|
25
27
|
_connected_devices: int
|
|
26
|
-
def __init__(self, hass: HomeAssistant, api: AsusWrtBridge) -> None: ...
|
|
28
|
+
def __init__(self, hass: HomeAssistant, api: AsusWrtBridge, entry: AsusWrtConfigEntry) -> None: ...
|
|
27
29
|
async def _get_connected_devices(self) -> dict[str, int]: ...
|
|
28
30
|
def update_device_count(self, conn_devices: int) -> bool: ...
|
|
29
31
|
async def get_coordinator(self, sensor_type: str, update_method: Callable[[], Any] | None = None) -> DataUpdateCoordinator: ...
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from .const import ATTR_FILENAME as ATTR_FILENAME, ATTR_OVERWRITE as ATTR_OVERWRITE, ATTR_SUBDIR as ATTR_SUBDIR, ATTR_URL as ATTR_URL, CONF_DOWNLOAD_DIR as CONF_DOWNLOAD_DIR, DOMAIN as DOMAIN, DOWNLOAD_COMPLETED_EVENT as DOWNLOAD_COMPLETED_EVENT, DOWNLOAD_FAILED_EVENT as DOWNLOAD_FAILED_EVENT, SERVICE_DOWNLOAD_FILE as SERVICE_DOWNLOAD_FILE, _LOGGER as _LOGGER
|
|
2
2
|
from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, callback as callback
|
|
3
|
+
from homeassistant.exceptions import ServiceValidationError as ServiceValidationError
|
|
3
4
|
from homeassistant.helpers.service import async_register_admin_service as async_register_admin_service
|
|
4
5
|
from homeassistant.util import raise_if_invalid_filename as raise_if_invalid_filename, raise_if_invalid_path as raise_if_invalid_path
|
|
5
6
|
|
|
@@ -39,7 +39,6 @@ class MatterVacuum(MatterEntity, StateVacuumEntity):
|
|
|
39
39
|
async def async_locate(self, **kwargs: Any) -> None: ...
|
|
40
40
|
async def async_start(self) -> None: ...
|
|
41
41
|
async def async_pause(self) -> None: ...
|
|
42
|
-
_attr_battery_level: Incomplete
|
|
43
42
|
_attr_activity: Incomplete
|
|
44
43
|
@callback
|
|
45
44
|
def _update_from_device(self) -> None: ...
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
from . import subscription as subscription
|
|
2
2
|
from .config import MQTT_BASE_SCHEMA as MQTT_BASE_SCHEMA
|
|
3
|
-
from .const import CONF_COMMAND_TOPIC as CONF_COMMAND_TOPIC, CONF_RETAIN as CONF_RETAIN, CONF_STATE_TOPIC as CONF_STATE_TOPIC
|
|
4
|
-
from .entity import MqttEntity as MqttEntity, async_setup_entity_entry_helper as async_setup_entity_entry_helper
|
|
3
|
+
from .const import CONF_COMMAND_TOPIC as CONF_COMMAND_TOPIC, CONF_RETAIN as CONF_RETAIN, CONF_STATE_TOPIC as CONF_STATE_TOPIC, DOMAIN as DOMAIN
|
|
4
|
+
from .entity import IssueSeverity as IssueSeverity, MqttEntity as MqttEntity, async_setup_entity_entry_helper as async_setup_entity_entry_helper
|
|
5
5
|
from .models import ReceiveMessage as ReceiveMessage
|
|
6
6
|
from .schemas import MQTT_ENTITY_COMMON_SCHEMA as MQTT_ENTITY_COMMON_SCHEMA
|
|
7
|
-
from .util import valid_publish_topic as valid_publish_topic
|
|
7
|
+
from .util import learn_more_url as learn_more_url, valid_publish_topic as valid_publish_topic
|
|
8
8
|
from _typeshed import Incomplete
|
|
9
9
|
from homeassistant.components import vacuum as vacuum
|
|
10
10
|
from homeassistant.components.vacuum import ENTITY_ID_FORMAT as ENTITY_ID_FORMAT, StateVacuumEntity as StateVacuumEntity, VacuumActivity as VacuumActivity, VacuumEntityFeature as VacuumEntityFeature
|
|
@@ -80,6 +80,7 @@ class MqttStateVacuum(MqttEntity, StateVacuumEntity):
|
|
|
80
80
|
_attr_supported_features: Incomplete
|
|
81
81
|
_attr_fan_speed_list: Incomplete
|
|
82
82
|
def _setup_from_config(self, config: ConfigType) -> None: ...
|
|
83
|
+
async def mqtt_async_added_to_hass(self) -> None: ...
|
|
83
84
|
_attr_fan_speed: Incomplete
|
|
84
85
|
_attr_battery_level: Incomplete
|
|
85
86
|
def _update_state_attributes(self, payload: dict[str, Any]) -> None: ...
|
|
@@ -24,3 +24,4 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
|
24
24
|
async def async_update_options(hass: HomeAssistant, entry: OpenAIConfigEntry) -> None: ...
|
|
25
25
|
async def async_migrate_integration(hass: HomeAssistant) -> None: ...
|
|
26
26
|
async def async_migrate_entry(hass: HomeAssistant, entry: OpenAIConfigEntry) -> bool: ...
|
|
27
|
+
def _add_ai_task_subentry(hass: HomeAssistant, entry: OpenAIConfigEntry) -> None: ...
|
|
@@ -1,25 +1,30 @@
|
|
|
1
|
-
from .const import CONF_TOTP_SECRET as CONF_TOTP_SECRET, CONF_UTILITY as CONF_UTILITY, DOMAIN as DOMAIN
|
|
1
|
+
from .const import CONF_LOGIN_DATA as CONF_LOGIN_DATA, CONF_TOTP_SECRET as CONF_TOTP_SECRET, CONF_UTILITY as CONF_UTILITY, DOMAIN as DOMAIN
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from collections.abc import Mapping
|
|
4
|
-
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
|
4
|
+
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, SOURCE_REAUTH as SOURCE_REAUTH
|
|
5
5
|
from homeassistant.const import CONF_NAME as CONF_NAME, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
|
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
|
7
7
|
from homeassistant.helpers.aiohttp_client import async_create_clientsession as async_create_clientsession
|
|
8
8
|
from homeassistant.helpers.typing import VolDictType as VolDictType
|
|
9
|
+
from opower import MfaHandlerBase as MfaHandlerBase
|
|
9
10
|
from typing import Any
|
|
10
11
|
|
|
11
12
|
_LOGGER: Incomplete
|
|
12
|
-
|
|
13
|
+
CONF_MFA_CODE: str
|
|
14
|
+
CONF_MFA_METHOD: str
|
|
13
15
|
|
|
14
|
-
async def _validate_login(hass: HomeAssistant,
|
|
16
|
+
async def _validate_login(hass: HomeAssistant, data: Mapping[str, Any]) -> None: ...
|
|
15
17
|
|
|
16
18
|
class OpowerConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
17
19
|
VERSION: int
|
|
18
|
-
|
|
20
|
+
_data: dict[str, Any]
|
|
21
|
+
mfa_handler: MfaHandlerBase | None
|
|
19
22
|
def __init__(self) -> None: ...
|
|
20
23
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
21
|
-
async def
|
|
24
|
+
async def async_step_credentials(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
25
|
+
async def async_step_mfa_options(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
26
|
+
async def async_step_mfa_code(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
22
27
|
@callback
|
|
23
|
-
def _async_create_opower_entry(self, data: dict[str, Any]) -> ConfigFlowResult: ...
|
|
28
|
+
def _async_create_opower_entry(self, data: dict[str, Any], **kwargs: Any) -> ConfigFlowResult: ...
|
|
24
29
|
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> ConfigFlowResult: ...
|
|
25
30
|
async def async_step_reauth_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from .const import CONF_TOTP_SECRET as CONF_TOTP_SECRET, CONF_UTILITY as CONF_UTILITY, DOMAIN as DOMAIN
|
|
1
|
+
from .const import CONF_LOGIN_DATA as CONF_LOGIN_DATA, CONF_TOTP_SECRET as CONF_TOTP_SECRET, CONF_UTILITY as CONF_UTILITY, DOMAIN as DOMAIN
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from homeassistant.components.recorder import get_instance as get_instance
|
|
4
4
|
from homeassistant.components.recorder.models import StatisticData as StatisticData, StatisticMeanType as StatisticMeanType, StatisticMetaData as StatisticMetaData
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from .. import UnifiConfigEntry as UnifiConfigEntry
|
|
1
2
|
from ..const import LOGGER as LOGGER, UNIFI_WIRELESS_CLIENTS as UNIFI_WIRELESS_CLIENTS
|
|
2
3
|
from ..entity import UnifiEntity as UnifiEntity, UnifiEntityDescription as UnifiEntityDescription
|
|
3
4
|
from .hub import UnifiHub as UnifiHub
|
|
@@ -18,11 +19,11 @@ class UnifiEntityLoader:
|
|
|
18
19
|
api_updaters: Incomplete
|
|
19
20
|
polling_api_updaters: Incomplete
|
|
20
21
|
wireless_clients: Incomplete
|
|
21
|
-
|
|
22
|
+
_data_update_coordinator: Incomplete
|
|
22
23
|
_update_listener: Incomplete
|
|
23
24
|
platforms: list[tuple[AddEntitiesCallback, type[UnifiEntity], tuple[UnifiEntityDescription, ...], bool]]
|
|
24
25
|
known_objects: set[tuple[str, str]]
|
|
25
|
-
def __init__(self, hub: UnifiHub) -> None: ...
|
|
26
|
+
def __init__(self, hub: UnifiHub, config_entry: UnifiConfigEntry) -> None: ...
|
|
26
27
|
async def initialize(self) -> None: ...
|
|
27
28
|
async def _refresh_data(self, updaters: Sequence[Callable[[], Coroutine[Any, Any, None]]]) -> None: ...
|
|
28
29
|
async def _update_pollable_api_data(self) -> None: ...
|
|
@@ -60,7 +60,7 @@ class ControllerEvents:
|
|
|
60
60
|
def async_on_node_removed(self, event: dict) -> None: ...
|
|
61
61
|
@callback
|
|
62
62
|
def async_on_identify(self, event: dict) -> None: ...
|
|
63
|
-
async def
|
|
63
|
+
async def async_check_pre_provisioned_device(self, node: ZwaveNode) -> None: ...
|
|
64
64
|
async def async_register_node_in_dev_reg(self, node: ZwaveNode) -> dr.DeviceEntry: ...
|
|
65
65
|
|
|
66
66
|
class NodeEvents:
|
|
@@ -32,6 +32,7 @@ ON_SUPERVISOR_SCHEMA: Incomplete
|
|
|
32
32
|
MIN_MIGRATION_SDK_VERSION: Incomplete
|
|
33
33
|
NETWORK_TYPE_NEW: str
|
|
34
34
|
NETWORK_TYPE_EXISTING: str
|
|
35
|
+
ZWAVE_JS_UI_MIGRATION_INSTRUCTIONS: str
|
|
35
36
|
|
|
36
37
|
def get_manual_schema(user_input: dict[str, Any]) -> vol.Schema: ...
|
|
37
38
|
def get_on_supervisor_schema(user_input: dict[str, Any]) -> vol.Schema: ...
|
{homeassistant_stubs-2025.8.0b2.dist-info → homeassistant_stubs-2025.8.0b4.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant-stubs
|
|
3
|
-
Version: 2025.8.
|
|
3
|
+
Version: 2025.8.0b4
|
|
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.8.
|
|
21
|
+
Requires-Dist: homeassistant==2025.8.0b4
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.8.0b2.dist-info → homeassistant_stubs-2025.8.0b4.dist-info}/RECORD
RENAMED
|
@@ -140,10 +140,10 @@ homeassistant-stubs/components/airq/config_flow.pyi,sha256=W3GTorDKA5L0l1vdT_oyA
|
|
|
140
140
|
homeassistant-stubs/components/airq/const.pyi,sha256=3oZ3uGxKC7df5Sa4lwk3ujZKDhEah21J24mZX4Qj64Y,203
|
|
141
141
|
homeassistant-stubs/components/airq/coordinator.pyi,sha256=9D0JfjwtPOhaAK9qKiOjtDP7437EcZoFjUbyjcRGMiE,1065
|
|
142
142
|
homeassistant-stubs/components/airq/sensor.pyi,sha256=KeXKRzYvrENHkT7XEC_yG_Wr72ogGs_porlxua2wJIU,2091
|
|
143
|
-
homeassistant-stubs/components/airthings/__init__.pyi,sha256=
|
|
143
|
+
homeassistant-stubs/components/airthings/__init__.pyi,sha256=GWyX-aoqleGlK0wCIJaLbnXh6u8ToWwvfGOoKYjGHCY,707
|
|
144
144
|
homeassistant-stubs/components/airthings/config_flow.pyi,sha256=3j4OziU43JcPMew2vkhQip-LWHX35jA8Zri7w4pjXPw,605
|
|
145
145
|
homeassistant-stubs/components/airthings/const.pyi,sha256=_scgybjOSMHLDC-E799zvzPt_n9BCzpvRrYz6_-h3BA,29
|
|
146
|
-
homeassistant-stubs/components/airthings/coordinator.pyi,sha256
|
|
146
|
+
homeassistant-stubs/components/airthings/coordinator.pyi,sha256=-8IRIIGUWge9hf_5EEabLnN22Fe6UuMnmLeT1Duj7J8,811
|
|
147
147
|
homeassistant-stubs/components/airthings/sensor.pyi,sha256=ZqbfOJ5Ydb4A5dwLCBcDcrYUFXcmGNlpHUELLsaE3O8,2137
|
|
148
148
|
homeassistant-stubs/components/airthings_ble/__init__.pyi,sha256=K0dLL8gslq0OeODBthDqLUBxu734pFl2ocDwz0Y4AmY,554
|
|
149
149
|
homeassistant-stubs/components/airthings_ble/config_flow.pyi,sha256=aQbCW0Ejerpujmq80BX4WKv7HhAQOrg98_hXZ2uQpL0,1462
|
|
@@ -400,7 +400,7 @@ homeassistant-stubs/components/asuswrt/config_flow.pyi,sha256=biW1WD9C2_66xFDCc5
|
|
|
400
400
|
homeassistant-stubs/components/asuswrt/const.pyi,sha256=Icqyk4Jxb-iFhyo5XEuj2JaR_s2N96xhRebKsdumlhE,650
|
|
401
401
|
homeassistant-stubs/components/asuswrt/device_tracker.pyi,sha256=fj1j0W6iHjeNbW062eMSPN3FmuTXuNLDwIU1sWza6Jg,1574
|
|
402
402
|
homeassistant-stubs/components/asuswrt/diagnostics.pyi,sha256=EZc4vfOBazZMQrJJA4PE6eeKZZitRbedihmrp1e9wwc,643
|
|
403
|
-
homeassistant-stubs/components/asuswrt/router.pyi,sha256=
|
|
403
|
+
homeassistant-stubs/components/asuswrt/router.pyi,sha256=2i85H3ljo5-4cGzkOE5G7nAmXAL1L23Z3YthS-F6Cws,4100
|
|
404
404
|
homeassistant-stubs/components/asuswrt/sensor.pyi,sha256=_hFMiFIHtmBtElXcqv-TgXSZ8pYlzJnyVhmvSWmoNpE,2223
|
|
405
405
|
homeassistant-stubs/components/autarco/__init__.pyi,sha256=Z-VTwBJRH-VlebEtIZo1JWdPvXf2PHtikbqb_0fGYjQ,688
|
|
406
406
|
homeassistant-stubs/components/autarco/config_flow.pyi,sha256=Q1Xoi_1W2lEZxBkhv9VIL9ihyb_DVwIrkYCxf46mrpA,840
|
|
@@ -948,7 +948,7 @@ homeassistant-stubs/components/dormakaba_dkey/sensor.pyi,sha256=cvJD75NBCAI-r-M5
|
|
|
948
948
|
homeassistant-stubs/components/downloader/__init__.pyi,sha256=ABNyV41NsbAPpmhSy9W84lvQPORG4MUX7iG2x0TwNdg,358
|
|
949
949
|
homeassistant-stubs/components/downloader/config_flow.pyi,sha256=8q9a9iRCdP4AlP_DmrAFViV-edaOu-hW7LqxVILGlHE,622
|
|
950
950
|
homeassistant-stubs/components/downloader/const.pyi,sha256=ccL39-61ZJurffY1GNje31SHzS6ILFDjF4Ry_hRSdgg,261
|
|
951
|
-
homeassistant-stubs/components/downloader/services.pyi,sha256=
|
|
951
|
+
homeassistant-stubs/components/downloader/services.pyi,sha256=pFNPBrc5Klhqdmeh4v-9YR6jGp85Wps6TNN1nXPCYGU,920
|
|
952
952
|
homeassistant-stubs/components/dsmr/__init__.pyi,sha256=W3daNGN8bsfpf13c8PPgWOPq9qmLHZO-HKFWvhJYcPE,957
|
|
953
953
|
homeassistant-stubs/components/dsmr/config_flow.pyi,sha256=2jS65LL4FWeUIPq08L0D1MJCXZ6MbsQEcUMWCwFyWS0,2664
|
|
954
954
|
homeassistant-stubs/components/dsmr/const.pyi,sha256=CRfnw7_mae6gBhtGb189LU17bi0Kp7pFkSWvW72atrc,535
|
|
@@ -2196,7 +2196,7 @@ homeassistant-stubs/components/matter/sensor.pyi,sha256=FIfhVGtM590WF8vKiB6GCz7r
|
|
|
2196
2196
|
homeassistant-stubs/components/matter/switch.pyi,sha256=BkjpSk_MlGwr5Qvsvfvufj8aOk9jSXhTaQYv4td55b8,2709
|
|
2197
2197
|
homeassistant-stubs/components/matter/update.pyi,sha256=JU3aj4gknMbbhJG-_tWzexHPVl3cbog-5Ps2Dn2YL0Q,2722
|
|
2198
2198
|
homeassistant-stubs/components/matter/util.pyi,sha256=cW6CK4oLTg6vW_aZaeXMHQPzYwOUVT4Knf4rvho-HJg,463
|
|
2199
|
-
homeassistant-stubs/components/matter/vacuum.pyi,sha256=
|
|
2199
|
+
homeassistant-stubs/components/matter/vacuum.pyi,sha256=nXE2z2AMvak-8zNdOdd7vv7_Bfzno2mmGr82X5sFrgE,2179
|
|
2200
2200
|
homeassistant-stubs/components/matter/valve.pyi,sha256=92ibEovuHHMCxntfPv_-MAtcQn_P2__hnGI5kcuJP9g,1610
|
|
2201
2201
|
homeassistant-stubs/components/matter/water_heater.pyi,sha256=4jUcvqZzFXUyl75NqSaPWnmqqDoTYWD8PeG6wD87Mi0,2169
|
|
2202
2202
|
homeassistant-stubs/components/mcp/__init__.pyi,sha256=yYjbXS2AqR2M_g-0VT6NAns_YZXNCd9QgtzMivcKGPA,743
|
|
@@ -2383,7 +2383,7 @@ homeassistant-stubs/components/mqtt/text.pyi,sha256=DT0FlS-_XH-abRJIvUvS2Zu991An
|
|
|
2383
2383
|
homeassistant-stubs/components/mqtt/trigger.pyi,sha256=nMDC21-HJmRmkXAv8zDfttrE6-6cS3QPj-c9uPyTjR8,1640
|
|
2384
2384
|
homeassistant-stubs/components/mqtt/update.pyi,sha256=XdpxXpKNPi4AjlhrkpvKIJhWS6ipastGv7gGIQtNjws,3366
|
|
2385
2385
|
homeassistant-stubs/components/mqtt/util.pyi,sha256=k-wsT_m55I2wHG0NyEEh0ni0-TsNgKyR4mLp8BzXGhY,3340
|
|
2386
|
-
homeassistant-stubs/components/mqtt/vacuum.pyi,sha256=
|
|
2386
|
+
homeassistant-stubs/components/mqtt/vacuum.pyi,sha256=1w5pb4iuzqPuO0i0ipEZUsXaLtP9-jJdDRo6MydaK2M,4772
|
|
2387
2387
|
homeassistant-stubs/components/mqtt/valve.pyi,sha256=-ut42akqAmmE7iKBnLYXBJ5pmPQYVSq2elX4g6EK4h0,4443
|
|
2388
2388
|
homeassistant-stubs/components/mqtt/water_heater.pyi,sha256=SxJQEEAagSu7n46UHmGx77CUbiiWurLiZAV85PfYWMI,4771
|
|
2389
2389
|
homeassistant-stubs/components/mqtt/light/__init__.pyi,sha256=8HQtSOpQLut1O4XjiUs7k0LHV2q8kdchlUx8XgPM2VE,1551
|
|
@@ -2641,7 +2641,7 @@ homeassistant-stubs/components/open_router/config_flow.pyi,sha256=qsCHWKdFdDu55j
|
|
|
2641
2641
|
homeassistant-stubs/components/open_router/const.pyi,sha256=FbHnxYztqlkcjv6vggqU3tP8X7i2e2opnmmOHAMGXNc,276
|
|
2642
2642
|
homeassistant-stubs/components/open_router/conversation.pyi,sha256=4mZNGME9IuspywATxcWB4DZNK3VnzYxQSV9DiW-WOBU,1293
|
|
2643
2643
|
homeassistant-stubs/components/open_router/entity.pyi,sha256=RkmkMlnHp2u_24ii2JdpnYBliNl3geeTFjwaDfj9Wc4,1942
|
|
2644
|
-
homeassistant-stubs/components/openai_conversation/__init__.pyi,sha256=
|
|
2644
|
+
homeassistant-stubs/components/openai_conversation/__init__.pyi,sha256=TGkDy8K4rfuQrzHBXvzkrkDxY4MivtRWyVBZAO5i3PM,2547
|
|
2645
2645
|
homeassistant-stubs/components/openai_conversation/ai_task.pyi,sha256=CRd6LysszXywbVXV10T7A5z8YgHun_BtN9uVCdf3dT0,972
|
|
2646
2646
|
homeassistant-stubs/components/openai_conversation/config_flow.pyi,sha256=RoxA5MwVAlVMWV0h6FZBzcOhFpzkGOLZfgl-7bAKz6A,3981
|
|
2647
2647
|
homeassistant-stubs/components/openai_conversation/const.pyi,sha256=_oOaGyCjylIauwa53Cq2hXjMo7C-rcdXvoD9y0LQaDY,1121
|
|
@@ -2666,9 +2666,9 @@ homeassistant-stubs/components/openuv/diagnostics.pyi,sha256=wq8y2_kq1S0TMwHHlg5
|
|
|
2666
2666
|
homeassistant-stubs/components/openuv/entity.pyi,sha256=3NupY6tqWJTrdIZcjsS1WPI6q_qkBKgeAXcV9sGWCyo,775
|
|
2667
2667
|
homeassistant-stubs/components/openuv/sensor.pyi,sha256=DDzJ-FLkURzQCWBYOdXmDjE-IQ3imZdXk-2TVcaVZ6M,2216
|
|
2668
2668
|
homeassistant-stubs/components/opower/__init__.pyi,sha256=PyJxc88DEYP6bNiwU3ZQBn1cLWbsC6FvHr9Tokdn0cY,424
|
|
2669
|
-
homeassistant-stubs/components/opower/config_flow.pyi,sha256=
|
|
2670
|
-
homeassistant-stubs/components/opower/const.pyi,sha256=
|
|
2671
|
-
homeassistant-stubs/components/opower/coordinator.pyi,sha256=
|
|
2669
|
+
homeassistant-stubs/components/opower/config_flow.pyi,sha256=BlFijnyfIaMGwW7hePSfAA6EYH1yk3iWUgvgXZdplYU,1868
|
|
2670
|
+
homeassistant-stubs/components/opower/const.pyi,sha256=H_4cVCAsz23RMJVXiUczCSfdyJfR47r8_KydRamGxBo,73
|
|
2671
|
+
homeassistant-stubs/components/opower/coordinator.pyi,sha256=Bpyj2sWuOjAoIhIoBBELze2Irp0ww9uKgh_DAXqYNRQ,2040
|
|
2672
2672
|
homeassistant-stubs/components/opower/sensor.pyi,sha256=X6Pl4VLXEfQELz-SVEmrftA0Qbq9xKEPUH03-BwcfwA,1995
|
|
2673
2673
|
homeassistant-stubs/components/oralb/__init__.pyi,sha256=MtEtJqOi94-88h5FWEVqBgEOIGiJZ2nksWnkaUgV6r4,947
|
|
2674
2674
|
homeassistant-stubs/components/oralb/config_flow.pyi,sha256=MY-JIU7rdipTgiZAtt-2bTP1VGQ19JcQPW0NH_3enEM,1019
|
|
@@ -3873,7 +3873,7 @@ homeassistant-stubs/components/unifi/hub/__init__.pyi,sha256=hpEBPwRfSCAnsS8uwKU
|
|
|
3873
3873
|
homeassistant-stubs/components/unifi/hub/api.pyi,sha256=hj2INld-ZW1v8zNpyT4zb4ncD7b3PIeJupJUmuXh3nU,653
|
|
3874
3874
|
homeassistant-stubs/components/unifi/hub/config.pyi,sha256=0WSYjVYWmiGsph0MwF0xRBdulQyL2V1WbpWsij5bDeE,2036
|
|
3875
3875
|
homeassistant-stubs/components/unifi/hub/entity_helper.pyi,sha256=oi2g37dXY6xU6UbDlggf3BdAyzoni9-8o935odwLyNc,2108
|
|
3876
|
-
homeassistant-stubs/components/unifi/hub/entity_loader.pyi,sha256=
|
|
3876
|
+
homeassistant-stubs/components/unifi/hub/entity_loader.pyi,sha256=c_zGy1cUBB7o6udsPByPLNcQuGnAgO0ZCgG3Icm37j8,2208
|
|
3877
3877
|
homeassistant-stubs/components/unifi/hub/hub.pyi,sha256=EJQmiL7FN9kuFoAYviMLCvDcOLwsDtBjNLWMwF7aqE8,2090
|
|
3878
3878
|
homeassistant-stubs/components/unifi/hub/websocket.pyi,sha256=Ie9ACTgrhzouChhpfD-vHLRwknQ6ndF1StRJ3tcDAFg,1121
|
|
3879
3879
|
homeassistant-stubs/components/unifiprotect/__init__.pyi,sha256=YvxoDiQgZ0ZpVBUQQHByiAuPr8KN2O5l7Oj6iYW6-SU,2286
|
|
@@ -3938,7 +3938,7 @@ homeassistant-stubs/components/usb/models.pyi,sha256=pLkBrr3ZBOkR58G-LJ1aQSCbAho
|
|
|
3938
3938
|
homeassistant-stubs/components/usb/utils.pyi,sha256=T1Tpmwrk-Z3zotLrNZeg3fhdFjotoHxEHop8xYa8lig,268
|
|
3939
3939
|
homeassistant-stubs/components/uvc/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3940
3940
|
homeassistant-stubs/components/uvc/camera.pyi,sha256=dL3E-LxD29yqS5zeYgz317SJzZGxUuru-PzsYc6EcVY,2275
|
|
3941
|
-
homeassistant-stubs/components/vacuum/__init__.pyi,sha256=
|
|
3941
|
+
homeassistant-stubs/components/vacuum/__init__.pyi,sha256=yVBpNXs1m6anGy8aSLyMMUhKcf3u-Y6XLqLKwS7Qe_I,6524
|
|
3942
3942
|
homeassistant-stubs/components/vacuum/const.pyi,sha256=oiEgzej6HWtC1uFLSNzGNWSnGzvMyrdK38kLFf4Zlbw,741
|
|
3943
3943
|
homeassistant-stubs/components/vacuum/device_action.pyi,sha256=m2w8gEkIJR5ZNsbSJ9g6dRcl4eJwgCh9hL1pHL0hGnU,1028
|
|
3944
3944
|
homeassistant-stubs/components/vacuum/device_condition.pyi,sha256=1mavexg8GlbUR_WJkN57Lg50lBHm2vf8fGM9CWLhiFI,919
|
|
@@ -4178,13 +4178,13 @@ homeassistant-stubs/components/zone/condition.pyi,sha256=2uvMlxIMzIFQXV5WRZxSkMT
|
|
|
4178
4178
|
homeassistant-stubs/components/zone/config_flow.pyi,sha256=fAqKpw37Xx8ljKEVHUHcx7QlyqpiiSHGS7ad_AgaZXw,156
|
|
4179
4179
|
homeassistant-stubs/components/zone/const.pyi,sha256=rVGPU8EQLdTz2cDuYqG_5JV1ROWgw9jCmxS7_IiKnCo,80
|
|
4180
4180
|
homeassistant-stubs/components/zone/trigger.pyi,sha256=lZ4VXZGiwdRH6HinVkTJVcp_e6-us53Roy9uwcid4s4,1217
|
|
4181
|
-
homeassistant-stubs/components/zwave_js/__init__.pyi,sha256=
|
|
4181
|
+
homeassistant-stubs/components/zwave_js/__init__.pyi,sha256=kz3moIhb05B0sfZYinEJBhrEGR_iT85HupJrFStL_9I,8138
|
|
4182
4182
|
homeassistant-stubs/components/zwave_js/addon.pyi,sha256=6QRtRubMXA0j6e20eSGaWqXoKYhQMsqfMQs6U_Y5mIk,444
|
|
4183
4183
|
homeassistant-stubs/components/zwave_js/api.pyi,sha256=kxJPbhjJLAy3vD6aM69s1A3wMy2fxrXmymN_YXLWwQw,19937
|
|
4184
4184
|
homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=wfi4mQWvrV6jCN9sus08Joi570UjnVuXmf6fSO5G_XI,3615
|
|
4185
4185
|
homeassistant-stubs/components/zwave_js/button.pyi,sha256=fizq4DRptMhKhZGCutC0iCY_oXga09e-w8k6wQ6b8_w,2190
|
|
4186
4186
|
homeassistant-stubs/components/zwave_js/climate.pyi,sha256=s4bPmmgVxNtTbZ_NYjUMY5Ii9IC0YLcMDo6j6KEYcVM,4458
|
|
4187
|
-
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=
|
|
4187
|
+
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=ZmapQYyZcnJgWlEQ81UitpH5B9trAtfp21PY1WFxmfQ,9290
|
|
4188
4188
|
homeassistant-stubs/components/zwave_js/config_validation.pyi,sha256=i0l2VLc5E1-pW3oHZjxqeKJ1FJg7h4nwcDv02KtGHzU,148
|
|
4189
4189
|
homeassistant-stubs/components/zwave_js/const.pyi,sha256=g4Ptd1xVnqH62Q76Ane5Xu1cUPLSg9Q90bEQssSwyKE,3795
|
|
4190
4190
|
homeassistant-stubs/components/zwave_js/cover.pyi,sha256=dMcYjvsDGuf86RJGGVf_INsf9GSUXEl7qv_pymIOyLc,5018
|
|
@@ -4364,7 +4364,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4364
4364
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4365
4365
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4366
4366
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4367
|
-
homeassistant_stubs-2025.8.
|
|
4368
|
-
homeassistant_stubs-2025.8.
|
|
4369
|
-
homeassistant_stubs-2025.8.
|
|
4370
|
-
homeassistant_stubs-2025.8.
|
|
4367
|
+
homeassistant_stubs-2025.8.0b4.dist-info/METADATA,sha256=V_PqB2GYamNnxyYMkTFUSDdrKiWS7ST2zzxcI08YzJo,2952
|
|
4368
|
+
homeassistant_stubs-2025.8.0b4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4369
|
+
homeassistant_stubs-2025.8.0b4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4370
|
+
homeassistant_stubs-2025.8.0b4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|