homeassistant-stubs 2025.8.2__py3-none-any.whl → 2025.8.3__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/alexa_devices/__init__.pyi +3 -2
- homeassistant-stubs/components/alexa_devices/config_flow.pyi +3 -2
- homeassistant-stubs/components/alexa_devices/const.pyi +2 -0
- homeassistant-stubs/components/alexa_devices/coordinator.pyi +1 -1
- homeassistant-stubs/components/amberelectric/config_flow.pyi +1 -1
- homeassistant-stubs/components/amberelectric/const.pyi +1 -0
- homeassistant-stubs/components/amberelectric/coordinator.pyi +1 -1
- homeassistant-stubs/components/nanoleaf/config_flow.pyi +1 -1
- homeassistant-stubs/components/volvo/coordinator.pyi +3 -1
- homeassistant-stubs/components/withings/diagnostics.pyi +4 -0
- homeassistant-stubs/components/zwave_js/config_flow.pyi +6 -0
- homeassistant-stubs/components/zwave_js/sensor.pyi +7 -4
- {homeassistant_stubs-2025.8.2.dist-info → homeassistant_stubs-2025.8.3.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.8.2.dist-info → homeassistant_stubs-2025.8.3.dist-info}/RECORD +16 -16
- {homeassistant_stubs-2025.8.2.dist-info → homeassistant_stubs-2025.8.3.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.8.2.dist-info → homeassistant_stubs-2025.8.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
from .const import DOMAIN as DOMAIN
|
|
1
|
+
from .const import COUNTRY_DOMAINS as COUNTRY_DOMAINS, DOMAIN as DOMAIN, _LOGGER as _LOGGER
|
|
2
2
|
from .coordinator import AmazonConfigEntry as AmazonConfigEntry, AmazonDevicesCoordinator as AmazonDevicesCoordinator
|
|
3
3
|
from .services import async_setup_services as async_setup_services
|
|
4
4
|
from _typeshed import Incomplete
|
|
5
|
-
from homeassistant.const import Platform as Platform
|
|
5
|
+
from homeassistant.const import CONF_COUNTRY as CONF_COUNTRY, Platform as Platform
|
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
7
7
|
from homeassistant.helpers import aiohttp_client as aiohttp_client
|
|
8
8
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
|
@@ -12,4 +12,5 @@ CONFIG_SCHEMA: Incomplete
|
|
|
12
12
|
|
|
13
13
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
|
14
14
|
async def async_setup_entry(hass: HomeAssistant, entry: AmazonConfigEntry) -> bool: ...
|
|
15
|
+
async def async_migrate_entry(hass: HomeAssistant, entry: AmazonConfigEntry) -> bool: ...
|
|
15
16
|
async def async_unload_entry(hass: HomeAssistant, entry: AmazonConfigEntry) -> bool: ...
|
|
@@ -2,10 +2,9 @@ from .const import CONF_LOGIN_DATA as CONF_LOGIN_DATA, DOMAIN as DOMAIN
|
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from collections.abc import Mapping
|
|
4
4
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
|
5
|
-
from homeassistant.const import CONF_CODE as CONF_CODE,
|
|
5
|
+
from homeassistant.const import CONF_CODE as CONF_CODE, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
|
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
7
7
|
from homeassistant.helpers import aiohttp_client as aiohttp_client
|
|
8
|
-
from homeassistant.helpers.selector import CountrySelector as CountrySelector
|
|
9
8
|
from typing import Any
|
|
10
9
|
|
|
11
10
|
STEP_REAUTH_DATA_SCHEMA: Incomplete
|
|
@@ -13,6 +12,8 @@ STEP_REAUTH_DATA_SCHEMA: Incomplete
|
|
|
13
12
|
async def validate_input(hass: HomeAssistant, data: dict[str, Any]) -> dict[str, Any]: ...
|
|
14
13
|
|
|
15
14
|
class AmazonDevicesConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
15
|
+
VERSION: int
|
|
16
|
+
MINOR_VERSION: int
|
|
16
17
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
17
18
|
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> ConfigFlowResult: ...
|
|
18
19
|
async def async_step_reauth_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -3,7 +3,7 @@ from _typeshed import Incomplete
|
|
|
3
3
|
from aioamazondevices.api import AmazonDevice
|
|
4
4
|
from aiohttp import ClientSession as ClientSession
|
|
5
5
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
6
|
-
from homeassistant.const import
|
|
6
|
+
from homeassistant.const import CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
|
|
7
7
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
8
8
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed
|
|
9
9
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from .const import CONF_SITE_ID as CONF_SITE_ID, CONF_SITE_NAME as CONF_SITE_NAME, DOMAIN as DOMAIN
|
|
1
|
+
from .const import CONF_SITE_ID as CONF_SITE_ID, CONF_SITE_NAME as CONF_SITE_NAME, DOMAIN as DOMAIN, REQUEST_TIMEOUT as REQUEST_TIMEOUT
|
|
2
2
|
from amberelectric.models.site import Site as Site
|
|
3
3
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
|
4
4
|
from homeassistant.const import CONF_API_TOKEN as CONF_API_TOKEN
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import amberelectric
|
|
2
|
-
from .const import LOGGER as LOGGER
|
|
2
|
+
from .const import LOGGER as LOGGER, REQUEST_TIMEOUT as REQUEST_TIMEOUT
|
|
3
3
|
from .helpers import normalize_descriptor as normalize_descriptor
|
|
4
4
|
from _typeshed import Incomplete
|
|
5
5
|
from amberelectric.models.actual_interval import ActualInterval as ActualInterval
|
|
@@ -2,7 +2,7 @@ from .const import DOMAIN as DOMAIN
|
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from aionanoleaf import Nanoleaf
|
|
4
4
|
from collections.abc import Mapping
|
|
5
|
-
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, SOURCE_REAUTH as SOURCE_REAUTH
|
|
5
|
+
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, SOURCE_REAUTH as SOURCE_REAUTH, SOURCE_USER as SOURCE_USER
|
|
6
6
|
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_TOKEN as CONF_TOKEN
|
|
7
7
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
|
8
8
|
from homeassistant.helpers.json import save_json as save_json
|
|
@@ -10,7 +10,7 @@ from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFai
|
|
|
10
10
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
|
11
11
|
from typing import Any
|
|
12
12
|
from volvocarsapi.api import VolvoCarsApi as VolvoCarsApi
|
|
13
|
-
from volvocarsapi.models import VolvoCarsApiBaseModel, VolvoCarsVehicle as VolvoCarsVehicle
|
|
13
|
+
from volvocarsapi.models import VolvoCarsApiBaseModel, VolvoCarsValueStatusField, VolvoCarsVehicle as VolvoCarsVehicle
|
|
14
14
|
|
|
15
15
|
VERY_SLOW_INTERVAL: int
|
|
16
16
|
SLOW_INTERVAL: int
|
|
@@ -44,5 +44,7 @@ class VolvoSlowIntervalCoordinator(VolvoBaseCoordinator):
|
|
|
44
44
|
async def _async_determine_api_calls(self) -> list[Callable[[], Coroutine[Any, Any, Any]]]: ...
|
|
45
45
|
|
|
46
46
|
class VolvoMediumIntervalCoordinator(VolvoBaseCoordinator):
|
|
47
|
+
_supported_capabilities: list[str]
|
|
47
48
|
def __init__(self, hass: HomeAssistant, entry: VolvoConfigEntry, api: VolvoCarsApi, vehicle: VolvoCarsVehicle) -> None: ...
|
|
48
49
|
async def _async_determine_api_calls(self) -> list[Callable[[], Coroutine[Any, Any, Any]]]: ...
|
|
50
|
+
async def _async_get_energy_state(self) -> dict[str, VolvoCarsValueStatusField | None]: ...
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
from . import CONF_CLOUDHOOK_URL as CONF_CLOUDHOOK_URL, WithingsConfigEntry as WithingsConfigEntry
|
|
2
|
+
from _typeshed import Incomplete
|
|
3
|
+
from homeassistant.components.diagnostics import async_redact_data as async_redact_data
|
|
2
4
|
from homeassistant.const import CONF_WEBHOOK_ID as CONF_WEBHOOK_ID
|
|
3
5
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
4
6
|
from typing import Any
|
|
5
7
|
|
|
8
|
+
TO_REDACT: Incomplete
|
|
9
|
+
|
|
6
10
|
async def async_get_config_entry_diagnostics(hass: HomeAssistant, entry: WithingsConfigEntry) -> dict[str, Any]: ...
|
|
@@ -12,6 +12,7 @@ from homeassistant.const import CONF_NAME as CONF_NAME, CONF_URL as CONF_URL
|
|
|
12
12
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
|
13
13
|
from homeassistant.data_entry_flow import AbortFlow as AbortFlow
|
|
14
14
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
|
15
|
+
from homeassistant.helpers import selector as selector
|
|
15
16
|
from homeassistant.helpers.hassio import is_hassio as is_hassio
|
|
16
17
|
from homeassistant.helpers.service_info.hassio import HassioServiceInfo as HassioServiceInfo
|
|
17
18
|
from homeassistant.helpers.service_info.usb import UsbServiceInfo as UsbServiceInfo
|
|
@@ -28,6 +29,7 @@ TITLE: str
|
|
|
28
29
|
ADDON_SETUP_TIMEOUT: int
|
|
29
30
|
ADDON_SETUP_TIMEOUT_ROUNDS: int
|
|
30
31
|
ADDON_USER_INPUT_MAP: Incomplete
|
|
32
|
+
CONF_ADDON_RF_REGION: str
|
|
31
33
|
EXAMPLE_SERVER_URL: str
|
|
32
34
|
ON_SUPERVISOR_SCHEMA: Incomplete
|
|
33
35
|
MIN_MIGRATION_SDK_VERSION: Incomplete
|
|
@@ -35,6 +37,7 @@ NETWORK_TYPE_NEW: str
|
|
|
35
37
|
NETWORK_TYPE_EXISTING: str
|
|
36
38
|
ZWAVE_JS_SERVER_INSTRUCTIONS: str
|
|
37
39
|
ZWAVE_JS_UI_MIGRATION_INSTRUCTIONS: str
|
|
40
|
+
RF_REGIONS: Incomplete
|
|
38
41
|
|
|
39
42
|
def get_manual_schema(user_input: dict[str, Any]) -> vol.Schema: ...
|
|
40
43
|
def get_on_supervisor_schema(user_input: dict[str, Any]) -> vol.Schema: ...
|
|
@@ -64,10 +67,12 @@ class ZWaveJSConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
|
64
67
|
backup_data: bytes | None
|
|
65
68
|
backup_filepath: Path | None
|
|
66
69
|
use_addon: bool
|
|
70
|
+
_addon_config_updates: dict[str, Any]
|
|
67
71
|
_migrating: bool
|
|
68
72
|
_reconfigure_config_entry: ZwaveJSConfigEntry | None
|
|
69
73
|
_usb_discovery: bool
|
|
70
74
|
_recommended_install: bool
|
|
75
|
+
_rf_region: str | None
|
|
71
76
|
def __init__(self) -> None: ...
|
|
72
77
|
async def async_step_install_addon(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
73
78
|
async def async_step_install_failed(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -92,6 +97,7 @@ class ZWaveJSConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
|
92
97
|
async def async_step_hassio_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
93
98
|
async def async_step_intent_recommended(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
94
99
|
async def async_step_intent_custom(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
100
|
+
async def async_step_rf_region(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
95
101
|
async def async_step_on_supervisor(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
96
102
|
async def async_step_configure_addon_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
97
103
|
async def async_step_network_type(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -19,10 +19,10 @@ from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
19
19
|
from homeassistant.helpers.typing import StateType as StateType, UNDEFINED as UNDEFINED
|
|
20
20
|
from typing import Any
|
|
21
21
|
from zwave_js_server.model.controller import Controller
|
|
22
|
-
from zwave_js_server.model.controller.statistics import ControllerStatistics
|
|
22
|
+
from zwave_js_server.model.controller.statistics import ControllerStatistics
|
|
23
23
|
from zwave_js_server.model.driver import Driver as Driver
|
|
24
24
|
from zwave_js_server.model.node import Node as ZwaveNode
|
|
25
|
-
from zwave_js_server.model.node.statistics import NodeStatistics
|
|
25
|
+
from zwave_js_server.model.node.statistics import NodeStatistics
|
|
26
26
|
|
|
27
27
|
PARALLEL_UPDATES: int
|
|
28
28
|
ENTITY_DESCRIPTION_KEY_UNIT_MAP: dict[tuple[str, str], SensorEntityDescription]
|
|
@@ -128,9 +128,12 @@ class ZWaveStatisticsSensor(SensorEntity):
|
|
|
128
128
|
_base_unique_id: Incomplete
|
|
129
129
|
_attr_unique_id: Incomplete
|
|
130
130
|
_attr_device_info: Incomplete
|
|
131
|
-
def __init__(self, config_entry: ZwaveJSConfigEntry, driver: Driver, statistics_src:
|
|
131
|
+
def __init__(self, config_entry: ZwaveJSConfigEntry, driver: Driver, statistics_src: Controller | ZwaveNode, description: ZWaveJSStatisticsSensorEntityDescription) -> None: ...
|
|
132
132
|
async def async_poll_value(self, _: bool) -> None: ...
|
|
133
|
+
@callback
|
|
134
|
+
def _statistics_updated(self, event_data: dict) -> None: ...
|
|
133
135
|
_attr_native_value: Incomplete
|
|
136
|
+
_attr_available: bool
|
|
134
137
|
@callback
|
|
135
|
-
def
|
|
138
|
+
def _set_statistics(self, statistics: ControllerStatistics | NodeStatistics) -> None: ...
|
|
136
139
|
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.8.
|
|
3
|
+
Version: 2025.8.3
|
|
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.8.
|
|
21
|
+
Requires-Dist: homeassistant==2025.8.3
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
|
@@ -220,11 +220,11 @@ homeassistant-stubs/components/alexa/logbook.pyi,sha256=IhG7XLy2b-HwN29z5IdYjzse
|
|
|
220
220
|
homeassistant-stubs/components/alexa/resources.pyi,sha256=xMQBaxEGbaPEoshHfFP63Y_1Cc4syY9_HUoq43G4JYk,3942
|
|
221
221
|
homeassistant-stubs/components/alexa/smart_home.pyi,sha256=RmHUf67v2P6JgBBMf6YQ9qtbUVV-SrgWyW0TbhhjPtk,2615
|
|
222
222
|
homeassistant-stubs/components/alexa/state_report.pyi,sha256=z6l9miD598LoKEdlMP2dQ-CtR5PYe3aZNTY4pxXWUvI,3567
|
|
223
|
-
homeassistant-stubs/components/alexa_devices/__init__.pyi,sha256=
|
|
223
|
+
homeassistant-stubs/components/alexa_devices/__init__.pyi,sha256=LlloyjFWjLRN4FVES8cDCZGqtKiA7kZgTDF4fOLVLxc,981
|
|
224
224
|
homeassistant-stubs/components/alexa_devices/binary_sensor.pyi,sha256=VPfaNQ6tpM8vLlOefGfdG5v6XrsLnH7TR8e71pm3A1c,1362
|
|
225
|
-
homeassistant-stubs/components/alexa_devices/config_flow.pyi,sha256=
|
|
226
|
-
homeassistant-stubs/components/alexa_devices/const.pyi,sha256=
|
|
227
|
-
homeassistant-stubs/components/alexa_devices/coordinator.pyi,sha256=
|
|
225
|
+
homeassistant-stubs/components/alexa_devices/config_flow.pyi,sha256=putJqkkyxrtcDZ9OjifMnI9FmRDEdczeNQyYznBlekI,1054
|
|
226
|
+
homeassistant-stubs/components/alexa_devices/const.pyi,sha256=dqNKo4u5J-0i9uoeD4rw8vZILqUNnQ3KizoQ8PAkFrQ,142
|
|
227
|
+
homeassistant-stubs/components/alexa_devices/coordinator.pyi,sha256=RS7MNdKpbWL5HybB3JUnWCe__2ebWawhmFpG34pww9E,1059
|
|
228
228
|
homeassistant-stubs/components/alexa_devices/diagnostics.pyi,sha256=bRYiRMxTdgbGeSTQw0w0S91vwU2sCBuBNfHvyt_mgug,870
|
|
229
229
|
homeassistant-stubs/components/alexa_devices/entity.pyi,sha256=1oxFqfyw52JjClztThBJdtXj2BeC3_KWt0YPhsgiHrQ,914
|
|
230
230
|
homeassistant-stubs/components/alexa_devices/notify.pyi,sha256=JDU6BbYvy7NlK41ivzAJz0CDDJpr5M-2OJk858PK5M4,1391
|
|
@@ -244,9 +244,9 @@ homeassistant-stubs/components/amazon_polly/const.pyi,sha256=4AWIZqUdLbEYLAxKonq
|
|
|
244
244
|
homeassistant-stubs/components/amazon_polly/tts.pyi,sha256=gNbfNGLupgS07zyPswsAa_x6jJo5DupT7WEX_v6_iEY,2555
|
|
245
245
|
homeassistant-stubs/components/amberelectric/__init__.pyi,sha256=uoijsLHT9X5HDCNIHKTXk0RrBM1T_7USaQRESuWrmyU,765
|
|
246
246
|
homeassistant-stubs/components/amberelectric/binary_sensor.pyi,sha256=7Ih3REci4jDCi43fFQDwySkDH3UVHauffbDe75U4Wlk,1545
|
|
247
|
-
homeassistant-stubs/components/amberelectric/config_flow.pyi,sha256=
|
|
248
|
-
homeassistant-stubs/components/amberelectric/const.pyi,sha256=
|
|
249
|
-
homeassistant-stubs/components/amberelectric/coordinator.pyi,sha256=
|
|
247
|
+
homeassistant-stubs/components/amberelectric/config_flow.pyi,sha256=cm3s6aICBtoLu0fJIf0AoeC3Zn7pWQ06mHf1MiGqdOs,1152
|
|
248
|
+
homeassistant-stubs/components/amberelectric/const.pyi,sha256=iTDY_Yi_fDW6dTOlSB6y7q4unPtyEvAiX-SnrNy6XGk,395
|
|
249
|
+
homeassistant-stubs/components/amberelectric/coordinator.pyi,sha256=7FkxA4odjCsuB7KTKrnLjjZ5vxYWBogvUFKw2Vz4Rjk,1610
|
|
250
250
|
homeassistant-stubs/components/amberelectric/helpers.pyi,sha256=lTqhNiOpEGtRmwrmK_bkAA4oltv6hQbrv9_W94RNOm4,235
|
|
251
251
|
homeassistant-stubs/components/amberelectric/sensor.pyi,sha256=JLzznFrs18kgxjiTdPRPkAW8OjaRxA1eyN0OMame4uk,2491
|
|
252
252
|
homeassistant-stubs/components/amberelectric/services.pyi,sha256=aaXltHzFNJKhbcBKTwNBnuEMCQpKLqdghvMqO5gf9Fo,1241
|
|
@@ -2442,7 +2442,7 @@ homeassistant-stubs/components/nam/diagnostics.pyi,sha256=Cwdi_zup6ONKTQLzUAZoxj
|
|
|
2442
2442
|
homeassistant-stubs/components/nam/sensor.pyi,sha256=z_5_uOidb_i5ABS1nf4YvDR3bg6p8x85Skp4bNdmBRc,3666
|
|
2443
2443
|
homeassistant-stubs/components/nanoleaf/__init__.pyi,sha256=Op2hMhzrwdwUvKuOP5nAxC9Aex3O8JnLJLwLLlDclG4,1046
|
|
2444
2444
|
homeassistant-stubs/components/nanoleaf/button.pyi,sha256=BYuiWO61qD2r7sVaIqSciZnNSkZWPguXyA2yksdkV4Q,977
|
|
2445
|
-
homeassistant-stubs/components/nanoleaf/config_flow.pyi,sha256=
|
|
2445
|
+
homeassistant-stubs/components/nanoleaf/config_flow.pyi,sha256=n2R626E4mRweZ3jHNB2qlj_a7saQtTydvhUvuxUazHo,2103
|
|
2446
2446
|
homeassistant-stubs/components/nanoleaf/const.pyi,sha256=nZ7nhT-M2l5WmvhBSSDtbHgtNFtlcJM6CmhnIwOqvrk,136
|
|
2447
2447
|
homeassistant-stubs/components/nanoleaf/coordinator.pyi,sha256=X_HT8ygUCcdbs6uZhW0nRqdA5yJSvEjRxzj3jxds2uE,787
|
|
2448
2448
|
homeassistant-stubs/components/nanoleaf/device_trigger.pyi,sha256=4tUwr9dh3LBnk1lV9JwmnupFahNSu6UcCMCVqWCCWdI,1199
|
|
@@ -3992,7 +3992,7 @@ homeassistant-stubs/components/volvo/api.pyi,sha256=7k2WEkR3EUhksrG1n5DN-b497mM5
|
|
|
3992
3992
|
homeassistant-stubs/components/volvo/application_credentials.pyi,sha256=Qb0CsTVs1--I5K_mMl_PHlaTvdbjr_v5OeCzt0GcetE,565
|
|
3993
3993
|
homeassistant-stubs/components/volvo/config_flow.pyi,sha256=7FNrotdJ5i-Ex6oBvbvHsE6yehaCdL6XiwTayVrnliM,2350
|
|
3994
3994
|
homeassistant-stubs/components/volvo/const.pyi,sha256=wse2lw9UztYsvEk8Q6l7rKqMhKaMQDgoajBB6E5RJOk,175
|
|
3995
|
-
homeassistant-stubs/components/volvo/coordinator.pyi,sha256=
|
|
3995
|
+
homeassistant-stubs/components/volvo/coordinator.pyi,sha256=JCpIF9ZV71QN_hmnupmr6Gdb0KqoDVxaCYs142EZ2kM,2902
|
|
3996
3996
|
homeassistant-stubs/components/volvo/entity.pyi,sha256=edPI-yiQDDqVYMtN4X5MXymTRRZgyBsQcAA2Jrdumfs,1535
|
|
3997
3997
|
homeassistant-stubs/components/volvo/sensor.pyi,sha256=zK2v6JQXJC1MmRZl-mSdP1bnoZZfWnVOu8TRdrL7Gkc,2224
|
|
3998
3998
|
homeassistant-stubs/components/wake_on_lan/__init__.pyi,sha256=OvyHJH7caWo2ITC5ylFgG8X-s2ExKoL_JGC9XAelsfI,913
|
|
@@ -4081,7 +4081,7 @@ homeassistant-stubs/components/withings/calendar.pyi,sha256=A4txSMbRzceLZOOQj9qA
|
|
|
4081
4081
|
homeassistant-stubs/components/withings/config_flow.pyi,sha256=WJSCReyIX5me4ASaIJ7Hbb68sVlPQbl67f8g1FPwC38,1084
|
|
4082
4082
|
homeassistant-stubs/components/withings/const.pyi,sha256=Q2d0Lz7o9MyUSg0QDLG_5Hb3hynQK_2uuI6GnbnTUuo,189
|
|
4083
4083
|
homeassistant-stubs/components/withings/coordinator.pyi,sha256=mUhh6jeUI8oPNfBHxMkXgjVfhzjTbZW357ha62RMevQ,4216
|
|
4084
|
-
homeassistant-stubs/components/withings/diagnostics.pyi,sha256=
|
|
4084
|
+
homeassistant-stubs/components/withings/diagnostics.pyi,sha256=9f1iLFPAs73b3xInUBWNeWm1N0YVpgIsKgqNlaAVodg,513
|
|
4085
4085
|
homeassistant-stubs/components/withings/entity.pyi,sha256=joFiRPrccn6qYBPsoPKwKNy_box24BCMf0W485OIuqo,1098
|
|
4086
4086
|
homeassistant-stubs/components/withings/sensor.pyi,sha256=-2durpalv0cAnQ3c_61Lb6oysTdAs_qdZu9_5M1t-vE,5494
|
|
4087
4087
|
homeassistant-stubs/components/wiz/__init__.pyi,sha256=uZk8JCEA95JJDmncVdnzGwFTYWhFqGEs7ip9-3V5JZY,1802
|
|
@@ -4184,7 +4184,7 @@ homeassistant-stubs/components/zwave_js/api.pyi,sha256=kxJPbhjJLAy3vD6aM69s1A3wM
|
|
|
4184
4184
|
homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=wfi4mQWvrV6jCN9sus08Joi570UjnVuXmf6fSO5G_XI,3615
|
|
4185
4185
|
homeassistant-stubs/components/zwave_js/button.pyi,sha256=fizq4DRptMhKhZGCutC0iCY_oXga09e-w8k6wQ6b8_w,2190
|
|
4186
4186
|
homeassistant-stubs/components/zwave_js/climate.pyi,sha256=s4bPmmgVxNtTbZ_NYjUMY5Ii9IC0YLcMDo6j6KEYcVM,4458
|
|
4187
|
-
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=
|
|
4187
|
+
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=tZjpMCDZj8hvuBXELtRFv8VPUQN9L_AeVDLItQ0CgXs,9629
|
|
4188
4188
|
homeassistant-stubs/components/zwave_js/config_validation.pyi,sha256=i0l2VLc5E1-pW3oHZjxqeKJ1FJg7h4nwcDv02KtGHzU,148
|
|
4189
4189
|
homeassistant-stubs/components/zwave_js/const.pyi,sha256=g4Ptd1xVnqH62Q76Ane5Xu1cUPLSg9Q90bEQssSwyKE,3795
|
|
4190
4190
|
homeassistant-stubs/components/zwave_js/cover.pyi,sha256=dMcYjvsDGuf86RJGGVf_INsf9GSUXEl7qv_pymIOyLc,5018
|
|
@@ -4208,7 +4208,7 @@ homeassistant-stubs/components/zwave_js/models.pyi,sha256=c7fwOKcwDzhtDgacyYLHog
|
|
|
4208
4208
|
homeassistant-stubs/components/zwave_js/number.pyi,sha256=rnOn_NhYdAJXw_LcX6QOASq14d6vP3Uma58wno_kEo4,2486
|
|
4209
4209
|
homeassistant-stubs/components/zwave_js/repairs.pyi,sha256=bBBXgcLwzFW9fILIGFUkRqmhVTEiHI7C9HhNetN7Oyk,1387
|
|
4210
4210
|
homeassistant-stubs/components/zwave_js/select.pyi,sha256=XZCwyYFtHRkhoYkuhPXkR81eiqkp0fN57wzicJkOYPg,2661
|
|
4211
|
-
homeassistant-stubs/components/zwave_js/sensor.pyi,sha256=
|
|
4211
|
+
homeassistant-stubs/components/zwave_js/sensor.pyi,sha256=OwkV9LcntG58rHJ8J3R8bST6iT3VvJHBqycmLZzB4iE,9353
|
|
4212
4212
|
homeassistant-stubs/components/zwave_js/services.pyi,sha256=DZCIhnJc3E0P-9s-I_sgML63DscbdbXlQmgCIGXPn_I,3003
|
|
4213
4213
|
homeassistant-stubs/components/zwave_js/siren.pyi,sha256=ehgCjSAirdJU-lVgkVtUtsTpvgwVdqHo_VC2rKV5a28,1427
|
|
4214
4214
|
homeassistant-stubs/components/zwave_js/switch.pyi,sha256=6wjs5X17YMNmp9Tgm8fAPa-XCWJWmK4-ou0DUazrcv4,2396
|
|
@@ -4364,7 +4364,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4364
4364
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4365
4365
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4366
4366
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4367
|
-
homeassistant_stubs-2025.8.
|
|
4368
|
-
homeassistant_stubs-2025.8.
|
|
4369
|
-
homeassistant_stubs-2025.8.
|
|
4370
|
-
homeassistant_stubs-2025.8.
|
|
4367
|
+
homeassistant_stubs-2025.8.3.dist-info/METADATA,sha256=L4Fj2Nn0nCfeRGZ-D2bzmLWbdCjyBw80MHzNi6s7e5I,2948
|
|
4368
|
+
homeassistant_stubs-2025.8.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4369
|
+
homeassistant_stubs-2025.8.3.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4370
|
+
homeassistant_stubs-2025.8.3.dist-info/RECORD,,
|
|
File without changes
|
{homeassistant_stubs-2025.8.2.dist-info → homeassistant_stubs-2025.8.3.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|