homeassistant-stubs 2025.4.0b9__py3-none-any.whl → 2025.4.0b10__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/esphome/config_flow.pyi +1 -0
- homeassistant-stubs/components/fritzbox/climate.pyi +1 -1
- homeassistant-stubs/components/usb/__init__.pyi +1 -2
- homeassistant-stubs/components/usb/utils.pyi +2 -0
- {homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b10.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b10.dist-info}/RECORD +8 -8
- {homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b10.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b10.dist-info}/licenses/LICENSE +0 -0
@@ -36,6 +36,7 @@ class EsphomeFlowHandler(ConfigFlow, domain=DOMAIN):
|
|
36
36
|
async def _async_step_user_base(self, user_input: dict[str, Any] | None = None, error: str | None = None) -> ConfigFlowResult: ...
|
37
37
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
38
38
|
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> ConfigFlowResult: ...
|
39
|
+
async def async_step_reauth_encryption_removed_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
39
40
|
async def async_step_reauth_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
40
41
|
@property
|
41
42
|
def _name(self) -> str: ...
|
@@ -4,7 +4,7 @@ from .entity import FritzBoxDeviceEntity as FritzBoxDeviceEntity
|
|
4
4
|
from .model import ClimateExtraAttributes as ClimateExtraAttributes
|
5
5
|
from .sensor import value_scheduled_preset as value_scheduled_preset
|
6
6
|
from _typeshed import Incomplete
|
7
|
-
from homeassistant.components.climate import ATTR_HVAC_MODE as ATTR_HVAC_MODE, ClimateEntity as ClimateEntity, ClimateEntityFeature as ClimateEntityFeature, HVACMode as HVACMode, PRESET_COMFORT as PRESET_COMFORT, PRESET_ECO as PRESET_ECO
|
7
|
+
from homeassistant.components.climate import ATTR_HVAC_MODE as ATTR_HVAC_MODE, ClimateEntity as ClimateEntity, ClimateEntityFeature as ClimateEntityFeature, HVACMode as HVACMode, PRESET_BOOST as PRESET_BOOST, PRESET_COMFORT as PRESET_COMFORT, PRESET_ECO as PRESET_ECO
|
8
8
|
from homeassistant.const import ATTR_BATTERY_LEVEL as ATTR_BATTERY_LEVEL, ATTR_TEMPERATURE as ATTR_TEMPERATURE, PRECISION_HALVES as PRECISION_HALVES, UnitOfTemperature as UnitOfTemperature
|
9
9
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
10
10
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
@@ -5,7 +5,6 @@ from homeassistant.components import websocket_api
|
|
5
5
|
from homeassistant.core import CALLBACK_TYPE, Event, HomeAssistant, callback as hass_callback
|
6
6
|
from homeassistant.helpers.debounce import Debouncer
|
7
7
|
from homeassistant.loader import USBMatcher
|
8
|
-
from serial.tools.list_ports_common import ListPortInfo
|
9
8
|
from typing import Any, overload
|
10
9
|
|
11
10
|
__all__ = ['USBCallbackMatcher', 'async_is_plugged_in', 'async_register_port_event_callback', 'async_register_scan_request_callback']
|
@@ -49,7 +48,7 @@ class USBDiscovery:
|
|
49
48
|
@hass_callback
|
50
49
|
def async_register_port_event_callback(self, callback: PORT_EVENT_CALLBACK_TYPE) -> CALLBACK_TYPE: ...
|
51
50
|
async def _async_process_discovered_usb_device(self, device: USBDevice) -> None: ...
|
52
|
-
async def _async_process_ports(self,
|
51
|
+
async def _async_process_ports(self, usb_devices: Sequence[USBDevice]) -> None: ...
|
53
52
|
@hass_callback
|
54
53
|
def _async_delayed_add_remove_scan(self) -> None: ...
|
55
54
|
async def _async_scan_serial(self) -> None: ...
|
@@ -1,4 +1,6 @@
|
|
1
1
|
from .models import USBDevice as USBDevice
|
2
|
+
from collections.abc import Sequence
|
2
3
|
from serial.tools.list_ports_common import ListPortInfo as ListPortInfo
|
3
4
|
|
4
5
|
def usb_device_from_port(port: ListPortInfo) -> USBDevice: ...
|
6
|
+
def scan_serial_ports() -> Sequence[USBDevice]: ...
|
{homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b10.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.4.
|
3
|
+
Version: 2025.4.0b10
|
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.
|
21
|
+
Requires-Dist: homeassistant==2025.4.0b10
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b10.dist-info}/RECORD
RENAMED
@@ -1061,7 +1061,7 @@ homeassistant-stubs/components/esphome/bluetooth.pyi,sha256=AziV-O6xagLD2nhVCl9a
|
|
1061
1061
|
homeassistant-stubs/components/esphome/button.pyi,sha256=pR-hgw_gTCTj0QGScNeidlDi-FZ0BPT71-ctz-DXfn4,877
|
1062
1062
|
homeassistant-stubs/components/esphome/camera.pyi,sha256=4_R1vVynz4w80pof0K4fSWgNuG6RjUM9LBxJ3xO1iOg,1208
|
1063
1063
|
homeassistant-stubs/components/esphome/climate.pyi,sha256=MyHotZ1Dy5KCUTzyYbxQDtFcHryuZ8KxuWnlsWUUbiU,4336
|
1064
|
-
homeassistant-stubs/components/esphome/config_flow.pyi,sha256=
|
1064
|
+
homeassistant-stubs/components/esphome/config_flow.pyi,sha256=mO_Xxt5MWMh0Rl9KSUDnaqzRoJ8_WUxPUsNjjPlKydc,4166
|
1065
1065
|
homeassistant-stubs/components/esphome/const.pyi,sha256=3VWPMGWLXqNxLGsM2LwL3tkbG1390Qf5jWU5CSOF_Dg,433
|
1066
1066
|
homeassistant-stubs/components/esphome/coordinator.pyi,sha256=FyZqV9c1SmpjmldlanJpDOGKqbH3cOiW4b0d7zD6K5E,678
|
1067
1067
|
homeassistant-stubs/components/esphome/cover.pyi,sha256=uoHLdnLEb6Fd_nEjgtrV4qa5oyCey7RjX2RUbVkfEZc,2155
|
@@ -1195,7 +1195,7 @@ homeassistant-stubs/components/fritz/update.pyi,sha256=vzNUWpic9ep2dJByaC5QQ__4b
|
|
1195
1195
|
homeassistant-stubs/components/fritzbox/__init__.pyi,sha256=mkJ-cgF2g3XOPrAJRkrym67u-oAIGWQyOJ895yO3eQU,927
|
1196
1196
|
homeassistant-stubs/components/fritzbox/binary_sensor.pyi,sha256=nGzNBEY2hpkmUG6fZogYGB1jRB6tjfcHFPTj05XRuZ8,1577
|
1197
1197
|
homeassistant-stubs/components/fritzbox/button.pyi,sha256=193fP8GaQNp_vx7yv39RKcoVFJUR1PWOtUKhOnJEntk,982
|
1198
|
-
homeassistant-stubs/components/fritzbox/climate.pyi,sha256=
|
1198
|
+
homeassistant-stubs/components/fritzbox/climate.pyi,sha256=g0f78ZxevsZSBkfJyY426bW_9ljUKo18MQ_LxrlMlL8,2848
|
1199
1199
|
homeassistant-stubs/components/fritzbox/config_flow.pyi,sha256=Xv8sy4y4aE0AluY-1dv_mOAsS1rs5KMnHAqNi_p_fHg,1781
|
1200
1200
|
homeassistant-stubs/components/fritzbox/const.pyi,sha256=eTNcRRgzpszcEMS91mC_bcTRblJBtcM-sTx8fEYThd4,422
|
1201
1201
|
homeassistant-stubs/components/fritzbox/coordinator.pyi,sha256=Brw7Yf1Lk1OhloRUhV1qBuwl3rLGWlzzKt6oMg9geyU,1656
|
@@ -3726,10 +3726,10 @@ homeassistant-stubs/components/uptimerobot/diagnostics.pyi,sha256=2OUhTB0g6n1zNe
|
|
3726
3726
|
homeassistant-stubs/components/uptimerobot/entity.pyi,sha256=iXfOT4tdeatZbMY5dJAC1E3tyh3fQZ7hQy8Nc7V0sSA,1260
|
3727
3727
|
homeassistant-stubs/components/uptimerobot/sensor.pyi,sha256=z_g4dHS05Z1V9VNVRxd0YzCYdtsouy3izZdS8SBiWe8,970
|
3728
3728
|
homeassistant-stubs/components/uptimerobot/switch.pyi,sha256=HP6ahvAzhoV7iXbXg6K0mOItkXmkE380r2L64-45L-E,1133
|
3729
|
-
homeassistant-stubs/components/usb/__init__.pyi,sha256=
|
3729
|
+
homeassistant-stubs/components/usb/__init__.pyi,sha256=yfI88LpuTy2h-HNue-iQ4RFr6APfSEhS5TViga9Upgc,2672
|
3730
3730
|
homeassistant-stubs/components/usb/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
3731
3731
|
homeassistant-stubs/components/usb/models.pyi,sha256=pLkBrr3ZBOkR58G-LJ1aQSCbAhoUcMoGEmpG5p_TjtE,231
|
3732
|
-
homeassistant-stubs/components/usb/utils.pyi,sha256=
|
3732
|
+
homeassistant-stubs/components/usb/utils.pyi,sha256=T1Tpmwrk-Z3zotLrNZeg3fhdFjotoHxEHop8xYa8lig,268
|
3733
3733
|
homeassistant-stubs/components/uvc/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3734
3734
|
homeassistant-stubs/components/uvc/camera.pyi,sha256=dL3E-LxD29yqS5zeYgz317SJzZGxUuru-PzsYc6EcVY,2275
|
3735
3735
|
homeassistant-stubs/components/vacuum/__init__.pyi,sha256=SFGGScp7FzazyaTVJYhoPxVFy2bfVBUKsOwDL-LUtUE,6264
|
@@ -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.
|
4144
|
-
homeassistant_stubs-2025.4.
|
4145
|
-
homeassistant_stubs-2025.4.
|
4146
|
-
homeassistant_stubs-2025.4.
|
4143
|
+
homeassistant_stubs-2025.4.0b10.dist-info/METADATA,sha256=UwCz8jAPEz99H5FONiumcucOrh1-puQgrfxJASiqCgA,2958
|
4144
|
+
homeassistant_stubs-2025.4.0b10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4145
|
+
homeassistant_stubs-2025.4.0b10.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4146
|
+
homeassistant_stubs-2025.4.0b10.dist-info/RECORD,,
|
{homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b10.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|