homeassistant-stubs 2025.4.0b1__py3-none-any.whl → 2025.4.0b2__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/const.pyi +3 -0
- homeassistant-stubs/components/assist_satellite/entity.pyi +3 -3
- homeassistant-stubs/components/home_connect/switch.pyi +1 -0
- homeassistant-stubs/components/pyload/coordinator.pyi +1 -0
- {homeassistant_stubs-2025.4.0b1.dist-info → homeassistant_stubs-2025.4.0b2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.4.0b1.dist-info → homeassistant_stubs-2025.4.0b2.dist-info}/RECORD +8 -8
- {homeassistant_stubs-2025.4.0b1.dist-info → homeassistant_stubs-2025.4.0b2.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.4.0b1.dist-info → homeassistant_stubs-2025.4.0b2.dist-info}/licenses/LICENSE +0 -0
@@ -1,5 +1,6 @@
|
|
1
1
|
import asyncio
|
2
2
|
from .entity import AssistSatelliteEntity as AssistSatelliteEntity
|
3
|
+
from _typeshed import Incomplete
|
3
4
|
from enum import IntFlag
|
4
5
|
from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
|
5
6
|
from homeassistant.util.hass_dict import HassKey as HassKey
|
@@ -7,6 +8,8 @@ from homeassistant.util.hass_dict import HassKey as HassKey
|
|
7
8
|
DOMAIN: str
|
8
9
|
DATA_COMPONENT: HassKey[EntityComponent[AssistSatelliteEntity]]
|
9
10
|
CONNECTION_TEST_DATA: HassKey[dict[str, asyncio.Event]]
|
11
|
+
PREANNOUNCE_FILENAME: str
|
12
|
+
PREANNOUNCE_URL: Incomplete
|
10
13
|
|
11
14
|
class AssistSatelliteEntityFeature(IntFlag):
|
12
15
|
ANNOUNCE = 1
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import abc
|
2
2
|
import asyncio
|
3
|
-
from .const import AssistSatelliteEntityFeature as AssistSatelliteEntityFeature
|
3
|
+
from .const import AssistSatelliteEntityFeature as AssistSatelliteEntityFeature, PREANNOUNCE_URL as PREANNOUNCE_URL
|
4
4
|
from .errors import AssistSatelliteError as AssistSatelliteError, SatelliteBusyError as SatelliteBusyError
|
5
5
|
from _typeshed import Incomplete
|
6
6
|
from abc import abstractmethod
|
@@ -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 | None =
|
79
|
+
async def async_internal_announce(self, message: str | None = None, media_id: str | None = None, preannounce_media_id: str | None = ...) -> 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 | 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 | None = ...) -> 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: ...
|
@@ -40,6 +40,7 @@ class HomeConnectProgramSwitch(HomeConnectEntity, SwitchEntity):
|
|
40
40
|
def __init__(self, coordinator: HomeConnectCoordinator, appliance: HomeConnectApplianceData, program: EnumerateProgram) -> None: ...
|
41
41
|
async def async_added_to_hass(self) -> None: ...
|
42
42
|
async def async_will_remove_from_hass(self) -> None: ...
|
43
|
+
def create_action_handler_issue(self) -> None: ...
|
43
44
|
async def async_turn_on(self, **kwargs: Any) -> None: ...
|
44
45
|
async def async_turn_off(self, **kwargs: Any) -> None: ...
|
45
46
|
_attr_is_on: Incomplete
|
{homeassistant_stubs-2025.4.0b1.dist-info → homeassistant_stubs-2025.4.0b2.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.0b2
|
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.0b2
|
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.0b1.dist-info → homeassistant_stubs-2025.4.0b2.dist-info}/RECORD
RENAMED
@@ -359,8 +359,8 @@ homeassistant-stubs/components/assist_pipeline/vad.pyi,sha256=SXT9aO_K4KHSwr0qyN
|
|
359
359
|
homeassistant-stubs/components/assist_pipeline/websocket_api.pyi,sha256=IXmxJBAuiSBM-bmB5u9pz3X3Zxaef37FTT_EOl3Xpt8,2464
|
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
|
-
homeassistant-stubs/components/assist_satellite/const.pyi,sha256=
|
363
|
-
homeassistant-stubs/components/assist_satellite/entity.pyi,sha256=
|
362
|
+
homeassistant-stubs/components/assist_satellite/const.pyi,sha256=djQBXXgRte-eRVIYR9VDHF-pQ0XQmgws1eAwBUlgAq8,563
|
363
|
+
homeassistant-stubs/components/assist_satellite/entity.pyi,sha256=Wx_Kg-gpTkfv4nMSV0MJaHysZd6V18l6tZFLgErKMN8,4771
|
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
|
@@ -1445,7 +1445,7 @@ homeassistant-stubs/components/home_connect/number.pyi,sha256=adjqXnmWo9DE635OPl
|
|
1445
1445
|
homeassistant-stubs/components/home_connect/select.pyi,sha256=PrU0h22aEErEL7Xyi8BMua7mtSUi6UnDRy4kQMnDNQ0,4990
|
1446
1446
|
homeassistant-stubs/components/home_connect/sensor.pyi,sha256=qLfUdOg4tg3mjYuwxUErdreWk5amhRK5pdQAf6-lmGI,2757
|
1447
1447
|
homeassistant-stubs/components/home_connect/services.pyi,sha256=nNgd34iZZhY3X3ygnskNoPlcxX30XNQQQ5KIErr-a4s,2866
|
1448
|
-
homeassistant-stubs/components/home_connect/switch.pyi,sha256=
|
1448
|
+
homeassistant-stubs/components/home_connect/switch.pyi,sha256=wy68QgBeUOu_eAARIB530EFpfoNPneIfI8y6qFO9N3o,3715
|
1449
1449
|
homeassistant-stubs/components/home_connect/time.pyi,sha256=4BCnoXJvKrNNPMYzn-QhX2S1Dt4LUUVWUQT3UO9tFEk,1897
|
1450
1450
|
homeassistant-stubs/components/home_connect/utils.pyi,sha256=2FCMFNNiLYdWwptLrh3HnTf-yDf2tJa1pp8jLPk_WiU,277
|
1451
1451
|
homeassistant-stubs/components/homeassistant/__init__.pyi,sha256=4E-drvsHDg4V0hpicWoNKti1gQUP69dltswbwXxkOE0,2806
|
@@ -2720,7 +2720,7 @@ homeassistant-stubs/components/pyload/__init__.pyi,sha256=KCPzCTO0gVpj72lAL1bKqq
|
|
2720
2720
|
homeassistant-stubs/components/pyload/button.pyi,sha256=OH6Y_eS6kLRh48OrBdpx9Vkjwp6QwprodSpCYBsd5mI,1449
|
2721
2721
|
homeassistant-stubs/components/pyload/config_flow.pyi,sha256=BQXZ-Io25KUMCQSxVxjMskcl-zpC1IUCk1g97cFQmXY,1440
|
2722
2722
|
homeassistant-stubs/components/pyload/const.pyi,sha256=AS5Qyb2NXQHEhxxO7CkX6wZ4D1R9JnHU2q1pwqNgOTM,104
|
2723
|
-
homeassistant-stubs/components/pyload/coordinator.pyi,sha256=
|
2723
|
+
homeassistant-stubs/components/pyload/coordinator.pyi,sha256=bLvuDqbJ_OPhietvkp6h-xP9cveMZhuNeNJSfrpNLPE,1301
|
2724
2724
|
homeassistant-stubs/components/pyload/diagnostics.pyi,sha256=p3c48e3ejh5T3gImghAn9THzdxpItawrqgpHF0lW6Sg,581
|
2725
2725
|
homeassistant-stubs/components/pyload/entity.pyi,sha256=Gp3UN4fWDlsfS2Z_bUQUKbTxLX2nDOOrIMqZopF9uTA,782
|
2726
2726
|
homeassistant-stubs/components/pyload/sensor.pyi,sha256=db9pfFWDIUUbt7j_etiqeL5g6Sta21UMDY5FXTNAiLs,1547
|
@@ -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.0b2.dist-info/METADATA,sha256=f5cABNMiIo71iOk6hjuFMBaX5LlIXu7AhATVlCzxNxc,2956
|
4144
|
+
homeassistant_stubs-2025.4.0b2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4145
|
+
homeassistant_stubs-2025.4.0b2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4146
|
+
homeassistant_stubs-2025.4.0b2.dist-info/RECORD,,
|
File without changes
|
File without changes
|