homeassistant-stubs 2025.7.0b4__py3-none-any.whl → 2025.7.0b5__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/homeassistant_hardware/firmware_config_flow.pyi +4 -0
- homeassistant-stubs/components/person/__init__.pyi +1 -1
- homeassistant-stubs/components/pushbullet/sensor.pyi +1 -1
- homeassistant-stubs/components/wallbox/const.pyi +4 -0
- homeassistant-stubs/components/wallbox/coordinator.pyi +6 -6
- homeassistant-stubs/components/wallbox/lock.pyi +1 -2
- homeassistant-stubs/components/wallbox/number.pyi +1 -2
- {homeassistant_stubs-2025.7.0b4.dist-info → homeassistant_stubs-2025.7.0b5.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.7.0b4.dist-info → homeassistant_stubs-2025.7.0b5.dist-info}/RECORD +11 -11
- {homeassistant_stubs-2025.7.0b4.dist-info → homeassistant_stubs-2025.7.0b5.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.7.0b4.dist-info → homeassistant_stubs-2025.7.0b5.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,6 +8,7 @@ from homeassistant.components.hassio import AddonError as AddonError, AddonInfo
|
|
|
8
8
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigEntryBaseFlow as ConfigEntryBaseFlow, ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, OptionsFlow as OptionsFlow
|
|
9
9
|
from homeassistant.core import callback as callback
|
|
10
10
|
from homeassistant.data_entry_flow import AbortFlow as AbortFlow
|
|
11
|
+
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
|
11
12
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
|
12
13
|
from homeassistant.helpers.hassio import is_hassio as is_hassio
|
|
13
14
|
from typing import Any
|
|
@@ -26,12 +27,15 @@ class BaseFirmwareInstallFlow(ConfigEntryBaseFlow, ABC, metaclass=abc.ABCMeta):
|
|
|
26
27
|
addon_start_task: asyncio.Task | None
|
|
27
28
|
addon_uninstall_task: asyncio.Task | None
|
|
28
29
|
firmware_install_task: asyncio.Task | None
|
|
30
|
+
installing_firmware_name: str | None
|
|
29
31
|
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
|
|
30
32
|
def _get_translation_placeholders(self) -> dict[str, str]: ...
|
|
31
33
|
async def _async_get_addon_info(self, addon_manager: AddonManager) -> AddonInfo: ...
|
|
32
34
|
async def async_step_pick_firmware(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
33
35
|
async def _probe_firmware_info(self, probe_methods: tuple[ApplicationType, ...] = ...) -> bool: ...
|
|
34
36
|
async def _install_firmware_step(self, fw_update_url: str, fw_type: str, firmware_name: str, expected_installed_firmware_type: ApplicationType, step_id: str, next_step_id: str) -> ConfigFlowResult: ...
|
|
37
|
+
async def async_step_firmware_download_failed(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
38
|
+
async def async_step_firmware_install_failed(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
35
39
|
async def async_step_pick_firmware_zigbee(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
36
40
|
async def async_step_install_zigbee_firmware(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
37
41
|
async def async_step_addon_operation_failed(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -4,7 +4,7 @@ from collections.abc import Callable as Callable
|
|
|
4
4
|
from homeassistant.auth import EVENT_USER_REMOVED as EVENT_USER_REMOVED
|
|
5
5
|
from homeassistant.components import persistent_notification as persistent_notification, websocket_api as websocket_api
|
|
6
6
|
from homeassistant.components.device_tracker import ATTR_SOURCE_TYPE as ATTR_SOURCE_TYPE, SourceType as SourceType
|
|
7
|
-
from homeassistant.const import ATTR_EDITABLE as ATTR_EDITABLE, ATTR_GPS_ACCURACY as ATTR_GPS_ACCURACY, ATTR_ID as ATTR_ID, ATTR_LATITUDE as ATTR_LATITUDE, ATTR_LONGITUDE as ATTR_LONGITUDE, ATTR_NAME as ATTR_NAME, CONF_ID as CONF_ID, CONF_NAME as CONF_NAME, EVENT_HOMEASSISTANT_START as EVENT_HOMEASSISTANT_START, SERVICE_RELOAD as SERVICE_RELOAD, STATE_HOME as STATE_HOME,
|
|
7
|
+
from homeassistant.const import ATTR_EDITABLE as ATTR_EDITABLE, ATTR_GPS_ACCURACY as ATTR_GPS_ACCURACY, ATTR_ID as ATTR_ID, ATTR_LATITUDE as ATTR_LATITUDE, ATTR_LONGITUDE as ATTR_LONGITUDE, ATTR_NAME as ATTR_NAME, CONF_ID as CONF_ID, CONF_NAME as CONF_NAME, EVENT_HOMEASSISTANT_START as EVENT_HOMEASSISTANT_START, SERVICE_RELOAD as SERVICE_RELOAD, STATE_HOME as STATE_HOME, STATE_UNAVAILABLE as STATE_UNAVAILABLE, STATE_UNKNOWN as STATE_UNKNOWN
|
|
8
8
|
from homeassistant.core import Event as Event, EventStateChangedData as EventStateChangedData, HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, State as State, callback as callback, split_entity_id as split_entity_id
|
|
9
9
|
from homeassistant.helpers import collection as collection, entity_registry as er, service as service
|
|
10
10
|
from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
|
|
@@ -3,7 +3,7 @@ from .const import DATA_UPDATED as DATA_UPDATED, DOMAIN as DOMAIN
|
|
|
3
3
|
from _typeshed import Incomplete
|
|
4
4
|
from homeassistant.components.sensor import SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription
|
|
5
5
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
6
|
-
from homeassistant.const import CONF_NAME as CONF_NAME
|
|
6
|
+
from homeassistant.const import CONF_NAME as CONF_NAME, MAX_LENGTH_STATE_STATE as MAX_LENGTH_STATE_STATE
|
|
7
7
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
|
8
8
|
from homeassistant.helpers.device_registry import DeviceEntryType as DeviceEntryType, DeviceInfo as DeviceInfo
|
|
9
9
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect as async_dispatcher_connect
|
|
@@ -19,6 +19,8 @@ CHARGER_CURRENT_MODE_KEY: str
|
|
|
19
19
|
CHARGER_CURRENT_VERSION_KEY: str
|
|
20
20
|
CHARGER_CURRENCY_KEY: str
|
|
21
21
|
CHARGER_DATA_KEY: str
|
|
22
|
+
CHARGER_DATA_POST_L1_KEY: str
|
|
23
|
+
CHARGER_DATA_POST_L2_KEY: str
|
|
22
24
|
CHARGER_DEPOT_PRICE_KEY: str
|
|
23
25
|
CHARGER_ENERGY_PRICE_KEY: str
|
|
24
26
|
CHARGER_FEATURES_KEY: str
|
|
@@ -29,7 +31,9 @@ CHARGER_POWER_BOOST_KEY: str
|
|
|
29
31
|
CHARGER_SOFTWARE_KEY: str
|
|
30
32
|
CHARGER_MAX_AVAILABLE_POWER_KEY: str
|
|
31
33
|
CHARGER_MAX_CHARGING_CURRENT_KEY: str
|
|
34
|
+
CHARGER_MAX_CHARGING_CURRENT_POST_KEY: str
|
|
32
35
|
CHARGER_MAX_ICP_CURRENT_KEY: str
|
|
36
|
+
CHARGER_MAX_ICP_CURRENT_POST_KEY: str
|
|
33
37
|
CHARGER_PAUSE_RESUME_KEY: str
|
|
34
38
|
CHARGER_LOCKED_UNLOCKED_KEY: str
|
|
35
39
|
CHARGER_NAME_KEY: str
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
from .const import CHARGER_CURRENCY_KEY as CHARGER_CURRENCY_KEY, CHARGER_DATA_KEY as CHARGER_DATA_KEY, CHARGER_ECO_SMART_KEY as CHARGER_ECO_SMART_KEY, CHARGER_ECO_SMART_MODE_KEY as CHARGER_ECO_SMART_MODE_KEY, CHARGER_ECO_SMART_STATUS_KEY as CHARGER_ECO_SMART_STATUS_KEY, CHARGER_ENERGY_PRICE_KEY as CHARGER_ENERGY_PRICE_KEY, CHARGER_FEATURES_KEY as CHARGER_FEATURES_KEY, CHARGER_LOCKED_UNLOCKED_KEY as CHARGER_LOCKED_UNLOCKED_KEY, CHARGER_MAX_CHARGING_CURRENT_KEY as CHARGER_MAX_CHARGING_CURRENT_KEY, CHARGER_MAX_ICP_CURRENT_KEY as CHARGER_MAX_ICP_CURRENT_KEY, CHARGER_PLAN_KEY as CHARGER_PLAN_KEY, CHARGER_POWER_BOOST_KEY as CHARGER_POWER_BOOST_KEY, CHARGER_STATUS_DESCRIPTION_KEY as CHARGER_STATUS_DESCRIPTION_KEY, CHARGER_STATUS_ID_KEY as CHARGER_STATUS_ID_KEY, CODE_KEY as CODE_KEY, CONF_STATION as CONF_STATION, ChargerStatus as ChargerStatus, DOMAIN as DOMAIN, EcoSmartMode as EcoSmartMode, UPDATE_INTERVAL as UPDATE_INTERVAL
|
|
1
|
+
from .const import CHARGER_CURRENCY_KEY as CHARGER_CURRENCY_KEY, CHARGER_DATA_KEY as CHARGER_DATA_KEY, CHARGER_DATA_POST_L1_KEY as CHARGER_DATA_POST_L1_KEY, CHARGER_DATA_POST_L2_KEY as CHARGER_DATA_POST_L2_KEY, CHARGER_ECO_SMART_KEY as CHARGER_ECO_SMART_KEY, CHARGER_ECO_SMART_MODE_KEY as CHARGER_ECO_SMART_MODE_KEY, CHARGER_ECO_SMART_STATUS_KEY as CHARGER_ECO_SMART_STATUS_KEY, CHARGER_ENERGY_PRICE_KEY as CHARGER_ENERGY_PRICE_KEY, CHARGER_FEATURES_KEY as CHARGER_FEATURES_KEY, CHARGER_LOCKED_UNLOCKED_KEY as CHARGER_LOCKED_UNLOCKED_KEY, CHARGER_MAX_CHARGING_CURRENT_KEY as CHARGER_MAX_CHARGING_CURRENT_KEY, CHARGER_MAX_CHARGING_CURRENT_POST_KEY as CHARGER_MAX_CHARGING_CURRENT_POST_KEY, CHARGER_MAX_ICP_CURRENT_KEY as CHARGER_MAX_ICP_CURRENT_KEY, CHARGER_PLAN_KEY as CHARGER_PLAN_KEY, CHARGER_POWER_BOOST_KEY as CHARGER_POWER_BOOST_KEY, CHARGER_STATUS_DESCRIPTION_KEY as CHARGER_STATUS_DESCRIPTION_KEY, CHARGER_STATUS_ID_KEY as CHARGER_STATUS_ID_KEY, CODE_KEY as CODE_KEY, CONF_STATION as CONF_STATION, ChargerStatus as ChargerStatus, DOMAIN as DOMAIN, EcoSmartMode as EcoSmartMode, UPDATE_INTERVAL as UPDATE_INTERVAL
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from collections.abc import Callable as Callable
|
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
5
5
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
6
6
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, HomeAssistantError as HomeAssistantError
|
|
7
|
-
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator
|
|
7
|
+
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
|
8
8
|
from typing import Any, Concatenate
|
|
9
9
|
from wallbox import Wallbox as Wallbox
|
|
10
10
|
|
|
@@ -25,16 +25,16 @@ class WallboxCoordinator(DataUpdateCoordinator[dict[str, Any]]):
|
|
|
25
25
|
def _get_data(self) -> dict[str, Any]: ...
|
|
26
26
|
async def _async_update_data(self) -> dict[str, Any]: ...
|
|
27
27
|
@_require_authentication
|
|
28
|
-
def _set_charging_current(self, charging_current: float) ->
|
|
28
|
+
def _set_charging_current(self, charging_current: float) -> dict[str, dict[str, dict[str, Any]]]: ...
|
|
29
29
|
async def async_set_charging_current(self, charging_current: float) -> None: ...
|
|
30
30
|
@_require_authentication
|
|
31
|
-
def _set_icp_current(self, icp_current: float) ->
|
|
31
|
+
def _set_icp_current(self, icp_current: float) -> dict[str, Any]: ...
|
|
32
32
|
async def async_set_icp_current(self, icp_current: float) -> None: ...
|
|
33
33
|
@_require_authentication
|
|
34
|
-
def _set_energy_cost(self, energy_cost: float) ->
|
|
34
|
+
def _set_energy_cost(self, energy_cost: float) -> dict[str, Any]: ...
|
|
35
35
|
async def async_set_energy_cost(self, energy_cost: float) -> None: ...
|
|
36
36
|
@_require_authentication
|
|
37
|
-
def _set_lock_unlock(self, lock: bool) ->
|
|
37
|
+
def _set_lock_unlock(self, lock: bool) -> dict[str, dict[str, dict[str, Any]]]: ...
|
|
38
38
|
async def async_set_lock_unlock(self, lock: bool) -> None: ...
|
|
39
39
|
@_require_authentication
|
|
40
40
|
def _pause_charger(self, pause: bool) -> None: ...
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
from .const import CHARGER_DATA_KEY as CHARGER_DATA_KEY, CHARGER_LOCKED_UNLOCKED_KEY as CHARGER_LOCKED_UNLOCKED_KEY, CHARGER_SERIAL_NUMBER_KEY as CHARGER_SERIAL_NUMBER_KEY, DOMAIN as DOMAIN
|
|
2
|
-
from .coordinator import
|
|
2
|
+
from .coordinator import WallboxCoordinator as WallboxCoordinator
|
|
3
3
|
from .entity import WallboxEntity as WallboxEntity
|
|
4
4
|
from _typeshed import Incomplete
|
|
5
5
|
from homeassistant.components.lock import LockEntity as LockEntity, LockEntityDescription as LockEntityDescription
|
|
6
6
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
7
7
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
8
|
-
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError, PlatformNotReady as PlatformNotReady
|
|
9
8
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
|
10
9
|
from typing import Any
|
|
11
10
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from .const import BIDIRECTIONAL_MODEL_PREFIXES as BIDIRECTIONAL_MODEL_PREFIXES, CHARGER_DATA_KEY as CHARGER_DATA_KEY, CHARGER_ENERGY_PRICE_KEY as CHARGER_ENERGY_PRICE_KEY, CHARGER_MAX_AVAILABLE_POWER_KEY as CHARGER_MAX_AVAILABLE_POWER_KEY, CHARGER_MAX_CHARGING_CURRENT_KEY as CHARGER_MAX_CHARGING_CURRENT_KEY, CHARGER_MAX_ICP_CURRENT_KEY as CHARGER_MAX_ICP_CURRENT_KEY, CHARGER_PART_NUMBER_KEY as CHARGER_PART_NUMBER_KEY, CHARGER_SERIAL_NUMBER_KEY as CHARGER_SERIAL_NUMBER_KEY, DOMAIN as DOMAIN
|
|
2
|
-
from .coordinator import
|
|
2
|
+
from .coordinator import WallboxCoordinator as WallboxCoordinator
|
|
3
3
|
from .entity import WallboxEntity as WallboxEntity
|
|
4
4
|
from _typeshed import Incomplete
|
|
5
5
|
from collections.abc import Awaitable, Callable as Callable
|
|
@@ -7,7 +7,6 @@ from dataclasses import dataclass
|
|
|
7
7
|
from homeassistant.components.number import NumberEntity as NumberEntity, NumberEntityDescription as NumberEntityDescription
|
|
8
8
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
9
9
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
10
|
-
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError, PlatformNotReady as PlatformNotReady
|
|
11
10
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
|
12
11
|
|
|
13
12
|
def min_charging_current_value(coordinator: WallboxCoordinator) -> float: ...
|
{homeassistant_stubs-2025.7.0b4.dist-info → homeassistant_stubs-2025.7.0b5.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.0b5
|
|
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.0b5
|
|
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.0b4.dist-info → homeassistant_stubs-2025.7.0b5.dist-info}/RECORD
RENAMED
|
@@ -1522,7 +1522,7 @@ homeassistant-stubs/components/homeassistant_green/hardware.pyi,sha256=F0vW0HKbm
|
|
|
1522
1522
|
homeassistant-stubs/components/homeassistant_hardware/__init__.pyi,sha256=SUXW5kX_c-WP-ftkNUgxjQdoA9_Z9ehRkED__HaOlKo,405
|
|
1523
1523
|
homeassistant-stubs/components/homeassistant_hardware/const.pyi,sha256=NB1bv9Iqnmf3AJ3L8L4VdvfirMn3zpgHokBvMtNIJB0,516
|
|
1524
1524
|
homeassistant-stubs/components/homeassistant_hardware/coordinator.pyi,sha256=-7xvRKdIOB81Tm-3mfgnkUMh4fWixwCKqSngfZLRc_k,688
|
|
1525
|
-
homeassistant-stubs/components/homeassistant_hardware/firmware_config_flow.pyi,sha256=
|
|
1525
|
+
homeassistant-stubs/components/homeassistant_hardware/firmware_config_flow.pyi,sha256=AK_gB0sgARyPFqDO7AN9DqQMZRF9zm7bVblOf4Jdyco,5169
|
|
1526
1526
|
homeassistant-stubs/components/homeassistant_hardware/helpers.pyi,sha256=BzOXtbHQ8GVUIbx0T7MokToASD2eiL_ceona69A_ZH4,1969
|
|
1527
1527
|
homeassistant-stubs/components/homeassistant_hardware/silabs_multiprotocol_addon.pyi,sha256=P8z8qjk32EnV2d3Gyu5TmKM4dDAnT9lLasI4VKENhKY,7565
|
|
1528
1528
|
homeassistant-stubs/components/homeassistant_hardware/update.pyi,sha256=K3R9Y3oNLLGLp6xqwMbfTRswQPIoNHUbJI0KRYolwHg,3356
|
|
@@ -2743,7 +2743,7 @@ homeassistant-stubs/components/pegel_online/entity.pyi,sha256=iYxD6OafgSuTrxH1Kz
|
|
|
2743
2743
|
homeassistant-stubs/components/pegel_online/sensor.pyi,sha256=7G4ljcMYZxFjjAwUfHvBSJ0HngtTc7Pv0cB3yMd22XE,1756
|
|
2744
2744
|
homeassistant-stubs/components/persistent_notification/__init__.pyi,sha256=prqJDd0qG0MOy3QBZOKRfUHomoNiJaNp0WH2CRj8sk8,2710
|
|
2745
2745
|
homeassistant-stubs/components/persistent_notification/trigger.pyi,sha256=Z4CSRADw2vE1mKTgdYtVCeYd8BN3x0IYZQYmIueAa70,840
|
|
2746
|
-
homeassistant-stubs/components/person/__init__.pyi,sha256=
|
|
2746
|
+
homeassistant-stubs/components/person/__init__.pyi,sha256=_a06r1TWD-vxBNv6g-VEj7bWr7AhGaF9qlh4Eu-z3t8,5349
|
|
2747
2747
|
homeassistant-stubs/components/person/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
|
2748
2748
|
homeassistant-stubs/components/person/significant_change.pyi,sha256=9nzs7ExXPeeuWrOxcNL9wBOT2NHTeSUpCW7YvVr8fF0,275
|
|
2749
2749
|
homeassistant-stubs/components/pi_hole/__init__.pyi,sha256=iB4Rfi3a8DDrgZQj50ozJpam2lWPzQaJC4mXwIXAngU,1265
|
|
@@ -2834,7 +2834,7 @@ homeassistant-stubs/components/pushbullet/api.pyi,sha256=BwHX0nwSZdDzCfVkJFhgxNz
|
|
|
2834
2834
|
homeassistant-stubs/components/pushbullet/config_flow.pyi,sha256=Zy5THslkqTsUY8lT8uebYUMk1qghoX4zhcneXrsztq0,552
|
|
2835
2835
|
homeassistant-stubs/components/pushbullet/const.pyi,sha256=dZNVAi5BwGmxf0bA73fD67osFecb3pNn6wDIBx7z3OE,193
|
|
2836
2836
|
homeassistant-stubs/components/pushbullet/notify.pyi,sha256=3FkvoLAHRChsBqs1qpwFboAINbb2l0pePDmOkSkWpFM,1553
|
|
2837
|
-
homeassistant-stubs/components/pushbullet/sensor.pyi,sha256=
|
|
2837
|
+
homeassistant-stubs/components/pushbullet/sensor.pyi,sha256=qb-nFDtmwB1n2vo8Ewc1h21hrShgZygLLM7lH1ZDb7A,1662
|
|
2838
2838
|
homeassistant-stubs/components/pvoutput/__init__.pyi,sha256=cYJhhTMoaJilbY9yT-cn4P36kjrgFrrFM90MAeHl8ss,444
|
|
2839
2839
|
homeassistant-stubs/components/pvoutput/config_flow.pyi,sha256=oz0IOBc5ANkUTbbJegggrg45w869RU8wYJVc6haEBhc,979
|
|
2840
2840
|
homeassistant-stubs/components/pvoutput/const.pyi,sha256=X7fiLdt-lxKDEJm-QMWlBw0L57RGKyelvtTZBhXJhok,218
|
|
@@ -3939,11 +3939,11 @@ homeassistant-stubs/components/wake_word/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMN
|
|
|
3939
3939
|
homeassistant-stubs/components/wake_word/models.pyi,sha256=rStYqT28Hfh2Nkjxy8EK-T384i1o1iiC4jDHhUhVWlc,294
|
|
3940
3940
|
homeassistant-stubs/components/wallbox/__init__.pyi,sha256=Tx_6oPudZjzCSE3eQOtSq8LZxVVe99gX3DYHXI_hs08,765
|
|
3941
3941
|
homeassistant-stubs/components/wallbox/config_flow.pyi,sha256=8DZF19eO0CsKj5JUa7jFWBn77naG_hSi5P4Oz4iKD6I,962
|
|
3942
|
-
homeassistant-stubs/components/wallbox/const.pyi,sha256=
|
|
3943
|
-
homeassistant-stubs/components/wallbox/coordinator.pyi,sha256=
|
|
3942
|
+
homeassistant-stubs/components/wallbox/const.pyi,sha256=jXyP6hO19n6w6xq2AbECgDlYdFeKMH4xwH3ozVJAOz8,2184
|
|
3943
|
+
homeassistant-stubs/components/wallbox/coordinator.pyi,sha256=NCbeub5CGqK1a9L76Il0Qv_M6aVEI8qyWLkZZMDvSVQ,3581
|
|
3944
3944
|
homeassistant-stubs/components/wallbox/entity.pyi,sha256=W8mZ5zxQsFTviP8eT8HJ9z-XiBTOXnqIQyXtB-h9Zw0,711
|
|
3945
|
-
homeassistant-stubs/components/wallbox/lock.pyi,sha256=
|
|
3946
|
-
homeassistant-stubs/components/wallbox/number.pyi,sha256=
|
|
3945
|
+
homeassistant-stubs/components/wallbox/lock.pyi,sha256=KVDbG0FMwRc3di3oYvbcv8ARal7wxZ8WoPjpx1uEddM,1294
|
|
3946
|
+
homeassistant-stubs/components/wallbox/number.pyi,sha256=7OIxQ5kweFZOXpnIsUFWjL4t7t32DyV-BQMhSnL7Jnk,2231
|
|
3947
3947
|
homeassistant-stubs/components/wallbox/select.pyi,sha256=BdDL1gzxEkrBiMCSZUma_X1Orxnxz7af_531YXZT8-A,1906
|
|
3948
3948
|
homeassistant-stubs/components/wallbox/sensor.pyi,sha256=C_Xz68ex6zxxV8CzEvVvZ5dq6l6KIwvKPEf5Ix_tRmY,2712
|
|
3949
3949
|
homeassistant-stubs/components/wallbox/switch.pyi,sha256=n7vxydKp-OkHzontO_-hiePRPAX0zTjEIArUHDKxCIs,1458
|
|
@@ -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.0b5.dist-info/METADATA,sha256=qPql6riaIHwVFC-pyk8hJVgOJhpcNLsKf3UYSat5kU8,2952
|
|
4298
|
+
homeassistant_stubs-2025.7.0b5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4299
|
+
homeassistant_stubs-2025.7.0b5.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4300
|
+
homeassistant_stubs-2025.7.0b5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|