homeassistant-stubs 2025.6.0b6__py3-none-any.whl → 2025.6.0b7__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/homeassistant/__init__.pyi +0 -1
- homeassistant-stubs/components/jewish_calendar/sensor.pyi +1 -2
- homeassistant-stubs/components/nest/config_flow.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.0b7.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b7.dist-info}/RECORD +9 -9
- {homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b7.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b7.dist-info}/licenses/LICENSE +0 -0
@@ -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
|
@@ -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: ...
|
@@ -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, get_helper_entity_id: Callable[[], str | None], set_source_entity_id_or_uuid: Callable[[str], None], source_device_id: str | None, source_entity_id_or_uuid: str) -> CALLBACK_TYPE: ...
|
6
|
+
def async_handle_source_entity_changes(hass: HomeAssistant, *, helper_config_entry_id: str, get_helper_entity_id: Callable[[], str | None], set_source_entity_id_or_uuid: Callable[[str], None], source_device_id: str | None, source_entity_id_or_uuid: str, source_entity_removed: Callable[[], Coroutine[Any, Any, None]]) -> CALLBACK_TYPE: ...
|
{homeassistant_stubs-2025.6.0b6.dist-info → homeassistant_stubs-2025.6.0b7.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.0b7
|
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.0b7
|
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.0b7.dist-info}/RECORD
RENAMED
@@ -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
|
@@ -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
|
@@ -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=l93anDb135DvDW4irQrJrOWHSK7rP1jNFFy9EsrywAI,676
|
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.0b7.dist-info/METADATA,sha256=WYRW4dAGUWcJasRc5qw59vIreD1ieBJ_2F_bDBwq19c,2952
|
4261
|
+
homeassistant_stubs-2025.6.0b7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4262
|
+
homeassistant_stubs-2025.6.0b7.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4263
|
+
homeassistant_stubs-2025.6.0b7.dist-info/RECORD,,
|
File without changes
|
File without changes
|