homeassistant-stubs 2025.1.0b2__py3-none-any.whl → 2025.1.0b3__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/elevenlabs/__init__.pyi +1 -1
- homeassistant-stubs/components/feedreader/coordinator.pyi +1 -0
- homeassistant-stubs/components/nordpool/__init__.pyi +4 -3
- homeassistant-stubs/components/recorder/migration.pyi +3 -0
- homeassistant-stubs/components/russound_rio/__init__.pyi +1 -1
- homeassistant-stubs/components/russound_rio/config_flow.pyi +1 -1
- homeassistant-stubs/components/russound_rio/const.pyi +0 -1
- {homeassistant_stubs-2025.1.0b2.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.1.0b2.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/RECORD +11 -11
- {homeassistant_stubs-2025.1.0b2.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.1.0b2.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/licenses/LICENSE +0 -0
@@ -4,7 +4,7 @@ from elevenlabs import AsyncElevenLabs, Model as Model
|
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
5
5
|
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, Platform as Platform
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
|
-
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryError as ConfigEntryError
|
7
|
+
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryError as ConfigEntryError, ConfigEntryNotReady as ConfigEntryNotReady
|
8
8
|
from homeassistant.helpers.httpx_client import get_async_client as get_async_client
|
9
9
|
|
10
10
|
PLATFORMS: list[Platform]
|
@@ -3,6 +3,7 @@ from .const import DEFAULT_SCAN_INTERVAL as DEFAULT_SCAN_INTERVAL, DOMAIN as DOM
|
|
3
3
|
from _typeshed import Incomplete
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
5
5
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
6
|
+
from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady
|
6
7
|
from homeassistant.helpers.storage import Store as Store
|
7
8
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
8
9
|
from time import struct_time as struct_time
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import DOMAIN as DOMAIN, PLATFORMS as PLATFORMS
|
1
|
+
from .const import CONF_AREAS as CONF_AREAS, DOMAIN as DOMAIN, LOGGER as LOGGER, PLATFORMS as PLATFORMS
|
2
2
|
from .coordinator import NordPoolDataUpdateCoordinator as NordPoolDataUpdateCoordinator
|
3
3
|
from .services import async_setup_services as async_setup_services
|
4
4
|
from _typeshed import Incomplete
|
@@ -11,5 +11,6 @@ type NordPoolConfigEntry = ConfigEntry[NordPoolDataUpdateCoordinator]
|
|
11
11
|
CONFIG_SCHEMA: Incomplete
|
12
12
|
|
13
13
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
14
|
-
async def async_setup_entry(hass: HomeAssistant,
|
15
|
-
async def async_unload_entry(hass: HomeAssistant,
|
14
|
+
async def async_setup_entry(hass: HomeAssistant, config_entry: NordPoolConfigEntry) -> bool: ...
|
15
|
+
async def async_unload_entry(hass: HomeAssistant, config_entry: NordPoolConfigEntry) -> bool: ...
|
16
|
+
async def cleanup_device(hass: HomeAssistant, config_entry: NordPoolConfigEntry) -> None: ...
|
@@ -243,6 +243,9 @@ class _SchemaVersion46Migrator(_SchemaVersionMigrator, target_version=46):
|
|
243
243
|
class _SchemaVersion47Migrator(_SchemaVersionMigrator, target_version=47):
|
244
244
|
def _apply_update(self) -> None: ...
|
245
245
|
|
246
|
+
class _SchemaVersion48Migrator(_SchemaVersionMigrator, target_version=48):
|
247
|
+
def _apply_update(self) -> None: ...
|
248
|
+
|
246
249
|
def _migrate_statistics_columns_to_timestamp_removing_duplicates(hass: HomeAssistant, instance: Recorder, session_maker: Callable[[], Session], engine: Engine) -> None: ...
|
247
250
|
def _correct_table_character_set_and_collation(table: str, session_maker: Callable[[], Session]) -> None: ...
|
248
251
|
def _wipe_old_string_time_columns(instance: Recorder, engine: Engine, session: Session) -> None: ...
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import
|
1
|
+
from .const import DOMAIN as DOMAIN, RUSSOUND_RIO_EXCEPTIONS as RUSSOUND_RIO_EXCEPTIONS
|
2
2
|
from _typeshed import Incomplete
|
3
3
|
from aiorussound import RussoundClient
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import
|
1
|
+
from .const import DOMAIN as DOMAIN, RUSSOUND_RIO_EXCEPTIONS as RUSSOUND_RIO_EXCEPTIONS
|
2
2
|
from _typeshed import Incomplete
|
3
3
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, SOURCE_RECONFIGURE as SOURCE_RECONFIGURE
|
4
4
|
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PORT as CONF_PORT
|
{homeassistant_stubs-2025.1.0b2.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.1.
|
3
|
+
Version: 2025.1.0b3
|
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.12
|
21
|
-
Requires-Dist: homeassistant==2025.1.
|
21
|
+
Requires-Dist: homeassistant==2025.1.0b3
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.1.0b2.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/RECORD
RENAMED
@@ -928,7 +928,7 @@ homeassistant-stubs/components/electric_kiwi/coordinator.pyi,sha256=sjRlWNqGnpfP
|
|
928
928
|
homeassistant-stubs/components/electric_kiwi/oauth2.pyi,sha256=Qx_tvwN7FaweC9MyyxQkyrDJHMAsuQpTvWm1cTuqV6g,968
|
929
929
|
homeassistant-stubs/components/electric_kiwi/select.pyi,sha256=xcxUMDwXdIkULDT1hpFpIs4YHsqvwLC1Q4Lw8cNTxO4,1478
|
930
930
|
homeassistant-stubs/components/electric_kiwi/sensor.pyi,sha256=xkH-cnpHwtHzEdnMar3V6Eos9MXh_4DLsaRJfzBWHnw,3798
|
931
|
-
homeassistant-stubs/components/elevenlabs/__init__.pyi,sha256=
|
931
|
+
homeassistant-stubs/components/elevenlabs/__init__.pyi,sha256=m5WVVurCj--H4zYHlZJRTdyD5KnM5WWdIb5yRvnlBDg,1210
|
932
932
|
homeassistant-stubs/components/elevenlabs/config_flow.pyi,sha256=n_jFyzYiji-sWXtpk7tnNooKCHgy_ZuGx-H7aF3vhvA,2250
|
933
933
|
homeassistant-stubs/components/elevenlabs/const.pyi,sha256=180cCMKmlOr46ByAC4Hdo-54bSXHcGg4QihdUDMqtBc,333
|
934
934
|
homeassistant-stubs/components/elevenlabs/tts.pyi,sha256=4wPDD_XSTG58dEiVpoELYUn3v22QotxU2JRga99tt6E,2461
|
@@ -1079,7 +1079,7 @@ homeassistant-stubs/components/fastdotcom/sensor.pyi,sha256=Rij-yOa_SdwXAjN4zn5l
|
|
1079
1079
|
homeassistant-stubs/components/feedreader/__init__.pyi,sha256=sU4oM1qzzbvsJwVG-OSqZAPVrsOTFMWYPLbKQMsIYVo,828
|
1080
1080
|
homeassistant-stubs/components/feedreader/config_flow.pyi,sha256=jJsR_jJPyEDdEHUTKa2VK1mERFnRjPD-38ShocPjnuY,1502
|
1081
1081
|
homeassistant-stubs/components/feedreader/const.pyi,sha256=u_fFhHgf1PjQNAycwcnkdRTUkgTqaAZfyd70GVSZe7s,206
|
1082
|
-
homeassistant-stubs/components/feedreader/coordinator.pyi,sha256=
|
1082
|
+
homeassistant-stubs/components/feedreader/coordinator.pyi,sha256=J9WkVyUN4Helv_VdAVf10CSxrfx7V-hiF5-5C1W7pME,2008
|
1083
1083
|
homeassistant-stubs/components/feedreader/event.pyi,sha256=gAskHysxm3Fe0GqxYZmmTGsSpgwUNDomJmgBEx9uEJc,1491
|
1084
1084
|
homeassistant-stubs/components/file_upload/__init__.pyi,sha256=vPh5IZ3bFfphvRaS7n2gnYCEx3iFHUJtsPFuIPs2C5U,1817
|
1085
1085
|
homeassistant-stubs/components/filesize/__init__.pyi,sha256=N2a-LAhf8G54Y_7mlTfDa71XEgncLqaPKFLH9Q66aMI,539
|
@@ -2257,7 +2257,7 @@ homeassistant-stubs/components/nissan_leaf/entity.pyi,sha256=qTtjLdjD5PirTVBlIXu
|
|
2257
2257
|
homeassistant-stubs/components/nissan_leaf/sensor.pyi,sha256=ppZuj6y8HUW5FCaI1C5fb_nYqnDgSMdJxDTQKbkJX7c,2009
|
2258
2258
|
homeassistant-stubs/components/nissan_leaf/switch.pyi,sha256=y5XInVgtFJf7S9d8X4cbWg99lOBRoSs7nSS23X1W9eY,1206
|
2259
2259
|
homeassistant-stubs/components/no_ip/__init__.pyi,sha256=LEgsEXyJpLsJ5B6QgcMM9YJULXbzfTxbrLxjm-Ritjw,950
|
2260
|
-
homeassistant-stubs/components/nordpool/__init__.pyi,sha256=
|
2260
|
+
homeassistant-stubs/components/nordpool/__init__.pyi,sha256=8uAyXvrq8Qo_qYiYN_mM4cRQ-6mn6SfF939h2G6xTjY,1031
|
2261
2261
|
homeassistant-stubs/components/nordpool/config_flow.pyi,sha256=udO0aaYsxvYA14qTruERZpIgY_diI55BXiyd2Z70O4Y,1133
|
2262
2262
|
homeassistant-stubs/components/nordpool/const.pyi,sha256=lIZlTpUpKSr8y9OYVa-kOPMlm9MWTvHXyObTTmS078s,201
|
2263
2263
|
homeassistant-stubs/components/nordpool/coordinator.pyi,sha256=Miv3LXdlXCc58kLijZRyJ5ZxijcTMtl5foA4Z-zHw6k,1444
|
@@ -2593,7 +2593,7 @@ homeassistant-stubs/components/recorder/db_schema.pyi,sha256=XkruEKb16838TCWluSR
|
|
2593
2593
|
homeassistant-stubs/components/recorder/entity_registry.pyi,sha256=KQkJUlsXDdEHhnzy2f58byStPFplR3BoANWzwPIhbEM,578
|
2594
2594
|
homeassistant-stubs/components/recorder/executor.pyi,sha256=jZUJLt2lp1TuQy9NnaK8zOaENozPLxbvsUzZQu9i0RQ,667
|
2595
2595
|
homeassistant-stubs/components/recorder/filters.pyi,sha256=l8qnsQC0mhUcCJauqv6IDLFT0_EV_iX2u6iz3yr0Lww,2703
|
2596
|
-
homeassistant-stubs/components/recorder/migration.pyi,sha256=
|
2596
|
+
homeassistant-stubs/components/recorder/migration.pyi,sha256=TdicoT610z7vYpYQD-oUsNBDbehBKx9Hk8gZPF4VWQc,21019
|
2597
2597
|
homeassistant-stubs/components/recorder/pool.pyi,sha256=NEBEP2CTRuAx3Nq2zXeOCfk7n4qVWVZ4hjzYgk-RxDE,1219
|
2598
2598
|
homeassistant-stubs/components/recorder/purge.pyi,sha256=rFgTAV4Un0h6OP7FdKTOa6eiP_I-Owf6dXYC2bR2JZ4,5546
|
2599
2599
|
homeassistant-stubs/components/recorder/queries.pyi,sha256=185rzuArHlphbVOiLbOszfTLTNtER-CAoykwrs9T3ig,4904
|
@@ -2791,9 +2791,9 @@ homeassistant-stubs/components/rss_feed_template/__init__.pyi,sha256=fzCjBZuWlW_
|
|
2791
2791
|
homeassistant-stubs/components/rtsp_to_webrtc/__init__.pyi,sha256=1Ix2dkOSmQ77g15vPjqOHx_rk0I8uzZ_RXBT43RCql8,916
|
2792
2792
|
homeassistant-stubs/components/rtsp_to_webrtc/config_flow.pyi,sha256=--sGFoQewrktDQxTHjq-4Z9Fefi2h4jDWXRlWAOk85w,1405
|
2793
2793
|
homeassistant-stubs/components/rtsp_to_webrtc/diagnostics.pyi,sha256=G-0k9BYO30ZiwSNkYGMRool9Xd5ozDAqS2HxNrWoImY,270
|
2794
|
-
homeassistant-stubs/components/russound_rio/__init__.pyi,sha256=
|
2795
|
-
homeassistant-stubs/components/russound_rio/config_flow.pyi,sha256=
|
2796
|
-
homeassistant-stubs/components/russound_rio/const.pyi,sha256=
|
2794
|
+
homeassistant-stubs/components/russound_rio/__init__.pyi,sha256=HrAWm1wpjjUhNWXKTaze3P4AO3IE1sUCwBNmJVU83V8,751
|
2795
|
+
homeassistant-stubs/components/russound_rio/config_flow.pyi,sha256=2FkMpyaj3uF8_sXC99lQoqQ-X4eV7f4WeC25pRVV2Po,783
|
2796
|
+
homeassistant-stubs/components/russound_rio/const.pyi,sha256=r51I9VjP6b0kv66U_dcUFW_WxcQ5mmDM1WT4fvS0Z-k,217
|
2797
2797
|
homeassistant-stubs/components/russound_rio/diagnostics.pyi,sha256=Q-Od238dhF6X4-wwK9Sadf_YEs-2MxqNaEJ5WkLl-Uc,260
|
2798
2798
|
homeassistant-stubs/components/russound_rio/entity.pyi,sha256=UgmJtNwpnu82WN4XFfZi2yIQ1Cd6g4usA_TyaKYfHuY,1366
|
2799
2799
|
homeassistant-stubs/components/russound_rio/media_player.pyi,sha256=WFJI6SyQXJHjTyxqByscoJstRGcGCaIbh9-f5zH24E0,2862
|
@@ -3881,7 +3881,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3881
3881
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3882
3882
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=FpRpxb-ZvfthDdO6Js0JqWtzlQfKDPP7nY5yOXp3604,3917
|
3883
3883
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3884
|
-
homeassistant_stubs-2025.1.
|
3885
|
-
homeassistant_stubs-2025.1.
|
3886
|
-
homeassistant_stubs-2025.1.
|
3887
|
-
homeassistant_stubs-2025.1.
|
3884
|
+
homeassistant_stubs-2025.1.0b3.dist-info/METADATA,sha256=sWiWKFhRCXk5g2o94Wh2_GoMWWnk98ClcHXoViewdDU,2956
|
3885
|
+
homeassistant_stubs-2025.1.0b3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
3886
|
+
homeassistant_stubs-2025.1.0b3.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3887
|
+
homeassistant_stubs-2025.1.0b3.dist-info/RECORD,,
|
File without changes
|
File without changes
|