homeassistant-stubs 2025.4.0b7__py3-none-any.whl → 2025.4.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.
@@ -2,7 +2,7 @@ from .coordinator import ComelitConfigEntry as ComelitConfigEntry, ComelitSerial
2
2
  from _typeshed import Incomplete
3
3
  from aiocomelit import ComelitSerialBridgeObject as ComelitSerialBridgeObject
4
4
  from homeassistant.components.cover import CoverDeviceClass as CoverDeviceClass, CoverEntity as CoverEntity, CoverState as CoverState
5
- from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
5
+ from homeassistant.core import HomeAssistant as HomeAssistant
6
6
  from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
7
7
  from homeassistant.helpers.restore_state import RestoreEntity as RestoreEntity
8
8
  from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity
@@ -32,9 +32,8 @@ class ComelitCoverEntity(CoordinatorEntity[ComelitSerialBridge], RestoreEntity,
32
32
  def is_closing(self) -> bool: ...
33
33
  @property
34
34
  def is_opening(self) -> bool: ...
35
+ async def _cover_set_state(self, action: int, state: int) -> None: ...
35
36
  async def async_close_cover(self, **kwargs: Any) -> None: ...
36
37
  async def async_open_cover(self, **kwargs: Any) -> None: ...
37
38
  async def async_stop_cover(self, **_kwargs: Any) -> None: ...
38
- @callback
39
- def _handle_coordinator_update(self) -> None: ...
40
39
  async def async_added_to_hass(self) -> None: ...
@@ -1,5 +1,5 @@
1
1
  import aiohttp
2
- from .const import FIRMWARE as FIRMWARE, FIRMWARE_VERSION as FIRMWARE_VERSION, NABU_CASA_FIRMWARE_RELEASES_URL as NABU_CASA_FIRMWARE_RELEASES_URL
2
+ from .const import DOMAIN as DOMAIN, FIRMWARE as FIRMWARE, FIRMWARE_VERSION as FIRMWARE_VERSION, HardwareVariant as HardwareVariant, NABU_CASA_FIRMWARE_RELEASES_URL as NABU_CASA_FIRMWARE_RELEASES_URL, PRODUCT as PRODUCT, SERIAL_NUMBER as SERIAL_NUMBER
3
3
  from _typeshed import Incomplete
4
4
  from homeassistant.components.homeassistant_hardware.coordinator import FirmwareUpdateCoordinator as FirmwareUpdateCoordinator
5
5
  from homeassistant.components.homeassistant_hardware.update import BaseFirmwareUpdateEntity as BaseFirmwareUpdateEntity, FirmwareUpdateEntityDescription as FirmwareUpdateEntityDescription
@@ -9,6 +9,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
9
9
  from homeassistant.const import EntityCategory as EntityCategory
10
10
  from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
11
11
  from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
12
+ from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
12
13
  from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
13
14
 
14
15
  _LOGGER: Incomplete
@@ -19,8 +20,11 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, asyn
19
20
 
20
21
  class FirmwareUpdateEntity(BaseFirmwareUpdateEntity):
21
22
  bootloader_reset_type: Incomplete
23
+ _attr_has_entity_name: bool
22
24
  _attr_unique_id: Incomplete
25
+ _attr_device_info: Incomplete
23
26
  _current_firmware_info: Incomplete
24
27
  def __init__(self, device: str, config_entry: ConfigEntry, update_coordinator: FirmwareUpdateCoordinator, entity_description: FirmwareUpdateEntityDescription) -> None: ...
28
+ def _update_attributes(self) -> None: ...
25
29
  @callback
26
30
  def _firmware_info_callback(self, firmware_info: FirmwareInfo) -> None: ...
@@ -1,8 +1,8 @@
1
1
  from _typeshed import Incomplete
2
2
 
3
3
  DOMAIN: str
4
- RADIO_MODEL: str
5
- RADIO_MANUFACTURER: str
4
+ MODEL: str
5
+ MANUFACTURER: str
6
6
  RADIO_DEVICE: str
7
7
  ZHA_HW_DISCOVERY_DATA: Incomplete
8
8
  FIRMWARE: str
@@ -1,5 +1,5 @@
1
1
  import aiohttp
2
- from .const import FIRMWARE as FIRMWARE, FIRMWARE_VERSION as FIRMWARE_VERSION, NABU_CASA_FIRMWARE_RELEASES_URL as NABU_CASA_FIRMWARE_RELEASES_URL, RADIO_DEVICE as RADIO_DEVICE
2
+ from .const import DOMAIN as DOMAIN, FIRMWARE as FIRMWARE, FIRMWARE_VERSION as FIRMWARE_VERSION, MANUFACTURER as MANUFACTURER, MODEL as MODEL, NABU_CASA_FIRMWARE_RELEASES_URL as NABU_CASA_FIRMWARE_RELEASES_URL, RADIO_DEVICE as RADIO_DEVICE
3
3
  from _typeshed import Incomplete
4
4
  from homeassistant.components.homeassistant_hardware.coordinator import FirmwareUpdateCoordinator as FirmwareUpdateCoordinator
5
5
  from homeassistant.components.homeassistant_hardware.update import BaseFirmwareUpdateEntity as BaseFirmwareUpdateEntity, FirmwareUpdateEntityDescription as FirmwareUpdateEntityDescription
@@ -9,6 +9,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
9
9
  from homeassistant.const import EntityCategory as EntityCategory
10
10
  from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
11
11
  from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
12
+ from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
12
13
  from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
13
14
 
14
15
  _LOGGER: Incomplete
@@ -19,8 +20,11 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, asyn
19
20
 
20
21
  class FirmwareUpdateEntity(BaseFirmwareUpdateEntity):
21
22
  bootloader_reset_type: str
23
+ _attr_has_entity_name: bool
22
24
  _attr_unique_id: Incomplete
25
+ _attr_device_info: Incomplete
23
26
  _current_firmware_info: Incomplete
24
27
  def __init__(self, device: str, config_entry: ConfigEntry, update_coordinator: FirmwareUpdateCoordinator, entity_description: FirmwareUpdateEntityDescription) -> None: ...
28
+ def _update_attributes(self) -> None: ...
25
29
  @callback
26
30
  def _firmware_info_callback(self, firmware_info: FirmwareInfo) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: homeassistant-stubs
3
- Version: 2025.4.0b7
3
+ Version: 2025.4.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.14,>=3.13
21
- Requires-Dist: homeassistant==2025.4.0b7
21
+ Requires-Dist: homeassistant==2025.4.0b9
22
22
  Description-Content-Type: text/markdown
23
23
 
24
24
  [![CI](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml/badge.svg)](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
@@ -662,7 +662,7 @@ homeassistant-stubs/components/comelit/climate.pyi,sha256=arcAblWjpuVX7CmFe6I0jB
662
662
  homeassistant-stubs/components/comelit/config_flow.pyi,sha256=vu1XCl3cRN5eFw5E0ZITO7z7JVS-mwYjFDb8-rfWO7k,1384
663
663
  homeassistant-stubs/components/comelit/const.pyi,sha256=5Lrjb6Qb3OtA95DHpTYlVT99t2wq9z0JF_OOXWT-Te4,132
664
664
  homeassistant-stubs/components/comelit/coordinator.pyi,sha256=w_5JVtsoVYV4V9Ghot7SWd5py2OK7WmNKpK3G6IOJEc,2266
665
- homeassistant-stubs/components/comelit/cover.pyi,sha256=rZMhcy_JVc5bJUnYc-BcQxsNWa9O4CR63sG_QRlaP8k,2000
665
+ homeassistant-stubs/components/comelit/cover.pyi,sha256=RwjaU-TOv-xLD6qJE-FcIuBJs2FWXiygrNOxHv_YRiI,1985
666
666
  homeassistant-stubs/components/comelit/diagnostics.pyi,sha256=48kNXU7evzV8jwyXyxzblc43nhknV8Uttd6vRguqwtc,489
667
667
  homeassistant-stubs/components/comelit/humidifier.pyi,sha256=TsUnc3IJq8w6TV5bOJ0gsQxXDiIpRUfYvw3eqrOLTn8,2823
668
668
  homeassistant-stubs/components/comelit/light.pyi,sha256=hHH-q0_5zlp3bnYshlvohPe9VKpCMLSWCgu6lnEc7wg,1473
@@ -1482,13 +1482,13 @@ homeassistant-stubs/components/homeassistant_sky_connect/__init__.pyi,sha256=pdE
1482
1482
  homeassistant-stubs/components/homeassistant_sky_connect/config_flow.pyi,sha256=_3aSz299ujkivdPJp7kcLb_y2ENP-CYBKRyUoVwXLv0,3081
1483
1483
  homeassistant-stubs/components/homeassistant_sky_connect/const.pyi,sha256=fFnpI55a5USnVp_mqFE_kDkvecqB7_pr-8lymcF6pCE,702
1484
1484
  homeassistant-stubs/components/homeassistant_sky_connect/hardware.pyi,sha256=CNLNDkFKi1cxjdiCFhjp3ReAKLD_bBT17UOL5uxR2Wc,383
1485
- homeassistant-stubs/components/homeassistant_sky_connect/update.pyi,sha256=781TQ8hvODZaLu-NQHYsN9R_x1cjyMX2XPN66EXsbVU,2036
1485
+ homeassistant-stubs/components/homeassistant_sky_connect/update.pyi,sha256=4CjTYiXpCfCd9w28V3X6FpIXfiBpbN3G3b7d4EeGgBw,2329
1486
1486
  homeassistant-stubs/components/homeassistant_sky_connect/util.pyi,sha256=0apj3sPwxZSaKBgNmmNAFwpyzHCdwoMQBel6VWg78S8,412
1487
1487
  homeassistant-stubs/components/homeassistant_yellow/__init__.pyi,sha256=29W6EXOTxwfcX4NyLivfw2oMaH3h4i1QlbBad4vv9cg,1235
1488
1488
  homeassistant-stubs/components/homeassistant_yellow/config_flow.pyi,sha256=rhVFhYDSwmcaXpSDjgWoe_Ia6_R2IFKzzDfk1uCQ1Cc,4255
1489
- homeassistant-stubs/components/homeassistant_yellow/const.pyi,sha256=MWAUaJA_u0fMyc4ScTKYC4ngN2SqavBuCbywticKybc,228
1489
+ homeassistant-stubs/components/homeassistant_yellow/const.pyi,sha256=fD1szKU0Yv6q4CEVOEOMBkVBpYXiyYGHd_1R-YJu2RI,216
1490
1490
  homeassistant-stubs/components/homeassistant_yellow/hardware.pyi,sha256=F0vW0HKbmTiUbCAYKK8j0nzSgOxlqC7Ja6h7WlE9qiA,518
1491
- homeassistant-stubs/components/homeassistant_yellow/update.pyi,sha256=J1TG_BvsYDHNkHWQH6VDXszzR5UMj9rfjuwzLUT3CGA,2059
1491
+ homeassistant-stubs/components/homeassistant_yellow/update.pyi,sha256=RlVPJjGslLPcpKgx8XNCjwZppVF6m--M7xWJWVUl58c,2310
1492
1492
  homeassistant-stubs/components/homee/__init__.pyi,sha256=rogh-qriORRnR58yqrv4p4o-qpjPsYgLnXm03NR5OGQ,708
1493
1493
  homeassistant-stubs/components/homee/binary_sensor.pyi,sha256=h0JcZ9aCNEwaw4whBhSDYxstUCUSXlxXeDkh1y4w1Kk,1239
1494
1494
  homeassistant-stubs/components/homee/button.pyi,sha256=Apr8nX3ZZ1ku8YxW1YXdS_E0cfImtua-StGXNMWODqI,1238
@@ -4140,7 +4140,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
4140
4140
  homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
4141
4141
  homeassistant-stubs/util/yaml/loader.pyi,sha256=cgUew76NjS7Q1Aml5sLBE2DB9JGrJS2fE-EDE92p-og,805
4142
4142
  homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
4143
- homeassistant_stubs-2025.4.0b7.dist-info/METADATA,sha256=xfWZaw0v_Ovwo1riu-qBjssK__lHUpdlPXaNbc4zXck,2956
4144
- homeassistant_stubs-2025.4.0b7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4145
- homeassistant_stubs-2025.4.0b7.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4146
- homeassistant_stubs-2025.4.0b7.dist-info/RECORD,,
4143
+ homeassistant_stubs-2025.4.0b9.dist-info/METADATA,sha256=gzidTX0_qeviLj6ihP9hP43edvcwL6NVDnmVJynIejU,2956
4144
+ homeassistant_stubs-2025.4.0b9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4145
+ homeassistant_stubs-2025.4.0b9.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4146
+ homeassistant_stubs-2025.4.0b9.dist-info/RECORD,,