homeassistant-stubs 2025.5.0b2__py3-none-any.whl → 2025.5.0b4__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/fritzbox/climate.pyi +1 -0
- homeassistant-stubs/components/lamarzocco/__init__.pyi +1 -1
- homeassistant-stubs/components/lamarzocco/config_flow.pyi +1 -1
- homeassistant-stubs/components/remote_calendar/calendar.pyi +2 -0
- homeassistant-stubs/components/remote_calendar/config_flow.pyi +1 -0
- homeassistant-stubs/components/remote_calendar/coordinator.pyi +1 -0
- homeassistant-stubs/components/remote_calendar/ics.pyi +10 -0
- {homeassistant_stubs-2025.5.0b2.dist-info → homeassistant_stubs-2025.5.0b4.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.5.0b2.dist-info → homeassistant_stubs-2025.5.0b4.dist-info}/RECORD +11 -10
- {homeassistant_stubs-2025.5.0b2.dist-info → homeassistant_stubs-2025.5.0b4.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.5.0b2.dist-info → homeassistant_stubs-2025.5.0b4.dist-info}/licenses/LICENSE +0 -0
@@ -5,7 +5,7 @@ from homeassistant.components.bluetooth import async_discovered_service_info as
|
|
5
5
|
from homeassistant.const import CONF_MAC as CONF_MAC, CONF_PASSWORD as CONF_PASSWORD, CONF_TOKEN as CONF_TOKEN, CONF_USERNAME as CONF_USERNAME, Platform as Platform
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
7
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady
|
8
|
-
from homeassistant.helpers.aiohttp_client import
|
8
|
+
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
9
9
|
|
10
10
|
PLATFORMS: Incomplete
|
11
11
|
BT_MODEL_PREFIXES: Incomplete
|
@@ -7,7 +7,7 @@ from homeassistant.components.bluetooth import BluetoothServiceInfo as Bluetooth
|
|
7
7
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, OptionsFlow as OptionsFlow, SOURCE_REAUTH as SOURCE_REAUTH, SOURCE_RECONFIGURE as SOURCE_RECONFIGURE
|
8
8
|
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS, CONF_MAC as CONF_MAC, CONF_NAME as CONF_NAME, CONF_PASSWORD as CONF_PASSWORD, CONF_TOKEN as CONF_TOKEN, CONF_USERNAME as CONF_USERNAME
|
9
9
|
from homeassistant.core import callback as callback
|
10
|
-
from homeassistant.helpers.aiohttp_client import
|
10
|
+
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
11
11
|
from homeassistant.helpers.selector import SelectOptionDict as SelectOptionDict, SelectSelector as SelectSelector, SelectSelectorConfig as SelectSelectorConfig, SelectSelectorMode as SelectSelectorMode, TextSelector as TextSelector, TextSelectorConfig as TextSelectorConfig, TextSelectorType as TextSelectorType
|
12
12
|
from homeassistant.helpers.service_info.dhcp import DhcpServiceInfo as DhcpServiceInfo
|
13
13
|
from pylamarzocco.models import Thing as Thing
|
@@ -18,9 +18,11 @@ class RemoteCalendarEntity(CoordinatorEntity[RemoteCalendarDataUpdateCoordinator
|
|
18
18
|
_attr_has_entity_name: bool
|
19
19
|
_attr_name: Incomplete
|
20
20
|
_attr_unique_id: Incomplete
|
21
|
+
_event: CalendarEvent | None
|
21
22
|
def __init__(self, coordinator: RemoteCalendarDataUpdateCoordinator, entry: RemoteCalendarConfigEntry) -> None: ...
|
22
23
|
@property
|
23
24
|
def event(self) -> CalendarEvent | None: ...
|
24
25
|
async def async_get_events(self, hass: HomeAssistant, start_date: datetime, end_date: datetime) -> list[CalendarEvent]: ...
|
26
|
+
async def async_update(self) -> None: ...
|
25
27
|
|
26
28
|
def _get_calendar_event(event: Event) -> CalendarEvent: ...
|
@@ -1,4 +1,5 @@
|
|
1
1
|
from .const import CONF_CALENDAR_NAME as CONF_CALENDAR_NAME, DOMAIN as DOMAIN
|
2
|
+
from .ics import InvalidIcsException as InvalidIcsException, parse_calendar as parse_calendar
|
2
3
|
from _typeshed import Incomplete
|
3
4
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
4
5
|
from homeassistant.const import CONF_URL as CONF_URL
|
@@ -1,4 +1,5 @@
|
|
1
1
|
from .const import DOMAIN as DOMAIN
|
2
|
+
from .ics import InvalidIcsException as InvalidIcsException, parse_calendar as parse_calendar
|
2
3
|
from _typeshed import Incomplete
|
3
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
4
5
|
from homeassistant.const import CONF_URL as CONF_URL
|
@@ -0,0 +1,10 @@
|
|
1
|
+
from _typeshed import Incomplete
|
2
|
+
from homeassistant.core import HomeAssistant as HomeAssistant
|
3
|
+
from ical.calendar import Calendar as Calendar
|
4
|
+
|
5
|
+
_LOGGER: Incomplete
|
6
|
+
|
7
|
+
class InvalidIcsException(Exception): ...
|
8
|
+
|
9
|
+
def _compat_calendar_from_ics(ics: str) -> Calendar: ...
|
10
|
+
async def parse_calendar(hass: HomeAssistant, ics: str) -> Calendar: ...
|
{homeassistant_stubs-2025.5.0b2.dist-info → homeassistant_stubs-2025.5.0b4.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.5.
|
3
|
+
Version: 2025.5.0b4
|
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.5.
|
21
|
+
Requires-Dist: homeassistant==2025.5.0b4
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.5.0b2.dist-info → homeassistant_stubs-2025.5.0b4.dist-info}/RECORD
RENAMED
@@ -1210,7 +1210,7 @@ homeassistant-stubs/components/fritz/update.pyi,sha256=MJHEZecQQ6piv276umlulJ0BD
|
|
1210
1210
|
homeassistant-stubs/components/fritzbox/__init__.pyi,sha256=mkJ-cgF2g3XOPrAJRkrym67u-oAIGWQyOJ895yO3eQU,927
|
1211
1211
|
homeassistant-stubs/components/fritzbox/binary_sensor.pyi,sha256=zdZJEgrCebf5J2Cvn82BmxIDXzfCRPloMOaJr4mbC1o,1474
|
1212
1212
|
homeassistant-stubs/components/fritzbox/button.pyi,sha256=193fP8GaQNp_vx7yv39RKcoVFJUR1PWOtUKhOnJEntk,982
|
1213
|
-
homeassistant-stubs/components/fritzbox/climate.pyi,sha256=
|
1213
|
+
homeassistant-stubs/components/fritzbox/climate.pyi,sha256=0OqhiagSC2bp6CjE83zRN6pKSnw0qXEc9yMfx9U8ii4,2951
|
1214
1214
|
homeassistant-stubs/components/fritzbox/config_flow.pyi,sha256=Xv8sy4y4aE0AluY-1dv_mOAsS1rs5KMnHAqNi_p_fHg,1781
|
1215
1215
|
homeassistant-stubs/components/fritzbox/const.pyi,sha256=eTNcRRgzpszcEMS91mC_bcTRblJBtcM-sTx8fEYThd4,422
|
1216
1216
|
homeassistant-stubs/components/fritzbox/coordinator.pyi,sha256=m3DwPUr-Dqxgm8ZVGq7aVsMrRwjkFS-yQIEk99da7Bs,1660
|
@@ -1863,11 +1863,11 @@ homeassistant-stubs/components/lacrosse_view/const.pyi,sha256=ChYodyT8Y7q3layvRg
|
|
1863
1863
|
homeassistant-stubs/components/lacrosse_view/coordinator.pyi,sha256=wvKLZc2JfJa_9-DKhLG2yQLDH5TLHrseex7A3XeqfyE,941
|
1864
1864
|
homeassistant-stubs/components/lacrosse_view/diagnostics.pyi,sha256=_5LJ3tvr_3knMibGyxW3-sVbMQzD3TD-369Km7xRiaI,618
|
1865
1865
|
homeassistant-stubs/components/lacrosse_view/sensor.pyi,sha256=3UlYc6b1kLQ4ekE8RbFHh-tYpWitUNRiSMOpPlKIkGw,2127
|
1866
|
-
homeassistant-stubs/components/lamarzocco/__init__.pyi,sha256=
|
1866
|
+
homeassistant-stubs/components/lamarzocco/__init__.pyi,sha256=OapCJCuHlIBNE-AhXEMq-PRbPbyfUc09RQz4ESRp3kk,1453
|
1867
1867
|
homeassistant-stubs/components/lamarzocco/binary_sensor.pyi,sha256=-Q3ORdfrpcPyoOocN7tdHTZ2aQJHXKZJZC7gkKtKnbM,1413
|
1868
1868
|
homeassistant-stubs/components/lamarzocco/button.pyi,sha256=YIZhYTrzngychn-qLCkEEPchq0118acXEv0BIj3j9Bo,1513
|
1869
1869
|
homeassistant-stubs/components/lamarzocco/calendar.pyi,sha256=jEdURhOrkdDHVetk1doAwRLSbW6EOQu7_AFxteuDKps,1562
|
1870
|
-
homeassistant-stubs/components/lamarzocco/config_flow.pyi,sha256=
|
1870
|
+
homeassistant-stubs/components/lamarzocco/config_flow.pyi,sha256=4WAnoIRnT137skg8mr9bNCka9SI676sC7yhIuKnvKRs,2863
|
1871
1871
|
homeassistant-stubs/components/lamarzocco/const.pyi,sha256=JcSuOBLJ3ncDIlIGkD7hJa2JZ9napMLJQI7ku_jVoN0,76
|
1872
1872
|
homeassistant-stubs/components/lamarzocco/coordinator.pyi,sha256=5hhguTAYBkhNyGWnsT64Aj0i4jVD6w_FVFbsLpRAV_U,2413
|
1873
1873
|
homeassistant-stubs/components/lamarzocco/diagnostics.pyi,sha256=lSbaEGL6AmPpko_DpvVizn457ne-mGyxTfRgxa-MCb0,560
|
@@ -2907,11 +2907,12 @@ homeassistant-stubs/components/remote/device_trigger.pyi,sha256=uC5UaBHAFOgtfm8E
|
|
2907
2907
|
homeassistant-stubs/components/remote/reproduce_state.pyi,sha256=oJOAxdJbalNMGVeSVOIgqlVQRDY86ohveaCNjvgidPY,795
|
2908
2908
|
homeassistant-stubs/components/remote/significant_change.pyi,sha256=xrvCaVI6vA33VUwletn0KI5ivWB1ZE3vggXTcN7A6KM,336
|
2909
2909
|
homeassistant-stubs/components/remote_calendar/__init__.pyi,sha256=tpj1cVap_TAogUSp_iu3sOarHQAlaN1AEInaVPLcoyA,581
|
2910
|
-
homeassistant-stubs/components/remote_calendar/calendar.pyi,sha256=
|
2911
|
-
homeassistant-stubs/components/remote_calendar/config_flow.pyi,sha256=
|
2910
|
+
homeassistant-stubs/components/remote_calendar/calendar.pyi,sha256=dU21osMMWAYQ-skRsGy2_8xJD5K_krdrjXBULZjoV3s,1545
|
2911
|
+
homeassistant-stubs/components/remote_calendar/config_flow.pyi,sha256=htdk2EpWyFCYZf-_vp6aN9nd-ed44GcL3nAEOCfWKsU,704
|
2912
2912
|
homeassistant-stubs/components/remote_calendar/const.pyi,sha256=v5rnTU3o6v40qyydkfnQCN5pquphuuPLQZGc68D2_g4,36
|
2913
|
-
homeassistant-stubs/components/remote_calendar/coordinator.pyi,sha256=
|
2913
|
+
homeassistant-stubs/components/remote_calendar/coordinator.pyi,sha256=91OTTjRnkQzfE0n2dRswp43ypzaBxqwFRKPWtuLt_Xo,1057
|
2914
2914
|
homeassistant-stubs/components/remote_calendar/diagnostics.pyi,sha256=7dJFCUPCv6JJEadNphEuQT_0MMdLtORTIUO-xxoLuaQ,278
|
2915
|
+
homeassistant-stubs/components/remote_calendar/ics.pyi,sha256=mBAALVJyJhJTxjwtafJSYmFvhqZ0w9GVY-wwANb703g,337
|
2915
2916
|
homeassistant-stubs/components/renault/__init__.pyi,sha256=-vrChagTrzT_9i-bNjWR5AS1p_OxV7-TFM4e0wqyja8,1189
|
2916
2917
|
homeassistant-stubs/components/renault/binary_sensor.pyi,sha256=RxcSEsAYkLxobPLiTQrFjQH6kXcCu5H0Xm2xyn_7BJU,1676
|
2917
2918
|
homeassistant-stubs/components/renault/button.pyi,sha256=QcME0X_wdNzHl8c7QhkSIl6MVkGvcPakumPxrzlyVMQ,1126
|
@@ -4197,7 +4198,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
4197
4198
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
4198
4199
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=cgUew76NjS7Q1Aml5sLBE2DB9JGrJS2fE-EDE92p-og,805
|
4199
4200
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
4200
|
-
homeassistant_stubs-2025.5.
|
4201
|
-
homeassistant_stubs-2025.5.
|
4202
|
-
homeassistant_stubs-2025.5.
|
4203
|
-
homeassistant_stubs-2025.5.
|
4201
|
+
homeassistant_stubs-2025.5.0b4.dist-info/METADATA,sha256=7vROv-RfcrgGRSBtWCprsTZ-VhqMOElK6ZEjsU75EnY,2952
|
4202
|
+
homeassistant_stubs-2025.5.0b4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4203
|
+
homeassistant_stubs-2025.5.0b4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4204
|
+
homeassistant_stubs-2025.5.0b4.dist-info/RECORD,,
|
File without changes
|
File without changes
|