homeassistant-stubs 2025.6.0b8__py3-none-any.whl → 2025.6.0b9__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/generic_hygrostat/__init__.pyi +4 -2
- homeassistant-stubs/components/generic_thermostat/__init__.pyi +5 -3
- homeassistant-stubs/components/homeassistant/__init__.pyi +2 -0
- homeassistant-stubs/components/zwave_js/__init__.pyi +0 -1
- {homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.0b9.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.0b9.dist-info}/RECORD +8 -8
- {homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.0b9.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.0b9.dist-info}/licenses/LICENSE +0 -0
@@ -2,9 +2,11 @@ from _typeshed import Incomplete
|
|
2
2
|
from homeassistant.components.humidifier import HumidifierDeviceClass as HumidifierDeviceClass
|
3
3
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
4
4
|
from homeassistant.const import CONF_NAME as CONF_NAME, CONF_UNIQUE_ID as CONF_UNIQUE_ID, Platform as Platform
|
5
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
5
|
+
from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant
|
6
6
|
from homeassistant.helpers import discovery as discovery
|
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.event import async_track_entity_registry_updated_event as async_track_entity_registry_updated_event
|
9
|
+
from homeassistant.helpers.helper_integration import async_handle_source_entity_changes as async_handle_source_entity_changes
|
8
10
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
9
11
|
|
10
12
|
DOMAIN: str
|
@@ -1,7 +1,9 @@
|
|
1
|
-
from .const import CONF_HEATER as CONF_HEATER, PLATFORMS as PLATFORMS
|
1
|
+
from .const import CONF_HEATER as CONF_HEATER, CONF_SENSOR as CONF_SENSOR, PLATFORMS as PLATFORMS
|
2
2
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
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
|
3
|
+
from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant
|
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.event import async_track_entity_registry_updated_event as async_track_entity_registry_updated_event
|
6
|
+
from homeassistant.helpers.helper_integration import async_handle_source_entity_changes as async_handle_source_entity_changes
|
5
7
|
|
6
8
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
7
9
|
async def config_entry_update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
|
@@ -34,6 +34,8 @@ SCHEMA_RESTART: Incomplete
|
|
34
34
|
SHUTDOWN_SERVICES: Incomplete
|
35
35
|
DEPRECATION_URL: str
|
36
36
|
|
37
|
+
def _is_32_bit() -> bool: ...
|
38
|
+
async def _get_arch() -> str: ...
|
37
39
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
38
40
|
async def _async_stop(hass: HomeAssistant, restart: bool) -> None: ...
|
39
41
|
@callback
|
@@ -81,7 +81,6 @@ class NodeEvents:
|
|
81
81
|
async def client_listen(hass: HomeAssistant, entry: ConfigEntry, client: ZwaveClient, driver_ready: asyncio.Event) -> None: ...
|
82
82
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
83
83
|
async def async_remove_entry(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
|
84
|
-
async def async_remove_config_entry_device(hass: HomeAssistant, config_entry: ConfigEntry, device_entry: dr.DeviceEntry) -> bool: ...
|
85
84
|
async def async_ensure_addon_running(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
|
86
85
|
@callback
|
87
86
|
def _get_addon_manager(hass: HomeAssistant) -> AddonManager: ...
|
{homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.0b9.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.0b9
|
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.0b9
|
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.0b8.dist-info → homeassistant_stubs-2025.6.0b9.dist-info}/RECORD
RENAMED
@@ -1285,10 +1285,10 @@ homeassistant-stubs/components/fyta/diagnostics.pyi,sha256=HYxJ_tkxQVvp2mnPJisJa
|
|
1285
1285
|
homeassistant-stubs/components/fyta/entity.pyi,sha256=SqS71Ll-CcIL05vt2Zua6O5Ci_N1IZ0f7YTMUqz_NJQ,914
|
1286
1286
|
homeassistant-stubs/components/fyta/image.pyi,sha256=22w0HiFbHHK8_kYYxLQVKZbS90uNJEpJIcL6OnZEYB8,1573
|
1287
1287
|
homeassistant-stubs/components/fyta/sensor.pyi,sha256=vcdfmZJj6gaILrwMccR7KYaPyyJaRORZ2CPGqYJ5mRM,1544
|
1288
|
-
homeassistant-stubs/components/generic_hygrostat/__init__.pyi,sha256=
|
1288
|
+
homeassistant-stubs/components/generic_hygrostat/__init__.pyi,sha256=R_99uc4_HtO0fWHBcKYNpqAX4Y33B1Z3AiBr-pstYX8,1729
|
1289
1289
|
homeassistant-stubs/components/generic_hygrostat/config_flow.pyi,sha256=raOQsu1mEzTPBy9xi9_aGyEz9Lfi_X3srKzkCMegT54,1223
|
1290
1290
|
homeassistant-stubs/components/generic_hygrostat/humidifier.pyi,sha256=kioanuP-oByoD60US_iHupzAoKOwlpTEaX3CX-fM8zM,6298
|
1291
|
-
homeassistant-stubs/components/generic_thermostat/__init__.pyi,sha256=
|
1291
|
+
homeassistant-stubs/components/generic_thermostat/__init__.pyi,sha256=dCjq0XdSaX7h68_CYeZ3PYC8THtk-k-ojfaiTCCjQ9I,966
|
1292
1292
|
homeassistant-stubs/components/generic_thermostat/climate.pyi,sha256=zXIxbcRccXB73o5xv6XUzD-DHegVP948T-UBVSAQwPI,5963
|
1293
1293
|
homeassistant-stubs/components/generic_thermostat/config_flow.pyi,sha256=gJSwsrOBc-LdY9Fl3Xo518XnoftqT8zBJrTGQfwwl_4,1230
|
1294
1294
|
homeassistant-stubs/components/generic_thermostat/const.pyi,sha256=xb25DDg8UXMZ_o6o7AzcOL4KyT06SKtfzqJzDaGKV5w,554
|
@@ -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=dVZsAg0Pq2qo9OxIvrae_OlaEJ6ga8CbmC9xhnYa5bM,3064
|
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
|
@@ -4073,7 +4073,7 @@ homeassistant-stubs/components/zone/__init__.pyi,sha256=5Qsi1EIHFZHgy1Y2VZFrvqU3
|
|
4073
4073
|
homeassistant-stubs/components/zone/config_flow.pyi,sha256=fAqKpw37Xx8ljKEVHUHcx7QlyqpiiSHGS7ad_AgaZXw,156
|
4074
4074
|
homeassistant-stubs/components/zone/const.pyi,sha256=rVGPU8EQLdTz2cDuYqG_5JV1ROWgw9jCmxS7_IiKnCo,80
|
4075
4075
|
homeassistant-stubs/components/zone/trigger.pyi,sha256=vyWWVMOw4lMGlyVMxweJzqB-nvmSbRwqtTu1IZO65e4,1204
|
4076
|
-
homeassistant-stubs/components/zwave_js/__init__.pyi,sha256=
|
4076
|
+
homeassistant-stubs/components/zwave_js/__init__.pyi,sha256=_e3vKx35k2QBzunkqRLe5KWfXBT58HnfuZECDGKQFWg,8044
|
4077
4077
|
homeassistant-stubs/components/zwave_js/addon.pyi,sha256=6QRtRubMXA0j6e20eSGaWqXoKYhQMsqfMQs6U_Y5mIk,444
|
4078
4078
|
homeassistant-stubs/components/zwave_js/api.pyi,sha256=2bZPBXWARHYlHkLxeWchqjIx5BXza5ml_KV_JNfLsyA,19710
|
4079
4079
|
homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=XhzvV0tVnnLSb-I4UlnaRaGIdGm327WqRSMmLJscU9E,3597
|
@@ -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.0b9.dist-info/METADATA,sha256=1GfmlTeb0P2bHFv0_rOt_cV_LQoBTYsvaFAtDNVQF9U,2952
|
4261
|
+
homeassistant_stubs-2025.6.0b9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4262
|
+
homeassistant_stubs-2025.6.0b9.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4263
|
+
homeassistant_stubs-2025.6.0b9.dist-info/RECORD,,
|
File without changes
|
File without changes
|