homeassistant-stubs 2025.5.0b3__py3-none-any.whl → 2025.5.0b5__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/mqtt/config_flow.pyi +2 -2
- 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.0b3.dist-info → homeassistant_stubs-2025.5.0b5.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.5.0b3.dist-info → homeassistant_stubs-2025.5.0b5.dist-info}/RECORD +9 -8
- {homeassistant_stubs-2025.5.0b3.dist-info → homeassistant_stubs-2025.5.0b5.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.5.0b3.dist-info → homeassistant_stubs-2025.5.0b5.dist-info}/licenses/LICENSE +0 -0
@@ -77,7 +77,7 @@ class PlatformField:
|
|
77
77
|
required: bool
|
78
78
|
validator: Callable[..., Any]
|
79
79
|
error: str | None = ...
|
80
|
-
default: str | int | bool | vol.Undefined = ...
|
80
|
+
default: str | int | bool | None | vol.Undefined = ...
|
81
81
|
is_schema_default: bool = ...
|
82
82
|
exclude_from_reconfig: bool = ...
|
83
83
|
conditions: tuple[dict[str, Any], ...] | None = ...
|
@@ -110,7 +110,7 @@ def validate_user_input(user_input: dict[str, Any], data_schema_fields: dict[str
|
|
110
110
|
@callback
|
111
111
|
def data_schema_from_fields(data_schema_fields: dict[str, PlatformField], reconfig: bool, component_data: dict[str, Any] | None = None, user_input: dict[str, Any] | None = None, device_data: MqttDeviceData | None = None) -> vol.Schema: ...
|
112
112
|
@callback
|
113
|
-
def subentry_schema_default_data_from_fields(data_schema_fields: dict[str, PlatformField]) -> dict[str, Any]: ...
|
113
|
+
def subentry_schema_default_data_from_fields(data_schema_fields: dict[str, PlatformField], component_data: dict[str, Any]) -> dict[str, Any]: ...
|
114
114
|
|
115
115
|
class FlowHandler(ConfigFlow, domain=DOMAIN):
|
116
116
|
VERSION = CONFIG_ENTRY_VERSION
|
@@ -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.0b3.dist-info → homeassistant_stubs-2025.5.0b5.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.0b5
|
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.0b5
|
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.0b3.dist-info → homeassistant_stubs-2025.5.0b5.dist-info}/RECORD
RENAMED
@@ -2260,7 +2260,7 @@ homeassistant-stubs/components/mqtt/camera.pyi,sha256=eDj1zOTQDw5VYepTsyLsWMiJWh
|
|
2260
2260
|
homeassistant-stubs/components/mqtt/client.pyi,sha256=jweo8N8ZuFmkJZMJeTsCngZIzsholsMQ-LJVJWsEMFQ,10871
|
2261
2261
|
homeassistant-stubs/components/mqtt/climate.pyi,sha256=mloPT_B4fa1SDbzFYIi5iSbo3haNsb-0PuqAFCtGDGo,8922
|
2262
2262
|
homeassistant-stubs/components/mqtt/config.pyi,sha256=ZzcogEgaXfMFwZIYMPiIpTSMnuMKx6Xsvv30vbB8iXw,721
|
2263
|
-
homeassistant-stubs/components/mqtt/config_flow.pyi,sha256=
|
2263
|
+
homeassistant-stubs/components/mqtt/config_flow.pyi,sha256=YwuBbLEROe3vVT0Ip3z6ObUu0b9VXM9yPfieD6dyoiE,17834
|
2264
2264
|
homeassistant-stubs/components/mqtt/config_integration.pyi,sha256=WpU7MEABRRI1PUguDOcOJXSsNEacS63lAHfyzoYQdzg,801
|
2265
2265
|
homeassistant-stubs/components/mqtt/const.pyi,sha256=Tiyw3LFbvgvbOunHF4kGh6P_3wVSQBDQTerwHa7k2Y4,5395
|
2266
2266
|
homeassistant-stubs/components/mqtt/cover.pyi,sha256=PDMwucb4sPDwL9FWxAxWSBhU3Dwyc_9zHCiXcq4YqJs,5905
|
@@ -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.0b5.dist-info/METADATA,sha256=CwtnRSaw11U8pyFtfQc-ZClDxPgP3JPz4ftbxEjOkEc,2952
|
4202
|
+
homeassistant_stubs-2025.5.0b5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4203
|
+
homeassistant_stubs-2025.5.0b5.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4204
|
+
homeassistant_stubs-2025.5.0b5.dist-info/RECORD,,
|
File without changes
|
File without changes
|