homeassistant-stubs 2025.7.1__py3-none-any.whl → 2025.7.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.
- homeassistant-stubs/components/home_connect/coordinator.pyi +2 -2
- homeassistant-stubs/components/immich/update.pyi +1 -1
- homeassistant-stubs/components/lamarzocco/__init__.pyi +1 -1
- homeassistant-stubs/components/lamarzocco/config_flow.pyi +1 -1
- homeassistant-stubs/components/miele/config_flow.pyi +0 -2
- homeassistant-stubs/components/mqtt/entity.pyi +2 -1
- {homeassistant_stubs-2025.7.1.dist-info → homeassistant_stubs-2025.7.2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.7.1.dist-info → homeassistant_stubs-2025.7.2.dist-info}/RECORD +10 -10
- {homeassistant_stubs-2025.7.1.dist-info → homeassistant_stubs-2025.7.2.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.7.1.dist-info → homeassistant_stubs-2025.7.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
from .const import API_DEFAULT_RETRY_AFTER as API_DEFAULT_RETRY_AFTER, APPLIANCES_WITH_PROGRAMS as APPLIANCES_WITH_PROGRAMS, DOMAIN as DOMAIN
|
|
1
|
+
from .const import API_DEFAULT_RETRY_AFTER as API_DEFAULT_RETRY_AFTER, APPLIANCES_WITH_PROGRAMS as APPLIANCES_WITH_PROGRAMS, BSH_OPERATION_STATE_PAUSE as BSH_OPERATION_STATE_PAUSE, DOMAIN as DOMAIN
|
|
2
2
|
from .utils import get_dict_from_home_connect_error as get_dict_from_home_connect_error
|
|
3
3
|
from _typeshed import Incomplete
|
|
4
4
|
from aiohomeconnect.client import Client as HomeConnectClient
|
|
5
|
-
from aiohomeconnect.model import CommandKey
|
|
5
|
+
from aiohomeconnect.model import CommandKey, Event, EventKey, EventMessage as EventMessage, GetSetting, HomeAppliance as HomeAppliance, OptionKey as OptionKey, ProgramKey, SettingKey, Status, StatusKey
|
|
6
6
|
from aiohomeconnect.model.program import EnumerateProgram as EnumerateProgram, ProgramDefinitionOption as ProgramDefinitionOption
|
|
7
7
|
from collections.abc import Callable as Callable
|
|
8
8
|
from dataclasses import dataclass
|
|
@@ -16,6 +16,6 @@ class ImmichUpdateEntity(ImmichEntity, UpdateEntity):
|
|
|
16
16
|
@property
|
|
17
17
|
def installed_version(self) -> str: ...
|
|
18
18
|
@property
|
|
19
|
-
def latest_version(self) -> str: ...
|
|
19
|
+
def latest_version(self) -> str | None: ...
|
|
20
20
|
@property
|
|
21
21
|
def release_url(self) -> str | None: ...
|
|
@@ -5,7 +5,7 @@ from homeassistant.components.bluetooth import async_discovered_service_info as
|
|
|
5
5
|
from homeassistant.const import CONF_MAC as CONF_MAC, CONF_PASSWORD as CONF_PASSWORD, CONF_TOKEN as CONF_TOKEN, CONF_USERNAME as CONF_USERNAME, Platform as Platform
|
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
7
7
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady
|
|
8
|
-
from homeassistant.helpers.aiohttp_client import
|
|
8
|
+
from homeassistant.helpers.aiohttp_client import async_create_clientsession as async_create_clientsession
|
|
9
9
|
|
|
10
10
|
PLATFORMS: Incomplete
|
|
11
11
|
BT_MODEL_PREFIXES: Incomplete
|
|
@@ -7,7 +7,7 @@ from homeassistant.components.bluetooth import BluetoothServiceInfo as Bluetooth
|
|
|
7
7
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, OptionsFlow as OptionsFlow, SOURCE_REAUTH as SOURCE_REAUTH, SOURCE_RECONFIGURE as SOURCE_RECONFIGURE
|
|
8
8
|
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS, CONF_MAC as CONF_MAC, CONF_NAME as CONF_NAME, CONF_PASSWORD as CONF_PASSWORD, CONF_TOKEN as CONF_TOKEN, CONF_USERNAME as CONF_USERNAME
|
|
9
9
|
from homeassistant.core import callback as callback
|
|
10
|
-
from homeassistant.helpers.aiohttp_client import
|
|
10
|
+
from homeassistant.helpers.aiohttp_client import async_create_clientsession as async_create_clientsession
|
|
11
11
|
from homeassistant.helpers.selector import SelectOptionDict as SelectOptionDict, SelectSelector as SelectSelector, SelectSelectorConfig as SelectSelectorConfig, SelectSelectorMode as SelectSelectorMode, TextSelector as TextSelector, TextSelectorConfig as TextSelectorConfig, TextSelectorType as TextSelectorType
|
|
12
12
|
from homeassistant.helpers.service_info.dhcp import DhcpServiceInfo as DhcpServiceInfo
|
|
13
13
|
from pylamarzocco.models import Thing as Thing
|
|
@@ -9,8 +9,6 @@ class OAuth2FlowHandler(config_entry_oauth2_flow.AbstractOAuth2FlowHandler, doma
|
|
|
9
9
|
DOMAIN = DOMAIN
|
|
10
10
|
@property
|
|
11
11
|
def logger(self) -> logging.Logger: ...
|
|
12
|
-
@property
|
|
13
|
-
def extra_authorize_data(self) -> dict: ...
|
|
14
12
|
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> ConfigFlowResult: ...
|
|
15
13
|
async def async_step_reauth_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
16
14
|
async def async_step_reconfigure(self, user_input: Mapping[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -41,7 +41,6 @@ class _SetupNonEntityHelperCallbackProtocol(Protocol):
|
|
|
41
41
|
def async_setup_non_entity_entry_helper(hass: HomeAssistant, domain: str, async_setup: _SetupNonEntityHelperCallbackProtocol, discovery_schema: vol.Schema) -> None: ...
|
|
42
42
|
@callback
|
|
43
43
|
def async_setup_entity_entry_helper(hass: HomeAssistant, entry: ConfigEntry, entity_class: type[MqttEntity] | None, domain: str, async_add_entities: AddConfigEntryEntitiesCallback, discovery_schema: VolSchemaType, platform_schema_modern: VolSchemaType, schema_class_mapping: dict[str, type[MqttEntity]] | None = None) -> None: ...
|
|
44
|
-
def init_entity_id_from_config(hass: HomeAssistant, entity: Entity, config: ConfigType, entity_id_format: str) -> None: ...
|
|
45
44
|
|
|
46
45
|
class MqttAttributesMixin(Entity):
|
|
47
46
|
_attributes_extra_blocked: frozenset[str]
|
|
@@ -154,6 +153,7 @@ class MqttEntity(MqttAttributesMixin, MqttAvailabilityMixin, MqttDiscoveryUpdate
|
|
|
154
153
|
_attr_should_poll: bool
|
|
155
154
|
_default_name: str | None
|
|
156
155
|
_entity_id_format: str
|
|
156
|
+
_update_registry_entity_id: str | None
|
|
157
157
|
hass: Incomplete
|
|
158
158
|
_config: ConfigType
|
|
159
159
|
_attr_unique_id: Incomplete
|
|
@@ -161,6 +161,7 @@ class MqttEntity(MqttAttributesMixin, MqttAvailabilityMixin, MqttDiscoveryUpdate
|
|
|
161
161
|
_discovery: Incomplete
|
|
162
162
|
_subscriptions: dict[str, dict[str, Any]]
|
|
163
163
|
def __init__(self, hass: HomeAssistant, config: ConfigType, config_entry: ConfigEntry, discovery_data: DiscoveryInfoType | None) -> None: ...
|
|
164
|
+
entity_id: Incomplete
|
|
164
165
|
def _init_entity_id(self) -> None: ...
|
|
165
166
|
@final
|
|
166
167
|
async def async_added_to_hass(self) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant-stubs
|
|
3
|
-
Version: 2025.7.
|
|
3
|
+
Version: 2025.7.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.7.
|
|
21
|
+
Requires-Dist: homeassistant==2025.7.2
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
|
@@ -1485,7 +1485,7 @@ homeassistant-stubs/components/home_connect/button.pyi,sha256=PyxGz72Sg-m3F6zSSi
|
|
|
1485
1485
|
homeassistant-stubs/components/home_connect/common.pyi,sha256=DdXLnrGG35ZIj1RKm0hnwJ8mx5x0Id1bRkrqF5V6j5Q,1821
|
|
1486
1486
|
homeassistant-stubs/components/home_connect/config_flow.pyi,sha256=5pLNqFqwBtdhO551JbUtYfe8yPIHo82SV74iPLq0Gg0,971
|
|
1487
1487
|
homeassistant-stubs/components/home_connect/const.pyi,sha256=R41D3aBIKtzZJcuj1yvzc88zlI2pVz-thaPVsVsgCSw,1841
|
|
1488
|
-
homeassistant-stubs/components/home_connect/coordinator.pyi,sha256=
|
|
1488
|
+
homeassistant-stubs/components/home_connect/coordinator.pyi,sha256=7yw3r40F1gFKa1lyM45W7lj8RqEL4_GgZ_L1k9A9wHg,3813
|
|
1489
1489
|
homeassistant-stubs/components/home_connect/diagnostics.pyi,sha256=tBL2rTbMBRjQZ1lIiVbwP5RWwyX50EpBY8KgHkJPl3Y,830
|
|
1490
1490
|
homeassistant-stubs/components/home_connect/entity.pyi,sha256=uP3OsGgXAozLXcD01hfMSZow9cE5N2iSuH3AIv8mhcI,2257
|
|
1491
1491
|
homeassistant-stubs/components/home_connect/light.pyi,sha256=sRHKlKW_XD-4ffCGiGBhmUhRJp3gMmvHtd16DfHLDsI,2692
|
|
@@ -1725,7 +1725,7 @@ homeassistant-stubs/components/immich/diagnostics.pyi,sha256=2naxv4sr-CIZkYoMDMr
|
|
|
1725
1725
|
homeassistant-stubs/components/immich/entity.pyi,sha256=smKVUpxwCFqrEtTIeF8EeT0K2EHqVFxLRsGZ-rBz3_4,569
|
|
1726
1726
|
homeassistant-stubs/components/immich/media_source.pyi,sha256=gmW4VJDw8HLKI2uv5qj1zWSMq6L6BCkzyfsJ6inBvNA,1851
|
|
1727
1727
|
homeassistant-stubs/components/immich/sensor.pyi,sha256=wteHVUeJkSSdDg1O1pPdaDdrilTIRq18Hynorpu5Uhw,1597
|
|
1728
|
-
homeassistant-stubs/components/immich/update.pyi,sha256=
|
|
1728
|
+
homeassistant-stubs/components/immich/update.pyi,sha256=s0xp_FBIPcY7I6ABVhq5STqxriwErv3khEwtm-Z_e3Q,995
|
|
1729
1729
|
homeassistant-stubs/components/incomfort/__init__.pyi,sha256=t-qYUVvZc1FU1wPoPoLKMmoeOQQTIXzkZKrtoFW2lYI,1089
|
|
1730
1730
|
homeassistant-stubs/components/incomfort/binary_sensor.pyi,sha256=A3d8TjIYE4Zf25KSRgh8ldtAId7MDolW_Mnov7suuSM,1780
|
|
1731
1731
|
homeassistant-stubs/components/incomfort/climate.pyi,sha256=aVdgQAgkXE0nZI_Qq3yAIEoh_c3Aj2QJTnRQw1bFMs4,2111
|
|
@@ -1913,11 +1913,11 @@ homeassistant-stubs/components/lacrosse_view/const.pyi,sha256=ChYodyT8Y7q3layvRg
|
|
|
1913
1913
|
homeassistant-stubs/components/lacrosse_view/coordinator.pyi,sha256=8IFGT7IQXKAjkJ_Q6D0FbO1yFavZOQKrBtbYh5zfVkA,1023
|
|
1914
1914
|
homeassistant-stubs/components/lacrosse_view/diagnostics.pyi,sha256=1x5EtGBM9L3IIgUhfr0wMjv2aPSyTyR3kgiiOOb1i60,510
|
|
1915
1915
|
homeassistant-stubs/components/lacrosse_view/sensor.pyi,sha256=X1C5YHLlWk1uHYYt7acIZ8pb44s9k_tJzJ0H4SSVBnk,2135
|
|
1916
|
-
homeassistant-stubs/components/lamarzocco/__init__.pyi,sha256=
|
|
1916
|
+
homeassistant-stubs/components/lamarzocco/__init__.pyi,sha256=OR2hYRgT-bGbdmW-Gl-mSiRDBwQC7CTm_G4iAseLrvQ,1459
|
|
1917
1917
|
homeassistant-stubs/components/lamarzocco/binary_sensor.pyi,sha256=-Q3ORdfrpcPyoOocN7tdHTZ2aQJHXKZJZC7gkKtKnbM,1413
|
|
1918
1918
|
homeassistant-stubs/components/lamarzocco/button.pyi,sha256=YIZhYTrzngychn-qLCkEEPchq0118acXEv0BIj3j9Bo,1513
|
|
1919
1919
|
homeassistant-stubs/components/lamarzocco/calendar.pyi,sha256=jEdURhOrkdDHVetk1doAwRLSbW6EOQu7_AFxteuDKps,1562
|
|
1920
|
-
homeassistant-stubs/components/lamarzocco/config_flow.pyi,sha256=
|
|
1920
|
+
homeassistant-stubs/components/lamarzocco/config_flow.pyi,sha256=0004OsqjCk5v6eOv3MTycIWNXaqO6uIuDPB14YdnnRY,2869
|
|
1921
1921
|
homeassistant-stubs/components/lamarzocco/const.pyi,sha256=JcSuOBLJ3ncDIlIGkD7hJa2JZ9napMLJQI7ku_jVoN0,76
|
|
1922
1922
|
homeassistant-stubs/components/lamarzocco/coordinator.pyi,sha256=5hhguTAYBkhNyGWnsT64Aj0i4jVD6w_FVFbsLpRAV_U,2413
|
|
1923
1923
|
homeassistant-stubs/components/lamarzocco/diagnostics.pyi,sha256=lSbaEGL6AmPpko_DpvVizn457ne-mGyxTfRgxa-MCb0,560
|
|
@@ -2236,7 +2236,7 @@ homeassistant-stubs/components/miele/application_credentials.pyi,sha256=Gmvn3dEU
|
|
|
2236
2236
|
homeassistant-stubs/components/miele/binary_sensor.pyi,sha256=5putYVuVzIMCaaqfrCOVuQBaPjrTI7U07pcTOVE4IrE,1574
|
|
2237
2237
|
homeassistant-stubs/components/miele/button.pyi,sha256=GF_fbEC9v-oT24X9Ht9UXKxCkwEFZsS3Jq2B2p4-jR8,1393
|
|
2238
2238
|
homeassistant-stubs/components/miele/climate.pyi,sha256=DfRSG6iQyCol7yeilXjn1WawT5O_gqhVT1GJX7znd24,2648
|
|
2239
|
-
homeassistant-stubs/components/miele/config_flow.pyi,sha256=
|
|
2239
|
+
homeassistant-stubs/components/miele/config_flow.pyi,sha256=lRwke0ymW0DZIugt_cN68S10M7Bu8JlTs5mndGv9Re0,922
|
|
2240
2240
|
homeassistant-stubs/components/miele/const.pyi,sha256=n1FjSoAXup0SpJaEJZl-WYwZnzSXD7D7RLCeC8smSf0,3639
|
|
2241
2241
|
homeassistant-stubs/components/miele/coordinator.pyi,sha256=H50BiJq5snmuzphkovLigCR0ke8UQJvkcwrU_A9exhE,1374
|
|
2242
2242
|
homeassistant-stubs/components/miele/diagnostics.pyi,sha256=6OC75uoLx_ThOr5dpU_XJaMS6Xu6dhNgv6v889o7pQ0,739
|
|
@@ -2338,7 +2338,7 @@ homeassistant-stubs/components/mqtt/device_tracker.pyi,sha256=VzxAmPD_8t4SshZY9O
|
|
|
2338
2338
|
homeassistant-stubs/components/mqtt/device_trigger.pyi,sha256=38Y4xsYlpkaZKE-0vcV0mXlL4Yijg1WZxaAKVrLI48I,3735
|
|
2339
2339
|
homeassistant-stubs/components/mqtt/diagnostics.pyi,sha256=EqYi_zyaQXTI5Tf9l-jojhNligQJfzIR2HM-c6c5l0c,1247
|
|
2340
2340
|
homeassistant-stubs/components/mqtt/discovery.pyi,sha256=cmkvgKf3bgG8uWsH--IIa6igtaeSjfx5dqAna866cxc,4388
|
|
2341
|
-
homeassistant-stubs/components/mqtt/entity.pyi,sha256=
|
|
2341
|
+
homeassistant-stubs/components/mqtt/entity.pyi,sha256=c8IkkWdjibekYw048ffdwvYpE8drhXmOqUvYAQxI05Q,14439
|
|
2342
2342
|
homeassistant-stubs/components/mqtt/event.pyi,sha256=kiX4RscCazbiJ2X0HMD044QNPD9DhXg9Bg3rx4GPtQg,2707
|
|
2343
2343
|
homeassistant-stubs/components/mqtt/fan.pyi,sha256=hn7pMVG-gZlgSVOrnNNSFHtmJFy0ipnYFWPTQ_D63Ok,6584
|
|
2344
2344
|
homeassistant-stubs/components/mqtt/humidifier.pyi,sha256=Hv8Vne29qOo0hP3EL5tLbUi5Mx_oocMr9spV1rsogQw,5178
|
|
@@ -4295,7 +4295,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4295
4295
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4296
4296
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4297
4297
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4298
|
-
homeassistant_stubs-2025.7.
|
|
4299
|
-
homeassistant_stubs-2025.7.
|
|
4300
|
-
homeassistant_stubs-2025.7.
|
|
4301
|
-
homeassistant_stubs-2025.7.
|
|
4298
|
+
homeassistant_stubs-2025.7.2.dist-info/METADATA,sha256=lNXGo2z03j1LLt3_qBo6BXPAsf8KKTuisGnq-r9rbak,2948
|
|
4299
|
+
homeassistant_stubs-2025.7.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4300
|
+
homeassistant_stubs-2025.7.2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4301
|
+
homeassistant_stubs-2025.7.2.dist-info/RECORD,,
|
|
File without changes
|
{homeassistant_stubs-2025.7.1.dist-info → homeassistant_stubs-2025.7.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|