homeassistant-stubs 2025.4.0b9__py3-none-any.whl → 2025.4.0b11__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/assist_satellite/entity.pyi +2 -2
- homeassistant-stubs/components/esphome/config_flow.pyi +1 -0
- homeassistant-stubs/components/fritzbox/climate.pyi +1 -1
- homeassistant-stubs/components/lovelace/__init__.pyi +3 -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.0b11.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b11.dist-info}/RECORD +10 -10
- {homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b11.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b11.dist-info}/licenses/LICENSE +0 -0
@@ -76,9 +76,9 @@ class AssistSatelliteEntity(entity.Entity, metaclass=abc.ABCMeta):
|
|
76
76
|
@abstractmethod
|
77
77
|
async def async_set_configuration(self, config: AssistSatelliteConfiguration) -> None: ...
|
78
78
|
async def async_intercept_wake_word(self) -> str | None: ...
|
79
|
-
async def async_internal_announce(self, message: str | None = None, media_id: str | None = None, preannounce_media_id: str
|
79
|
+
async def async_internal_announce(self, message: str | None = None, media_id: str | None = None, preannounce: bool = True, preannounce_media_id: str = ...) -> None: ...
|
80
80
|
async def async_announce(self, announcement: AssistSatelliteAnnouncement) -> None: ...
|
81
|
-
async def async_internal_start_conversation(self, start_message: str | None = None, start_media_id: str | None = None, extra_system_prompt: str | None = None, preannounce_media_id: str
|
81
|
+
async def async_internal_start_conversation(self, start_message: str | None = None, start_media_id: str | None = None, extra_system_prompt: str | None = None, preannounce: bool = True, preannounce_media_id: str = ...) -> None: ...
|
82
82
|
async def async_start_conversation(self, start_announcement: AssistSatelliteAnnouncement) -> None: ...
|
83
83
|
async def async_accept_pipeline_from_satellite(self, audio_stream: AsyncIterable[bytes], start_stage: PipelineStage = ..., end_stage: PipelineStage = ..., wake_word_phrase: str | None = None) -> None: ...
|
84
84
|
async def _cancel_running_pipeline(self) -> None: ...
|
@@ -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
|
@@ -3,7 +3,7 @@ from .const import CONF_ALLOW_SINGLE_WORD as CONF_ALLOW_SINGLE_WORD, CONF_ICON a
|
|
3
3
|
from .system_health import system_health_info as system_health_info
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from dataclasses import dataclass
|
6
|
-
from homeassistant.components import frontend as frontend, websocket_api as websocket_api
|
6
|
+
from homeassistant.components import frontend as frontend, onboarding as onboarding, websocket_api as websocket_api
|
7
7
|
from homeassistant.config import async_hass_config_yaml as async_hass_config_yaml, async_process_component_and_handle_errors as async_process_component_and_handle_errors
|
8
8
|
from homeassistant.const import CONF_FILENAME as CONF_FILENAME, CONF_MODE as CONF_MODE, CONF_RESOURCES as CONF_RESOURCES
|
9
9
|
from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, callback as callback
|
@@ -11,6 +11,7 @@ from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
|
11
11
|
from homeassistant.helpers import collection as collection
|
12
12
|
from homeassistant.helpers.frame import report_usage as report_usage
|
13
13
|
from homeassistant.helpers.service import async_register_admin_service as async_register_admin_service
|
14
|
+
from homeassistant.helpers.translation import async_get_translations as async_get_translations
|
14
15
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
15
16
|
from homeassistant.loader import async_get_integration as async_get_integration
|
16
17
|
from homeassistant.util import slugify as slugify
|
@@ -37,3 +38,4 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
|
37
38
|
async def create_yaml_resource_col(hass: HomeAssistant, yaml_resources: list[ConfigType] | None) -> resources.ResourceYAMLCollection: ...
|
38
39
|
@callback
|
39
40
|
def _register_panel(hass: HomeAssistant, url_path: str | None, mode: str, config: dict, update: bool) -> None: ...
|
41
|
+
async def _create_map_dashboard(hass: HomeAssistant, dashboards_collection: dashboard.DashboardsCollection) -> None: ...
|
@@ -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.0b11.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.0b11
|
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.0b11
|
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.0b11.dist-info}/RECORD
RENAMED
@@ -360,7 +360,7 @@ homeassistant-stubs/components/assist_pipeline/websocket_api.pyi,sha256=IXmxJBAu
|
|
360
360
|
homeassistant-stubs/components/assist_satellite/__init__.pyi,sha256=bda61RsyxhxCbWoE_3KIdjxW42ur1hwBZlsbdW1_3aI,697
|
361
361
|
homeassistant-stubs/components/assist_satellite/connection_test.pyi,sha256=n6GR9JSJPI4QQidvpAnjq70Wyv8eKjFMxnd-yyYl-kc,530
|
362
362
|
homeassistant-stubs/components/assist_satellite/const.pyi,sha256=djQBXXgRte-eRVIYR9VDHF-pQ0XQmgws1eAwBUlgAq8,563
|
363
|
-
homeassistant-stubs/components/assist_satellite/entity.pyi,sha256=
|
363
|
+
homeassistant-stubs/components/assist_satellite/entity.pyi,sha256=gRC7XPw3mJqYk9UbVX1Ul_jY-c84FRxCwkI1ilG0a8Y,4809
|
364
364
|
homeassistant-stubs/components/assist_satellite/errors.pyi,sha256=roq9cFMrbiJ4-OGqUVmD3SzW88R3CedlPADk_JX5MIU,183
|
365
365
|
homeassistant-stubs/components/assist_satellite/intent.pyi,sha256=HTbQZnSD7MC-tG_SovCLcymYfUW9q3JuDiRXpyR_K_w,621
|
366
366
|
homeassistant-stubs/components/assist_satellite/websocket_api.pyi,sha256=tSfIMpvJXDaYryZYiC8bHPlMv7V1GxzR4cP9k7YqdC0,1443
|
@@ -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
|
@@ -2039,7 +2039,7 @@ homeassistant-stubs/components/lookin/light.pyi,sha256=TWy5-Xd3cibFsyROvE7ajOwoy
|
|
2039
2039
|
homeassistant-stubs/components/lookin/media_player.pyi,sha256=U8CpevgjaQ9VAroTuUj9q75Ge022z3j-DekqNTjC6Zc,2133
|
2040
2040
|
homeassistant-stubs/components/lookin/models.pyi,sha256=xBgiCObEZiNUPSS1PoaUKMBCzNTdIOf_Haid4OW99D4,649
|
2041
2041
|
homeassistant-stubs/components/lookin/sensor.pyi,sha256=Z3UJy8tpc31o4Np77gtc_VlVNvCAwqsh-wI3aaq29wk,1308
|
2042
|
-
homeassistant-stubs/components/lovelace/__init__.pyi,sha256=
|
2042
|
+
homeassistant-stubs/components/lovelace/__init__.pyi,sha256=B5Aqs9izwopoz11o4xPLT78rgelB2VvaDJ3kX633JJM,3202
|
2043
2043
|
homeassistant-stubs/components/lovelace/cast.pyi,sha256=bWhBQD4qM57ObDjGXWEuxC9gIjEAqZeLH3OygiInofQ,1474
|
2044
2044
|
homeassistant-stubs/components/lovelace/const.pyi,sha256=FWPq35izqYPS--Sjoo4kOLk_4ca0ejUrNMsZ5HXroio,1206
|
2045
2045
|
homeassistant-stubs/components/lovelace/dashboard.pyi,sha256=1QY3P76iAvbJ49E_6pzU-jiQLzeabJs5Ekxuc-YiN3o,4200
|
@@ -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.0b11.dist-info/METADATA,sha256=FtfVBcDjQqCjWlMJRp9hT8NFxuHr5CteUZiFNuEFh48,2958
|
4144
|
+
homeassistant_stubs-2025.4.0b11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4145
|
+
homeassistant_stubs-2025.4.0b11.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4146
|
+
homeassistant_stubs-2025.4.0b11.dist-info/RECORD,,
|
{homeassistant_stubs-2025.4.0b9.dist-info → homeassistant_stubs-2025.4.0b11.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|