homeassistant-stubs 2025.4.0b10__py3-none-any.whl → 2025.4.0b12__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/lovelace/__init__.pyi +3 -1
- {homeassistant_stubs-2025.4.0b10.dist-info → homeassistant_stubs-2025.4.0b12.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.4.0b10.dist-info → homeassistant_stubs-2025.4.0b12.dist-info}/RECORD +6 -6
- {homeassistant_stubs-2025.4.0b10.dist-info → homeassistant_stubs-2025.4.0b12.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.4.0b10.dist-info → homeassistant_stubs-2025.4.0b12.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: ...
|
@@ -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: ...
|
{homeassistant_stubs-2025.4.0b10.dist-info → homeassistant_stubs-2025.4.0b12.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.0b12
|
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.0b12
|
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.0b10.dist-info → homeassistant_stubs-2025.4.0b12.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
|
@@ -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
|
@@ -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.0b12.dist-info/METADATA,sha256=wROKT3veTocEyp_cCTFK6UKbtdUciGW4N0j2QnKXRQE,2958
|
4144
|
+
homeassistant_stubs-2025.4.0b12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4145
|
+
homeassistant_stubs-2025.4.0b12.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4146
|
+
homeassistant_stubs-2025.4.0b12.dist-info/RECORD,,
|
{homeassistant_stubs-2025.4.0b10.dist-info → homeassistant_stubs-2025.4.0b12.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|