homeassistant-stubs 2025.10.0b1__py3-none-any.whl → 2025.10.0b4__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.
- homeassistant-stubs/components/airos/__init__.pyi +3 -1
- homeassistant-stubs/components/airos/config_flow.pyi +4 -2
- homeassistant-stubs/components/airos/const.pyi +3 -0
- homeassistant-stubs/components/airos/entity.pyi +2 -2
- homeassistant-stubs/components/alexa_devices/binary_sensor.pyi +4 -0
- homeassistant-stubs/components/alexa_devices/sensor.pyi +3 -0
- homeassistant-stubs/components/alexa_devices/switch.pyi +4 -2
- homeassistant-stubs/components/alexa_devices/utils.pyi +4 -1
- homeassistant-stubs/components/assist_pipeline/pipeline.pyi +1 -1
- homeassistant-stubs/components/comelit/config_flow.pyi +2 -1
- homeassistant-stubs/components/lamarzocco/coordinator.pyi +4 -2
- homeassistant-stubs/components/portainer/__init__.pyi +1 -1
- homeassistant-stubs/components/portainer/config_flow.pyi +1 -1
- {homeassistant_stubs-2025.10.0b1.dist-info → homeassistant_stubs-2025.10.0b4.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.10.0b1.dist-info → homeassistant_stubs-2025.10.0b4.dist-info}/RECORD +17 -17
- {homeassistant_stubs-2025.10.0b1.dist-info → homeassistant_stubs-2025.10.0b4.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.10.0b1.dist-info → homeassistant_stubs-2025.10.0b4.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
from .const import DEFAULT_SSL as DEFAULT_SSL, DEFAULT_VERIFY_SSL as DEFAULT_VERIFY_SSL, SECTION_ADVANCED_SETTINGS as SECTION_ADVANCED_SETTINGS
|
|
1
2
|
from .coordinator import AirOSConfigEntry as AirOSConfigEntry, AirOSDataUpdateCoordinator as AirOSDataUpdateCoordinator
|
|
2
|
-
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME, Platform as Platform
|
|
3
|
+
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PASSWORD as CONF_PASSWORD, CONF_SSL as CONF_SSL, CONF_USERNAME as CONF_USERNAME, CONF_VERIFY_SSL as CONF_VERIFY_SSL, Platform as Platform
|
|
3
4
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
4
5
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
|
5
6
|
|
|
6
7
|
_PLATFORMS: list[Platform]
|
|
7
8
|
|
|
8
9
|
async def async_setup_entry(hass: HomeAssistant, entry: AirOSConfigEntry) -> bool: ...
|
|
10
|
+
async def async_migrate_entry(hass: HomeAssistant, entry: AirOSConfigEntry) -> bool: ...
|
|
9
11
|
async def async_unload_entry(hass: HomeAssistant, entry: AirOSConfigEntry) -> bool: ...
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
from .const import DOMAIN as DOMAIN
|
|
1
|
+
from .const import DEFAULT_SSL as DEFAULT_SSL, DEFAULT_VERIFY_SSL as DEFAULT_VERIFY_SSL, DOMAIN as DOMAIN, SECTION_ADVANCED_SETTINGS as SECTION_ADVANCED_SETTINGS
|
|
2
2
|
from .coordinator import AirOS8 as AirOS8
|
|
3
3
|
from _typeshed import Incomplete
|
|
4
4
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
|
5
|
-
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
|
|
5
|
+
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PASSWORD as CONF_PASSWORD, CONF_SSL as CONF_SSL, CONF_USERNAME as CONF_USERNAME, CONF_VERIFY_SSL as CONF_VERIFY_SSL
|
|
6
|
+
from homeassistant.data_entry_flow import section as section
|
|
6
7
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
|
7
8
|
from typing import Any
|
|
8
9
|
|
|
@@ -11,4 +12,5 @@ STEP_USER_DATA_SCHEMA: Incomplete
|
|
|
11
12
|
|
|
12
13
|
class AirOSConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
13
14
|
VERSION: int
|
|
15
|
+
MINOR_VERSION: int
|
|
14
16
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
from .const import DOMAIN as DOMAIN, MANUFACTURER as MANUFACTURER
|
|
1
|
+
from .const import DOMAIN as DOMAIN, MANUFACTURER as MANUFACTURER, SECTION_ADVANCED_SETTINGS as SECTION_ADVANCED_SETTINGS
|
|
2
2
|
from .coordinator import AirOSDataUpdateCoordinator as AirOSDataUpdateCoordinator
|
|
3
3
|
from _typeshed import Incomplete
|
|
4
|
-
from homeassistant.const import CONF_HOST as CONF_HOST
|
|
4
|
+
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_SSL as CONF_SSL
|
|
5
5
|
from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC as CONNECTION_NETWORK_MAC, DeviceInfo as DeviceInfo
|
|
6
6
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity
|
|
7
7
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from .coordinator import AmazonConfigEntry as AmazonConfigEntry
|
|
2
2
|
from .entity import AmazonEntity as AmazonEntity
|
|
3
|
+
from .utils import async_update_unique_id as async_update_unique_id
|
|
3
4
|
from _typeshed import Incomplete
|
|
4
5
|
from aioamazondevices.api import AmazonDevice as AmazonDevice
|
|
5
6
|
from collections.abc import Callable as Callable
|
|
@@ -16,6 +17,7 @@ PARALLEL_UPDATES: int
|
|
|
16
17
|
class AmazonBinarySensorEntityDescription(BinarySensorEntityDescription):
|
|
17
18
|
is_on_fn: Callable[[AmazonDevice, str], bool]
|
|
18
19
|
is_supported: Callable[[AmazonDevice, str], bool] = ...
|
|
20
|
+
is_available_fn: Callable[[AmazonDevice, str], bool] = ...
|
|
19
21
|
|
|
20
22
|
BINARY_SENSORS: Final[Incomplete]
|
|
21
23
|
|
|
@@ -25,3 +27,5 @@ class AmazonBinarySensorEntity(AmazonEntity, BinarySensorEntity):
|
|
|
25
27
|
entity_description: AmazonBinarySensorEntityDescription
|
|
26
28
|
@property
|
|
27
29
|
def is_on(self) -> bool: ...
|
|
30
|
+
@property
|
|
31
|
+
def available(self) -> bool: ...
|
|
@@ -16,6 +16,7 @@ PARALLEL_UPDATES: int
|
|
|
16
16
|
@dataclass(frozen=True, kw_only=True)
|
|
17
17
|
class AmazonSensorEntityDescription(SensorEntityDescription):
|
|
18
18
|
native_unit_of_measurement_fn: Callable[[AmazonDevice, str], str] | None = ...
|
|
19
|
+
is_available_fn: Callable[[AmazonDevice, str], bool] = ...
|
|
19
20
|
|
|
20
21
|
SENSORS: Final[Incomplete]
|
|
21
22
|
|
|
@@ -27,3 +28,5 @@ class AmazonSensorEntity(AmazonEntity, SensorEntity):
|
|
|
27
28
|
def native_unit_of_measurement(self) -> str | None: ...
|
|
28
29
|
@property
|
|
29
30
|
def native_value(self) -> StateType: ...
|
|
31
|
+
@property
|
|
32
|
+
def available(self) -> bool: ...
|
|
@@ -1,6 +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
|
+
from .utils import alexa_api_call as alexa_api_call, async_update_unique_id as async_update_unique_id
|
|
4
4
|
from _typeshed import Incomplete
|
|
5
5
|
from aioamazondevices.api import AmazonDevice as AmazonDevice
|
|
6
6
|
from collections.abc import Callable as Callable
|
|
@@ -15,7 +15,7 @@ PARALLEL_UPDATES: int
|
|
|
15
15
|
@dataclass(frozen=True, kw_only=True)
|
|
16
16
|
class AmazonSwitchEntityDescription(SwitchEntityDescription):
|
|
17
17
|
is_on_fn: Callable[[AmazonDevice], bool]
|
|
18
|
-
|
|
18
|
+
is_available_fn: Callable[[AmazonDevice, str], bool] = ...
|
|
19
19
|
method: str
|
|
20
20
|
|
|
21
21
|
SWITCHES: Final[Incomplete]
|
|
@@ -30,3 +30,5 @@ class AmazonSwitchEntity(AmazonEntity, SwitchEntity):
|
|
|
30
30
|
async def async_turn_off(self, **kwargs: Any) -> None: ...
|
|
31
31
|
@property
|
|
32
32
|
def is_on(self) -> bool: ...
|
|
33
|
+
@property
|
|
34
|
+
def available(self) -> bool: ...
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
from .const import DOMAIN as DOMAIN
|
|
1
|
+
from .const import DOMAIN as DOMAIN, _LOGGER as _LOGGER
|
|
2
|
+
from .coordinator import AmazonDevicesCoordinator as AmazonDevicesCoordinator
|
|
2
3
|
from .entity import AmazonEntity as AmazonEntity
|
|
3
4
|
from collections.abc import Awaitable, Callable as Callable, Coroutine
|
|
5
|
+
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
4
6
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
|
5
7
|
from typing import Any, Concatenate
|
|
6
8
|
|
|
7
9
|
def alexa_api_call[_T: AmazonEntity, **_P](func: Callable[Concatenate[_T, _P], Awaitable[None]]) -> Callable[Concatenate[_T, _P], Coroutine[Any, Any, None]]: ...
|
|
10
|
+
async def async_update_unique_id(hass: HomeAssistant, coordinator: AmazonDevicesCoordinator, domain: str, old_key: str, new_key: str) -> None: ...
|
|
@@ -170,7 +170,7 @@ class PipelineRun:
|
|
|
170
170
|
async def _speech_to_text_stream(self, audio_stream: AsyncIterable[EnhancedAudioChunk], stt_vad: VoiceCommandSegmenter | None, sample_rate: int = ..., sample_width: int = ...) -> AsyncGenerator[bytes]: ...
|
|
171
171
|
async def prepare_recognize_intent(self, session: chat_session.ChatSession) -> None: ...
|
|
172
172
|
async def recognize_intent(self, intent_input: str, conversation_id: str, conversation_extra_system_prompt: str | None) -> tuple[str, bool]: ...
|
|
173
|
-
def _get_all_targets_in_satellite_area(self, intent_response: intent.IntentResponse, device_id: str | None) -> bool: ...
|
|
173
|
+
def _get_all_targets_in_satellite_area(self, intent_response: intent.IntentResponse, satellite_id: str | None, device_id: str | None) -> bool: ...
|
|
174
174
|
async def prepare_text_to_speech(self) -> None: ...
|
|
175
175
|
async def text_to_speech(self, tts_input: str, override_media_path: Path | None = None) -> None: ...
|
|
176
176
|
def _capture_chunk(self, audio_bytes: bytes | None) -> None: ...
|
|
@@ -10,7 +10,8 @@ from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
|
|
10
10
|
from typing import Any
|
|
11
11
|
|
|
12
12
|
DEFAULT_HOST: str
|
|
13
|
-
DEFAULT_PIN:
|
|
13
|
+
DEFAULT_PIN: str
|
|
14
|
+
pin_regex: str
|
|
14
15
|
USER_SCHEMA: Incomplete
|
|
15
16
|
STEP_REAUTH_DATA_SCHEMA: Incomplete
|
|
16
17
|
STEP_RECONFIGURE: Incomplete
|
|
@@ -8,7 +8,7 @@ from homeassistant.const import EVENT_HOMEASSISTANT_STOP as EVENT_HOMEASSISTANT_
|
|
|
8
8
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
9
9
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed
|
|
10
10
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
|
11
|
-
from pylamarzocco import LaMarzoccoMachine as LaMarzoccoMachine
|
|
11
|
+
from pylamarzocco import LaMarzoccoCloudClient as LaMarzoccoCloudClient, LaMarzoccoMachine as LaMarzoccoMachine
|
|
12
12
|
|
|
13
13
|
SCAN_INTERVAL: Incomplete
|
|
14
14
|
SETTINGS_UPDATE_INTERVAL: Incomplete
|
|
@@ -29,12 +29,14 @@ class LaMarzoccoUpdateCoordinator(DataUpdateCoordinator[None], metaclass=abc.ABC
|
|
|
29
29
|
config_entry: LaMarzoccoConfigEntry
|
|
30
30
|
websocket_terminated: bool
|
|
31
31
|
device: Incomplete
|
|
32
|
-
|
|
32
|
+
cloud_client: Incomplete
|
|
33
|
+
def __init__(self, hass: HomeAssistant, entry: LaMarzoccoConfigEntry, device: LaMarzoccoMachine, cloud_client: LaMarzoccoCloudClient | None = None) -> None: ...
|
|
33
34
|
async def _async_update_data(self) -> None: ...
|
|
34
35
|
@abstractmethod
|
|
35
36
|
async def _internal_async_update_data(self) -> None: ...
|
|
36
37
|
|
|
37
38
|
class LaMarzoccoConfigUpdateCoordinator(LaMarzoccoUpdateCoordinator):
|
|
39
|
+
cloud_client: LaMarzoccoCloudClient
|
|
38
40
|
async def _internal_async_update_data(self) -> None: ...
|
|
39
41
|
websocket_terminated: bool
|
|
40
42
|
async def connect_websocket(self) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from .coordinator import PortainerCoordinator as PortainerCoordinator
|
|
2
2
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
3
|
-
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, CONF_HOST as CONF_HOST, Platform as Platform
|
|
3
|
+
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, CONF_HOST as CONF_HOST, CONF_VERIFY_SSL as CONF_VERIFY_SSL, Platform as Platform
|
|
4
4
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
5
5
|
from homeassistant.helpers.aiohttp_client import async_create_clientsession as async_create_clientsession
|
|
6
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from .const import DOMAIN as DOMAIN
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
|
4
|
-
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, CONF_HOST as CONF_HOST
|
|
4
|
+
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, CONF_HOST as CONF_HOST, CONF_VERIFY_SSL as CONF_VERIFY_SSL
|
|
5
5
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
6
6
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
|
7
7
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
{homeassistant_stubs-2025.10.0b1.dist-info → homeassistant_stubs-2025.10.0b4.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant-stubs
|
|
3
|
-
Version: 2025.10.
|
|
3
|
+
Version: 2025.10.0b4
|
|
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.10.
|
|
21
|
+
Requires-Dist: homeassistant==2025.10.0b4
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.10.0b1.dist-info → homeassistant_stubs-2025.10.0b4.dist-info}/RECORD
RENAMED
|
@@ -128,13 +128,13 @@ homeassistant-stubs/components/airnow/const.pyi,sha256=rX_khNx6wroEZR4basTAks2nx
|
|
|
128
128
|
homeassistant-stubs/components/airnow/coordinator.pyi,sha256=dGmNygoi7QTcUL534j9a5VsB3KJNAQwopIsHgt-llEI,1665
|
|
129
129
|
homeassistant-stubs/components/airnow/diagnostics.pyi,sha256=qWMf618PHzSDWEI6q0k8RJHvWVMnHMswnK-JK2FZqW0,679
|
|
130
130
|
homeassistant-stubs/components/airnow/sensor.pyi,sha256=7dLDt9RasAT6UnGbXc5xlDvzXnohGN8IRtCZhCMNOWY,2872
|
|
131
|
-
homeassistant-stubs/components/airos/__init__.pyi,sha256=
|
|
131
|
+
homeassistant-stubs/components/airos/__init__.pyi,sha256=oL2ej-zCgkS-wDvOWYLxTCsahzu1hzXXzoCdq_3DV8E,918
|
|
132
132
|
homeassistant-stubs/components/airos/binary_sensor.pyi,sha256=QMSZGipzbTET7KA8j6pJNMyR_7btv6aW7GRAAqoWz9Q,1491
|
|
133
|
-
homeassistant-stubs/components/airos/config_flow.pyi,sha256=
|
|
134
|
-
homeassistant-stubs/components/airos/const.pyi,sha256=
|
|
133
|
+
homeassistant-stubs/components/airos/config_flow.pyi,sha256=U9xZReK3Hxwq94i7CuizBLgYM39uF-JDU0aq2whBDf4,951
|
|
134
|
+
homeassistant-stubs/components/airos/const.pyi,sha256=t5La-Z4zHZt3GiE4USWLexpRQgIV3JvRbc7rIDPSvwI,164
|
|
135
135
|
homeassistant-stubs/components/airos/coordinator.pyi,sha256=ASdWeUznPrWlk9zwhk19PnGb-aFyrtfjuCdsmJ3sOTI,877
|
|
136
136
|
homeassistant-stubs/components/airos/diagnostics.pyi,sha256=X6yl1ajfXkRpnY5azf-1d-5uenWhSvnmdlIkIhMWjIM,568
|
|
137
|
-
homeassistant-stubs/components/airos/entity.pyi,sha256=
|
|
137
|
+
homeassistant-stubs/components/airos/entity.pyi,sha256=p-h7-B5sP7rAie_w4nXA3LhlCeREx9e63Xq6znjyE38,741
|
|
138
138
|
homeassistant-stubs/components/airos/sensor.pyi,sha256=SLR9xdLe4Kc4XGlqLdJHLwJEsrXmD5QLrqQ3AXJzOME,1786
|
|
139
139
|
homeassistant-stubs/components/airq/__init__.pyi,sha256=HXLzxyo_6EfcC1p_PGD66G09SzQ_hJ2WurZGon_jybI,675
|
|
140
140
|
homeassistant-stubs/components/airq/config_flow.pyi,sha256=W3GTorDKA5L0l1vdT_oyAOarSaiKDIR6BF2Wikgnhq8,1166
|
|
@@ -230,17 +230,17 @@ homeassistant-stubs/components/alexa/resources.pyi,sha256=xMQBaxEGbaPEoshHfFP63Y
|
|
|
230
230
|
homeassistant-stubs/components/alexa/smart_home.pyi,sha256=RmHUf67v2P6JgBBMf6YQ9qtbUVV-SrgWyW0TbhhjPtk,2615
|
|
231
231
|
homeassistant-stubs/components/alexa/state_report.pyi,sha256=z6l9miD598LoKEdlMP2dQ-CtR5PYe3aZNTY4pxXWUvI,3567
|
|
232
232
|
homeassistant-stubs/components/alexa_devices/__init__.pyi,sha256=Jsp7aJCK7AUufTXp8IcOROGeUwWuRbTDToZvmJaW-LQ,1041
|
|
233
|
-
homeassistant-stubs/components/alexa_devices/binary_sensor.pyi,sha256=
|
|
233
|
+
homeassistant-stubs/components/alexa_devices/binary_sensor.pyi,sha256=FJSCTHgpi2nmrzeZuW5orX5he_HeEL6-nGbzXhfN3p4,1544
|
|
234
234
|
homeassistant-stubs/components/alexa_devices/config_flow.pyi,sha256=a7VQKF_45mfsJZwPaNUJe806sGTSsRWMJtFseuxnegs,1193
|
|
235
235
|
homeassistant-stubs/components/alexa_devices/const.pyi,sha256=GhMOGYFBllOq4hNVAWMXsSMahHd6nhe87hIh0jFYQ9U,150
|
|
236
236
|
homeassistant-stubs/components/alexa_devices/coordinator.pyi,sha256=cLxfRH6LHjygPLcP_ooVj7dcZ1OhY220vrVld_CsJ2I,1175
|
|
237
237
|
homeassistant-stubs/components/alexa_devices/diagnostics.pyi,sha256=bRYiRMxTdgbGeSTQw0w0S91vwU2sCBuBNfHvyt_mgug,870
|
|
238
238
|
homeassistant-stubs/components/alexa_devices/entity.pyi,sha256=1oxFqfyw52JjClztThBJdtXj2BeC3_KWt0YPhsgiHrQ,914
|
|
239
239
|
homeassistant-stubs/components/alexa_devices/notify.pyi,sha256=JDU6BbYvy7NlK41ivzAJz0CDDJpr5M-2OJk858PK5M4,1391
|
|
240
|
-
homeassistant-stubs/components/alexa_devices/sensor.pyi,sha256=
|
|
240
|
+
homeassistant-stubs/components/alexa_devices/sensor.pyi,sha256=CT7ZUCRmM_UIZJ-AqL-i0WV2znUYuNzuL7PPXS2T69o,1587
|
|
241
241
|
homeassistant-stubs/components/alexa_devices/services.pyi,sha256=vWmwhrzZApfI3kut_KaZ0_x-Rv9rdm5YjCUphhhFzvY,1101
|
|
242
|
-
homeassistant-stubs/components/alexa_devices/switch.pyi,sha256=
|
|
243
|
-
homeassistant-stubs/components/alexa_devices/utils.pyi,sha256=
|
|
242
|
+
homeassistant-stubs/components/alexa_devices/switch.pyi,sha256=zCfiXdTWTAZwyWDuWqEvf_O3aFTvJgUqvba9sOsc1aA,1559
|
|
243
|
+
homeassistant-stubs/components/alexa_devices/utils.pyi,sha256=uqLUIIFUjthIYtFwgZ_lRgRsQ8B89Dd8faRI1RLC7mQ,740
|
|
244
244
|
homeassistant-stubs/components/alpha_vantage/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
245
|
homeassistant-stubs/components/alpha_vantage/sensor.pyi,sha256=lOIgbkISKtkxyu3EjpM5U-Scxr95BYt2_fQcjPrFoiI,2057
|
|
246
246
|
homeassistant-stubs/components/altruist/__init__.pyi,sha256=LW3DTatWSeke8R-9AYSMXuGc3LCpRpZ-ZCjr2PW0yvY,485
|
|
@@ -392,7 +392,7 @@ homeassistant-stubs/components/assist_pipeline/audio_enhancer.pyi,sha256=U04uNkb
|
|
|
392
392
|
homeassistant-stubs/components/assist_pipeline/const.pyi,sha256=SxS8IE9AxjTlWKowPzJoL7xMel9Vqn_YUm-tcRfkyjg,433
|
|
393
393
|
homeassistant-stubs/components/assist_pipeline/error.pyi,sha256=8PZnUHaKp95F74EGoO3POchwfWlji1__j3hsZw3J0ZY,758
|
|
394
394
|
homeassistant-stubs/components/assist_pipeline/logbook.pyi,sha256=10d5VuYbLUczRndYg5COrsPFA39MT_l8w9lA8v6DrlY,576
|
|
395
|
-
homeassistant-stubs/components/assist_pipeline/pipeline.pyi,sha256=
|
|
395
|
+
homeassistant-stubs/components/assist_pipeline/pipeline.pyi,sha256=zXg8VmFi_UrO4PO3DRYtrHtxnWpkQPwf5rJr8pXptnM,14717
|
|
396
396
|
homeassistant-stubs/components/assist_pipeline/repair_flows.pyi,sha256=aOeJnI004cdt7Oz2YbozaJwXZDdFN7jcJTW1I70aUJw,551
|
|
397
397
|
homeassistant-stubs/components/assist_pipeline/ring_buffer.pyi,sha256=1MPTjcDWoqLB9hXcK7EL1uZP4V3F-D7wklgvXj_DD7U,386
|
|
398
398
|
homeassistant-stubs/components/assist_pipeline/select.pyi,sha256=pt9iX3-6Hmqga2LL4EMImwoTRS5PnH8J-q6S6agmprE,2045
|
|
@@ -716,7 +716,7 @@ homeassistant-stubs/components/comelit/__init__.pyi,sha256=qTzpz0Z-YY7M0JuPQCuP9
|
|
|
716
716
|
homeassistant-stubs/components/comelit/alarm_control_panel.pyi,sha256=rd_NJ9ugnaW0N487oxYEkR8gjE5qQTTL9m7b7DNVTnI,2186
|
|
717
717
|
homeassistant-stubs/components/comelit/binary_sensor.pyi,sha256=Oa5sgHlSjKWn-fkBlGqzf51zuRcarpGzt87xXezxkfU,1223
|
|
718
718
|
homeassistant-stubs/components/comelit/climate.pyi,sha256=TwGY5jF1y4qAcARFeziYgC6ZwQAP40_EPSNgKaCivHA,2897
|
|
719
|
-
homeassistant-stubs/components/comelit/config_flow.pyi,sha256=
|
|
719
|
+
homeassistant-stubs/components/comelit/config_flow.pyi,sha256=7gWhRdJGt-VbtnmoyWT1Mpctp1heaj1sitwATqfLxyM,1524
|
|
720
720
|
homeassistant-stubs/components/comelit/const.pyi,sha256=68XCXVJzguitQoAa-nSlawaM1xsD7BrksqXkiD-QoVI,212
|
|
721
721
|
homeassistant-stubs/components/comelit/coordinator.pyi,sha256=Jxbc7WhsNzMLz92CIm_x145wWAK56q5iUWgFg0kVkRw,2507
|
|
722
722
|
homeassistant-stubs/components/comelit/cover.pyi,sha256=xlS-o9HSmtv5iTwKorK91Nd5ONEMEC2w-3fAWZ7HlXc,1855
|
|
@@ -1965,7 +1965,7 @@ homeassistant-stubs/components/lamarzocco/button.pyi,sha256=YIZhYTrzngychn-qLCkE
|
|
|
1965
1965
|
homeassistant-stubs/components/lamarzocco/calendar.pyi,sha256=jEdURhOrkdDHVetk1doAwRLSbW6EOQu7_AFxteuDKps,1562
|
|
1966
1966
|
homeassistant-stubs/components/lamarzocco/config_flow.pyi,sha256=BAvg6BylDjOYETqIdLZmczwT4Qgypw7mCfd8-tJ96iI,3006
|
|
1967
1967
|
homeassistant-stubs/components/lamarzocco/const.pyi,sha256=wDBro7yJIt05CCM9uum4uVPsVBmmRZHfR5rbW5Qlme8,110
|
|
1968
|
-
homeassistant-stubs/components/lamarzocco/coordinator.pyi,sha256=
|
|
1968
|
+
homeassistant-stubs/components/lamarzocco/coordinator.pyi,sha256=g_zzvYeGrfjAAaZMkiNI1uYb2ZYZmircmNLHiXPnRxc,2581
|
|
1969
1969
|
homeassistant-stubs/components/lamarzocco/diagnostics.pyi,sha256=lSbaEGL6AmPpko_DpvVizn457ne-mGyxTfRgxa-MCb0,560
|
|
1970
1970
|
homeassistant-stubs/components/lamarzocco/entity.pyi,sha256=QjUT1oIGLemgmHy-A2aIPklHV4IGe7CbKapMB3bCkj4,1526
|
|
1971
1971
|
homeassistant-stubs/components/lamarzocco/number.pyi,sha256=UjX5bhGG-2nEg8VT3olMFYgJ6GssEL_66PhjfG_m0Ts,1794
|
|
@@ -2851,9 +2851,9 @@ homeassistant-stubs/components/plugwise/select.pyi,sha256=f8p7CmDe7RWEd5N4sYz4H7
|
|
|
2851
2851
|
homeassistant-stubs/components/plugwise/sensor.pyi,sha256=OFW-IY8iQJVkRbCNAJfrPSjSyb40WCoBp5F25uF8VOs,1764
|
|
2852
2852
|
homeassistant-stubs/components/plugwise/switch.pyi,sha256=6JFLOjJ1TS2-whjGiRZByS5_G8PHr1k1hlLc3IQ4nR0,1650
|
|
2853
2853
|
homeassistant-stubs/components/plugwise/util.pyi,sha256=k4W0cZg-O5mSeA6xHSxZXllijyH0imxxRSILuSmWG8I,483
|
|
2854
|
-
homeassistant-stubs/components/portainer/__init__.pyi,sha256=
|
|
2854
|
+
homeassistant-stubs/components/portainer/__init__.pyi,sha256=B6PPcUp6XTUPx1KSyp67J_eV1A5T0NUapQMomTwj2I0,723
|
|
2855
2855
|
homeassistant-stubs/components/portainer/binary_sensor.pyi,sha256=WmLKNT4wO5kPWrt2uLgiTzJzf60VzOy6wQ0SW-3dvmk,2331
|
|
2856
|
-
homeassistant-stubs/components/portainer/config_flow.pyi,sha256=
|
|
2856
|
+
homeassistant-stubs/components/portainer/config_flow.pyi,sha256=NZOb6yrffyM56TZy7R9PA07EvaZTVR0jGVq02Na2X_c,990
|
|
2857
2857
|
homeassistant-stubs/components/portainer/const.pyi,sha256=GUjLBWcBKp58UXKseU8bAlTgvrsXsy4IbLhEhapURAU,30
|
|
2858
2858
|
homeassistant-stubs/components/portainer/coordinator.pyi,sha256=AtApToR08zV7wkjfr2ZNtanIQ1J2ALtJU7SljyL1MdI,1376
|
|
2859
2859
|
homeassistant-stubs/components/portainer/entity.pyi,sha256=sArWMr_WIuk2Ih5gO_229BEFOmcpzCHyeiAFNtIkkvA,1147
|
|
@@ -4447,7 +4447,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4447
4447
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4448
4448
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4449
4449
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4450
|
-
homeassistant_stubs-2025.10.
|
|
4451
|
-
homeassistant_stubs-2025.10.
|
|
4452
|
-
homeassistant_stubs-2025.10.
|
|
4453
|
-
homeassistant_stubs-2025.10.
|
|
4450
|
+
homeassistant_stubs-2025.10.0b4.dist-info/METADATA,sha256=kqIeNAx9etSxo0Jpn62UwgdhHfgxLPSXyLizHo6iDLs,2954
|
|
4451
|
+
homeassistant_stubs-2025.10.0b4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4452
|
+
homeassistant_stubs-2025.10.0b4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4453
|
+
homeassistant_stubs-2025.10.0b4.dist-info/RECORD,,
|
{homeassistant_stubs-2025.10.0b1.dist-info → homeassistant_stubs-2025.10.0b4.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|