homeassistant-stubs 2025.7.0b5__py3-none-any.whl → 2025.7.0b6__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/esphome/sensor.pyi +2 -1
- homeassistant-stubs/components/husqvarna_automower/const.pyi +3 -0
- homeassistant-stubs/components/husqvarna_automower/lawn_mower.pyi +3 -1
- homeassistant-stubs/components/husqvarna_automower/sensor.pyi +1 -1
- homeassistant-stubs/components/nam/config_flow.pyi +3 -9
- homeassistant-stubs/components/openai_conversation/__init__.pyi +1 -0
- homeassistant-stubs/components/openai_conversation/config_flow.pyi +1 -0
- homeassistant-stubs/components/telegram_bot/config_flow.pyi +1 -1
- {homeassistant_stubs-2025.7.0b5.dist-info → homeassistant_stubs-2025.7.0b6.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.7.0b5.dist-info → homeassistant_stubs-2025.7.0b6.dist-info}/RECORD +12 -12
- {homeassistant_stubs-2025.7.0b5.dist-info → homeassistant_stubs-2025.7.0b6.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.7.0b5.dist-info → homeassistant_stubs-2025.7.0b6.dist-info}/licenses/LICENSE +0 -0
|
@@ -18,12 +18,13 @@ _STATE_CLASSES: EsphomeEnumMapper[EsphomeSensorStateClass, SensorStateClass | No
|
|
|
18
18
|
class EsphomeSensor(EsphomeEntity[SensorInfo, SensorState], SensorEntity):
|
|
19
19
|
_attr_force_update: Incomplete
|
|
20
20
|
_attr_native_unit_of_measurement: Incomplete
|
|
21
|
+
_attr_suggested_display_precision: Incomplete
|
|
21
22
|
_attr_device_class: Incomplete
|
|
22
23
|
_attr_state_class: Incomplete
|
|
23
24
|
@callback
|
|
24
25
|
def _on_static_info_update(self, static_info: EntityInfo) -> None: ...
|
|
25
26
|
@property
|
|
26
|
-
def native_value(self) -> datetime |
|
|
27
|
+
def native_value(self) -> datetime | int | float | None: ...
|
|
27
28
|
|
|
28
29
|
class EsphomeTextSensor(EsphomeEntity[TextSensorInfo, TextSensorState], SensorEntity):
|
|
29
30
|
_attr_device_class: Incomplete
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from . import AutomowerConfigEntry as AutomowerConfigEntry
|
|
2
|
-
from .const import DOMAIN as DOMAIN
|
|
2
|
+
from .const import DOMAIN as DOMAIN, ERROR_STATES as ERROR_STATES
|
|
3
3
|
from .coordinator import AutomowerDataUpdateCoordinator as AutomowerDataUpdateCoordinator
|
|
4
4
|
from .entity import AutomowerAvailableEntity as AutomowerAvailableEntity, handle_sending_exception as handle_sending_exception
|
|
5
5
|
from _typeshed import Incomplete
|
|
@@ -31,6 +31,8 @@ class AutomowerLawnMowerEntity(AutomowerAvailableEntity, LawnMowerEntity):
|
|
|
31
31
|
@property
|
|
32
32
|
def activity(self) -> LawnMowerActivity: ...
|
|
33
33
|
@property
|
|
34
|
+
def available(self) -> bool: ...
|
|
35
|
+
@property
|
|
34
36
|
def work_areas(self) -> dict[int, WorkArea] | None: ...
|
|
35
37
|
async def async_start_mowing(self) -> None: ...
|
|
36
38
|
async def async_pause(self) -> None: ...
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
from . import AutomowerConfigEntry as AutomowerConfigEntry
|
|
2
|
+
from .const import ERROR_STATES as ERROR_STATES
|
|
2
3
|
from .coordinator import AutomowerDataUpdateCoordinator as AutomowerDataUpdateCoordinator
|
|
3
4
|
from .entity import AutomowerBaseEntity as AutomowerBaseEntity, WorkAreaAvailableEntity as WorkAreaAvailableEntity, _work_area_translation_key as _work_area_translation_key
|
|
4
5
|
from _typeshed import Incomplete
|
|
@@ -17,7 +18,6 @@ _LOGGER: Incomplete
|
|
|
17
18
|
PARALLEL_UPDATES: int
|
|
18
19
|
ATTR_WORK_AREA_ID_ASSIGNMENT: str
|
|
19
20
|
ERROR_KEYS: Incomplete
|
|
20
|
-
ERROR_STATES: Incomplete
|
|
21
21
|
ERROR_KEY_LIST: Incomplete
|
|
22
22
|
RESTRICTED_REASONS: list
|
|
23
23
|
STATE_NO_WORK_AREA_ACTIVE: str
|
|
@@ -1,30 +1,24 @@
|
|
|
1
1
|
from .const import DOMAIN as DOMAIN
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from collections.abc import Mapping
|
|
4
|
-
from dataclasses import dataclass
|
|
5
4
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
|
6
5
|
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
|
|
7
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
8
7
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
|
9
8
|
from homeassistant.helpers.device_registry import format_mac as format_mac
|
|
10
9
|
from homeassistant.helpers.service_info.zeroconf import ZeroconfServiceInfo as ZeroconfServiceInfo
|
|
10
|
+
from nettigo_air_monitor import NettigoAirMonitor
|
|
11
11
|
from typing import Any
|
|
12
12
|
|
|
13
|
-
@dataclass
|
|
14
|
-
class NamConfig:
|
|
15
|
-
mac_address: str
|
|
16
|
-
auth_enabled: bool
|
|
17
|
-
|
|
18
13
|
_LOGGER: Incomplete
|
|
19
14
|
AUTH_SCHEMA: Incomplete
|
|
20
15
|
|
|
21
|
-
async def
|
|
22
|
-
async def async_check_credentials(hass: HomeAssistant, host: str, data: dict[str, Any]) -> None: ...
|
|
16
|
+
async def async_get_nam(hass: HomeAssistant, host: str, data: dict[str, Any]) -> NettigoAirMonitor: ...
|
|
23
17
|
|
|
24
18
|
class NAMFlowHandler(ConfigFlow, domain=DOMAIN):
|
|
25
19
|
VERSION: int
|
|
26
|
-
_config: NamConfig
|
|
27
20
|
host: str
|
|
21
|
+
auth_enabled: bool
|
|
28
22
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
29
23
|
async def async_step_credentials(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
30
24
|
async def async_step_zeroconf(self, discovery_info: ZeroconfServiceInfo) -> ConfigFlowResult: ...
|
|
@@ -22,3 +22,4 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
|
|
22
22
|
async def async_setup_entry(hass: HomeAssistant, entry: OpenAIConfigEntry) -> bool: ...
|
|
23
23
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
|
24
24
|
async def async_migrate_integration(hass: HomeAssistant) -> None: ...
|
|
25
|
+
async def async_migrate_entry(hass: HomeAssistant, entry: OpenAIConfigEntry) -> bool: ...
|
|
@@ -18,6 +18,7 @@ async def validate_input(hass: HomeAssistant, data: dict[str, Any]) -> None: ...
|
|
|
18
18
|
|
|
19
19
|
class OpenAIConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
20
20
|
VERSION: int
|
|
21
|
+
MINOR_VERSION: int
|
|
21
22
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
22
23
|
@classmethod
|
|
23
24
|
@callback
|
|
@@ -50,4 +50,4 @@ class TelgramBotConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
|
50
50
|
class AllowedChatIdsSubEntryFlowHandler(ConfigSubentryFlow):
|
|
51
51
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> SubentryFlowResult: ...
|
|
52
52
|
|
|
53
|
-
async def _async_get_chat_name(bot: Bot
|
|
53
|
+
async def _async_get_chat_name(bot: Bot, chat_id: int) -> str: ...
|
{homeassistant_stubs-2025.7.0b5.dist-info → homeassistant_stubs-2025.7.0b6.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.0b6
|
|
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.0b6
|
|
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.0b5.dist-info → homeassistant_stubs-2025.7.0b6.dist-info}/RECORD
RENAMED
|
@@ -1126,7 +1126,7 @@ homeassistant-stubs/components/esphome/media_player.pyi,sha256=_W3qgfXJR74SRdnTz
|
|
|
1126
1126
|
homeassistant-stubs/components/esphome/number.pyi,sha256=3hv7HZ7Q3JQ3dckk0tsRfNy6Amiddwu-0zAX68oymyg,1398
|
|
1127
1127
|
homeassistant-stubs/components/esphome/repairs.pyi,sha256=My4X55PJjeBHdrd4sSR_IoExbYliJFSQyP7-LwPRDXo,1205
|
|
1128
1128
|
homeassistant-stubs/components/esphome/select.pyi,sha256=UjNEqhjp3tLK1OOGH7NY_oW5ZqAPcZtoCcsIvL6buSA,2715
|
|
1129
|
-
homeassistant-stubs/components/esphome/sensor.pyi,sha256=
|
|
1129
|
+
homeassistant-stubs/components/esphome/sensor.pyi,sha256=cPTlWNz6x80XncssNOfQeK2AQ4epQiKOoayGWLQdMFk,1867
|
|
1130
1130
|
homeassistant-stubs/components/esphome/switch.pyi,sha256=6llVsRXFT3t6OO1FaSZ42CZ_2DHRFiNPcL662hjFTYM,1137
|
|
1131
1131
|
homeassistant-stubs/components/esphome/text.pyi,sha256=zOYBe2vpGY0QlLOihmUT3C0TwdPCIJvHiyRyTQ3oODQ,1128
|
|
1132
1132
|
homeassistant-stubs/components/esphome/time.pyi,sha256=ijIgNQs1csv1GxOBqGju0_KYoK3ZUR2PjyCErfR2Rc0,604
|
|
@@ -1655,15 +1655,15 @@ homeassistant-stubs/components/husqvarna_automower/binary_sensor.pyi,sha256=-o05
|
|
|
1655
1655
|
homeassistant-stubs/components/husqvarna_automower/button.pyi,sha256=J-Xkzv_08MPM3qqC6cI7J5-QPp6q8WEp58jOzzeRGLo,1836
|
|
1656
1656
|
homeassistant-stubs/components/husqvarna_automower/calendar.pyi,sha256=oHO_WLFMSkL0_lZnO5FygEPXMjICkBDBipKnFTOb-0c,1198
|
|
1657
1657
|
homeassistant-stubs/components/husqvarna_automower/config_flow.pyi,sha256=t0l4tH4gyrBlWdjDqnq-X5Pel-KIyxhKz63t6mANih4,1246
|
|
1658
|
-
homeassistant-stubs/components/husqvarna_automower/const.pyi,sha256
|
|
1658
|
+
homeassistant-stubs/components/husqvarna_automower/const.pyi,sha256=--98R8PEN0e4ea-M71N4PS-3IIc9UrAhiQx3N2pPHK8,147
|
|
1659
1659
|
homeassistant-stubs/components/husqvarna_automower/coordinator.pyi,sha256=Oh907tib8vhwhcughwPL3jp_6O65jSedeAJK5VNWlVo,2346
|
|
1660
1660
|
homeassistant-stubs/components/husqvarna_automower/device_tracker.pyi,sha256=N8tQiMIx3L8WrK0E0-DNIFPAYlwxYpCFVGCf02Eh6dw,1003
|
|
1661
1661
|
homeassistant-stubs/components/husqvarna_automower/diagnostics.pyi,sha256=27vHm8uRvtXHDGVjJHVsd1eqPhK-VK2iogXJxmsM938,783
|
|
1662
1662
|
homeassistant-stubs/components/husqvarna_automower/entity.pyi,sha256=xflXGzaUdvP0lZDNHr5PfTDf-YPllCTFxxzpEGISctU,2181
|
|
1663
|
-
homeassistant-stubs/components/husqvarna_automower/lawn_mower.pyi,sha256=
|
|
1663
|
+
homeassistant-stubs/components/husqvarna_automower/lawn_mower.pyi,sha256=nFBdtHcfTI-3kLt_8_KaU8pOM7dmsRom7OtSmL917vw,2136
|
|
1664
1664
|
homeassistant-stubs/components/husqvarna_automower/number.pyi,sha256=DVh85zQ425v9jzrHtw4GNprKTGq9aBzQVAO0K9Nw80k,3294
|
|
1665
1665
|
homeassistant-stubs/components/husqvarna_automower/select.pyi,sha256=Whvz6yFFi3jo_VCdUUWATFlu0RuMfqNtUjs7LMlNT4c,1251
|
|
1666
|
-
homeassistant-stubs/components/husqvarna_automower/sensor.pyi,sha256=
|
|
1666
|
+
homeassistant-stubs/components/husqvarna_automower/sensor.pyi,sha256=jIOH-6jsg5SahTNaOkib4k87lZMadR20sRwzG6W5D0E,3703
|
|
1667
1667
|
homeassistant-stubs/components/husqvarna_automower/switch.pyi,sha256=3EOU0CZp44trzoVeGMOLbfBF3eVg8MMMFty9LVxesGU,2553
|
|
1668
1668
|
homeassistant-stubs/components/hydrawise/__init__.pyi,sha256=uYTQ54Mat5L29LuOluTz8osEA2AnRZjcw2URzp-SHPc,898
|
|
1669
1669
|
homeassistant-stubs/components/hydrawise/binary_sensor.pyi,sha256=G5hEwgkx6hYnzEzDMN0hAp5xW2VRkqiJxIszFOfHHBs,2116
|
|
@@ -2412,7 +2412,7 @@ homeassistant-stubs/components/myuplink/switch.pyi,sha256=gZCpmD7BMp_aIZ-oFndP4F
|
|
|
2412
2412
|
homeassistant-stubs/components/myuplink/update.pyi,sha256=H3nIFg50jcLn89Go1Wbp3tYywLDwSJia-eqgfIJMqhg,1109
|
|
2413
2413
|
homeassistant-stubs/components/nam/__init__.pyi,sha256=73Mbc17Rl-tLdCvxzX3YWTNfxc-X9XrmI7KDpGgiPoc,881
|
|
2414
2414
|
homeassistant-stubs/components/nam/button.pyi,sha256=yP5k_-jCC6ZszIrRF_5DZMy_E9KPtDfA-Gwimok7Kpg,1347
|
|
2415
|
-
homeassistant-stubs/components/nam/config_flow.pyi,sha256=
|
|
2415
|
+
homeassistant-stubs/components/nam/config_flow.pyi,sha256=heapFxwKb1sid1C84iYdEZyuaZX923AGRQ2h026oJ18,1739
|
|
2416
2416
|
homeassistant-stubs/components/nam/const.pyi,sha256=HEId4tlRRcJXn_GOR_qAN_uktFnPhIxhf0lT2iDRMIA,1514
|
|
2417
2417
|
homeassistant-stubs/components/nam/coordinator.pyi,sha256=3b5DGx2t8yztDgZlEijWvUABIIkF-IJiAdyE7vyCniw,1044
|
|
2418
2418
|
homeassistant-stubs/components/nam/diagnostics.pyi,sha256=Cwdi_zup6ONKTQLzUAZoxj1C3_ZZF1012RM_lW-mg5E,502
|
|
@@ -2610,8 +2610,8 @@ homeassistant-stubs/components/open_meteo/const.pyi,sha256=WRrnFyU5HTSBNcHff8Fr_
|
|
|
2610
2610
|
homeassistant-stubs/components/open_meteo/coordinator.pyi,sha256=rFXvkI7My3122aBXocj3XeI4xD3bQHjcSoat5dZa-gM,991
|
|
2611
2611
|
homeassistant-stubs/components/open_meteo/diagnostics.pyi,sha256=OwwN_6LdgHFICnXK1pk8sMCA_BlhJt1x2mSZYRBOE7s,515
|
|
2612
2612
|
homeassistant-stubs/components/open_meteo/weather.pyi,sha256=cSaM_QEq2iRiPcv9yQ2L5nF9M1esJNSSsJfOHGjHWIA,2455
|
|
2613
|
-
homeassistant-stubs/components/openai_conversation/__init__.pyi,sha256=
|
|
2614
|
-
homeassistant-stubs/components/openai_conversation/config_flow.pyi,sha256=
|
|
2613
|
+
homeassistant-stubs/components/openai_conversation/__init__.pyi,sha256=PcKcAWUp-2SOUzKBJP_Lutbee1fNw6qPzsKLQ6F6yzM,2235
|
|
2614
|
+
homeassistant-stubs/components/openai_conversation/config_flow.pyi,sha256=v9pa1ccI8EtqQQFMQBQaA6ZEH43ZWOcfS02-aFfwHLU,3709
|
|
2615
2615
|
homeassistant-stubs/components/openai_conversation/const.pyi,sha256=FMYeuh1TdNYWiPFQIT8fMihfg4MXX_OkrMq8eBG0ccA,787
|
|
2616
2616
|
homeassistant-stubs/components/openai_conversation/conversation.pyi,sha256=TydrZE85_ADD6DFFVwl-ExiZPclYfjyBty5XmhXfMeA,3498
|
|
2617
2617
|
homeassistant-stubs/components/openexchangerates/__init__.pyi,sha256=u_JRx7gzE7cEm3_AeBkYKrXoNTEH0rcoqxPs3BV00tI,745
|
|
@@ -3630,7 +3630,7 @@ homeassistant-stubs/components/tedee/sensor.pyi,sha256=DUZTdTFLT-vaBtcNpkXIrHH57
|
|
|
3630
3630
|
homeassistant-stubs/components/telegram_bot/__init__.pyi,sha256=sKTyVJkeIwyeW8vRXt8XLHudMayw59WuYoCJ9hSpTdk,4423
|
|
3631
3631
|
homeassistant-stubs/components/telegram_bot/bot.pyi,sha256=Ok6R6mRrK3Jg2fkJABT8FLo5d_wJBT81a5HJaBiyo6o,6846
|
|
3632
3632
|
homeassistant-stubs/components/telegram_bot/broadcast.pyi,sha256=m3KRRY2Vx9kbdVkcPltXnDmGSpxsJu-B90mmuHxF4hU,328
|
|
3633
|
-
homeassistant-stubs/components/telegram_bot/config_flow.pyi,sha256=
|
|
3633
|
+
homeassistant-stubs/components/telegram_bot/config_flow.pyi,sha256=dQklHBbBEONv4fWiL-MFJUHsx_NBY5zf8YV9apjl44c,4449
|
|
3634
3634
|
homeassistant-stubs/components/telegram_bot/const.pyi,sha256=eUVcDpVO84UQ6UDj372Yc6gwF-vsY39IjhFzVK7-Ldw,2120
|
|
3635
3635
|
homeassistant-stubs/components/telegram_bot/polling.pyi,sha256=Fvehve6Bgjjg07jqNotwqDw3VIjMbCtIXRf10Qz-rak,910
|
|
3636
3636
|
homeassistant-stubs/components/telegram_bot/webhooks.pyi,sha256=fcNcPG1T7DTO5yMg35GukrczqZ-2yd-1dWRnTBuRHWo,2142
|
|
@@ -4294,7 +4294,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4294
4294
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4295
4295
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4296
4296
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4297
|
-
homeassistant_stubs-2025.7.
|
|
4298
|
-
homeassistant_stubs-2025.7.
|
|
4299
|
-
homeassistant_stubs-2025.7.
|
|
4300
|
-
homeassistant_stubs-2025.7.
|
|
4297
|
+
homeassistant_stubs-2025.7.0b6.dist-info/METADATA,sha256=yql7rGmmRw6-cEwvlUT5ULRfaUhwLDfnt20yFhqF0CU,2952
|
|
4298
|
+
homeassistant_stubs-2025.7.0b6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4299
|
+
homeassistant_stubs-2025.7.0b6.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4300
|
+
homeassistant_stubs-2025.7.0b6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|