homeassistant-stubs 2025.4.2__py3-none-any.whl → 2025.4.4__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/apple_tv/media_player.pyi +1 -0
- homeassistant-stubs/components/home_connect/select.pyi +1 -1
- homeassistant-stubs/components/jewish_calendar/config_flow.pyi +1 -1
- homeassistant-stubs/components/linkplay/media_player.pyi +2 -0
- homeassistant-stubs/components/vodafone_station/__init__.pyi +0 -1
- homeassistant-stubs/helpers/llm.pyi +2 -1
- {homeassistant_stubs-2025.4.2.dist-info → homeassistant_stubs-2025.4.4.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.4.2.dist-info → homeassistant_stubs-2025.4.4.dist-info}/RECORD +10 -10
- {homeassistant_stubs-2025.4.2.dist-info → homeassistant_stubs-2025.4.4.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.4.2.dist-info → homeassistant_stubs-2025.4.4.dist-info}/licenses/LICENSE +0 -0
@@ -23,6 +23,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: AppleTvConfigEntr
|
|
23
23
|
class AppleTvMediaPlayer(AppleTVEntity, MediaPlayerEntity, PowerListener, AudioListener, PushListener):
|
24
24
|
_attr_supported_features = SUPPORT_APPLE_TV
|
25
25
|
_playing: Playing | None
|
26
|
+
_playing_last_updated: datetime | None
|
26
27
|
_app_list: dict[str, str]
|
27
28
|
def __init__(self, name: str, identifier: str, manager: AppleTVManager) -> None: ...
|
28
29
|
@callback
|
@@ -1,5 +1,5 @@
|
|
1
1
|
from .common import setup_home_connect_entry as setup_home_connect_entry
|
2
|
-
from .const import
|
2
|
+
from .const import AVAILABLE_MAPS_ENUM as AVAILABLE_MAPS_ENUM, BEAN_AMOUNT_OPTIONS as BEAN_AMOUNT_OPTIONS, BEAN_CONTAINER_OPTIONS as BEAN_CONTAINER_OPTIONS, CLEANING_MODE_OPTIONS as CLEANING_MODE_OPTIONS, COFFEE_MILK_RATIO_OPTIONS as COFFEE_MILK_RATIO_OPTIONS, COFFEE_TEMPERATURE_OPTIONS as COFFEE_TEMPERATURE_OPTIONS, DOMAIN as DOMAIN, DRYING_TARGET_OPTIONS as DRYING_TARGET_OPTIONS, FLOW_RATE_OPTIONS as FLOW_RATE_OPTIONS, HOT_WATER_TEMPERATURE_OPTIONS as HOT_WATER_TEMPERATURE_OPTIONS, INTENSIVE_LEVEL_OPTIONS as INTENSIVE_LEVEL_OPTIONS, PROGRAMS_TRANSLATION_KEYS_MAP as PROGRAMS_TRANSLATION_KEYS_MAP, SPIN_SPEED_OPTIONS as SPIN_SPEED_OPTIONS, TEMPERATURE_OPTIONS as TEMPERATURE_OPTIONS, TRANSLATION_KEYS_PROGRAMS_MAP as TRANSLATION_KEYS_PROGRAMS_MAP, VARIO_PERFECT_OPTIONS as VARIO_PERFECT_OPTIONS, VENTING_LEVEL_OPTIONS as VENTING_LEVEL_OPTIONS, WARMING_LEVEL_OPTIONS as WARMING_LEVEL_OPTIONS
|
3
3
|
from .coordinator import HomeConnectApplianceData as HomeConnectApplianceData, HomeConnectConfigEntry as HomeConnectConfigEntry, HomeConnectCoordinator as HomeConnectCoordinator
|
4
4
|
from .entity import HomeConnectEntity as HomeConnectEntity, HomeConnectOptionEntity as HomeConnectOptionEntity, constraint_fetcher as constraint_fetcher
|
5
5
|
from .utils import bsh_key_to_translation_key as bsh_key_to_translation_key, get_dict_from_home_connect_error as get_dict_from_home_connect_error
|
@@ -11,7 +11,7 @@ LANGUAGE: Incomplete
|
|
11
11
|
OPTIONS_SCHEMA: Incomplete
|
12
12
|
_LOGGER: Incomplete
|
13
13
|
|
14
|
-
def _get_data_schema(hass: HomeAssistant) -> vol.Schema: ...
|
14
|
+
async def _get_data_schema(hass: HomeAssistant) -> vol.Schema: ...
|
15
15
|
|
16
16
|
class JewishCalendarConfigFlow(ConfigFlow, domain=DOMAIN):
|
17
17
|
VERSION: int
|
@@ -28,6 +28,8 @@ SERVICE_PLAY_PRESET: str
|
|
28
28
|
ATTR_PRESET_NUMBER: str
|
29
29
|
SERVICE_PLAY_PRESET_SCHEMA: Incomplete
|
30
30
|
RETRY_POLL_MAXIMUM: int
|
31
|
+
SCAN_INTERVAL: Incomplete
|
32
|
+
PARALLEL_UPDATES: int
|
31
33
|
|
32
34
|
async def async_setup_entry(hass: HomeAssistant, entry: LinkPlayConfigEntry, async_add_entities: AddConfigEntryEntitiesCallback) -> None: ...
|
33
35
|
|
@@ -1,4 +1,3 @@
|
|
1
|
-
from .const import DOMAIN as DOMAIN
|
2
1
|
from .coordinator import VodafoneConfigEntry as VodafoneConfigEntry, VodafoneStationRouter as VodafoneStationRouter
|
3
2
|
from _typeshed import Incomplete
|
4
3
|
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME, Platform as Platform
|
@@ -24,6 +24,7 @@ LLM_API_ASSIST: str
|
|
24
24
|
BASE_PROMPT: str
|
25
25
|
DEFAULT_INSTRUCTIONS_PROMPT: str
|
26
26
|
NO_ENTITIES_PROMPT: str
|
27
|
+
DYNAMIC_CONTEXT_PROMPT: str
|
27
28
|
|
28
29
|
@callback
|
29
30
|
def async_render_no_api_prompt(hass: HomeAssistant) -> str: ...
|
@@ -119,7 +120,7 @@ class CalendarGetEventsTool(Tool):
|
|
119
120
|
def __init__(self, calendars: list[str]) -> None: ...
|
120
121
|
async def async_call(self, hass: HomeAssistant, tool_input: ToolInput, llm_context: LLMContext) -> JsonObjectType: ...
|
121
122
|
|
122
|
-
class
|
123
|
+
class GetLiveContextTool(Tool):
|
123
124
|
name: str
|
124
125
|
description: str
|
125
126
|
async def async_call(self, hass: HomeAssistant, tool_input: ToolInput, llm_context: LLMContext) -> JsonObjectType: ...
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.4.
|
3
|
+
Version: 2025.4.4
|
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.4
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
@@ -304,7 +304,7 @@ homeassistant-stubs/components/apple_tv/browse_media.pyi,sha256=wA0bxIf0TNUyrdHF
|
|
304
304
|
homeassistant-stubs/components/apple_tv/config_flow.pyi,sha256=XjV5zw5xn0Se3SB9TfmNNq8T4lqemRNo-tx6sChtViQ,4411
|
305
305
|
homeassistant-stubs/components/apple_tv/const.pyi,sha256=AEiFcwbRcnL22I9XkoOoeiC8xmWR0VmKl76dLWiMkcE,123
|
306
306
|
homeassistant-stubs/components/apple_tv/entity.pyi,sha256=rYgEUhRyIIF8L3jvaZpYzU8oJzYjzo3SPONATusb8Rc,1045
|
307
|
-
homeassistant-stubs/components/apple_tv/media_player.pyi,sha256=
|
307
|
+
homeassistant-stubs/components/apple_tv/media_player.pyi,sha256=TfM22CXOkFR49zKMdHhbNeyApN72ZmclcuZGXBgstCE,4944
|
308
308
|
homeassistant-stubs/components/apple_tv/remote.pyi,sha256=6BCukaNry-7moUjSqL0dD5i8RoNIBvM7di5mBwSbEZw,1233
|
309
309
|
homeassistant-stubs/components/apprise/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
310
310
|
homeassistant-stubs/components/apprise/notify.pyi,sha256=--V4QxtEc1DE4EyhpGx7qHmjyFV5hmRzwDI1EuGUVfA,914
|
@@ -1442,7 +1442,7 @@ homeassistant-stubs/components/home_connect/diagnostics.pyi,sha256=xd5stDFXPm86S
|
|
1442
1442
|
homeassistant-stubs/components/home_connect/entity.pyi,sha256=qDLWmPlkRV1j54lBRohnR_mtsq9ET-KcbpjhsdGvg-w,2285
|
1443
1443
|
homeassistant-stubs/components/home_connect/light.pyi,sha256=ZdzcU-7barDseZjwoI6U8hEA70H5XuinORlk-kXrWLE,2711
|
1444
1444
|
homeassistant-stubs/components/home_connect/number.pyi,sha256=adjqXnmWo9DE635OPl_b7QBoPySHxR4Q0vy5vuy9QGc,2490
|
1445
|
-
homeassistant-stubs/components/home_connect/select.pyi,sha256=
|
1445
|
+
homeassistant-stubs/components/home_connect/select.pyi,sha256=vYCKLjQ4uWHwv3IN3XXJGtx0l4XKHF4TKx78K8FLxlU,4936
|
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
1448
|
homeassistant-stubs/components/home_connect/switch.pyi,sha256=wy68QgBeUOu_eAARIB530EFpfoNPneIfI8y6qFO9N3o,3715
|
@@ -1763,7 +1763,7 @@ homeassistant-stubs/components/jellyfin/remote.pyi,sha256=NtAVG_xLQEnNh5Rm2jei8G
|
|
1763
1763
|
homeassistant-stubs/components/jellyfin/sensor.pyi,sha256=UkROwLGJbV4rCBzHdtdC7P093HLxz6EK2iFoXZzNMGo,1477
|
1764
1764
|
homeassistant-stubs/components/jewish_calendar/__init__.pyi,sha256=Rmwa_6nnthRQTS-YAFnVgmoporEf2NIzMkyCRS5pSQc,1423
|
1765
1765
|
homeassistant-stubs/components/jewish_calendar/binary_sensor.pyi,sha256=DnvJaRXU9vH5dNOpC9hmsP2Eock8wYMj1pKmRUua8a8,1895
|
1766
|
-
homeassistant-stubs/components/jewish_calendar/config_flow.pyi,sha256=
|
1766
|
+
homeassistant-stubs/components/jewish_calendar/config_flow.pyi,sha256=KtW9N-31ypRDgU_svBONfv2ejneIr1PYxoJCYYIhLdU,1909
|
1767
1767
|
homeassistant-stubs/components/jewish_calendar/const.pyi,sha256=gUBPR54KNzQXUW2PpgPfFj13sK5DBWIPYmPj1vPHxc0,278
|
1768
1768
|
homeassistant-stubs/components/jewish_calendar/entity.pyi,sha256=O7_a56AQUVlpD_5bS2H-OzwOfnFussCVm2SsNhEWpgE,1124
|
1769
1769
|
homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=R8PUorXmHNJogiPkkkDofjZ69oo7WiMsYUEdKHPD91o,1870
|
@@ -1969,7 +1969,7 @@ homeassistant-stubs/components/linkplay/config_flow.pyi,sha256=0srPny4s69nXOZDMo
|
|
1969
1969
|
homeassistant-stubs/components/linkplay/const.pyi,sha256=k57iA2wnGZ-FpyvslegKYhHODCqQnBMRgGfXYiCQYhE,332
|
1970
1970
|
homeassistant-stubs/components/linkplay/diagnostics.pyi,sha256=hGb5l3qy5fZZko2vCXGsSuxpPri47SJtvC8TG2MsyIg,260
|
1971
1971
|
homeassistant-stubs/components/linkplay/entity.pyi,sha256=3txXHyZtzmoXNSa0IKe9zpdYepOOrBFjA2cxAxxlmXM,817
|
1972
|
-
homeassistant-stubs/components/linkplay/media_player.pyi,sha256=
|
1972
|
+
homeassistant-stubs/components/linkplay/media_player.pyi,sha256=TjktwxVFruJFWB2RqbROwlN1yvKgjSZHFi2BiZh4UsE,4660
|
1973
1973
|
homeassistant-stubs/components/linkplay/utils.pyi,sha256=-3q-3EoAC7tfzsnAidIXV0oqvA3BLZRaamgp3v4O37I,383
|
1974
1974
|
homeassistant-stubs/components/litejet/__init__.pyi,sha256=kjhUyHTWKn3vZrYmvjhfZZPRYhrX2CFS_k2st-gTf_Q,615
|
1975
1975
|
homeassistant-stubs/components/litejet/config_flow.pyi,sha256=9q1tc4pytdICCwbUHbnmW01EZqcDHoTMXNZawAfgh0E,794
|
@@ -3771,7 +3771,7 @@ homeassistant-stubs/components/vlc_telnet/__init__.pyi,sha256=rRyAetu0PnMRq0V1Ai
|
|
3771
3771
|
homeassistant-stubs/components/vlc_telnet/config_flow.pyi,sha256=TJlRjp5jSVRhRCiPE-Kt92Er6WDGp1yNU6mMxqrJkTU,1688
|
3772
3772
|
homeassistant-stubs/components/vlc_telnet/const.pyi,sha256=KyCTKV9087wsLPiRcvts8PGW4Tw2qeQd2wvm_mwbt7Q,135
|
3773
3773
|
homeassistant-stubs/components/vlc_telnet/media_player.pyi,sha256=AO7tbX_g126htcafcmVLPW67bAdM0tMwNm5Uh_K0ElE,3505
|
3774
|
-
homeassistant-stubs/components/vodafone_station/__init__.pyi,sha256=
|
3774
|
+
homeassistant-stubs/components/vodafone_station/__init__.pyi,sha256=LdCFwW5JzGecUDqesXN-HE-QwMG2siNY5C9W38kbyZQ,645
|
3775
3775
|
homeassistant-stubs/components/vodafone_station/button.pyi,sha256=e7EHYk7jR2xdvB81iRmo6chnZ0fyLwjZIT7ehDWfETs,1706
|
3776
3776
|
homeassistant-stubs/components/vodafone_station/config_flow.pyi,sha256=5XkKVVt0TgIeHbSyg9UKkGhYzjhFB0xTk1Bqbj7pWak,1786
|
3777
3777
|
homeassistant-stubs/components/vodafone_station/const.pyi,sha256=woxo-6v-TfdV9LQEcq3jPVklEveaIc4QQnmZJmRnlCc,173
|
@@ -4053,7 +4053,7 @@ homeassistant-stubs/helpers/intent.pyi,sha256=WSscFXJO0pqm1GZMgEWNvK4SQyqVlmhBeC
|
|
4053
4053
|
homeassistant-stubs/helpers/issue_registry.pyi,sha256=x5EWMHDci2qKI78inC6nbOaMqpJCnp2v6a5ixZ4uYxI,4054
|
4054
4054
|
homeassistant-stubs/helpers/json.pyi,sha256=PIxBwZx71qJb_-DKqyVJJoLeU4q8XlT2ODHt9eeL33Q,1798
|
4055
4055
|
homeassistant-stubs/helpers/label_registry.pyi,sha256=uMXIYvaAzudKQS-rgL25Dz48b32hDru7lAmhcPhHAig,3163
|
4056
|
-
homeassistant-stubs/helpers/llm.pyi,sha256=
|
4056
|
+
homeassistant-stubs/helpers/llm.pyi,sha256=IXobtJSIUDt7xQwnBPAC_TvUZgDrUy-GZt4T4vgUw3E,5423
|
4057
4057
|
homeassistant-stubs/helpers/location.pyi,sha256=ynZlBZv3LuyphX4B28y2n2V4IHtJ6ETkUnqOlSYM1FM,655
|
4058
4058
|
homeassistant-stubs/helpers/network.pyi,sha256=-pTFXkYDO0c0R10kisJ6hL6QTJZSODwpfuWReVXoSbg,1882
|
4059
4059
|
homeassistant-stubs/helpers/normalized_name_base_registry.pyi,sha256=XEipwDH7JmF_zR43UN86VP04YW4wO4He3jTHRRA0AII,1004
|
@@ -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.4.dist-info/METADATA,sha256=WlD9WhZ68ftbp5iIc6p6fzngIaHXw2hpuiwimqDYDcs,2952
|
4144
|
+
homeassistant_stubs-2025.4.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4145
|
+
homeassistant_stubs-2025.4.4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4146
|
+
homeassistant_stubs-2025.4.4.dist-info/RECORD,,
|
File without changes
|
{homeassistant_stubs-2025.4.2.dist-info → homeassistant_stubs-2025.4.4.dist-info}/licenses/LICENSE
RENAMED
File without changes
|