homeassistant-stubs 2025.2.0b5__py3-none-any.whl → 2025.2.0b7__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.
@@ -34,7 +34,7 @@ def async_track_unavailable(hass: HomeAssistant, callback: Callable[[BluetoothSe
34
34
  @hass_callback
35
35
  def async_rediscover_address(hass: HomeAssistant, address: str) -> None: ...
36
36
  @hass_callback
37
- def async_register_scanner(hass: HomeAssistant, scanner: BaseHaScanner, connection_slots: int | None = None, source_domain: str | None = None, source_model: str | None = None, source_config_entry_id: str | None = None) -> CALLBACK_TYPE: ...
37
+ def async_register_scanner(hass: HomeAssistant, scanner: BaseHaScanner, connection_slots: int | None = None, source_domain: str | None = None, source_model: str | None = None, source_config_entry_id: str | None = None, source_device_id: str | None = None) -> CALLBACK_TYPE: ...
38
38
  @hass_callback
39
39
  def async_remove_scanner(hass: HomeAssistant, source: str) -> None: ...
40
40
  @hass_callback
@@ -1,4 +1,4 @@
1
- from .const import CONF_ADAPTER as CONF_ADAPTER, CONF_DETAILS as CONF_DETAILS, CONF_PASSIVE as CONF_PASSIVE, CONF_SOURCE as CONF_SOURCE, CONF_SOURCE_CONFIG_ENTRY_ID as CONF_SOURCE_CONFIG_ENTRY_ID, CONF_SOURCE_DOMAIN as CONF_SOURCE_DOMAIN, CONF_SOURCE_MODEL as CONF_SOURCE_MODEL, DOMAIN as DOMAIN
1
+ from .const import CONF_ADAPTER as CONF_ADAPTER, CONF_DETAILS as CONF_DETAILS, CONF_PASSIVE as CONF_PASSIVE, CONF_SOURCE as CONF_SOURCE, CONF_SOURCE_CONFIG_ENTRY_ID as CONF_SOURCE_CONFIG_ENTRY_ID, CONF_SOURCE_DEVICE_ID as CONF_SOURCE_DEVICE_ID, CONF_SOURCE_DOMAIN as CONF_SOURCE_DOMAIN, CONF_SOURCE_MODEL as CONF_SOURCE_MODEL, DOMAIN as DOMAIN
2
2
  from .util import adapter_title as adapter_title
3
3
  from _typeshed import Incomplete
4
4
  from bluetooth_adapters import AdapterDetails
@@ -10,6 +10,7 @@ CONF_SOURCE: Final[str]
10
10
  CONF_SOURCE_DOMAIN: Final[str]
11
11
  CONF_SOURCE_MODEL: Final[str]
12
12
  CONF_SOURCE_CONFIG_ENTRY_ID: Final[str]
13
+ CONF_SOURCE_DEVICE_ID: Final[str]
13
14
  SOURCE_LOCAL: Final[str]
14
15
  DATA_MANAGER: Final[str]
15
16
  UNAVAILABLE_TRACK_SECONDS: Final[Incomplete]
@@ -1,4 +1,4 @@
1
- from .const import CONF_SOURCE as CONF_SOURCE, CONF_SOURCE_CONFIG_ENTRY_ID as CONF_SOURCE_CONFIG_ENTRY_ID, CONF_SOURCE_DOMAIN as CONF_SOURCE_DOMAIN, CONF_SOURCE_MODEL as CONF_SOURCE_MODEL, DOMAIN as DOMAIN
1
+ from .const import CONF_SOURCE as CONF_SOURCE, CONF_SOURCE_CONFIG_ENTRY_ID as CONF_SOURCE_CONFIG_ENTRY_ID, CONF_SOURCE_DEVICE_ID as CONF_SOURCE_DEVICE_ID, CONF_SOURCE_DOMAIN as CONF_SOURCE_DOMAIN, CONF_SOURCE_MODEL as CONF_SOURCE_MODEL, DOMAIN as DOMAIN
2
2
  from .match import ADDRESS as ADDRESS, BluetoothCallbackMatcher as BluetoothCallbackMatcher, BluetoothCallbackMatcherIndex as BluetoothCallbackMatcherIndex, BluetoothCallbackMatcherWithCallback as BluetoothCallbackMatcherWithCallback, CALLBACK as CALLBACK, CONNECTABLE as CONNECTABLE, IntegrationMatcher as IntegrationMatcher, ble_device_matches as ble_device_matches
3
3
  from .models import BluetoothCallback as BluetoothCallback, BluetoothChange as BluetoothChange, BluetoothServiceInfoBleak as BluetoothServiceInfoBleak
4
4
  from .storage import BluetoothStorage as BluetoothStorage
@@ -40,7 +40,7 @@ class HomeAssistantBluetoothManager(BluetoothManager):
40
40
  def _async_save_scanner_history(self, scanner: BaseHaScanner) -> None: ...
41
41
  def _async_unregister_scanner(self, scanner: BaseHaScanner, unregister: CALLBACK_TYPE) -> None: ...
42
42
  @hass_callback
43
- def async_register_hass_scanner(self, scanner: BaseHaScanner, connection_slots: int | None = None, source_domain: str | None = None, source_model: str | None = None, source_config_entry_id: str | None = None) -> CALLBACK_TYPE: ...
43
+ def async_register_hass_scanner(self, scanner: BaseHaScanner, connection_slots: int | None = None, source_domain: str | None = None, source_model: str | None = None, source_config_entry_id: str | None = None, source_device_id: str | None = None) -> CALLBACK_TYPE: ...
44
44
  def async_register_scanner(self, scanner: BaseHaScanner, connection_slots: int | None = None) -> CALLBACK_TYPE: ...
45
45
  @hass_callback
46
46
  def async_remove_scanner(self, source: str) -> None: ...
@@ -7,4 +7,4 @@ from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, HomeAssistant as
7
7
  @hass_callback
8
8
  def _async_unload(unload_callbacks: list[CALLBACK_TYPE]) -> None: ...
9
9
  @hass_callback
10
- def async_connect_scanner(hass: HomeAssistant, entry_data: RuntimeEntryData, cli: APIClient, device_info: DeviceInfo) -> CALLBACK_TYPE: ...
10
+ def async_connect_scanner(hass: HomeAssistant, entry_data: RuntimeEntryData, cli: APIClient, device_info: DeviceInfo, device_id: str) -> CALLBACK_TYPE: ...
@@ -1,5 +1,5 @@
1
1
  import socket
2
- from .const import AUDIO_CODEC_COPY as AUDIO_CODEC_COPY, AUDIO_CODEC_OPUS as AUDIO_CODEC_OPUS, CONF_AUDIO_CODEC as CONF_AUDIO_CODEC, CONF_AUDIO_MAP as CONF_AUDIO_MAP, CONF_AUDIO_PACKET_SIZE as CONF_AUDIO_PACKET_SIZE, CONF_FEATURE as CONF_FEATURE, CONF_FEATURE_LIST as CONF_FEATURE_LIST, CONF_LINKED_BATTERY_CHARGING_SENSOR as CONF_LINKED_BATTERY_CHARGING_SENSOR, CONF_LINKED_BATTERY_SENSOR as CONF_LINKED_BATTERY_SENSOR, CONF_LINKED_DOORBELL_SENSOR as CONF_LINKED_DOORBELL_SENSOR, CONF_LINKED_HUMIDITY_SENSOR as CONF_LINKED_HUMIDITY_SENSOR, CONF_LINKED_MOTION_SENSOR as CONF_LINKED_MOTION_SENSOR, CONF_LINKED_OBSTRUCTION_SENSOR as CONF_LINKED_OBSTRUCTION_SENSOR, CONF_LOW_BATTERY_THRESHOLD as CONF_LOW_BATTERY_THRESHOLD, CONF_MAX_FPS as CONF_MAX_FPS, CONF_MAX_HEIGHT as CONF_MAX_HEIGHT, CONF_MAX_WIDTH as CONF_MAX_WIDTH, CONF_STREAM_ADDRESS as CONF_STREAM_ADDRESS, CONF_STREAM_COUNT as CONF_STREAM_COUNT, CONF_STREAM_SOURCE as CONF_STREAM_SOURCE, CONF_SUPPORT_AUDIO as CONF_SUPPORT_AUDIO, CONF_THRESHOLD_CO as CONF_THRESHOLD_CO, CONF_THRESHOLD_CO2 as CONF_THRESHOLD_CO2, CONF_VIDEO_CODEC as CONF_VIDEO_CODEC, CONF_VIDEO_MAP as CONF_VIDEO_MAP, CONF_VIDEO_PACKET_SIZE as CONF_VIDEO_PACKET_SIZE, DEFAULT_AUDIO_CODEC as DEFAULT_AUDIO_CODEC, DEFAULT_AUDIO_MAP as DEFAULT_AUDIO_MAP, DEFAULT_AUDIO_PACKET_SIZE as DEFAULT_AUDIO_PACKET_SIZE, DEFAULT_LOW_BATTERY_THRESHOLD as DEFAULT_LOW_BATTERY_THRESHOLD, DEFAULT_MAX_FPS as DEFAULT_MAX_FPS, DEFAULT_MAX_HEIGHT as DEFAULT_MAX_HEIGHT, DEFAULT_MAX_WIDTH as DEFAULT_MAX_WIDTH, DEFAULT_STREAM_COUNT as DEFAULT_STREAM_COUNT, DEFAULT_SUPPORT_AUDIO as DEFAULT_SUPPORT_AUDIO, DEFAULT_VIDEO_CODEC as DEFAULT_VIDEO_CODEC, DEFAULT_VIDEO_MAP as DEFAULT_VIDEO_MAP, DEFAULT_VIDEO_PACKET_SIZE as DEFAULT_VIDEO_PACKET_SIZE, DOMAIN as DOMAIN, FEATURE_ON_OFF as FEATURE_ON_OFF, FEATURE_PLAY_PAUSE as FEATURE_PLAY_PAUSE, FEATURE_PLAY_STOP as FEATURE_PLAY_STOP, FEATURE_TOGGLE_MUTE as FEATURE_TOGGLE_MUTE, MAX_NAME_LENGTH as MAX_NAME_LENGTH, TYPE_FAUCET as TYPE_FAUCET, TYPE_OUTLET as TYPE_OUTLET, TYPE_SHOWER as TYPE_SHOWER, TYPE_SPRINKLER as TYPE_SPRINKLER, TYPE_SWITCH as TYPE_SWITCH, TYPE_VALVE as TYPE_VALVE, VIDEO_CODEC_COPY as VIDEO_CODEC_COPY, VIDEO_CODEC_H264_OMX as VIDEO_CODEC_H264_OMX, VIDEO_CODEC_H264_V4L2M2M as VIDEO_CODEC_H264_V4L2M2M, VIDEO_CODEC_LIBX264 as VIDEO_CODEC_LIBX264
2
+ from .const import AUDIO_CODEC_COPY as AUDIO_CODEC_COPY, AUDIO_CODEC_OPUS as AUDIO_CODEC_OPUS, CONF_AUDIO_CODEC as CONF_AUDIO_CODEC, CONF_AUDIO_MAP as CONF_AUDIO_MAP, CONF_AUDIO_PACKET_SIZE as CONF_AUDIO_PACKET_SIZE, CONF_FEATURE as CONF_FEATURE, CONF_FEATURE_LIST as CONF_FEATURE_LIST, CONF_LINKED_BATTERY_CHARGING_SENSOR as CONF_LINKED_BATTERY_CHARGING_SENSOR, CONF_LINKED_BATTERY_SENSOR as CONF_LINKED_BATTERY_SENSOR, CONF_LINKED_DOORBELL_SENSOR as CONF_LINKED_DOORBELL_SENSOR, CONF_LINKED_HUMIDITY_SENSOR as CONF_LINKED_HUMIDITY_SENSOR, CONF_LINKED_MOTION_SENSOR as CONF_LINKED_MOTION_SENSOR, CONF_LINKED_OBSTRUCTION_SENSOR as CONF_LINKED_OBSTRUCTION_SENSOR, CONF_LOW_BATTERY_THRESHOLD as CONF_LOW_BATTERY_THRESHOLD, CONF_MAX_FPS as CONF_MAX_FPS, CONF_MAX_HEIGHT as CONF_MAX_HEIGHT, CONF_MAX_WIDTH as CONF_MAX_WIDTH, CONF_STREAM_ADDRESS as CONF_STREAM_ADDRESS, CONF_STREAM_COUNT as CONF_STREAM_COUNT, CONF_STREAM_SOURCE as CONF_STREAM_SOURCE, CONF_SUPPORT_AUDIO as CONF_SUPPORT_AUDIO, CONF_THRESHOLD_CO as CONF_THRESHOLD_CO, CONF_THRESHOLD_CO2 as CONF_THRESHOLD_CO2, CONF_VIDEO_CODEC as CONF_VIDEO_CODEC, CONF_VIDEO_MAP as CONF_VIDEO_MAP, CONF_VIDEO_PACKET_SIZE as CONF_VIDEO_PACKET_SIZE, CONF_VIDEO_PROFILE_NAMES as CONF_VIDEO_PROFILE_NAMES, DEFAULT_AUDIO_CODEC as DEFAULT_AUDIO_CODEC, DEFAULT_AUDIO_MAP as DEFAULT_AUDIO_MAP, DEFAULT_AUDIO_PACKET_SIZE as DEFAULT_AUDIO_PACKET_SIZE, DEFAULT_LOW_BATTERY_THRESHOLD as DEFAULT_LOW_BATTERY_THRESHOLD, DEFAULT_MAX_FPS as DEFAULT_MAX_FPS, DEFAULT_MAX_HEIGHT as DEFAULT_MAX_HEIGHT, DEFAULT_MAX_WIDTH as DEFAULT_MAX_WIDTH, DEFAULT_STREAM_COUNT as DEFAULT_STREAM_COUNT, DEFAULT_SUPPORT_AUDIO as DEFAULT_SUPPORT_AUDIO, DEFAULT_VIDEO_CODEC as DEFAULT_VIDEO_CODEC, DEFAULT_VIDEO_MAP as DEFAULT_VIDEO_MAP, DEFAULT_VIDEO_PACKET_SIZE as DEFAULT_VIDEO_PACKET_SIZE, DEFAULT_VIDEO_PROFILE_NAMES as DEFAULT_VIDEO_PROFILE_NAMES, DOMAIN as DOMAIN, FEATURE_ON_OFF as FEATURE_ON_OFF, FEATURE_PLAY_PAUSE as FEATURE_PLAY_PAUSE, FEATURE_PLAY_STOP as FEATURE_PLAY_STOP, FEATURE_TOGGLE_MUTE as FEATURE_TOGGLE_MUTE, MAX_NAME_LENGTH as MAX_NAME_LENGTH, TYPE_FAUCET as TYPE_FAUCET, TYPE_OUTLET as TYPE_OUTLET, TYPE_SHOWER as TYPE_SHOWER, TYPE_SPRINKLER as TYPE_SPRINKLER, TYPE_SWITCH as TYPE_SWITCH, TYPE_VALVE as TYPE_VALVE, VIDEO_CODEC_COPY as VIDEO_CODEC_COPY, VIDEO_CODEC_H264_OMX as VIDEO_CODEC_H264_OMX, VIDEO_CODEC_H264_V4L2M2M as VIDEO_CODEC_H264_V4L2M2M, VIDEO_CODEC_LIBX264 as VIDEO_CODEC_LIBX264
3
3
  from .models import HomeKitConfigEntry as HomeKitConfigEntry
4
4
  from _typeshed import Incomplete
5
5
  from homeassistant.components import binary_sensor as binary_sensor, media_player as media_player, persistent_notification as persistent_notification, sensor as sensor
@@ -1,4 +1,4 @@
1
- from .const import DOMAIN as DOMAIN
1
+ from .const import DOMAIN as DOMAIN, LLM_API as LLM_API, LLM_API_NAME as LLM_API_NAME
2
2
  from _typeshed import Incomplete
3
3
  from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
4
4
  from homeassistant.const import CONF_LLM_HASS_API as CONF_LLM_HASS_API
@@ -1,2 +1,4 @@
1
1
  DOMAIN: str
2
2
  TITLE: str
3
+ LLM_API: str
4
+ LLM_API_NAME: str
@@ -0,0 +1,15 @@
1
+ from .const import LLM_API as LLM_API, LLM_API_NAME as LLM_API_NAME
2
+ from _typeshed import Incomplete
3
+ from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
4
+ from homeassistant.helpers import llm as llm
5
+
6
+ EXPOSED_ENTITY_FIELDS: Incomplete
7
+
8
+ def async_register_api(hass: HomeAssistant) -> None: ...
9
+
10
+ class StatelessAssistAPI(llm.AssistAPI):
11
+ id: Incomplete
12
+ name: Incomplete
13
+ def __init__(self, hass: HomeAssistant) -> None: ...
14
+ @callback
15
+ def _async_get_exposed_entities_prompt(self, llm_context: llm.LLMContext, exposed_entities: dict | None) -> list[str]: ...
@@ -4,4 +4,4 @@ from homeassistant.components.bluetooth import async_register_scanner as async_r
4
4
  from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, HomeAssistant as HomeAssistant
5
5
  from homeassistant.helpers.device_registry import format_mac as format_mac
6
6
 
7
- async def async_connect_scanner(hass: HomeAssistant, coordinator: ShellyRpcCoordinator, scanner_mode: BLEScannerMode) -> CALLBACK_TYPE: ...
7
+ async def async_connect_scanner(hass: HomeAssistant, coordinator: ShellyRpcCoordinator, scanner_mode: BLEScannerMode, device_id: str) -> CALLBACK_TYPE: ...
@@ -1,10 +1,11 @@
1
1
  from .const import DOMAIN as DOMAIN
2
2
  from _typeshed import Incomplete
3
3
  from collections.abc import Mapping
4
- from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
4
+ from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, SOURCE_USER as SOURCE_USER
5
5
  from homeassistant.const import CONF_HOST as CONF_HOST, CONF_NAME as CONF_NAME, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
6
6
  from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
7
7
  from homeassistant.helpers.device_registry import format_mac as format_mac
8
+ from homeassistant.helpers.service_info.dhcp import DhcpServiceInfo as DhcpServiceInfo
8
9
  from homeassistant.helpers.service_info.zeroconf import ZeroconfServiceInfo as ZeroconfServiceInfo
9
10
  from pysmlight import Api2
10
11
  from typing import Any
@@ -13,14 +14,15 @@ STEP_USER_DATA_SCHEMA: Incomplete
13
14
  STEP_AUTH_DATA_SCHEMA: Incomplete
14
15
 
15
16
  class SmlightConfigFlow(ConfigFlow, domain=DOMAIN):
16
- host: str
17
+ _host: str
18
+ _device_name: str
17
19
  client: Api2
18
- def __init__(self) -> None: ...
19
20
  async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
20
21
  async def async_step_auth(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
21
22
  async def async_step_zeroconf(self, discovery_info: ZeroconfServiceInfo) -> ConfigFlowResult: ...
22
23
  async def async_step_confirm_discovery(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
23
24
  async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> ConfigFlowResult: ...
24
25
  async def async_step_reauth_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
26
+ async def async_step_dhcp(self, discovery_info: DhcpServiceInfo) -> ConfigFlowResult: ...
25
27
  async def _async_check_auth_required(self, user_input: dict[str, Any]) -> bool: ...
26
28
  async def _async_complete_entry(self, user_input: dict[str, Any]) -> ConfigFlowResult: ...
@@ -89,6 +89,10 @@ class AssistAPI(API):
89
89
  @callback
90
90
  def _async_get_api_prompt(self, llm_context: LLMContext, exposed_entities: dict | None) -> str: ...
91
91
  @callback
92
+ def _async_get_preable(self, llm_context: LLMContext) -> list[str]: ...
93
+ @callback
94
+ def _async_get_exposed_entities_prompt(self, llm_context: LLMContext, exposed_entities: dict | None) -> list[str]: ...
95
+ @callback
92
96
  def _async_get_tools(self, llm_context: LLMContext, exposed_entities: dict | None) -> list[Tool]: ...
93
97
 
94
98
  def _get_exposed_entities(hass: HomeAssistant, assistant: str) -> dict[str, dict[str, Any]]: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: homeassistant-stubs
3
- Version: 2025.2.0b5
3
+ Version: 2025.2.0b7
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.2.0b5
21
+ Requires-Dist: homeassistant==2025.2.0b7
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)
@@ -477,11 +477,11 @@ homeassistant-stubs/components/bluesound/utils.pyi,sha256=ph5GGj0yMCxCSwhuaha7jQ
477
477
  homeassistant-stubs/components/bluetooth/__init__.pyi,sha256=zZpouue7GbyBPt_qvlGAqNCtD3dyk0VsprHIlVjMPS8,2896
478
478
  homeassistant-stubs/components/bluetooth/active_update_coordinator.pyi,sha256=Dsd6cj5FSmJMHrU5nyy0BxTuHv0djPOh_lt3yHdBf6c,1792
479
479
  homeassistant-stubs/components/bluetooth/active_update_processor.pyi,sha256=z1mKAtnYcp9qiKl6mMwgqfq4-_Qg2drq7_bIWPvFZBQ,1785
480
- homeassistant-stubs/components/bluetooth/api.pyi,sha256=wyPFb22arr8fm0twR0F0hUwb8h2JyJclb9TGy6zTi2Y,3497
481
- homeassistant-stubs/components/bluetooth/config_flow.pyi,sha256=G89vInn79Us-p3bgj7vw1f4Ku9vNveYQHVeMHLX40hQ,2596
482
- homeassistant-stubs/components/bluetooth/const.pyi,sha256=AmDSHcm_nOiGyy-9UIWsMIQtZeG1B7bJqmLUQ9mNG1o,793
480
+ homeassistant-stubs/components/bluetooth/api.pyi,sha256=JsVyUCUpDrDcQeAZr4KGbh5Kz9GXK9YabxhAcG4vkwE,3534
481
+ homeassistant-stubs/components/bluetooth/config_flow.pyi,sha256=OkuvtGzwRy36qXou4AwV2z0ahs6Oj5QwX75e3vTbnZA,2644
482
+ homeassistant-stubs/components/bluetooth/const.pyi,sha256=0rRcnN1foshytrRJOii3wizEwltPlbsfylqrT3Qzzfo,827
483
483
  homeassistant-stubs/components/bluetooth/diagnostics.pyi,sha256=stMT7dSQu7YxfJty9a1ZUtJNJ98A6bWvd6wBCxwnSg8,309
484
- homeassistant-stubs/components/bluetooth/manager.pyi,sha256=3i__ab9DxLDSRIWj9RioRySWbxVIk7bLMAiI3SOWGpM,3650
484
+ homeassistant-stubs/components/bluetooth/manager.pyi,sha256=sbOHtj-pUuVBi7gho9V5CbE7gHuZqcCJNvePjKHhj0U,3735
485
485
  homeassistant-stubs/components/bluetooth/match.pyi,sha256=7qVra40h4h2h0desUEBixXJXg3oRnqj69O_ElWtSD5w,3607
486
486
  homeassistant-stubs/components/bluetooth/models.pyi,sha256=igAWRDXRCnweWA6acfQtUSepSDAscirGfzNNCN6hLQg,328
487
487
  homeassistant-stubs/components/bluetooth/passive_update_coordinator.pyi,sha256=juwt8PLQcvHrtn82FvfvR7kTjHYCq6Pm8hS6hd5_a-o,1859
@@ -1019,7 +1019,7 @@ homeassistant-stubs/components/esphome/__init__.pyi,sha256=n-e472-bi2uNoB_ie1ZLp
1019
1019
  homeassistant-stubs/components/esphome/alarm_control_panel.pyi,sha256=odYTL5-nR_gQiH2uzNoL_g94LWEDxqh0E5X9slbwDjE,2358
1020
1020
  homeassistant-stubs/components/esphome/assist_satellite.pyi,sha256=GBpuEdTM-Z1C8lfPWypSq_Dq9nloVDeQHJRV9EfAZHE,4880
1021
1021
  homeassistant-stubs/components/esphome/binary_sensor.pyi,sha256=yGU3gIT2gfj2C4bkD5XhALK3hNNBaa4oLDnfepReMds,1577
1022
- homeassistant-stubs/components/esphome/bluetooth.pyi,sha256=cP74NeMaQQvn3WIH6tOB4HGc0gqrw9AwvvzGIGbL3Sw,630
1022
+ homeassistant-stubs/components/esphome/bluetooth.pyi,sha256=AziV-O6xagLD2nhVCl9aXQAgalMHnWySK0OLPlYAUZo,646
1023
1023
  homeassistant-stubs/components/esphome/button.pyi,sha256=pR-hgw_gTCTj0QGScNeidlDi-FZ0BPT71-ctz-DXfn4,877
1024
1024
  homeassistant-stubs/components/esphome/camera.pyi,sha256=4_R1vVynz4w80pof0K4fSWgNuG6RjUM9LBxJ3xO1iOg,1208
1025
1025
  homeassistant-stubs/components/esphome/climate.pyi,sha256=MyHotZ1Dy5KCUTzyYbxQDtFcHryuZ8KxuWnlsWUUbiU,4336
@@ -1459,7 +1459,7 @@ homeassistant-stubs/components/homekit/type_sensors.pyi,sha256=vqzh3Jg7hytyMnI6K
1459
1459
  homeassistant-stubs/components/homekit/type_switches.pyi,sha256=tnKxC-AKoY58WVXKlC7gNCRmEse34j38tZpjoQdfjaY,3814
1460
1460
  homeassistant-stubs/components/homekit/type_thermostats.pyi,sha256=YlxxQgedvMNJtJUA6-YyPe8Qd4u78NOVHrAekksclC4,6544
1461
1461
  homeassistant-stubs/components/homekit/type_triggers.pyi,sha256=lCVjvVZs6PXWGzvs7QIeBNvwaPNgDwR-7YpJCkIPl3w,1584
1462
- homeassistant-stubs/components/homekit/util.pyi,sha256=0855oEHnr_UjDD97BvY-J_gHl9Cdvr9lmDNhkxSQ_Ko,6336
1462
+ homeassistant-stubs/components/homekit/util.pyi,sha256=DhIIDsQsivA4hXxkYUQkjdx2EBRwTOz2ifNxS69DEMs,6450
1463
1463
  homeassistant-stubs/components/homekit_controller/__init__.pyi,sha256=1QXa2junRJKaFu7rhQFNHo6G6GocNTAAeQcMCoJSozY,1391
1464
1464
  homeassistant-stubs/components/homekit_controller/alarm_control_panel.pyi,sha256=eGSrGzaeeu-t0MeBjq4hgE4fb5lxhgnyGySe5kQPbX4,1792
1465
1465
  homeassistant-stubs/components/homekit_controller/button.pyi,sha256=yhArmWYVGUG8nHgGKgJtFyBhJmEiXZWLpegOFehIMjE,2253
@@ -2036,9 +2036,10 @@ homeassistant-stubs/components/mcp/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5l
2036
2036
  homeassistant-stubs/components/mcp/coordinator.pyi,sha256=B7dh9rEhHnyGiyAVUvQKy77uG_rwalNPrxG9JKOXH1c,1813
2037
2037
  homeassistant-stubs/components/mcp/types.pyi,sha256=FVkaZDspAeZiXuawregohXGzPX9UzYCOiiw4A6-IfQ4,245
2038
2038
  homeassistant-stubs/components/mcp_server/__init__.pyi,sha256=xDyVIGH9vo9I7SKM8AKs_-z0j7jUTixeoxknAFxJzkA,590
2039
- homeassistant-stubs/components/mcp_server/config_flow.pyi,sha256=Y2-JIBNe04G1WAm7iPGbSrm_r1GqUXfGKY_c9_8opos,704
2040
- homeassistant-stubs/components/mcp_server/const.pyi,sha256=s9kNxMHzKB8GGR99AxQWcgIhiGP2ltT57YscBemhugc,23
2039
+ homeassistant-stubs/components/mcp_server/config_flow.pyi,sha256=6p8sV9_ZCyODsXHgc5asBS97g2NIDCf0lJQecFfLwUc,754
2040
+ homeassistant-stubs/components/mcp_server/const.pyi,sha256=U8oWxIBcN1lsNcXXEhkkGXNldVW4og-2SycZnPHqb3k,54
2041
2041
  homeassistant-stubs/components/mcp_server/http.pyi,sha256=i1MdnLk-l5bqCIcALv90Ili83IThliS_qUIO5Q6L3oQ,1402
2042
+ homeassistant-stubs/components/mcp_server/llm_api.pyi,sha256=3XDjyLCmkvImhkRl4HFs52Kp3lg8Xq0OGPECH9RC_-E,603
2042
2043
  homeassistant-stubs/components/mcp_server/server.pyi,sha256=1FSvzlj3s7PzZZ1QQUxRzPhAwbB_dd3ux4ubvrG7v98,570
2043
2044
  homeassistant-stubs/components/mcp_server/session.pyi,sha256=EHeW9thFM5NkV1w-i8hEWUbN13tw5hUVnw0iLhhUtNQ,677
2044
2045
  homeassistant-stubs/components/mcp_server/types.pyi,sha256=5xqD3UZDNxfL9B1mwNgD6Qkhg6-w7-LaddmR2HWDQNY,179
@@ -3049,7 +3050,7 @@ homeassistant-stubs/components/shelly/text.pyi,sha256=LK44TGSjS-5ISJiteaGlhFCND3
3049
3050
  homeassistant-stubs/components/shelly/update.pyi,sha256=_x9z5aFzUlYGSKshVZJkUaeu2lSt9mY6a_xiJea5gNQ,4225
3050
3051
  homeassistant-stubs/components/shelly/utils.pyi,sha256=kBZvpUat7dVNa8UaTpRwwt7R1iva7Gz9t2Iqxdlqr4k,5306
3051
3052
  homeassistant-stubs/components/shelly/valve.pyi,sha256=pVHV2pU6f2YxrZFlla6IH-FZujwAttzPrgJlON11Mwg,2078
3052
- homeassistant-stubs/components/shelly/bluetooth/__init__.pyi,sha256=HT0hgl_ciFlucyyluKSuO_9H8L0RSlaSj3lY81zCwwc,530
3053
+ homeassistant-stubs/components/shelly/bluetooth/__init__.pyi,sha256=Qdvb4UKKuZFummju0FsbgpZ3yu7VTKP9uyjuc89IV8Q,546
3053
3054
  homeassistant-stubs/components/shopping_list/__init__.pyi,sha256=GwWcwIbVIQHeP2bLRDb4FFpbwWcCYXGjMdgTH-EBcpg,4861
3054
3055
  homeassistant-stubs/components/shopping_list/config_flow.pyi,sha256=pZ_rPWc8tyyDavIxaSEPrQt0kFfswEUmqpjih7qIGbk,482
3055
3056
  homeassistant-stubs/components/shopping_list/const.pyi,sha256=V3v2bjwmRf0bVxTX2Tz7q2PfF7e_vJHD8_MnOzLLhS8,354
@@ -3108,7 +3109,7 @@ homeassistant-stubs/components/smhi/weather.pyi,sha256=oXSEz5xV0k1djrsDUQpc74owe
3108
3109
  homeassistant-stubs/components/smlight/__init__.pyi,sha256=-l1MC2QiIzoaVaMqUghH3GwYrXAEdNnKDQp7i8EPdL8,841
3109
3110
  homeassistant-stubs/components/smlight/binary_sensor.pyi,sha256=Dj5hnuiDw6DFAM9pffiXyWyyv4MVhH2OF_anG6h3YGo,2168
3110
3111
  homeassistant-stubs/components/smlight/button.pyi,sha256=9GB3nxbMMxWyl9P_Kk66UITre-8DzROoTY4OtJcoNiQ,1500
3111
- homeassistant-stubs/components/smlight/config_flow.pyi,sha256=_Bf0JKCrS5Ah0ypvJrvtn7Lz9JkRHfjPow-au7FE2Pk,1679
3112
+ homeassistant-stubs/components/smlight/config_flow.pyi,sha256=5oJvR0oFMfaUKo4yMG4qWCOqVZE-S3FH6YMUPpuS_8w,1875
3112
3113
  homeassistant-stubs/components/smlight/const.pyi,sha256=6nY34dqBSWdN0e3u9IkXgU1jN_MhKSZZknqNX4LOzXI,261
3113
3114
  homeassistant-stubs/components/smlight/coordinator.pyi,sha256=oMYjL7iB_UAUfix890u7PvvgcnhuEobEjos5ET1Mca8,2088
3114
3115
  homeassistant-stubs/components/smlight/diagnostics.pyi,sha256=2Ylj2quzflLHQCetykc4KvNjgIzq7a7hBZGackFJdAk,249
@@ -3930,7 +3931,7 @@ homeassistant-stubs/helpers/intent.pyi,sha256=KENC33ihnmqOw0JL6yxvPDQHlXr-SkPAoo
3930
3931
  homeassistant-stubs/helpers/issue_registry.pyi,sha256=x5EWMHDci2qKI78inC6nbOaMqpJCnp2v6a5ixZ4uYxI,4054
3931
3932
  homeassistant-stubs/helpers/json.pyi,sha256=PIxBwZx71qJb_-DKqyVJJoLeU4q8XlT2ODHt9eeL33Q,1798
3932
3933
  homeassistant-stubs/helpers/label_registry.pyi,sha256=uMXIYvaAzudKQS-rgL25Dz48b32hDru7lAmhcPhHAig,3163
3933
- homeassistant-stubs/helpers/llm.pyi,sha256=ms8Jl9UGMRpPPfAM0l_6mi-RbMJVUa1fuuKloSSn7dM,4823
3934
+ homeassistant-stubs/helpers/llm.pyi,sha256=BF2xRYLvRDWcylVwKTv0ugEbbUwfGBccHs43c7uNv4M,5050
3934
3935
  homeassistant-stubs/helpers/location.pyi,sha256=ynZlBZv3LuyphX4B28y2n2V4IHtJ6ETkUnqOlSYM1FM,655
3935
3936
  homeassistant-stubs/helpers/network.pyi,sha256=-pTFXkYDO0c0R10kisJ6hL6QTJZSODwpfuWReVXoSbg,1882
3936
3937
  homeassistant-stubs/helpers/normalized_name_base_registry.pyi,sha256=XEipwDH7JmF_zR43UN86VP04YW4wO4He3jTHRRA0AII,1004
@@ -4018,7 +4019,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
4018
4019
  homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
4019
4020
  homeassistant-stubs/util/yaml/loader.pyi,sha256=9MJS3AZNCemqAEU41KVJox1f16OceP64SNXE1-Z37kU,4117
4020
4021
  homeassistant-stubs/util/yaml/objects.pyi,sha256=EmJiT8WnVUHa5dkbYzXtWzu5mhO1YG5bBnEAIF0XLAU,665
4021
- homeassistant_stubs-2025.2.0b5.dist-info/METADATA,sha256=hSMT2QYBjar0BGTNF0XY5RcaEAYNfTxOI-dYvha8Hck,2956
4022
- homeassistant_stubs-2025.2.0b5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4023
- homeassistant_stubs-2025.2.0b5.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4024
- homeassistant_stubs-2025.2.0b5.dist-info/RECORD,,
4022
+ homeassistant_stubs-2025.2.0b7.dist-info/METADATA,sha256=4l0aDA7f-V5qExJvYvpSaRNh5_V43ey4pFgbLNpXg9k,2956
4023
+ homeassistant_stubs-2025.2.0b7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4024
+ homeassistant_stubs-2025.2.0b7.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4025
+ homeassistant_stubs-2025.2.0b7.dist-info/RECORD,,