homeassistant-stubs 2025.7.0b0__py3-none-any.whl → 2025.7.0b1__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/airq/coordinator.pyi +1 -1
- homeassistant-stubs/components/alexa_devices/notify.pyi +2 -0
- homeassistant-stubs/components/alexa_devices/switch.pyi +2 -0
- homeassistant-stubs/components/alexa_devices/utils.pyi +7 -0
- homeassistant-stubs/components/image/__init__.pyi +2 -0
- homeassistant-stubs/components/matter/vacuum.pyi +1 -1
- homeassistant-stubs/components/media_source/local_source.pyi +2 -0
- homeassistant-stubs/components/music_assistant/button.pyi +0 -2
- homeassistant-stubs/components/openai_conversation/__init__.pyi +1 -1
- homeassistant-stubs/components/openai_conversation/const.pyi +1 -0
- homeassistant-stubs/components/telegram_bot/__init__.pyi +1 -1
- homeassistant-stubs/components/telegram_bot/bot.pyi +4 -4
- homeassistant-stubs/components/telegram_bot/config_flow.pyi +2 -2
- homeassistant-stubs/components/telegram_bot/const.pyi +1 -0
- homeassistant-stubs/components/tts/__init__.pyi +1 -0
- homeassistant-stubs/config_entries.pyi +2 -0
- {homeassistant_stubs-2025.7.0b0.dist-info → homeassistant_stubs-2025.7.0b1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.7.0b0.dist-info → homeassistant_stubs-2025.7.0b1.dist-info}/RECORD +20 -19
- {homeassistant_stubs-2025.7.0b0.dist-info → homeassistant_stubs-2025.7.0b1.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.7.0b0.dist-info → homeassistant_stubs-2025.7.0b1.dist-info}/licenses/LICENSE +0 -0
@@ -3,7 +3,7 @@ from _typeshed import Incomplete
|
|
3
3
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
4
4
|
from homeassistant.const import CONF_IP_ADDRESS as CONF_IP_ADDRESS, CONF_PASSWORD as CONF_PASSWORD
|
5
5
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
6
|
-
from homeassistant.helpers.aiohttp_client import
|
6
|
+
from homeassistant.helpers.aiohttp_client import async_create_clientsession as async_create_clientsession
|
7
7
|
from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
|
8
8
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator
|
9
9
|
|
@@ -1,5 +1,6 @@
|
|
1
1
|
from .coordinator import AmazonConfigEntry as AmazonConfigEntry
|
2
2
|
from .entity import AmazonEntity as AmazonEntity
|
3
|
+
from .utils import alexa_api_call as alexa_api_call
|
3
4
|
from _typeshed import Incomplete
|
4
5
|
from aioamazondevices.api import AmazonDevice as AmazonDevice, AmazonEchoApi as AmazonEchoApi
|
5
6
|
from collections.abc import Awaitable, Callable as Callable
|
@@ -23,4 +24,5 @@ async def async_setup_entry(hass: HomeAssistant, entry: AmazonConfigEntry, async
|
|
23
24
|
|
24
25
|
class AmazonNotifyEntity(AmazonEntity, NotifyEntity):
|
25
26
|
entity_description: AmazonNotifyEntityDescription
|
27
|
+
@alexa_api_call
|
26
28
|
async def async_send_message(self, message: str, title: str | None = None, **kwargs: Any) -> None: ...
|
@@ -1,5 +1,6 @@
|
|
1
1
|
from .coordinator import AmazonConfigEntry as AmazonConfigEntry
|
2
2
|
from .entity import AmazonEntity as AmazonEntity
|
3
|
+
from .utils import alexa_api_call as alexa_api_call
|
3
4
|
from _typeshed import Incomplete
|
4
5
|
from aioamazondevices.api import AmazonDevice as AmazonDevice
|
5
6
|
from collections.abc import Callable as Callable
|
@@ -23,6 +24,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: AmazonConfigEntry, async
|
|
23
24
|
|
24
25
|
class AmazonSwitchEntity(AmazonEntity, SwitchEntity):
|
25
26
|
entity_description: AmazonSwitchEntityDescription
|
27
|
+
@alexa_api_call
|
26
28
|
async def _switch_set_state(self, state: bool) -> None: ...
|
27
29
|
async def async_turn_on(self, **kwargs: Any) -> None: ...
|
28
30
|
async def async_turn_off(self, **kwargs: Any) -> None: ...
|
@@ -0,0 +1,7 @@
|
|
1
|
+
from .const import DOMAIN as DOMAIN
|
2
|
+
from .entity import AmazonEntity as AmazonEntity
|
3
|
+
from collections.abc import Awaitable, Callable as Callable, Coroutine
|
4
|
+
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
5
|
+
from typing import Any, Concatenate
|
6
|
+
|
7
|
+
def alexa_api_call[_T: AmazonEntity, **_P](func: Callable[Concatenate[_T, _P], Awaitable[None]]) -> Callable[Concatenate[_T, _P], Coroutine[Any, Any, None]]: ...
|
@@ -90,6 +90,8 @@ class ImageView(HomeAssistantView):
|
|
90
90
|
url: str
|
91
91
|
component: Incomplete
|
92
92
|
def __init__(self, component: EntityComponent[ImageEntity]) -> None: ...
|
93
|
+
async def _authenticate_request(self, request: web.Request, entity_id: str) -> ImageEntity: ...
|
94
|
+
async def head(self, request: web.Request, entity_id: str) -> web.Response: ...
|
93
95
|
async def get(self, request: web.Request, entity_id: str) -> web.StreamResponse: ...
|
94
96
|
async def handle(self, request: web.Request, image_entity: ImageEntity) -> web.StreamResponse: ...
|
95
97
|
|
@@ -29,7 +29,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, asyn
|
|
29
29
|
|
30
30
|
class MatterVacuum(MatterEntity, StateVacuumEntity):
|
31
31
|
_last_accepted_commands: list[int] | None
|
32
|
-
_supported_run_modes: dict[int, clusters.
|
32
|
+
_supported_run_modes: dict[int, clusters.RvcRunMode.Structs.ModeOptionStruct] | None
|
33
33
|
entity_description: StateVacuumEntityDescription
|
34
34
|
_platform_translation_key: str
|
35
35
|
async def async_stop(self, **kwargs: Any) -> None: ...
|
@@ -37,6 +37,8 @@ class LocalMediaView(http.HomeAssistantView):
|
|
37
37
|
hass: Incomplete
|
38
38
|
source: Incomplete
|
39
39
|
def __init__(self, hass: HomeAssistant, source: LocalSource) -> None: ...
|
40
|
+
async def _validate_media_path(self, source_dir_id: str, location: str) -> Path: ...
|
41
|
+
async def head(self, request: web.Request, source_dir_id: str, location: str) -> None: ...
|
40
42
|
async def get(self, request: web.Request, source_dir_id: str, location: str) -> web.FileResponse: ...
|
41
43
|
|
42
44
|
class UploadMediaView(http.HomeAssistantView):
|
@@ -11,7 +11,5 @@ async def async_setup_entry(hass: HomeAssistant, entry: MusicAssistantConfigEntr
|
|
11
11
|
|
12
12
|
class MusicAssistantFavoriteButton(MusicAssistantEntity, ButtonEntity):
|
13
13
|
entity_description: Incomplete
|
14
|
-
@property
|
15
|
-
def available(self) -> bool: ...
|
16
14
|
@catch_musicassistant_error
|
17
15
|
async def async_press(self) -> None: ...
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import openai
|
2
|
-
from .const import CONF_CHAT_MODEL as CONF_CHAT_MODEL, CONF_FILENAMES as CONF_FILENAMES, CONF_MAX_TOKENS as CONF_MAX_TOKENS, CONF_PROMPT as CONF_PROMPT, CONF_REASONING_EFFORT as CONF_REASONING_EFFORT, CONF_TEMPERATURE as CONF_TEMPERATURE, CONF_TOP_P as CONF_TOP_P, DOMAIN as DOMAIN, LOGGER as LOGGER, RECOMMENDED_CHAT_MODEL as RECOMMENDED_CHAT_MODEL, RECOMMENDED_MAX_TOKENS as RECOMMENDED_MAX_TOKENS, RECOMMENDED_REASONING_EFFORT as RECOMMENDED_REASONING_EFFORT, RECOMMENDED_TEMPERATURE as RECOMMENDED_TEMPERATURE, RECOMMENDED_TOP_P as RECOMMENDED_TOP_P
|
2
|
+
from .const import CONF_CHAT_MODEL as CONF_CHAT_MODEL, CONF_FILENAMES as CONF_FILENAMES, CONF_MAX_TOKENS as CONF_MAX_TOKENS, CONF_PROMPT as CONF_PROMPT, CONF_REASONING_EFFORT as CONF_REASONING_EFFORT, CONF_TEMPERATURE as CONF_TEMPERATURE, CONF_TOP_P as CONF_TOP_P, DEFAULT_NAME as DEFAULT_NAME, DOMAIN as DOMAIN, LOGGER as LOGGER, RECOMMENDED_CHAT_MODEL as RECOMMENDED_CHAT_MODEL, RECOMMENDED_MAX_TOKENS as RECOMMENDED_MAX_TOKENS, RECOMMENDED_REASONING_EFFORT as RECOMMENDED_REASONING_EFFORT, RECOMMENDED_TEMPERATURE as RECOMMENDED_TEMPERATURE, RECOMMENDED_TOP_P as RECOMMENDED_TOP_P
|
3
3
|
from _typeshed import Incomplete
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigSubentry as ConfigSubentry
|
5
5
|
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, Platform as Platform
|
@@ -5,7 +5,7 @@ from _typeshed import Incomplete
|
|
5
5
|
from homeassistant.config_entries import SOURCE_IMPORT as SOURCE_IMPORT
|
6
6
|
from homeassistant.const import ATTR_LATITUDE as ATTR_LATITUDE, ATTR_LONGITUDE as ATTR_LONGITUDE, CONF_API_KEY as CONF_API_KEY, CONF_PLATFORM as CONF_PLATFORM, CONF_SOURCE as CONF_SOURCE, CONF_URL as CONF_URL
|
7
7
|
from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, ServiceResponse as ServiceResponse, SupportsResponse as SupportsResponse
|
8
|
-
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady, ServiceValidationError as ServiceValidationError
|
8
|
+
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady, HomeAssistantError as HomeAssistantError, ServiceValidationError as ServiceValidationError
|
9
9
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
10
10
|
from telegram import Bot as Bot
|
11
11
|
from types import ModuleType
|
@@ -10,7 +10,7 @@ from homeassistant.core import Context as Context, HomeAssistant as HomeAssistan
|
|
10
10
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError, ServiceValidationError as ServiceValidationError
|
11
11
|
from homeassistant.util.ssl import get_default_context as get_default_context, get_default_no_verify_context as get_default_no_verify_context
|
12
12
|
from ssl import SSLContext
|
13
|
-
from telegram import Bot, CallbackQuery as CallbackQuery, InputPollOption as InputPollOption, Message
|
13
|
+
from telegram import Bot, CallbackQuery as CallbackQuery, InputPollOption as InputPollOption, Message, Update as Update, User as User
|
14
14
|
from telegram.ext import CallbackContext as CallbackContext
|
15
15
|
from types import MappingProxyType
|
16
16
|
from typing import Any
|
@@ -43,7 +43,7 @@ class TelegramNotificationService:
|
|
43
43
|
def __init__(self, hass: HomeAssistant, app: BaseTelegramBot, bot: Bot, config: TelegramBotConfigEntry, parser: str) -> None: ...
|
44
44
|
def _get_allowed_chat_ids(self) -> list[int]: ...
|
45
45
|
def _get_msg_ids(self, msg_data: dict[str, Any], chat_id: int) -> tuple[Any | None, int | None]: ...
|
46
|
-
def
|
46
|
+
def get_target_chat_ids(self, target: int | list[int] | None) -> list[int]: ...
|
47
47
|
def _get_msg_kwargs(self, data: dict[str, Any]) -> dict[str, Any]: ...
|
48
48
|
async def _send_msg(self, func_send: Callable, msg_error: str, message_tag: str | None, *args_msg: Any, context: Context | None = None, **kwargs_msg: Any) -> Any: ...
|
49
49
|
async def send_message(self, message: str = '', target: Any = None, context: Context | None = None, **kwargs: dict[str, Any]) -> dict[int, int]: ...
|
@@ -54,8 +54,8 @@ class TelegramNotificationService:
|
|
54
54
|
async def send_sticker(self, target: Any = None, context: Context | None = None, **kwargs: Any) -> dict[int, int]: ...
|
55
55
|
async def send_location(self, latitude: Any, longitude: Any, target: Any = None, context: Context | None = None, **kwargs: dict[str, Any]) -> dict[int, int]: ...
|
56
56
|
async def send_poll(self, question: str, options: Sequence[str | InputPollOption], is_anonymous: bool | None, allows_multiple_answers: bool | None, target: Any = None, context: Context | None = None, **kwargs: dict[str, Any]) -> dict[int, int]: ...
|
57
|
-
async def leave_chat(self, chat_id:
|
58
|
-
async def set_message_reaction(self,
|
57
|
+
async def leave_chat(self, chat_id: int | None = None, context: Context | None = None, **kwargs: dict[str, Any]) -> Any: ...
|
58
|
+
async def set_message_reaction(self, reaction: str, chat_id: int | None = None, is_big: bool = False, context: Context | None = None, **kwargs: dict[str, Any]) -> None: ...
|
59
59
|
|
60
60
|
def initialize_bot(hass: HomeAssistant, p_config: MappingProxyType[str, Any]) -> Bot: ...
|
61
61
|
async def load_data(hass: HomeAssistant, url: str | None, filepath: str | None, username: str, password: str, authentication: str | None, verify_ssl: SSLContext, num_retries: int = 5) -> io.BytesIO: ...
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import voluptuous as vol
|
2
2
|
from . import initialize_bot as initialize_bot
|
3
3
|
from .bot import TelegramBotConfigEntry as TelegramBotConfigEntry
|
4
|
-
from .const import ATTR_PARSER as ATTR_PARSER, BOT_NAME as BOT_NAME, CONF_ALLOWED_CHAT_IDS as CONF_ALLOWED_CHAT_IDS, CONF_BOT_COUNT as CONF_BOT_COUNT, CONF_CHAT_ID as CONF_CHAT_ID, CONF_PROXY_URL as CONF_PROXY_URL, CONF_TRUSTED_NETWORKS as CONF_TRUSTED_NETWORKS, DEFAULT_TRUSTED_NETWORKS as DEFAULT_TRUSTED_NETWORKS, DOMAIN as DOMAIN, ERROR_FIELD as ERROR_FIELD, ERROR_MESSAGE as ERROR_MESSAGE, ISSUE_DEPRECATED_YAML as ISSUE_DEPRECATED_YAML, ISSUE_DEPRECATED_YAML_HAS_MORE_PLATFORMS as ISSUE_DEPRECATED_YAML_HAS_MORE_PLATFORMS, ISSUE_DEPRECATED_YAML_IMPORT_ISSUE_ERROR as ISSUE_DEPRECATED_YAML_IMPORT_ISSUE_ERROR, PARSER_HTML as PARSER_HTML, PARSER_MD as PARSER_MD, PARSER_MD2 as PARSER_MD2, PARSER_PLAIN_TEXT as PARSER_PLAIN_TEXT, PLATFORM_BROADCAST as PLATFORM_BROADCAST, PLATFORM_POLLING as PLATFORM_POLLING, PLATFORM_WEBHOOKS as PLATFORM_WEBHOOKS, SUBENTRY_TYPE_ALLOWED_CHAT_IDS as SUBENTRY_TYPE_ALLOWED_CHAT_IDS
|
4
|
+
from .const import ATTR_PARSER as ATTR_PARSER, BOT_NAME as BOT_NAME, CONF_ALLOWED_CHAT_IDS as CONF_ALLOWED_CHAT_IDS, CONF_BOT_COUNT as CONF_BOT_COUNT, CONF_CHAT_ID as CONF_CHAT_ID, CONF_PROXY_URL as CONF_PROXY_URL, CONF_TRUSTED_NETWORKS as CONF_TRUSTED_NETWORKS, DEFAULT_TRUSTED_NETWORKS as DEFAULT_TRUSTED_NETWORKS, DOMAIN as DOMAIN, ERROR_FIELD as ERROR_FIELD, ERROR_MESSAGE as ERROR_MESSAGE, ISSUE_DEPRECATED_YAML as ISSUE_DEPRECATED_YAML, ISSUE_DEPRECATED_YAML_HAS_MORE_PLATFORMS as ISSUE_DEPRECATED_YAML_HAS_MORE_PLATFORMS, ISSUE_DEPRECATED_YAML_IMPORT_ISSUE_ERROR as ISSUE_DEPRECATED_YAML_IMPORT_ISSUE_ERROR, PARSER_HTML as PARSER_HTML, PARSER_MD as PARSER_MD, PARSER_MD2 as PARSER_MD2, PARSER_PLAIN_TEXT as PARSER_PLAIN_TEXT, PLATFORM_BROADCAST as PLATFORM_BROADCAST, PLATFORM_POLLING as PLATFORM_POLLING, PLATFORM_WEBHOOKS as PLATFORM_WEBHOOKS, SECTION_ADVANCED_SETTINGS as SECTION_ADVANCED_SETTINGS, SUBENTRY_TYPE_ALLOWED_CHAT_IDS as SUBENTRY_TYPE_ALLOWED_CHAT_IDS
|
5
5
|
from _typeshed import Incomplete
|
6
6
|
from collections.abc import Mapping
|
7
7
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, ConfigSubentryData as ConfigSubentryData, ConfigSubentryFlow as ConfigSubentryFlow, OptionsFlow as OptionsFlow, SOURCE_IMPORT as SOURCE_IMPORT, SOURCE_RECONFIGURE as SOURCE_RECONFIGURE, SubentryFlowResult as SubentryFlowResult
|
8
8
|
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, CONF_PLATFORM as CONF_PLATFORM, CONF_URL as CONF_URL
|
9
9
|
from homeassistant.core import callback as callback
|
10
|
-
from homeassistant.data_entry_flow import AbortFlow as AbortFlow
|
10
|
+
from homeassistant.data_entry_flow import AbortFlow as AbortFlow, section as section
|
11
11
|
from homeassistant.helpers.issue_registry import IssueSeverity as IssueSeverity, async_create_issue as async_create_issue
|
12
12
|
from homeassistant.helpers.network import NoURLAvailableError as NoURLAvailableError, get_url as get_url
|
13
13
|
from homeassistant.helpers.selector import SelectSelector as SelectSelector, SelectSelectorConfig as SelectSelectorConfig, TextSelector as TextSelector, TextSelectorConfig as TextSelectorConfig, TextSelectorType as TextSelectorType
|
@@ -131,6 +131,7 @@ class TextToSpeechView(HomeAssistantView):
|
|
131
131
|
name: str
|
132
132
|
manager: Incomplete
|
133
133
|
def __init__(self, manager: SpeechManager) -> None: ...
|
134
|
+
async def head(self, request: web.Request, token: str) -> web.StreamResponse: ...
|
134
135
|
async def get(self, request: web.Request, token: str) -> web.StreamResponse: ...
|
135
136
|
|
136
137
|
# Names in __all__ with no definition:
|
@@ -447,6 +447,8 @@ class ConfigSubentryFlow(data_entry_flow.FlowHandler[SubentryFlowContext, Subent
|
|
447
447
|
def async_update_and_abort(self, entry: ConfigEntry, subentry: ConfigSubentry, *, unique_id: str | None | UndefinedType = ..., title: str | UndefinedType = ..., data: Mapping[str, Any] | UndefinedType = ..., data_updates: Mapping[str, Any] | UndefinedType = ...) -> SubentryFlowResult: ...
|
448
448
|
@property
|
449
449
|
def _entry_id(self) -> str: ...
|
450
|
+
@property
|
451
|
+
def _subentry_type(self) -> str: ...
|
450
452
|
@callback
|
451
453
|
def _get_entry(self) -> ConfigEntry: ...
|
452
454
|
@property
|
{homeassistant_stubs-2025.7.0b0.dist-info → homeassistant_stubs-2025.7.0b1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.7.
|
3
|
+
Version: 2025.7.0b1
|
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.13.2
|
21
|
-
Requires-Dist: homeassistant==2025.7.
|
21
|
+
Requires-Dist: homeassistant==2025.7.0b1
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.7.0b0.dist-info → homeassistant_stubs-2025.7.0b1.dist-info}/RECORD
RENAMED
@@ -4,7 +4,7 @@ homeassistant-stubs/backup_restore.pyi,sha256=dmlldu_RALlQVh1Y2UW2EeeL1DKANVwSVY
|
|
4
4
|
homeassistant-stubs/block_async_io.pyi,sha256=HY2AjkVi09Ge7MXyIGuA3DFA6oQirv0Qb8YNNB_DrDw,1030
|
5
5
|
homeassistant-stubs/bootstrap.pyi,sha256=72A_FyYj2zcUZHN7pyVsAlmjES8hmnp_doRI12UDEjk,4990
|
6
6
|
homeassistant-stubs/config.pyi,sha256=6zl45bnVTe97XyROjzPI7Ux3qoqsg5J_-36IPOFPb5s,6843
|
7
|
-
homeassistant-stubs/config_entries.pyi,sha256=
|
7
|
+
homeassistant-stubs/config_entries.pyi,sha256=lfgI1jo2tjFllHwvO4AEgBJbN2LqG-MPC-wzoStiXPk,28057
|
8
8
|
homeassistant-stubs/const.pyi,sha256=xuREeMOjpyhdtz5F6xK0EHQs6OLMHGo0B0xZyYG6n80,21056
|
9
9
|
homeassistant-stubs/core.pyi,sha256=r8JmOn7l94XszZRxHMieswuwFnDHbbVTqJDZp1YrGj0,24188
|
10
10
|
homeassistant-stubs/core_config.pyi,sha256=Ee_9zQinRV07HAzL1qFyKo19dmoeo-vD40EkBwMyuZw,6157
|
@@ -131,7 +131,7 @@ homeassistant-stubs/components/airnow/sensor.pyi,sha256=7dLDt9RasAT6UnGbXc5xlDvz
|
|
131
131
|
homeassistant-stubs/components/airq/__init__.pyi,sha256=HXLzxyo_6EfcC1p_PGD66G09SzQ_hJ2WurZGon_jybI,675
|
132
132
|
homeassistant-stubs/components/airq/config_flow.pyi,sha256=W3GTorDKA5L0l1vdT_oyAOarSaiKDIR6BF2Wikgnhq8,1166
|
133
133
|
homeassistant-stubs/components/airq/const.pyi,sha256=FzgRlZwHhwJvnSq4n08Wp_P4Hhev3Zf3u7aryEYPKY8,251
|
134
|
-
homeassistant-stubs/components/airq/coordinator.pyi,sha256=
|
134
|
+
homeassistant-stubs/components/airq/coordinator.pyi,sha256=9D0JfjwtPOhaAK9qKiOjtDP7437EcZoFjUbyjcRGMiE,1065
|
135
135
|
homeassistant-stubs/components/airq/sensor.pyi,sha256=5nuRR899UhX2BeAuBbztR2qy-mL9eDBmRQxfjkS7tcg,2091
|
136
136
|
homeassistant-stubs/components/airthings/__init__.pyi,sha256=B6ysfc_z74ak9NSIlNtnK6DYisZvBSbH9SQdAN8W_Yg,801
|
137
137
|
homeassistant-stubs/components/airthings/config_flow.pyi,sha256=3j4OziU43JcPMew2vkhQip-LWHX35jA8Zri7w4pjXPw,605
|
@@ -220,9 +220,10 @@ homeassistant-stubs/components/alexa_devices/const.pyi,sha256=srM4_9inVetdV_nwt9
|
|
220
220
|
homeassistant-stubs/components/alexa_devices/coordinator.pyi,sha256=T7dk_l6SvvxLP9r9a2tNVLsS91FbDisQejDx5IgKuoo,986
|
221
221
|
homeassistant-stubs/components/alexa_devices/diagnostics.pyi,sha256=bRYiRMxTdgbGeSTQw0w0S91vwU2sCBuBNfHvyt_mgug,870
|
222
222
|
homeassistant-stubs/components/alexa_devices/entity.pyi,sha256=1oxFqfyw52JjClztThBJdtXj2BeC3_KWt0YPhsgiHrQ,914
|
223
|
-
homeassistant-stubs/components/alexa_devices/notify.pyi,sha256=
|
223
|
+
homeassistant-stubs/components/alexa_devices/notify.pyi,sha256=JDU6BbYvy7NlK41ivzAJz0CDDJpr5M-2OJk858PK5M4,1391
|
224
224
|
homeassistant-stubs/components/alexa_devices/sensor.pyi,sha256=VOw09ICnjoyzBX2-JmSfuFt91j3ElMMVoIodfMqjur0,1435
|
225
|
-
homeassistant-stubs/components/alexa_devices/switch.pyi,sha256=
|
225
|
+
homeassistant-stubs/components/alexa_devices/switch.pyi,sha256=w3ciKjUJSg54EmohphEoFPczwTbMhK1cjszzo8Vh9mg,1411
|
226
|
+
homeassistant-stubs/components/alexa_devices/utils.pyi,sha256=UU3T3fQ74zYah8pDCY6y4_Hy26UhwSPJaF9Kno-xLmk,433
|
226
227
|
homeassistant-stubs/components/alpha_vantage/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
228
|
homeassistant-stubs/components/alpha_vantage/sensor.pyi,sha256=lOIgbkISKtkxyu3EjpM5U-Scxr95BYt2_fQcjPrFoiI,2057
|
228
229
|
homeassistant-stubs/components/altruist/__init__.pyi,sha256=LW3DTatWSeke8R-9AYSMXuGc3LCpRpZ-ZCjr2PW0yvY,485
|
@@ -1695,7 +1696,7 @@ homeassistant-stubs/components/idasen_desk/coordinator.pyi,sha256=8EO0C0sRQVgmw2
|
|
1695
1696
|
homeassistant-stubs/components/idasen_desk/cover.pyi,sha256=0xDhLwgttquHKgUhrhT8oDtYtPILxUOHA8PYzub-HHg,1466
|
1696
1697
|
homeassistant-stubs/components/idasen_desk/entity.pyi,sha256=1TtZs1vEMWAPaiHCqdKfWd-20JiP0wbZHkeQ9OYzl14,523
|
1697
1698
|
homeassistant-stubs/components/idasen_desk/sensor.pyi,sha256=UD7QnkcpZJK0LVbdVE_ywNYfu64Ox95ek5z0iBibpi0,1346
|
1698
|
-
homeassistant-stubs/components/image/__init__.pyi,sha256=
|
1699
|
+
homeassistant-stubs/components/image/__init__.pyi,sha256=laf1atJGhSx0RRVc6DoQkgbc4BJ3WFD2zmVhpbZuqJc,4771
|
1699
1700
|
homeassistant-stubs/components/image/const.pyi,sha256=sFSQ5cQzE3IK5MBZziRp9SFsXchEVBopjAm8mWVPTN8,312
|
1700
1701
|
homeassistant-stubs/components/image/media_source.pyi,sha256=aBgMBfL-to8UNjWouAPqCrMZtBjVrzL9iwGwR3Ugafs,943
|
1701
1702
|
homeassistant-stubs/components/image_processing/__init__.pyi,sha256=AMQ9Cg42itjX8OmjFA5TSbb4wZNUOlyhPzvYaBbmAxI,2986
|
@@ -2175,7 +2176,7 @@ homeassistant-stubs/components/matter/sensor.pyi,sha256=FIfhVGtM590WF8vKiB6GCz7r
|
|
2175
2176
|
homeassistant-stubs/components/matter/switch.pyi,sha256=BkjpSk_MlGwr5Qvsvfvufj8aOk9jSXhTaQYv4td55b8,2709
|
2176
2177
|
homeassistant-stubs/components/matter/update.pyi,sha256=JU3aj4gknMbbhJG-_tWzexHPVl3cbog-5Ps2Dn2YL0Q,2722
|
2177
2178
|
homeassistant-stubs/components/matter/util.pyi,sha256=cW6CK4oLTg6vW_aZaeXMHQPzYwOUVT4Knf4rvho-HJg,463
|
2178
|
-
homeassistant-stubs/components/matter/vacuum.pyi,sha256=
|
2179
|
+
homeassistant-stubs/components/matter/vacuum.pyi,sha256=9OrYRaMpMAsOrEoFaQOaCMnjdwdNJnYaSbXFidOkd_Y,2028
|
2179
2180
|
homeassistant-stubs/components/matter/valve.pyi,sha256=92ibEovuHHMCxntfPv_-MAtcQn_P2__hnGI5kcuJP9g,1610
|
2180
2181
|
homeassistant-stubs/components/matter/water_heater.pyi,sha256=4jUcvqZzFXUyl75NqSaPWnmqqDoTYWD8PeG6wD87Mi0,2169
|
2181
2182
|
homeassistant-stubs/components/mcp/__init__.pyi,sha256=yYjbXS2AqR2M_g-0VT6NAns_YZXNCd9QgtzMivcKGPA,743
|
@@ -2217,7 +2218,7 @@ homeassistant-stubs/components/media_player/significant_change.pyi,sha256=2exib5
|
|
2217
2218
|
homeassistant-stubs/components/media_source/__init__.pyi,sha256=GPuJXJlCuICgiR4BsNKDMGNvqYnTjgUM8o5X-I9eMIc,1526
|
2218
2219
|
homeassistant-stubs/components/media_source/const.pyi,sha256=NyctXEANosJOnOh5yf9NEBQnoz05NKHD1q7-R4ahPt8,223
|
2219
2220
|
homeassistant-stubs/components/media_source/error.pyi,sha256=Kaa0k7yVxRED7xEFdM4ZFxlQUpjLhbrDwd12C2Iwa58,229
|
2220
|
-
homeassistant-stubs/components/media_source/local_source.pyi,sha256=
|
2221
|
+
homeassistant-stubs/components/media_source/local_source.pyi,sha256=uFsw_euxtfqVHFz0gXJUQM2UygbCT6mU30DFveOzeSw,2808
|
2221
2222
|
homeassistant-stubs/components/media_source/models.pyi,sha256=V4UXqYT9TEt0lOXI5keDlFMjNQOmAx5i9jvr9EvGEGg,1398
|
2222
2223
|
homeassistant-stubs/components/met_eireann/__init__.pyi,sha256=MVW0jrjjvjmlppuKLYPgegHeDuTSwIgiipO6PmMfedo,1269
|
2223
2224
|
homeassistant-stubs/components/met_eireann/config_flow.pyi,sha256=ofSLFUjODdR3NosePApKXM_tzo8kRWiiuREs7ybQtg8,537
|
@@ -2369,7 +2370,7 @@ homeassistant-stubs/components/mqtt/light/schema_json.pyi,sha256=uhCUvoDpYexWDO-
|
|
2369
2370
|
homeassistant-stubs/components/mqtt/light/schema_template.pyi,sha256=EP4uj9samvmQnMI7r342yxlh_VTO1gQQVuZVYS_3N8o,4191
|
2370
2371
|
homeassistant-stubs/components/music_assistant/__init__.pyi,sha256=QsE-nT4ggmBNpFgGaxoFd-ZTjwema8Usv2YzRmDlxH4,2185
|
2371
2372
|
homeassistant-stubs/components/music_assistant/actions.pyi,sha256=NHEKTK-bOD54f7FDOPh_PnFinvXrHsfN26QNDANryds,2038
|
2372
|
-
homeassistant-stubs/components/music_assistant/button.pyi,sha256=
|
2373
|
+
homeassistant-stubs/components/music_assistant/button.pyi,sha256=S0Cm--fiIC6CKL9i3YQLPT0WhrnSxVSZCY0hzktIRlc,934
|
2373
2374
|
homeassistant-stubs/components/music_assistant/config_flow.pyi,sha256=0Ocyn_KzD_tWkm6B5PI7zjzI2O34uc1YfwalOqKdZ8c,1210
|
2374
2375
|
homeassistant-stubs/components/music_assistant/const.pyi,sha256=AuuFGZtZo5YjZJU3HLfkJULV0f7SeppY90T_liCC-m8,1266
|
2375
2376
|
homeassistant-stubs/components/music_assistant/entity.pyi,sha256=3I5VLQXeCZ4cGaah9LSNUdWQeTQfUDn9mrRUMKDBLJ8,991
|
@@ -2609,9 +2610,9 @@ homeassistant-stubs/components/open_meteo/const.pyi,sha256=WRrnFyU5HTSBNcHff8Fr_
|
|
2609
2610
|
homeassistant-stubs/components/open_meteo/coordinator.pyi,sha256=rFXvkI7My3122aBXocj3XeI4xD3bQHjcSoat5dZa-gM,991
|
2610
2611
|
homeassistant-stubs/components/open_meteo/diagnostics.pyi,sha256=OwwN_6LdgHFICnXK1pk8sMCA_BlhJt1x2mSZYRBOE7s,515
|
2611
2612
|
homeassistant-stubs/components/open_meteo/weather.pyi,sha256=cSaM_QEq2iRiPcv9yQ2L5nF9M1esJNSSsJfOHGjHWIA,2455
|
2612
|
-
homeassistant-stubs/components/openai_conversation/__init__.pyi,sha256=
|
2613
|
+
homeassistant-stubs/components/openai_conversation/__init__.pyi,sha256=RZeB0WjOrKi30r9nqO7LH-YZcjILR395jbbKAYapayc,2145
|
2613
2614
|
homeassistant-stubs/components/openai_conversation/config_flow.pyi,sha256=WtZ4dc76pFpl6C2DsssIdV1uBCdBS7y5iYKUl_QIQNk,3686
|
2614
|
-
homeassistant-stubs/components/openai_conversation/const.pyi,sha256=
|
2615
|
+
homeassistant-stubs/components/openai_conversation/const.pyi,sha256=FMYeuh1TdNYWiPFQIT8fMihfg4MXX_OkrMq8eBG0ccA,787
|
2615
2616
|
homeassistant-stubs/components/openai_conversation/conversation.pyi,sha256=TydrZE85_ADD6DFFVwl-ExiZPclYfjyBty5XmhXfMeA,3498
|
2616
2617
|
homeassistant-stubs/components/openexchangerates/__init__.pyi,sha256=u_JRx7gzE7cEm3_AeBkYKrXoNTEH0rcoqxPs3BV00tI,745
|
2617
2618
|
homeassistant-stubs/components/openexchangerates/config_flow.pyi,sha256=SRV-R456eRQfnRmw37IcFLBwFSqyEKu6oWUy-hSH3Bo,1251
|
@@ -3626,11 +3627,11 @@ homeassistant-stubs/components/tedee/diagnostics.pyi,sha256=Tfo9925_W258LgXbaR_t
|
|
3626
3627
|
homeassistant-stubs/components/tedee/entity.pyi,sha256=uuLf03aiBFaYTz0SSB5VXQS-F9Ny7qaqOPneoO1qFFY,1042
|
3627
3628
|
homeassistant-stubs/components/tedee/lock.pyi,sha256=xFEfp1v3U28AdJidOo3mJuHIs1G1yoFOvAAGpQYMZJI,1646
|
3628
3629
|
homeassistant-stubs/components/tedee/sensor.pyi,sha256=DUZTdTFLT-vaBtcNpkXIrHH57xw-1lHKVL_C3ZrvRKI,1299
|
3629
|
-
homeassistant-stubs/components/telegram_bot/__init__.pyi,sha256=
|
3630
|
-
homeassistant-stubs/components/telegram_bot/bot.pyi,sha256=
|
3630
|
+
homeassistant-stubs/components/telegram_bot/__init__.pyi,sha256=sKTyVJkeIwyeW8vRXt8XLHudMayw59WuYoCJ9hSpTdk,4423
|
3631
|
+
homeassistant-stubs/components/telegram_bot/bot.pyi,sha256=Ok6R6mRrK3Jg2fkJABT8FLo5d_wJBT81a5HJaBiyo6o,6846
|
3631
3632
|
homeassistant-stubs/components/telegram_bot/broadcast.pyi,sha256=m3KRRY2Vx9kbdVkcPltXnDmGSpxsJu-B90mmuHxF4hU,328
|
3632
|
-
homeassistant-stubs/components/telegram_bot/config_flow.pyi,sha256=
|
3633
|
-
homeassistant-stubs/components/telegram_bot/const.pyi,sha256=
|
3633
|
+
homeassistant-stubs/components/telegram_bot/config_flow.pyi,sha256=R7LFyAhUaL7mznLpFZs8lROb9zWWHJOrc3h9WtGOJII,4456
|
3634
|
+
homeassistant-stubs/components/telegram_bot/const.pyi,sha256=eUVcDpVO84UQ6UDj372Yc6gwF-vsY39IjhFzVK7-Ldw,2120
|
3634
3635
|
homeassistant-stubs/components/telegram_bot/polling.pyi,sha256=Fvehve6Bgjjg07jqNotwqDw3VIjMbCtIXRf10Qz-rak,910
|
3635
3636
|
homeassistant-stubs/components/telegram_bot/webhooks.pyi,sha256=fcNcPG1T7DTO5yMg35GukrczqZ-2yd-1dWRnTBuRHWo,2142
|
3636
3637
|
homeassistant-stubs/components/text/__init__.pyi,sha256=6Uf2fxstHDTplk8lkcDxLwrk0H1mlf1BCy_ZTds2x60,2271
|
@@ -3788,7 +3789,7 @@ homeassistant-stubs/components/trend/__init__.pyi,sha256=psllfclkLtuJfoMEtDEvXA2
|
|
3788
3789
|
homeassistant-stubs/components/trend/binary_sensor.pyi,sha256=2E_IQkX9qtsRJcmTMqLFPfB5sNej7Ih_ZpYYTeRLPwA,4017
|
3789
3790
|
homeassistant-stubs/components/trend/config_flow.pyi,sha256=6e6li96SZziApWjMAIS4mjFSn2an6P6EFBiVqV2zKQk,1345
|
3790
3791
|
homeassistant-stubs/components/trend/const.pyi,sha256=Y_V9h1hh7_hKLEX_SMWztMz8KevTaGViRQ_nKRxzW70,357
|
3791
|
-
homeassistant-stubs/components/tts/__init__.pyi,sha256=
|
3792
|
+
homeassistant-stubs/components/tts/__init__.pyi,sha256=L_KgROBkUJlB3c8JzMZRi7sNPo9pxl2BeUwbmzqP_Po,6286
|
3792
3793
|
homeassistant-stubs/components/tts/const.pyi,sha256=QaaY7mB9B1h3vzS0IyGVVB0ySFzRPQYnVZw2folqxYA,644
|
3793
3794
|
homeassistant-stubs/components/tts/entity.pyi,sha256=eGxCcZ3MqNthsL_p-32FGjSbDGEdyIXoqQNRe99vmqs,2838
|
3794
3795
|
homeassistant-stubs/components/tts/helper.pyi,sha256=G1exuw5G5Jv5iHT5VtIq8dzVSJX1gku48ZtRu4jU9DQ,352
|
@@ -4293,7 +4294,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
4293
4294
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
4294
4295
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
4295
4296
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
4296
|
-
homeassistant_stubs-2025.7.
|
4297
|
-
homeassistant_stubs-2025.7.
|
4298
|
-
homeassistant_stubs-2025.7.
|
4299
|
-
homeassistant_stubs-2025.7.
|
4297
|
+
homeassistant_stubs-2025.7.0b1.dist-info/METADATA,sha256=idmIhilgU_ff0DU1icdKsvtQE5c4GHmMcfY5W4sk1q0,2952
|
4298
|
+
homeassistant_stubs-2025.7.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4299
|
+
homeassistant_stubs-2025.7.0b1.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4300
|
+
homeassistant_stubs-2025.7.0b1.dist-info/RECORD,,
|
File without changes
|
File without changes
|