homeassistant-stubs 2025.8.0b5__py3-none-any.whl → 2025.8.2__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.

Potentially problematic release.


This version of homeassistant-stubs might be problematic. Click here for more details.

@@ -10,6 +10,7 @@ from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as Da
10
10
  from openwebif.api import OpenWebIfDevice, OpenWebIfStatus
11
11
 
12
12
  LOGGER: Incomplete
13
+ SETUP_TIMEOUT: int
13
14
  type Enigma2ConfigEntry = ConfigEntry[Enigma2UpdateCoordinator]
14
15
 
15
16
  class Enigma2UpdateCoordinator(DataUpdateCoordinator[OpenWebIfStatus]):
@@ -148,4 +148,5 @@ class PlatePowerStep(MieleEnum):
148
148
  plate_step_17: int
149
149
  plate_step_18: int
150
150
  plate_step_boost: Incomplete
151
+ plate_step_boost_2: int
151
152
  missing2none: int
@@ -1,4 +1,4 @@
1
- from .const import CONF_CHAT_MODEL as CONF_CHAT_MODEL, CONF_CODE_INTERPRETER as CONF_CODE_INTERPRETER, CONF_MAX_TOKENS as CONF_MAX_TOKENS, CONF_PROMPT as CONF_PROMPT, CONF_REASONING_EFFORT as CONF_REASONING_EFFORT, CONF_RECOMMENDED as CONF_RECOMMENDED, CONF_TEMPERATURE as CONF_TEMPERATURE, CONF_TOP_P as CONF_TOP_P, CONF_WEB_SEARCH as CONF_WEB_SEARCH, CONF_WEB_SEARCH_CITY as CONF_WEB_SEARCH_CITY, CONF_WEB_SEARCH_CONTEXT_SIZE as CONF_WEB_SEARCH_CONTEXT_SIZE, CONF_WEB_SEARCH_COUNTRY as CONF_WEB_SEARCH_COUNTRY, CONF_WEB_SEARCH_REGION as CONF_WEB_SEARCH_REGION, CONF_WEB_SEARCH_TIMEZONE as CONF_WEB_SEARCH_TIMEZONE, CONF_WEB_SEARCH_USER_LOCATION as CONF_WEB_SEARCH_USER_LOCATION, DEFAULT_AI_TASK_NAME as DEFAULT_AI_TASK_NAME, DEFAULT_CONVERSATION_NAME as DEFAULT_CONVERSATION_NAME, DOMAIN as DOMAIN, RECOMMENDED_AI_TASK_OPTIONS as RECOMMENDED_AI_TASK_OPTIONS, RECOMMENDED_CHAT_MODEL as RECOMMENDED_CHAT_MODEL, RECOMMENDED_CODE_INTERPRETER as RECOMMENDED_CODE_INTERPRETER, RECOMMENDED_CONVERSATION_OPTIONS as RECOMMENDED_CONVERSATION_OPTIONS, 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, RECOMMENDED_WEB_SEARCH as RECOMMENDED_WEB_SEARCH, RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE as RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE, RECOMMENDED_WEB_SEARCH_USER_LOCATION as RECOMMENDED_WEB_SEARCH_USER_LOCATION, UNSUPPORTED_MODELS as UNSUPPORTED_MODELS, UNSUPPORTED_WEB_SEARCH_MODELS as UNSUPPORTED_WEB_SEARCH_MODELS
1
+ from .const import CONF_CHAT_MODEL as CONF_CHAT_MODEL, CONF_CODE_INTERPRETER as CONF_CODE_INTERPRETER, CONF_MAX_TOKENS as CONF_MAX_TOKENS, CONF_PROMPT as CONF_PROMPT, CONF_REASONING_EFFORT as CONF_REASONING_EFFORT, CONF_RECOMMENDED as CONF_RECOMMENDED, CONF_TEMPERATURE as CONF_TEMPERATURE, CONF_TOP_P as CONF_TOP_P, CONF_VERBOSITY as CONF_VERBOSITY, CONF_WEB_SEARCH as CONF_WEB_SEARCH, CONF_WEB_SEARCH_CITY as CONF_WEB_SEARCH_CITY, CONF_WEB_SEARCH_CONTEXT_SIZE as CONF_WEB_SEARCH_CONTEXT_SIZE, CONF_WEB_SEARCH_COUNTRY as CONF_WEB_SEARCH_COUNTRY, CONF_WEB_SEARCH_REGION as CONF_WEB_SEARCH_REGION, CONF_WEB_SEARCH_TIMEZONE as CONF_WEB_SEARCH_TIMEZONE, CONF_WEB_SEARCH_USER_LOCATION as CONF_WEB_SEARCH_USER_LOCATION, DEFAULT_AI_TASK_NAME as DEFAULT_AI_TASK_NAME, DEFAULT_CONVERSATION_NAME as DEFAULT_CONVERSATION_NAME, DOMAIN as DOMAIN, RECOMMENDED_AI_TASK_OPTIONS as RECOMMENDED_AI_TASK_OPTIONS, RECOMMENDED_CHAT_MODEL as RECOMMENDED_CHAT_MODEL, RECOMMENDED_CODE_INTERPRETER as RECOMMENDED_CODE_INTERPRETER, RECOMMENDED_CONVERSATION_OPTIONS as RECOMMENDED_CONVERSATION_OPTIONS, 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, RECOMMENDED_VERBOSITY as RECOMMENDED_VERBOSITY, RECOMMENDED_WEB_SEARCH as RECOMMENDED_WEB_SEARCH, RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE as RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE, RECOMMENDED_WEB_SEARCH_USER_LOCATION as RECOMMENDED_WEB_SEARCH_USER_LOCATION, UNSUPPORTED_MODELS as UNSUPPORTED_MODELS, UNSUPPORTED_WEB_SEARCH_MODELS as UNSUPPORTED_WEB_SEARCH_MODELS
2
2
  from _typeshed import Incomplete
3
3
  from homeassistant.components.zone import ENTITY_ID_HOME as ENTITY_ID_HOME
4
4
  from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigEntryState as ConfigEntryState, ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, ConfigSubentryFlow as ConfigSubentryFlow, SubentryFlowResult as SubentryFlowResult
@@ -17,6 +17,7 @@ CONF_REASONING_EFFORT: str
17
17
  CONF_RECOMMENDED: str
18
18
  CONF_TEMPERATURE: str
19
19
  CONF_TOP_P: str
20
+ CONF_VERBOSITY: str
20
21
  CONF_WEB_SEARCH: str
21
22
  CONF_WEB_SEARCH_USER_LOCATION: str
22
23
  CONF_WEB_SEARCH_CONTEXT_SIZE: str
@@ -30,6 +31,7 @@ RECOMMENDED_MAX_TOKENS: int
30
31
  RECOMMENDED_REASONING_EFFORT: str
31
32
  RECOMMENDED_TEMPERATURE: float
32
33
  RECOMMENDED_TOP_P: float
34
+ RECOMMENDED_VERBOSITY: str
33
35
  RECOMMENDED_WEB_SEARCH: bool
34
36
  RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE: str
35
37
  RECOMMENDED_WEB_SEARCH_USER_LOCATION: bool
@@ -1,6 +1,6 @@
1
1
  import voluptuous as vol
2
2
  from . import OpenAIConfigEntry as OpenAIConfigEntry
3
- from .const import CONF_CHAT_MODEL as CONF_CHAT_MODEL, CONF_CODE_INTERPRETER as CONF_CODE_INTERPRETER, CONF_MAX_TOKENS as CONF_MAX_TOKENS, CONF_REASONING_EFFORT as CONF_REASONING_EFFORT, CONF_TEMPERATURE as CONF_TEMPERATURE, CONF_TOP_P as CONF_TOP_P, CONF_WEB_SEARCH as CONF_WEB_SEARCH, CONF_WEB_SEARCH_CITY as CONF_WEB_SEARCH_CITY, CONF_WEB_SEARCH_CONTEXT_SIZE as CONF_WEB_SEARCH_CONTEXT_SIZE, CONF_WEB_SEARCH_COUNTRY as CONF_WEB_SEARCH_COUNTRY, CONF_WEB_SEARCH_REGION as CONF_WEB_SEARCH_REGION, CONF_WEB_SEARCH_TIMEZONE as CONF_WEB_SEARCH_TIMEZONE, CONF_WEB_SEARCH_USER_LOCATION as CONF_WEB_SEARCH_USER_LOCATION, 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, RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE as RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE
3
+ from .const import CONF_CHAT_MODEL as CONF_CHAT_MODEL, CONF_CODE_INTERPRETER as CONF_CODE_INTERPRETER, CONF_MAX_TOKENS as CONF_MAX_TOKENS, CONF_REASONING_EFFORT as CONF_REASONING_EFFORT, CONF_TEMPERATURE as CONF_TEMPERATURE, CONF_TOP_P as CONF_TOP_P, CONF_VERBOSITY as CONF_VERBOSITY, CONF_WEB_SEARCH as CONF_WEB_SEARCH, CONF_WEB_SEARCH_CITY as CONF_WEB_SEARCH_CITY, CONF_WEB_SEARCH_CONTEXT_SIZE as CONF_WEB_SEARCH_CONTEXT_SIZE, CONF_WEB_SEARCH_COUNTRY as CONF_WEB_SEARCH_COUNTRY, CONF_WEB_SEARCH_REGION as CONF_WEB_SEARCH_REGION, CONF_WEB_SEARCH_TIMEZONE as CONF_WEB_SEARCH_TIMEZONE, CONF_WEB_SEARCH_USER_LOCATION as CONF_WEB_SEARCH_USER_LOCATION, 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, RECOMMENDED_VERBOSITY as RECOMMENDED_VERBOSITY, RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE as RECOMMENDED_WEB_SEARCH_CONTEXT_SIZE
4
4
  from _typeshed import Incomplete
5
5
  from collections.abc import AsyncGenerator, Callable as Callable
6
6
  from homeassistant.components import conversation as conversation
@@ -16,6 +16,7 @@ class RestData:
16
16
  _method: Incomplete
17
17
  _resource: Incomplete
18
18
  _encoding: Incomplete
19
+ _force_use_set_encoding: bool
19
20
  _auth: aiohttp.BasicAuth | aiohttp.DigestAuthMiddleware | None
20
21
  _headers: Incomplete
21
22
  _params: Incomplete
@@ -24,8 +24,6 @@ class RoborockVacuum(RoborockCoordinatedEntityV1, StateVacuumEntity):
24
24
  @property
25
25
  def activity(self) -> VacuumActivity | None: ...
26
26
  @property
27
- def battery_level(self) -> int | None: ...
28
- @property
29
27
  def fan_speed(self) -> str | None: ...
30
28
  async def async_start(self) -> None: ...
31
29
  async def async_pause(self) -> None: ...
@@ -93,7 +93,7 @@ class TibberRtEntityCreator:
93
93
  class TibberRtDataCoordinator(DataUpdateCoordinator):
94
94
  _add_sensor_callback: Incomplete
95
95
  _async_remove_device_updates_handler: Incomplete
96
- def __init__(self, add_sensor_callback: Callable[[TibberRtDataCoordinator, Any], None], tibber_home: tibber.TibberHome, hass: HomeAssistant) -> None: ...
96
+ def __init__(self, hass: HomeAssistant, config_entry: ConfigEntry, add_sensor_callback: Callable[[TibberRtDataCoordinator, Any], None], tibber_home: tibber.TibberHome) -> None: ...
97
97
  @callback
98
98
  def _handle_ha_stop(self, _event: Event) -> None: ...
99
99
  @callback
@@ -52,4 +52,6 @@ class TextToSpeechEntity(RestoreEntity, cached_properties=CACHED_PROPERTIES_WITH
52
52
  async def internal_async_stream_tts_audio(self, request: TTSAudioRequest) -> TTSAudioResponse: ...
53
53
  async def async_stream_tts_audio(self, request: TTSAudioRequest) -> TTSAudioResponse: ...
54
54
  def get_tts_audio(self, message: str, language: str, options: dict[str, Any]) -> TtsAudioType: ...
55
+ @final
56
+ async def async_internal_get_tts_audio(self, message: str, language: str, options: dict[str, Any]) -> TtsAudioType: ...
55
57
  async def async_get_tts_audio(self, message: str, language: str, options: dict[str, Any]) -> TtsAudioType: ...
@@ -28,7 +28,7 @@ class VolvoOAuth2FlowHandler(AbstractOAuth2FlowHandler, domain=DOMAIN):
28
28
  def logger(self) -> logging.Logger: ...
29
29
  async def async_oauth_create_entry(self, data: dict) -> ConfigFlowResult: ...
30
30
  async def async_step_reauth(self, _: Mapping[str, Any]) -> ConfigFlowResult: ...
31
- async def async_step_reconfigure(self, _: dict[str, Any] | None = None) -> ConfigFlowResult: ...
31
+ async def async_step_reconfigure(self, data: dict[str, Any] | None = None) -> ConfigFlowResult: ...
32
32
  async def async_step_reauth_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
33
33
  async def async_step_api_key(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
34
34
  async def async_step_vin(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
@@ -19,6 +19,8 @@ _LOGGER: Incomplete
19
19
  type VolvoConfigEntry = ConfigEntry[tuple[VolvoBaseCoordinator, ...]]
20
20
  type CoordinatorData = dict[str, VolvoCarsApiBaseModel | None]
21
21
 
22
+ def _is_invalid_api_field(field: VolvoCarsApiBaseModel | None) -> bool: ...
23
+
22
24
  class VolvoBaseCoordinator(DataUpdateCoordinator[CoordinatorData], metaclass=abc.ABCMeta):
23
25
  config_entry: VolvoConfigEntry
24
26
  api: Incomplete
@@ -16,7 +16,6 @@ _LOGGER: Incomplete
16
16
 
17
17
  @dataclass(frozen=True, kw_only=True)
18
18
  class VolvoSensorDescription(VolvoEntityDescription, SensorEntityDescription):
19
- source_fields: list[str] | None = ...
20
19
  value_fn: Callable[[VolvoCarsValue], Any] | None = ...
21
20
 
22
21
  def _availability_status(field: VolvoCarsValue) -> str: ...
@@ -28,10 +28,12 @@ TITLE: str
28
28
  ADDON_SETUP_TIMEOUT: int
29
29
  ADDON_SETUP_TIMEOUT_ROUNDS: int
30
30
  ADDON_USER_INPUT_MAP: Incomplete
31
+ EXAMPLE_SERVER_URL: str
31
32
  ON_SUPERVISOR_SCHEMA: Incomplete
32
33
  MIN_MIGRATION_SDK_VERSION: Incomplete
33
34
  NETWORK_TYPE_NEW: str
34
35
  NETWORK_TYPE_EXISTING: str
36
+ ZWAVE_JS_SERVER_INSTRUCTIONS: str
35
37
  ZWAVE_JS_UI_MIGRATION_INSTRUCTIONS: str
36
38
 
37
39
  def get_manual_schema(user_input: dict[str, Any]) -> vol.Schema: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: homeassistant-stubs
3
- Version: 2025.8.0b5
3
+ Version: 2025.8.2
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.8.0b5
21
+ Requires-Dist: homeassistant==2025.8.2
22
22
  Description-Content-Type: text/markdown
23
23
 
24
24
  [![CI](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml/badge.svg)](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
@@ -1085,7 +1085,7 @@ homeassistant-stubs/components/energyzero/services.pyi,sha256=5jVqku_6xK12XFAZmz
1085
1085
  homeassistant-stubs/components/enigma2/__init__.pyi,sha256=ICpo8wj53heDryXVfoPQo7ZFW1wCTHC3OngdV9u-3KM,471
1086
1086
  homeassistant-stubs/components/enigma2/config_flow.pyi,sha256=zqca6nljHQWNm21LleO-3HpFWM2enOj_vX8kR1uPQW0,1724
1087
1087
  homeassistant-stubs/components/enigma2/const.pyi,sha256=-hQ9QuNR0EOPU2NFasxgozsuoi-T07b3rFlrGnSK4Uk,343
1088
- homeassistant-stubs/components/enigma2/coordinator.pyi,sha256=KYi3j5tpqgZSMIZ_j-gQjuk0fdx6rx_Z9zS2sPm1jQU,1510
1088
+ homeassistant-stubs/components/enigma2/coordinator.pyi,sha256=HBDWPjitjfdfipNzPmgSXfdKD7LLXsmuuC5GR-iIOlw,1529
1089
1089
  homeassistant-stubs/components/enigma2/media_player.pyi,sha256=ELWnTwTBzI2nTAFBai1n2Y0iNAdLTxdnxEmBTe48DHk,2449
1090
1090
  homeassistant-stubs/components/enphase_envoy/__init__.pyi,sha256=KNA8Rhbfvx3HslS1ovlTiai2GRVtHbeHbZ9sbvgOuqo,860
1091
1091
  homeassistant-stubs/components/enphase_envoy/binary_sensor.pyi,sha256=y2nN1L4_q1rfdd2N2OhReS3PT1HkIRZEcOpSZ6WjGik,2383
@@ -2258,7 +2258,7 @@ homeassistant-stubs/components/miele/binary_sensor.pyi,sha256=5putYVuVzIMCaaqfrC
2258
2258
  homeassistant-stubs/components/miele/button.pyi,sha256=GF_fbEC9v-oT24X9Ht9UXKxCkwEFZsS3Jq2B2p4-jR8,1393
2259
2259
  homeassistant-stubs/components/miele/climate.pyi,sha256=DfRSG6iQyCol7yeilXjn1WawT5O_gqhVT1GJX7znd24,2648
2260
2260
  homeassistant-stubs/components/miele/config_flow.pyi,sha256=lRwke0ymW0DZIugt_cN68S10M7Bu8JlTs5mndGv9Re0,922
2261
- homeassistant-stubs/components/miele/const.pyi,sha256=n1FjSoAXup0SpJaEJZl-WYwZnzSXD7D7RLCeC8smSf0,3639
2261
+ homeassistant-stubs/components/miele/const.pyi,sha256=BcUVqQvE_QB_FrSHesz8V24NVbRONwZ8DNmzlt6EzVA,3667
2262
2262
  homeassistant-stubs/components/miele/coordinator.pyi,sha256=K6h8DGQnzlxtOK2yBI-z6V4mSr6iAg7kBSrIHb8mjas,1406
2263
2263
  homeassistant-stubs/components/miele/diagnostics.pyi,sha256=6OC75uoLx_ThOr5dpU_XJaMS6Xu6dhNgv6v889o7pQ0,739
2264
2264
  homeassistant-stubs/components/miele/entity.pyi,sha256=X7l46iaWdJOHQP6kd7ACw0M-9EHGEq8kD-C9ThZ70io,1339
@@ -2643,10 +2643,10 @@ homeassistant-stubs/components/open_router/conversation.pyi,sha256=4mZNGME9Iuspy
2643
2643
  homeassistant-stubs/components/open_router/entity.pyi,sha256=RkmkMlnHp2u_24ii2JdpnYBliNl3geeTFjwaDfj9Wc4,1942
2644
2644
  homeassistant-stubs/components/openai_conversation/__init__.pyi,sha256=TGkDy8K4rfuQrzHBXvzkrkDxY4MivtRWyVBZAO5i3PM,2547
2645
2645
  homeassistant-stubs/components/openai_conversation/ai_task.pyi,sha256=CRd6LysszXywbVXV10T7A5z8YgHun_BtN9uVCdf3dT0,972
2646
- homeassistant-stubs/components/openai_conversation/config_flow.pyi,sha256=RoxA5MwVAlVMWV0h6FZBzcOhFpzkGOLZfgl-7bAKz6A,3981
2647
- homeassistant-stubs/components/openai_conversation/const.pyi,sha256=_oOaGyCjylIauwa53Cq2hXjMo7C-rcdXvoD9y0LQaDY,1121
2646
+ homeassistant-stubs/components/openai_conversation/config_flow.pyi,sha256=rjn2zgvXb0XIXsCSEjUtTXUXEB56euR2WIPrAUkdkG0,4063
2647
+ homeassistant-stubs/components/openai_conversation/const.pyi,sha256=Qmdhpj9xikx-RJb4VeI_4KCp_o3mCx8Vaj4xS8ROwsE,1168
2648
2648
  homeassistant-stubs/components/openai_conversation/conversation.pyi,sha256=d5d0NX50xRlYYeyWrj81Oagme5oyBNK_aCeF8ZhzU5c,1444
2649
- homeassistant-stubs/components/openai_conversation/entity.pyi,sha256=Hpgkn7PZ4-8zUTRAcGdEp8qyD3Nn3eBr2ldtrjAQ1fw,3097
2649
+ homeassistant-stubs/components/openai_conversation/entity.pyi,sha256=D9B-7EQCeffJoibHk7wpNQ9rrv8aGUCsX1UMiUKNoVE,3179
2650
2650
  homeassistant-stubs/components/openexchangerates/__init__.pyi,sha256=u_JRx7gzE7cEm3_AeBkYKrXoNTEH0rcoqxPs3BV00tI,745
2651
2651
  homeassistant-stubs/components/openexchangerates/config_flow.pyi,sha256=SRV-R456eRQfnRmw37IcFLBwFSqyEKu6oWUy-hSH3Bo,1251
2652
2652
  homeassistant-stubs/components/openexchangerates/const.pyi,sha256=QXAmo-Mvlp2giyfcacpVeFgTC_w3i9Wq_X8UQ8K_UgA,136
@@ -3078,7 +3078,7 @@ homeassistant-stubs/components/repairs/websocket_api.pyi,sha256=1x8_JFFM2V-_Gl4z
3078
3078
  homeassistant-stubs/components/rest/__init__.pyi,sha256=8hkwxOqojQQ3ijzBoEuvOyNQUgyNRU-7f-ic_l6yxng,2717
3079
3079
  homeassistant-stubs/components/rest/binary_sensor.pyi,sha256=5WlwW4SfEc6B8ybpqgOFwwuekPcpWAjztJ9dkA-c3bQ,2263
3080
3080
  homeassistant-stubs/components/rest/const.pyi,sha256=P2fOs4YfZ_b9hjQMFSb9oV9SrVDnsdj62AKatqGNCl0,539
3081
- homeassistant-stubs/components/rest/data.pyi,sha256=Ixhp9MkeV_Pb-XdSC9k3k-1tKsZwttHs1c29EfPtpGQ,1675
3081
+ homeassistant-stubs/components/rest/data.pyi,sha256=OX7TiIeBrPM4CW-fUVlS8LeK5lrOd4IMax_O5rP3FQQ,1709
3082
3082
  homeassistant-stubs/components/rest/entity.pyi,sha256=X1o_wbq2YdsF8EJmVoDZ5PMJ-lNPAskHqM71F2G7eb4,1059
3083
3083
  homeassistant-stubs/components/rest/notify.pyi,sha256=MnUiVzdWYGBJ96Yy57ASi1ACwED_ieXYHscIytV1ZSM,2265
3084
3084
  homeassistant-stubs/components/rest/schema.pyi,sha256=8m-zP5zX9_fc4rsN2KBXtse_YGJFKpacyb-I72IJOyc,1702
@@ -3155,7 +3155,7 @@ homeassistant-stubs/components/roborock/select.pyi,sha256=ebu0fTiy7QAvEVYu-Lc3Ip
3155
3155
  homeassistant-stubs/components/roborock/sensor.pyi,sha256=zFTU8gdgNzxhuVNBvtJL5ECrW6IKRWZvsLrQS0rQYWA,3022
3156
3156
  homeassistant-stubs/components/roborock/switch.pyi,sha256=yhfQbCp0Bj2Jc9fksozP_ujRhlSUlPZ8YAylvNk78zQ,1895
3157
3157
  homeassistant-stubs/components/roborock/time.pyi,sha256=pEGLjG4vLM_4Xgk8VpNK0M3qpeeQX_VmjHSILujtDCY,1877
3158
- homeassistant-stubs/components/roborock/vacuum.pyi,sha256=xDBWvyaxMOQUM0CXIHOU_9sfAPBx2PV8htP5tcaPDgc,2541
3158
+ homeassistant-stubs/components/roborock/vacuum.pyi,sha256=yqB6ry8Ay5S1lACOcMwMb16-la1ApBQmXeFMXlyUaBg,2480
3159
3159
  homeassistant-stubs/components/roku/__init__.pyi,sha256=btJyDKM8bs2ZpobClARiCFyiFjrJGW6lRf5R-aLk5LE,461
3160
3160
  homeassistant-stubs/components/roku/binary_sensor.pyi,sha256=zLB0Q6Z2Laud6IcrCV5QN2dPVDvYP2xA__vAdVYayWE,1195
3161
3161
  homeassistant-stubs/components/roku/browse_media.pyi,sha256=3egdao1FE-Ud8og-L9asjmKVgAlKr1mhVwPA6Xor4gU,1696
@@ -3705,7 +3705,7 @@ homeassistant-stubs/components/tibber/const.pyi,sha256=sDV5hAP5QRg5952REjhy2-jxq
3705
3705
  homeassistant-stubs/components/tibber/coordinator.pyi,sha256=1Q09myN5bDG6T8ZMZ-bD0c9lEhQQPvI3kn9YmDejukE,1251
3706
3706
  homeassistant-stubs/components/tibber/diagnostics.pyi,sha256=J8-L9UWf3tMTkF3pS6xO5toEvoKEEVOMatMIDFCZ1cQ,306
3707
3707
  homeassistant-stubs/components/tibber/notify.pyi,sha256=k1iRXe-2ofTK44JaunKNsL29sYE6Vumd0P6zqrYtwJk,1025
3708
- homeassistant-stubs/components/tibber/sensor.pyi,sha256=kO4l18v1UWbGqQ_HEsaZSJQOXJUEUO8zrGY5724veGQ,4982
3708
+ homeassistant-stubs/components/tibber/sensor.pyi,sha256=ukemvriCIoj54DDcJ6X9Ee31tPwlX4oY7IrdTe1I9w8,5009
3709
3709
  homeassistant-stubs/components/tibber/services.pyi,sha256=q_xL4AM4V66VIBLUiJryRl59hroEt8DXC1iEEKoYA-s,709
3710
3710
  homeassistant-stubs/components/tile/__init__.pyi,sha256=DZxRfFAAPUberaZsLFuT8TxKcZhHt59UbpDG2bFIVEI,883
3711
3711
  homeassistant-stubs/components/tile/binary_sensor.pyi,sha256=bAw2QlWkk4keRH8GQKuDbOH8jYffsq6hOAdncteyiyc,1279
@@ -3842,7 +3842,7 @@ homeassistant-stubs/components/trend/config_flow.pyi,sha256=fHRAPUcW8UQokM02XK9C
3842
3842
  homeassistant-stubs/components/trend/const.pyi,sha256=Y_V9h1hh7_hKLEX_SMWztMz8KevTaGViRQ_nKRxzW70,357
3843
3843
  homeassistant-stubs/components/tts/__init__.pyi,sha256=L_KgROBkUJlB3c8JzMZRi7sNPo9pxl2BeUwbmzqP_Po,6286
3844
3844
  homeassistant-stubs/components/tts/const.pyi,sha256=QaaY7mB9B1h3vzS0IyGVVB0ySFzRPQYnVZw2folqxYA,644
3845
- homeassistant-stubs/components/tts/entity.pyi,sha256=iFS-pQ_AGyxFZhg8yn9dedvMomAO-E4tQ4LSvqqZ4A4,2703
3845
+ homeassistant-stubs/components/tts/entity.pyi,sha256=CCloLdkk-LShsbo8kTeZz037-pF72VM_IXAuLhlZ-CM,2838
3846
3846
  homeassistant-stubs/components/tts/helper.pyi,sha256=G1exuw5G5Jv5iHT5VtIq8dzVSJX1gku48ZtRu4jU9DQ,352
3847
3847
  homeassistant-stubs/components/tts/legacy.pyi,sha256=uJU0rmyLmBPrTcc-M0hiUx-OvGenwDSaiidqE8JXkkc,3000
3848
3848
  homeassistant-stubs/components/tts/media_source.pyi,sha256=PEJ4gAj5OP_G6Ly6zm2bfTLonRNOoTiYE1BrLVVOLyQ,1867
@@ -3990,11 +3990,11 @@ homeassistant-stubs/components/vodafone_station/utils.pyi,sha256=L5vXopKYf65S7Km
3990
3990
  homeassistant-stubs/components/volvo/__init__.pyi,sha256=F8KAFf37G_jmCAZgdREgmds7eGGLFfoFNyOJjNN_lDU,1406
3991
3991
  homeassistant-stubs/components/volvo/api.pyi,sha256=7k2WEkR3EUhksrG1n5DN-b497mM5H54mSTkza6yTTZY,641
3992
3992
  homeassistant-stubs/components/volvo/application_credentials.pyi,sha256=Qb0CsTVs1--I5K_mMl_PHlaTvdbjr_v5OeCzt0GcetE,565
3993
- homeassistant-stubs/components/volvo/config_flow.pyi,sha256=tQJDG_dz7pkQWKpXvQEzrNcENih-bJCeo_BsQ-lmCXI,2347
3993
+ homeassistant-stubs/components/volvo/config_flow.pyi,sha256=7FNrotdJ5i-Ex6oBvbvHsE6yehaCdL6XiwTayVrnliM,2350
3994
3994
  homeassistant-stubs/components/volvo/const.pyi,sha256=wse2lw9UztYsvEk8Q6l7rKqMhKaMQDgoajBB6E5RJOk,175
3995
- homeassistant-stubs/components/volvo/coordinator.pyi,sha256=gTTLq1C1XfNXCgQfNIVxYoEPHlaWQqBuUs2dOnqdRPg,2663
3995
+ homeassistant-stubs/components/volvo/coordinator.pyi,sha256=ddmisT0x1l8cjFnROecrD_7Ggk_xrUYBxmutQqPnOQk,2740
3996
3996
  homeassistant-stubs/components/volvo/entity.pyi,sha256=edPI-yiQDDqVYMtN4X5MXymTRRZgyBsQcAA2Jrdumfs,1535
3997
- homeassistant-stubs/components/volvo/sensor.pyi,sha256=bxH--njKCSQQh4bE8fZUrvLz15wQHs8fi798gbTYnmQ,2266
3997
+ homeassistant-stubs/components/volvo/sensor.pyi,sha256=zK2v6JQXJC1MmRZl-mSdP1bnoZZfWnVOu8TRdrL7Gkc,2224
3998
3998
  homeassistant-stubs/components/wake_on_lan/__init__.pyi,sha256=OvyHJH7caWo2ITC5ylFgG8X-s2ExKoL_JGC9XAelsfI,913
3999
3999
  homeassistant-stubs/components/wake_on_lan/button.pyi,sha256=9poa4LNO1vdO-lPseSSy4dsu552zWf-hbL8hYb-QcUE,1044
4000
4000
  homeassistant-stubs/components/wake_on_lan/config_flow.pyi,sha256=W--Klf6w1gHa7vWoIG-v9jRLXifInmqQ_IPcXeW2KNQ,1237
@@ -4184,7 +4184,7 @@ homeassistant-stubs/components/zwave_js/api.pyi,sha256=kxJPbhjJLAy3vD6aM69s1A3wM
4184
4184
  homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=wfi4mQWvrV6jCN9sus08Joi570UjnVuXmf6fSO5G_XI,3615
4185
4185
  homeassistant-stubs/components/zwave_js/button.pyi,sha256=fizq4DRptMhKhZGCutC0iCY_oXga09e-w8k6wQ6b8_w,2190
4186
4186
  homeassistant-stubs/components/zwave_js/climate.pyi,sha256=s4bPmmgVxNtTbZ_NYjUMY5Ii9IC0YLcMDo6j6KEYcVM,4458
4187
- homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=ZmapQYyZcnJgWlEQ81UitpH5B9trAtfp21PY1WFxmfQ,9290
4187
+ homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=tLC-6o2Jp8SX_8GZnsYjRUlLvIHczJ_OnDWJiFni_fE,9348
4188
4188
  homeassistant-stubs/components/zwave_js/config_validation.pyi,sha256=i0l2VLc5E1-pW3oHZjxqeKJ1FJg7h4nwcDv02KtGHzU,148
4189
4189
  homeassistant-stubs/components/zwave_js/const.pyi,sha256=g4Ptd1xVnqH62Q76Ane5Xu1cUPLSg9Q90bEQssSwyKE,3795
4190
4190
  homeassistant-stubs/components/zwave_js/cover.pyi,sha256=dMcYjvsDGuf86RJGGVf_INsf9GSUXEl7qv_pymIOyLc,5018
@@ -4364,7 +4364,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
4364
4364
  homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
4365
4365
  homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
4366
4366
  homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
4367
- homeassistant_stubs-2025.8.0b5.dist-info/METADATA,sha256=Y-SLCN38XCfVeqpRqZX4ikgVY2amW61I0pFx9Co6H_Q,2952
4368
- homeassistant_stubs-2025.8.0b5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4369
- homeassistant_stubs-2025.8.0b5.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4370
- homeassistant_stubs-2025.8.0b5.dist-info/RECORD,,
4367
+ homeassistant_stubs-2025.8.2.dist-info/METADATA,sha256=N6Jb_AJc1pVW0I_JC93KtVkVbu-wpd377rzhnD0nC04,2948
4368
+ homeassistant_stubs-2025.8.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4369
+ homeassistant_stubs-2025.8.2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4370
+ homeassistant_stubs-2025.8.2.dist-info/RECORD,,