homeassistant-stubs 2025.6.0b8__py3-none-any.whl → 2025.6.1__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/alexa_devices/notify.pyi +1 -0
- 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/lifx/manager.pyi +2 -1
- homeassistant-stubs/components/remote_calendar/calendar.pyi +2 -1
- homeassistant-stubs/components/zwave_js/__init__.pyi +0 -1
- {homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.1.dist-info}/RECORD +11 -11
- {homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.1.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.1.dist-info}/licenses/LICENSE +0 -0
@@ -13,6 +13,7 @@ PARALLEL_UPDATES: int
|
|
13
13
|
|
14
14
|
@dataclass(frozen=True, kw_only=True)
|
15
15
|
class AmazonNotifyEntityDescription(NotifyEntityDescription):
|
16
|
+
is_supported: Callable[[AmazonDevice], bool] = ...
|
16
17
|
method: Callable[[AmazonEchoApi, AmazonDevice, str], Awaitable[None]]
|
17
18
|
subkey: str
|
18
19
|
|
@@ -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
|
@@ -1,7 +1,8 @@
|
|
1
1
|
from .const import ATTR_THEME as ATTR_THEME, DATA_LIFX_MANAGER as DATA_LIFX_MANAGER, DOMAIN as DOMAIN, _ATTR_COLOR_TEMP as _ATTR_COLOR_TEMP
|
2
|
-
from .coordinator import LIFXUpdateCoordinator as LIFXUpdateCoordinator
|
2
|
+
from .coordinator import LIFXUpdateCoordinator as LIFXUpdateCoordinator
|
3
3
|
from .util import convert_8_to_16 as convert_8_to_16, find_hsbk as find_hsbk
|
4
4
|
from _typeshed import Incomplete
|
5
|
+
from aiolifx.aiolifx import Light as Light
|
5
6
|
from aiolifx_themes.themes import Theme
|
6
7
|
from collections.abc import Callable as Callable
|
7
8
|
from homeassistant.components.light import ATTR_BRIGHTNESS as ATTR_BRIGHTNESS, ATTR_BRIGHTNESS_PCT as ATTR_BRIGHTNESS_PCT, ATTR_COLOR_NAME as ATTR_COLOR_NAME, ATTR_COLOR_TEMP_KELVIN as ATTR_COLOR_TEMP_KELVIN, ATTR_HS_COLOR as ATTR_HS_COLOR, ATTR_RGB_COLOR as ATTR_RGB_COLOR, ATTR_TRANSITION as ATTR_TRANSITION, ATTR_XY_COLOR as ATTR_XY_COLOR, COLOR_GROUP as COLOR_GROUP, VALID_BRIGHTNESS as VALID_BRIGHTNESS, VALID_BRIGHTNESS_PCT as VALID_BRIGHTNESS_PCT
|
@@ -8,6 +8,7 @@ from homeassistant.core import HomeAssistant as HomeAssistant
|
|
8
8
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
9
9
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity
|
10
10
|
from ical.event import Event as Event
|
11
|
+
from ical.timeline import Timeline as Timeline
|
11
12
|
|
12
13
|
_LOGGER: Incomplete
|
13
14
|
PARALLEL_UPDATES: int
|
@@ -18,7 +19,7 @@ class RemoteCalendarEntity(CoordinatorEntity[RemoteCalendarDataUpdateCoordinator
|
|
18
19
|
_attr_has_entity_name: bool
|
19
20
|
_attr_name: Incomplete
|
20
21
|
_attr_unique_id: Incomplete
|
21
|
-
|
22
|
+
_timeline: Timeline | None
|
22
23
|
def __init__(self, coordinator: RemoteCalendarDataUpdateCoordinator, entry: RemoteCalendarConfigEntry) -> None: ...
|
23
24
|
@property
|
24
25
|
def event(self) -> CalendarEvent | None: ...
|
@@ -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.1.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.1
|
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.1
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
@@ -219,7 +219,7 @@ homeassistant-stubs/components/alexa_devices/const.pyi,sha256=srM4_9inVetdV_nwt9
|
|
219
219
|
homeassistant-stubs/components/alexa_devices/coordinator.pyi,sha256=T7dk_l6SvvxLP9r9a2tNVLsS91FbDisQejDx5IgKuoo,986
|
220
220
|
homeassistant-stubs/components/alexa_devices/diagnostics.pyi,sha256=bRYiRMxTdgbGeSTQw0w0S91vwU2sCBuBNfHvyt_mgug,870
|
221
221
|
homeassistant-stubs/components/alexa_devices/entity.pyi,sha256=1oxFqfyw52JjClztThBJdtXj2BeC3_KWt0YPhsgiHrQ,914
|
222
|
-
homeassistant-stubs/components/alexa_devices/notify.pyi,sha256=
|
222
|
+
homeassistant-stubs/components/alexa_devices/notify.pyi,sha256=LcXjyj1TV8_qSYKv-GXFM78293ti9XuvEkhV4_QMjpk,1319
|
223
223
|
homeassistant-stubs/components/alexa_devices/switch.pyi,sha256=3WiKd7_lAGTwvxDDjYkAsKqwh0dAfFJSg-UqxAWrkbk,1339
|
224
224
|
homeassistant-stubs/components/alpha_vantage/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
225
|
homeassistant-stubs/components/alpha_vantage/sensor.pyi,sha256=lOIgbkISKtkxyu3EjpM5U-Scxr95BYt2_fQcjPrFoiI,2057
|
@@ -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
|
@@ -1997,7 +1997,7 @@ homeassistant-stubs/components/lifx/diagnostics.pyi,sha256=z09VXeFC2KH2Am2A4CR5q
|
|
1997
1997
|
homeassistant-stubs/components/lifx/discovery.pyi,sha256=2f4ap1B5OZ2p8CMbCfnnL4UVn0Wo49gY9ZKHFYrHQ0k,789
|
1998
1998
|
homeassistant-stubs/components/lifx/entity.pyi,sha256=su5Oec7Ud_DHVhmq7y93rt9KVSHTQNVOjkUrKOXl_aI,528
|
1999
1999
|
homeassistant-stubs/components/lifx/light.pyi,sha256=e_uNoMwTpYPV7fVJwpyYjb4E1mS2nHOTSvSBNG5k3Rw,4901
|
2000
|
-
homeassistant-stubs/components/lifx/manager.pyi,sha256=
|
2000
|
+
homeassistant-stubs/components/lifx/manager.pyi,sha256=CRvqdU_sjkBL-bU10pMPKru8yr5rIzmiAAqD3Zo9_YE,4501
|
2001
2001
|
homeassistant-stubs/components/lifx/migration.pyi,sha256=pGvYjnei3escgK2arN2OCucyrdfUEiJszPSlNgYkUuk,587
|
2002
2002
|
homeassistant-stubs/components/lifx/select.pyi,sha256=yTwd-ZF1ZmSANNt4SdeADWrLbPHwSwjd56EV9oiV_Ss,1995
|
2003
2003
|
homeassistant-stubs/components/lifx/sensor.pyi,sha256=_EqThDLcN7wnjS-NaTjH47TuomXSfdNN2u9RWEjtQO8,1423
|
@@ -2963,7 +2963,7 @@ homeassistant-stubs/components/remote/device_trigger.pyi,sha256=uC5UaBHAFOgtfm8E
|
|
2963
2963
|
homeassistant-stubs/components/remote/reproduce_state.pyi,sha256=oJOAxdJbalNMGVeSVOIgqlVQRDY86ohveaCNjvgidPY,795
|
2964
2964
|
homeassistant-stubs/components/remote/significant_change.pyi,sha256=xrvCaVI6vA33VUwletn0KI5ivWB1ZE3vggXTcN7A6KM,336
|
2965
2965
|
homeassistant-stubs/components/remote_calendar/__init__.pyi,sha256=tpj1cVap_TAogUSp_iu3sOarHQAlaN1AEInaVPLcoyA,581
|
2966
|
-
homeassistant-stubs/components/remote_calendar/calendar.pyi,sha256=
|
2966
|
+
homeassistant-stubs/components/remote_calendar/calendar.pyi,sha256=VabIojEvxxG3rEH_Gl0U3hCjYOnuGhgzf33mVhq3X2Y,1590
|
2967
2967
|
homeassistant-stubs/components/remote_calendar/config_flow.pyi,sha256=htdk2EpWyFCYZf-_vp6aN9nd-ed44GcL3nAEOCfWKsU,704
|
2968
2968
|
homeassistant-stubs/components/remote_calendar/const.pyi,sha256=v5rnTU3o6v40qyydkfnQCN5pquphuuPLQZGc68D2_g4,36
|
2969
2969
|
homeassistant-stubs/components/remote_calendar/coordinator.pyi,sha256=91OTTjRnkQzfE0n2dRswp43ypzaBxqwFRKPWtuLt_Xo,1057
|
@@ -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.1.dist-info/METADATA,sha256=CwhXlQrNvzy5kPBzt3X4Vy4iQE7cbQ150eAx3o1mUTk,2948
|
4261
|
+
homeassistant_stubs-2025.6.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4262
|
+
homeassistant_stubs-2025.6.1.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4263
|
+
homeassistant_stubs-2025.6.1.dist-info/RECORD,,
|
File without changes
|
{homeassistant_stubs-2025.6.0b8.dist-info → homeassistant_stubs-2025.6.1.dist-info}/licenses/LICENSE
RENAMED
File without changes
|