homeassistant-stubs 2025.10.0b6__py3-none-any.whl → 2025.10.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.
Potentially problematic release.
This version of homeassistant-stubs might be problematic. Click here for more details.
- homeassistant-stubs/components/idasen_desk/coordinator.pyi +8 -2
- homeassistant-stubs/components/media_source/models.pyi +1 -0
- homeassistant-stubs/components/nordpool/coordinator.pyi +5 -2
- {homeassistant_stubs-2025.10.0b6.dist-info → homeassistant_stubs-2025.10.1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.10.0b6.dist-info → homeassistant_stubs-2025.10.1.dist-info}/RECORD +7 -7
- {homeassistant_stubs-2025.10.0b6.dist-info → homeassistant_stubs-2025.10.1.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.10.0b6.dist-info → homeassistant_stubs-2025.10.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
2
|
from homeassistant.components import bluetooth as bluetooth
|
|
3
3
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
4
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
4
|
+
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
|
5
|
+
from homeassistant.helpers.debounce import Debouncer as Debouncer
|
|
5
6
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator
|
|
6
7
|
|
|
7
8
|
_LOGGER: Incomplete
|
|
8
9
|
type IdasenDeskConfigEntry = ConfigEntry[IdasenDeskCoordinator]
|
|
10
|
+
UPDATE_DEBOUNCE_TIME: float
|
|
9
11
|
|
|
10
12
|
class IdasenDeskCoordinator(DataUpdateCoordinator[int | None]):
|
|
11
13
|
config_entry: IdasenDeskConfigEntry
|
|
12
14
|
address: Incomplete
|
|
13
|
-
_expected_connected: bool
|
|
14
15
|
desk: Incomplete
|
|
16
|
+
_expected_connected: bool
|
|
17
|
+
_height: int | None
|
|
18
|
+
_debouncer: Incomplete
|
|
15
19
|
def __init__(self, hass: HomeAssistant, config_entry: IdasenDeskConfigEntry, address: str) -> None: ...
|
|
16
20
|
async def async_connect(self) -> bool: ...
|
|
17
21
|
async def async_disconnect(self) -> None: ...
|
|
18
22
|
async def async_connect_if_expected(self) -> None: ...
|
|
23
|
+
@callback
|
|
24
|
+
def _async_handle_update(self, height: int | None) -> None: ...
|
|
@@ -3,6 +3,7 @@ from _typeshed import Incomplete
|
|
|
3
3
|
from dataclasses import dataclass, field
|
|
4
4
|
from homeassistant.components.media_player import BrowseMedia as BrowseMedia, MediaClass as MediaClass, MediaType as MediaType
|
|
5
5
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
|
6
|
+
from homeassistant.helpers.translation import async_get_cached_translations as async_get_cached_translations
|
|
6
7
|
from pathlib import Path
|
|
7
8
|
from typing import Any
|
|
8
9
|
|
|
@@ -13,10 +13,13 @@ from pynordpool import DeliveryPeriodData as DeliveryPeriodData, DeliveryPeriodE
|
|
|
13
13
|
class NordPoolDataUpdateCoordinator(DataUpdateCoordinator[DeliveryPeriodsData]):
|
|
14
14
|
config_entry: NordPoolConfigEntry
|
|
15
15
|
client: Incomplete
|
|
16
|
-
|
|
16
|
+
data_unsub: Callable[[], None] | None
|
|
17
|
+
listener_unsub: Callable[[], None] | None
|
|
17
18
|
def __init__(self, hass: HomeAssistant, config_entry: NordPoolConfigEntry) -> None: ...
|
|
18
|
-
def
|
|
19
|
+
def get_next_data_interval(self, now: datetime) -> datetime: ...
|
|
20
|
+
def get_next_15_interval(self, now: datetime) -> datetime: ...
|
|
19
21
|
async def async_shutdown(self) -> None: ...
|
|
22
|
+
async def update_listeners(self, now: datetime) -> None: ...
|
|
20
23
|
async def fetch_data(self, now: datetime, initial: bool = False) -> None: ...
|
|
21
24
|
async def handle_data(self, initial: bool = False) -> DeliveryPeriodsData: ...
|
|
22
25
|
async def _async_update_data(self) -> DeliveryPeriodsData: ...
|
{homeassistant_stubs-2025.10.0b6.dist-info → homeassistant_stubs-2025.10.1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant-stubs
|
|
3
|
-
Version: 2025.10.
|
|
3
|
+
Version: 2025.10.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.10.
|
|
21
|
+
Requires-Dist: homeassistant==2025.10.1
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.10.0b6.dist-info → homeassistant_stubs-2025.10.1.dist-info}/RECORD
RENAMED
|
@@ -1734,7 +1734,7 @@ homeassistant-stubs/components/idasen_desk/__init__.pyi,sha256=bdOGe2qKlh_1g0Wbn
|
|
|
1734
1734
|
homeassistant-stubs/components/idasen_desk/button.pyi,sha256=2aMxDldri43BaqkxG24xkK4vcmiCzsvcQSgB6lc2R1I,1405
|
|
1735
1735
|
homeassistant-stubs/components/idasen_desk/config_flow.pyi,sha256=sYDtW7hW3BKTNq829IS-pWHt0FV-XsvpXjTtn2lx-AA,929
|
|
1736
1736
|
homeassistant-stubs/components/idasen_desk/const.pyi,sha256=3OCFrfS2EdbrsN4gafHq-IKtTWJcfp5EL1B0B_unjJk,39
|
|
1737
|
-
homeassistant-stubs/components/idasen_desk/coordinator.pyi,sha256=
|
|
1737
|
+
homeassistant-stubs/components/idasen_desk/coordinator.pyi,sha256=0vqLkCAcZGfIPMDihSZrSxfmQqnVy_eFmsZAKFa9CQ4,1101
|
|
1738
1738
|
homeassistant-stubs/components/idasen_desk/cover.pyi,sha256=0xDhLwgttquHKgUhrhT8oDtYtPILxUOHA8PYzub-HHg,1466
|
|
1739
1739
|
homeassistant-stubs/components/idasen_desk/entity.pyi,sha256=1TtZs1vEMWAPaiHCqdKfWd-20JiP0wbZHkeQ9OYzl14,523
|
|
1740
1740
|
homeassistant-stubs/components/idasen_desk/sensor.pyi,sha256=UD7QnkcpZJK0LVbdVE_ywNYfu64Ox95ek5z0iBibpi0,1346
|
|
@@ -2268,7 +2268,7 @@ homeassistant-stubs/components/media_source/error.pyi,sha256=Kaa0k7yVxRED7xEFdM4
|
|
|
2268
2268
|
homeassistant-stubs/components/media_source/helper.pyi,sha256=4trrUJeL_wWKYAq8zgIbKDwZ0Uh2a84wXrh9waAa5ME,1222
|
|
2269
2269
|
homeassistant-stubs/components/media_source/http.pyi,sha256=JM3TJ69WK8Jfejj_6T1hT3es3MYlvqKTISZp4JqOesE,1005
|
|
2270
2270
|
homeassistant-stubs/components/media_source/local_source.pyi,sha256=md6JFUFs2EGDKrqs5BGUJsDxm24AhP9NgQhOwnizlrI,3235
|
|
2271
|
-
homeassistant-stubs/components/media_source/models.pyi,sha256=
|
|
2271
|
+
homeassistant-stubs/components/media_source/models.pyi,sha256=ytCvyjO3AA2-fBaSxl4sseEbzS8vgKGEvJd-93Zw1cE,1675
|
|
2272
2272
|
homeassistant-stubs/components/met_eireann/__init__.pyi,sha256=vlShrHz1CDif3Sa37QNOzDD9BFAJaX8rpHNDpq8wlzo,539
|
|
2273
2273
|
homeassistant-stubs/components/met_eireann/config_flow.pyi,sha256=ofSLFUjODdR3NosePApKXM_tzo8kRWiiuREs7ybQtg8,537
|
|
2274
2274
|
homeassistant-stubs/components/met_eireann/const.pyi,sha256=np8f1Byopwvxk097rcFrUr00ozKtCGO-Ni7vSDBErMA,1254
|
|
@@ -2573,7 +2573,7 @@ homeassistant-stubs/components/no_ip/__init__.pyi,sha256=LEgsEXyJpLsJ5B6QgcMM9YJ
|
|
|
2573
2573
|
homeassistant-stubs/components/nordpool/__init__.pyi,sha256=8uAyXvrq8Qo_qYiYN_mM4cRQ-6mn6SfF939h2G6xTjY,1031
|
|
2574
2574
|
homeassistant-stubs/components/nordpool/config_flow.pyi,sha256=udO0aaYsxvYA14qTruERZpIgY_diI55BXiyd2Z70O4Y,1133
|
|
2575
2575
|
homeassistant-stubs/components/nordpool/const.pyi,sha256=ZPzD--9pMZLU-FBy8fEDzxfs77yfDQUrky-yOBtoJV8,222
|
|
2576
|
-
homeassistant-stubs/components/nordpool/coordinator.pyi,sha256=
|
|
2576
|
+
homeassistant-stubs/components/nordpool/coordinator.pyi,sha256=DkW3rrioewjVVF93H8JncnhnpUs_a4VzqXsWKdTQw0g,1850
|
|
2577
2577
|
homeassistant-stubs/components/nordpool/diagnostics.pyi,sha256=VM-k8FbKf0_jRRbDCVrB_gs6k15uSuwRGJRBfCFfeJs,260
|
|
2578
2578
|
homeassistant-stubs/components/nordpool/entity.pyi,sha256=9tpBtmyfbC5ZfZCXkg5XCZryuaFNXH0kz130ZXQAKJE,801
|
|
2579
2579
|
homeassistant-stubs/components/nordpool/sensor.pyi,sha256=pHF7Oe0lB7xxhKM7Ncb9s6JqAE8CHRoyWa6EVil8vfE,4113
|
|
@@ -4449,7 +4449,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4449
4449
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4450
4450
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4451
4451
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4452
|
-
homeassistant_stubs-2025.10.
|
|
4453
|
-
homeassistant_stubs-2025.10.
|
|
4454
|
-
homeassistant_stubs-2025.10.
|
|
4455
|
-
homeassistant_stubs-2025.10.
|
|
4452
|
+
homeassistant_stubs-2025.10.1.dist-info/METADATA,sha256=bytQdX8gQKELCae4Z_ZF3F_ylnTl2ssyZRz6gnafPe0,2950
|
|
4453
|
+
homeassistant_stubs-2025.10.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4454
|
+
homeassistant_stubs-2025.10.1.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4455
|
+
homeassistant_stubs-2025.10.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|