homeassistant-stubs 2025.10.2__py3-none-any.whl → 2025.10.4__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/auth/mfa_modules/totp.pyi +2 -0
- homeassistant-stubs/components/airnow/config_flow.pyi +1 -0
- homeassistant-stubs/components/bluetooth/match.pyi +2 -1
- homeassistant-stubs/components/co2signal/config_flow.pyi +1 -0
- homeassistant-stubs/components/lametric/config_flow.pyi +2 -0
- homeassistant-stubs/components/lcn/sensor.pyi +1 -1
- homeassistant-stubs/components/mealie/config_flow.pyi +1 -0
- homeassistant-stubs/components/pyload/config_flow.pyi +1 -0
- homeassistant-stubs/components/simplisafe/config_flow.pyi +2 -0
- homeassistant-stubs/components/switcher_kis/config_flow.pyi +1 -1
- homeassistant-stubs/components/switcher_kis/const.pyi +1 -0
- homeassistant-stubs/components/uptime_kuma/config_flow.pyi +1 -0
- {homeassistant_stubs-2025.10.2.dist-info → homeassistant_stubs-2025.10.4.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.10.2.dist-info → homeassistant_stubs-2025.10.4.dist-info}/RECORD +16 -16
- {homeassistant_stubs-2025.10.2.dist-info → homeassistant_stubs-2025.10.4.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.10.2.dist-info → homeassistant_stubs-2025.10.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -16,6 +16,8 @@ STORAGE_USER_ID: str
|
|
|
16
16
|
STORAGE_OTA_SECRET: str
|
|
17
17
|
INPUT_FIELD_CODE: str
|
|
18
18
|
DUMMY_SECRET: str
|
|
19
|
+
GOOGLE_AUTHENTICATOR_URL: str
|
|
20
|
+
AUTHY_URL: str
|
|
19
21
|
|
|
20
22
|
def _generate_qr_code(data: str) -> str: ...
|
|
21
23
|
def _generate_secret_and_qr_code(username: str) -> tuple[str, str, str]: ...
|
|
@@ -36,8 +36,9 @@ class IntegrationMatchHistory:
|
|
|
36
36
|
manufacturer_data: bool
|
|
37
37
|
service_data: set[str]
|
|
38
38
|
service_uuids: set[str]
|
|
39
|
+
name: str
|
|
39
40
|
|
|
40
|
-
def seen_all_fields(previous_match: IntegrationMatchHistory, advertisement_data: AdvertisementData) -> bool: ...
|
|
41
|
+
def seen_all_fields(previous_match: IntegrationMatchHistory, advertisement_data: AdvertisementData, name: str) -> bool: ...
|
|
41
42
|
|
|
42
43
|
class IntegrationMatcher:
|
|
43
44
|
__slots__: Incomplete
|
|
@@ -14,6 +14,8 @@ from homeassistant.helpers.service_info.ssdp import ATTR_UPNP_FRIENDLY_NAME as A
|
|
|
14
14
|
from homeassistant.util.network import is_link_local as is_link_local
|
|
15
15
|
from typing import Any
|
|
16
16
|
|
|
17
|
+
DEVICES_URL: str
|
|
18
|
+
|
|
17
19
|
class LaMetricFlowHandler(AbstractOAuth2FlowHandler, domain=DOMAIN):
|
|
18
20
|
DOMAIN = DOMAIN
|
|
19
21
|
VERSION: int
|
|
@@ -4,7 +4,7 @@ from .helpers import InputType as InputType, LcnConfigEntry as LcnConfigEntry
|
|
|
4
4
|
from _typeshed import Incomplete
|
|
5
5
|
from collections.abc import Iterable
|
|
6
6
|
from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity
|
|
7
|
-
from homeassistant.const import CONCENTRATION_PARTS_PER_MILLION as CONCENTRATION_PARTS_PER_MILLION, CONF_DOMAIN as CONF_DOMAIN, CONF_ENTITIES as CONF_ENTITIES, CONF_SOURCE as CONF_SOURCE, CONF_UNIT_OF_MEASUREMENT as CONF_UNIT_OF_MEASUREMENT, LIGHT_LUX as LIGHT_LUX, UnitOfElectricCurrent as UnitOfElectricCurrent, UnitOfElectricPotential as UnitOfElectricPotential, UnitOfSpeed as UnitOfSpeed, UnitOfTemperature as UnitOfTemperature
|
|
7
|
+
from homeassistant.const import CONCENTRATION_PARTS_PER_MILLION as CONCENTRATION_PARTS_PER_MILLION, CONF_DOMAIN as CONF_DOMAIN, CONF_ENTITIES as CONF_ENTITIES, CONF_SOURCE as CONF_SOURCE, CONF_UNIT_OF_MEASUREMENT as CONF_UNIT_OF_MEASUREMENT, LIGHT_LUX as LIGHT_LUX, PERCENTAGE as PERCENTAGE, UnitOfElectricCurrent as UnitOfElectricCurrent, UnitOfElectricPotential as UnitOfElectricPotential, UnitOfSpeed as UnitOfSpeed, UnitOfTemperature as UnitOfTemperature
|
|
8
8
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
9
9
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
|
10
10
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
|
@@ -8,6 +8,8 @@ from homeassistant.helpers import aiohttp_client as aiohttp_client
|
|
|
8
8
|
from typing import Any, NamedTuple
|
|
9
9
|
|
|
10
10
|
CONF_AUTH_CODE: str
|
|
11
|
+
CONF_DOCUMENTATION_URL: str
|
|
12
|
+
DOCUMENTATION_URL: str
|
|
11
13
|
STEP_USER_SCHEMA: Incomplete
|
|
12
14
|
|
|
13
15
|
class SimpliSafeOAuthValues(NamedTuple):
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from .const import DOMAIN as DOMAIN
|
|
1
|
+
from .const import DOMAIN as DOMAIN, PREREQUISITES_URL as PREREQUISITES_URL
|
|
2
2
|
from .utils import async_discover_devices as async_discover_devices
|
|
3
3
|
from _typeshed import Incomplete
|
|
4
4
|
from aioswitcher.device import SwitcherBase as SwitcherBase
|
|
@@ -13,6 +13,7 @@ from yarl import URL
|
|
|
13
13
|
_LOGGER: Incomplete
|
|
14
14
|
STEP_USER_DATA_SCHEMA: Incomplete
|
|
15
15
|
STEP_REAUTH_DATA_SCHEMA: Incomplete
|
|
16
|
+
PLACEHOLDER: Incomplete
|
|
16
17
|
|
|
17
18
|
async def validate_connection(hass: HomeAssistant, url: URL | str, verify_ssl: bool, api_key: str | None) -> dict[str, str]: ...
|
|
18
19
|
|
{homeassistant_stubs-2025.10.2.dist-info → homeassistant_stubs-2025.10.4.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.4
|
|
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.4
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
|
@@ -22,7 +22,7 @@ homeassistant-stubs/auth/models.pyi,sha256=nWy0Gdxow0lpyWkgwX_OcUnUP8pp4l_Hyz31g
|
|
|
22
22
|
homeassistant-stubs/auth/mfa_modules/__init__.pyi,sha256=AJguIgKWwwV_HJaAjIlhocj2pbS6BUiJDY3vfTMwPKc,2254
|
|
23
23
|
homeassistant-stubs/auth/mfa_modules/insecure_example.pyi,sha256=A5dS-WBilESL19aNVIgAuEleYnFw4JGtCftqs-ncZRA,1049
|
|
24
24
|
homeassistant-stubs/auth/mfa_modules/notify.pyi,sha256=zL5iMXu8hP6t5slfFav8cSHw6samBzQr3W8ABYezg7M,3138
|
|
25
|
-
homeassistant-stubs/auth/mfa_modules/totp.pyi,sha256=
|
|
25
|
+
homeassistant-stubs/auth/mfa_modules/totp.pyi,sha256=cvCzCdlMAQGWVv2I2DjrRD5UNeZRnVSQn1bGsm5Q018,2148
|
|
26
26
|
homeassistant-stubs/auth/permissions/__init__.pyi,sha256=ZqmM5qcSjCTVmKoQDfA4-ElNeKf-35IydViXYo87PkQ,1218
|
|
27
27
|
homeassistant-stubs/auth/permissions/const.pyi,sha256=wF8_MdJqpm78jJorT1x-EX_EoefTseBoinIwD8eHmnw,112
|
|
28
28
|
homeassistant-stubs/auth/permissions/entities.pyi,sha256=-YronzaGgZFaAajDGjOtXU46q_6lMFtI4UXmkvrZTVI,1277
|
|
@@ -123,7 +123,7 @@ homeassistant-stubs/components/airly/diagnostics.pyi,sha256=BKr6S-dxTU0VE8KqGBdo
|
|
|
123
123
|
homeassistant-stubs/components/airly/sensor.pyi,sha256=odYmhxvgVPDM36no7t6KIm_dhMGkISUGck8X5yLpo20,2839
|
|
124
124
|
homeassistant-stubs/components/airly/system_health.pyi,sha256=hMH2DdIzWWrz0Rf1nE0Fe17wd_dtMIqfJM5shDrnecI,460
|
|
125
125
|
homeassistant-stubs/components/airnow/__init__.pyi,sha256=WXHdEL71RBHLEl99Aa8Sv-z462dHfBQy7Rm8to-LyG0,869
|
|
126
|
-
homeassistant-stubs/components/airnow/config_flow.pyi,sha256=
|
|
126
|
+
homeassistant-stubs/components/airnow/config_flow.pyi,sha256=NqKq1q-fFcBvVcn-P5f1lAk7DhWSBsFdFeW4LKTx-6U,1400
|
|
127
127
|
homeassistant-stubs/components/airnow/const.pyi,sha256=rX_khNx6wroEZR4basTAks2nxsbChN_Zk8fB9jiMWok,545
|
|
128
128
|
homeassistant-stubs/components/airnow/coordinator.pyi,sha256=dGmNygoi7QTcUL534j9a5VsB3KJNAQwopIsHgt-llEI,1665
|
|
129
129
|
homeassistant-stubs/components/airnow/diagnostics.pyi,sha256=qWMf618PHzSDWEI6q0k8RJHvWVMnHMswnK-JK2FZqW0,679
|
|
@@ -539,7 +539,7 @@ homeassistant-stubs/components/bluetooth/config_flow.pyi,sha256=OkuvtGzwRy36qXou
|
|
|
539
539
|
homeassistant-stubs/components/bluetooth/const.pyi,sha256=0rRcnN1foshytrRJOii3wizEwltPlbsfylqrT3Qzzfo,827
|
|
540
540
|
homeassistant-stubs/components/bluetooth/diagnostics.pyi,sha256=stMT7dSQu7YxfJty9a1ZUtJNJ98A6bWvd6wBCxwnSg8,309
|
|
541
541
|
homeassistant-stubs/components/bluetooth/manager.pyi,sha256=ArsaIMnhFK6DYtS_WEMirXNna9OIXa3Qk_DoI44hbKw,4068
|
|
542
|
-
homeassistant-stubs/components/bluetooth/match.pyi,sha256=
|
|
542
|
+
homeassistant-stubs/components/bluetooth/match.pyi,sha256=avDv_ngdcdnDtag1hcT-kH_uTYgmJoejXcSCLTHsY0w,3632
|
|
543
543
|
homeassistant-stubs/components/bluetooth/models.pyi,sha256=igAWRDXRCnweWA6acfQtUSepSDAscirGfzNNCN6hLQg,328
|
|
544
544
|
homeassistant-stubs/components/bluetooth/passive_update_coordinator.pyi,sha256=juwt8PLQcvHrtn82FvfvR7kTjHYCq6Pm8hS6hd5_a-o,1859
|
|
545
545
|
homeassistant-stubs/components/bluetooth/passive_update_processor.pyi,sha256=DjGFrB2tU2Plvn-PFjmPHy4LPrYl-aOzu2_7ExBM3ks,7753
|
|
@@ -705,7 +705,7 @@ homeassistant-stubs/components/cloud/subscription.pyi,sha256=eKRWpCmJSRj9rAuTx75
|
|
|
705
705
|
homeassistant-stubs/components/cloud/system_health.pyi,sha256=fz4CdLgufHaNAiGgwh8Ayb6CqbZ7wovH4QTBku8OaFA,406
|
|
706
706
|
homeassistant-stubs/components/cloud/tts.pyi,sha256=AZx0sIj3hdKg6nrE3ux0Z-WgZy78-bnfGzbglOLG_dM,3996
|
|
707
707
|
homeassistant-stubs/components/co2signal/__init__.pyi,sha256=czmmkDdsDii7gYULoyOKDkPqlF4ZMhtx_KUzaRIdTyU,601
|
|
708
|
-
homeassistant-stubs/components/co2signal/config_flow.pyi,sha256=
|
|
708
|
+
homeassistant-stubs/components/co2signal/config_flow.pyi,sha256=5ni2LCBJ8r3FOlbe7dLO_Mwx5CFfrYU__DMrqj-3d_k,1751
|
|
709
709
|
homeassistant-stubs/components/co2signal/const.pyi,sha256=LApbRjh9urlABUmBAdcgAD8qepdXLb5UMlv-4K--lrk,29
|
|
710
710
|
homeassistant-stubs/components/co2signal/coordinator.pyi,sha256=6Rs9qoc-jEHsD0P2LXxIjKksTtHWizSHwa0Qa9U0LJI,1087
|
|
711
711
|
homeassistant-stubs/components/co2signal/diagnostics.pyi,sha256=2hojC9FpNinpfJst7Xn072DaFtIVTAt9-uBcp-nTJA4,486
|
|
@@ -1977,7 +1977,7 @@ homeassistant-stubs/components/lamarzocco/update.pyi,sha256=ht5ZBcAnx36uiA9bWOE4
|
|
|
1977
1977
|
homeassistant-stubs/components/lametric/__init__.pyi,sha256=g8aXL6WS0wOUltrUIFxH6a0ZzHLfmEzLHlxLp2OtpOk,839
|
|
1978
1978
|
homeassistant-stubs/components/lametric/application_credentials.pyi,sha256=Hra7BGzFBCV4iwzzb0E2x0pEzZCctL7V-Y3mSqXmvWs,257
|
|
1979
1979
|
homeassistant-stubs/components/lametric/button.pyi,sha256=kgfw39lvPlTy9G1JnbG7pHbfgX2swgHmfjB1rEcFKiU,1509
|
|
1980
|
-
homeassistant-stubs/components/lametric/config_flow.pyi,sha256=
|
|
1980
|
+
homeassistant-stubs/components/lametric/config_flow.pyi,sha256=GTpDFa8SJ7XNmF0AKwhbTYybEHn8oqej-Rpgvz0aPkc,2788
|
|
1981
1981
|
homeassistant-stubs/components/lametric/const.pyi,sha256=rVIs2_M0DN7DXgJBR8tLIGmtUHk3vl_4nTfR9vVn5VU,425
|
|
1982
1982
|
homeassistant-stubs/components/lametric/coordinator.pyi,sha256=CccMiLOkXkF_I1hzPStyUJzKiGZWl1bN9ePkNBb1m_o,1018
|
|
1983
1983
|
homeassistant-stubs/components/lametric/diagnostics.pyi,sha256=QBvZ-GlEEt6NiU4XGnqYlzG5OhnpNVU-tO2PunZcOeY,415
|
|
@@ -2011,7 +2011,7 @@ homeassistant-stubs/components/lcn/helpers.pyi,sha256=RsNTQ1SRYqDMLGPWKfcphb9HFT
|
|
|
2011
2011
|
homeassistant-stubs/components/lcn/light.pyi,sha256=cbPqFoj7R-4hidsf5ygKQ4LmDUUXF4CM2SFNIqR9tDI,2648
|
|
2012
2012
|
homeassistant-stubs/components/lcn/scene.pyi,sha256=N6UzOH9RN25VTX-yHqV7c9pCv9FGNVfQpttiBypqdKM,1435
|
|
2013
2013
|
homeassistant-stubs/components/lcn/schemas.pyi,sha256=TryYNY0baFNojqKcFwdFyjfBXx259pwuPBsCAMLMNR8,1539
|
|
2014
|
-
homeassistant-stubs/components/lcn/sensor.pyi,sha256=
|
|
2014
|
+
homeassistant-stubs/components/lcn/sensor.pyi,sha256=xzjgoey32NRzHzQWXPcpgKJwoGh0hwiDGBV0FihUaEM,2432
|
|
2015
2015
|
homeassistant-stubs/components/lcn/services.pyi,sha256=DDd62rvND6cpALi4CcQhrph25SDnb97Hn58ies1a5Z4,3720
|
|
2016
2016
|
homeassistant-stubs/components/lcn/switch.pyi,sha256=EFECuDvDsErDQLppLXSLIjrjX37cpSxFagfBOiXfct8,3134
|
|
2017
2017
|
homeassistant-stubs/components/lcn/websocket.pyi,sha256=K4I77iYiLMs1leT84Yb-rul_O07fqkl0XL7AP2bPYZQ,3961
|
|
@@ -2241,7 +2241,7 @@ homeassistant-stubs/components/mcp_server/session.pyi,sha256=b2_vxKIkgojvw23FYwe
|
|
|
2241
2241
|
homeassistant-stubs/components/mcp_server/types.pyi,sha256=5xqD3UZDNxfL9B1mwNgD6Qkhg6-w7-LaddmR2HWDQNY,179
|
|
2242
2242
|
homeassistant-stubs/components/mealie/__init__.pyi,sha256=GJ2p6j-juYFhV7vBXyRcaPMIKGKtQTsuuJqMxsfwc00,1469
|
|
2243
2243
|
homeassistant-stubs/components/mealie/calendar.pyi,sha256=8iUqACKIPE-gJkGD5fs-DREBgeTSZNhTb5ZXCGOvtFQ,1248
|
|
2244
|
-
homeassistant-stubs/components/mealie/config_flow.pyi,sha256=
|
|
2244
|
+
homeassistant-stubs/components/mealie/config_flow.pyi,sha256=fY3ckGESK4gfZ-niKWKLmjm4dW_15XLPlyC17Vcq3YA,1264
|
|
2245
2245
|
homeassistant-stubs/components/mealie/const.pyi,sha256=2nyKcUThy4l9vlXs9NN8-P3o8Vyxsriu_6mqkQpM1Po,310
|
|
2246
2246
|
homeassistant-stubs/components/mealie/coordinator.pyi,sha256=3iUe_lZiPrnD-0HsXEv_4ZPX5Xd9SDPxaO7xRsrv6PM,2179
|
|
2247
2247
|
homeassistant-stubs/components/mealie/diagnostics.pyi,sha256=IW1ZkJhvSFN3jYCx4fKLXG10kv4r7GQE8hpnBg7_7sQ,261
|
|
@@ -2923,7 +2923,7 @@ homeassistant-stubs/components/pvoutput/diagnostics.pyi,sha256=1QK8Wfa3kpEVc9T8z
|
|
|
2923
2923
|
homeassistant-stubs/components/pvoutput/sensor.pyi,sha256=0mRVnBEMt305Jnp0XDN1nhu8jjaOduHZ0V-rgGXK-h8,1942
|
|
2924
2924
|
homeassistant-stubs/components/pyload/__init__.pyi,sha256=KCPzCTO0gVpj72lAL1bKqqJ0j53HIMW-wuZ0YKpAMl4,865
|
|
2925
2925
|
homeassistant-stubs/components/pyload/button.pyi,sha256=OH6Y_eS6kLRh48OrBdpx9Vkjwp6QwprodSpCYBsd5mI,1449
|
|
2926
|
-
homeassistant-stubs/components/pyload/config_flow.pyi,sha256=
|
|
2926
|
+
homeassistant-stubs/components/pyload/config_flow.pyi,sha256=Y1Ka139QqtCvF6zSStv8wJx2NVFq5HfBQxppOPGoePE,1816
|
|
2927
2927
|
homeassistant-stubs/components/pyload/const.pyi,sha256=AS5Qyb2NXQHEhxxO7CkX6wZ4D1R9JnHU2q1pwqNgOTM,104
|
|
2928
2928
|
homeassistant-stubs/components/pyload/coordinator.pyi,sha256=bLvuDqbJ_OPhietvkp6h-xP9cveMZhuNeNJSfrpNLPE,1301
|
|
2929
2929
|
homeassistant-stubs/components/pyload/diagnostics.pyi,sha256=p3c48e3ejh5T3gImghAn9THzdxpItawrqgpHF0lW6Sg,581
|
|
@@ -3393,7 +3393,7 @@ homeassistant-stubs/components/simplisafe/__init__.pyi,sha256=cV5B-2q1A8mB21buBe
|
|
|
3393
3393
|
homeassistant-stubs/components/simplisafe/alarm_control_panel.pyi,sha256=Ghmvmzc9mNClolQxco6ctWO1G7T2GS1u4M1M8aPWFn0,2476
|
|
3394
3394
|
homeassistant-stubs/components/simplisafe/binary_sensor.pyi,sha256=P832r1fYr8nHkJr3GBZnDPF4-LWTBY-llghyOnDkFPc,1774
|
|
3395
3395
|
homeassistant-stubs/components/simplisafe/button.pyi,sha256=o-nF3IetQlgN5t9P5B8h2snZ1uDChDBkRrDpzgj2unU,1595
|
|
3396
|
-
homeassistant-stubs/components/simplisafe/config_flow.pyi,sha256=
|
|
3396
|
+
homeassistant-stubs/components/simplisafe/config_flow.pyi,sha256=F4GG2u_U5LUaPvHdtoSNksDtnhXki05ccRpGke52ldQ,1483
|
|
3397
3397
|
homeassistant-stubs/components/simplisafe/const.pyi,sha256=VUsp8jGvBZHRs6hKiE2j16e6LkNs8HGSUfaYMyAhsSQ,469
|
|
3398
3398
|
homeassistant-stubs/components/simplisafe/diagnostics.pyi,sha256=Qffl8ngShmOUBRXxbQM_eEYpv0Yrf_znnuNee5Y50kY,885
|
|
3399
3399
|
homeassistant-stubs/components/simplisafe/entity.pyi,sha256=TcGQiJkfpsABFMy8RPNh1OnVWkGYFGjauOdkLIReaTE,2246
|
|
@@ -3636,8 +3636,8 @@ homeassistant-stubs/components/switchbot_cloud/vacuum.pyi,sha256=nQivaZNvfGJ6_1f
|
|
|
3636
3636
|
homeassistant-stubs/components/switcher_kis/__init__.pyi,sha256=CrPHxbSoicuf72s01LlP4CDNf6d5xxj7pY_Ctj7HBTw,1022
|
|
3637
3637
|
homeassistant-stubs/components/switcher_kis/button.pyi,sha256=Uh3KrLAt07n8b4l4TylMjKPhHHYZBHyoFjcFRGh-mkk,2056
|
|
3638
3638
|
homeassistant-stubs/components/switcher_kis/climate.pyi,sha256=Px6KG9QqzP1ktTWOUXt5PESxACosgPuQee0_9gPV1is,2592
|
|
3639
|
-
homeassistant-stubs/components/switcher_kis/config_flow.pyi,sha256=
|
|
3640
|
-
homeassistant-stubs/components/switcher_kis/const.pyi,sha256=
|
|
3639
|
+
homeassistant-stubs/components/switcher_kis/config_flow.pyi,sha256=fK9aT6c76X5UnZFfXYd_g2o1xrrXUW-4lae_HfPhHD4,1338
|
|
3640
|
+
homeassistant-stubs/components/switcher_kis/const.pyi,sha256=grJqcGSvytADmsilMy8RabikD_ngn4iIAcmocZ6cBrI,222
|
|
3641
3641
|
homeassistant-stubs/components/switcher_kis/coordinator.pyi,sha256=Ki6g8GUnr84aLF4XA3a4gNE02cPjcnZKO8La02o1Igw,1129
|
|
3642
3642
|
homeassistant-stubs/components/switcher_kis/cover.pyi,sha256=0SN9jydjaBtj8yZv81Sy8J0okj-Mf-xEHIcNpzf-v7U,2116
|
|
3643
3643
|
homeassistant-stubs/components/switcher_kis/diagnostics.pyi,sha256=1f1AUfJVxaDSj_pb0nzmI6nPgHBjv-bzArkAhNg7mGs,404
|
|
@@ -3982,7 +3982,7 @@ homeassistant-stubs/components/uptime/config_flow.pyi,sha256=Hde8uRBEeYkguxs_Iqm
|
|
|
3982
3982
|
homeassistant-stubs/components/uptime/const.pyi,sha256=EesTADO0IqulvWQb_OCagRqUzAm-qjvTEyYNSq44RKs,160
|
|
3983
3983
|
homeassistant-stubs/components/uptime/sensor.pyi,sha256=lSfcOLj4oaXQE1ifCAbN3Gb8M-yra_HFoSiet_lEblg,987
|
|
3984
3984
|
homeassistant-stubs/components/uptime_kuma/__init__.pyi,sha256=W3J5H2_qMaKqJ7IxoLrc9hDLjonWOwGg6b5oJ2XDrq4,1003
|
|
3985
|
-
homeassistant-stubs/components/uptime_kuma/config_flow.pyi,sha256=
|
|
3985
|
+
homeassistant-stubs/components/uptime_kuma/config_flow.pyi,sha256=GJwKbzo1Kh5GUpls-mrFpzDvLmtptUV9V_OV8bEFi0o,1759
|
|
3986
3986
|
homeassistant-stubs/components/uptime_kuma/const.pyi,sha256=XOVaZM8eGg7dF3OXCshWXrWFO9aJQ_LMq9Jwll_TnWE,129
|
|
3987
3987
|
homeassistant-stubs/components/uptime_kuma/coordinator.pyi,sha256=wlz9_PT8BAHiaCWYthl1uArpRaZFOi1E8BBBHxvdMIw,1775
|
|
3988
3988
|
homeassistant-stubs/components/uptime_kuma/diagnostics.pyi,sha256=LHMl9liasXsWUfUginpbF7yoEeZdVFIjNTXApPEXqZw,421
|
|
@@ -4449,7 +4449,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4449
4449
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4450
4450
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4451
4451
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4452
|
-
homeassistant_stubs-2025.10.
|
|
4453
|
-
homeassistant_stubs-2025.10.
|
|
4454
|
-
homeassistant_stubs-2025.10.
|
|
4455
|
-
homeassistant_stubs-2025.10.
|
|
4452
|
+
homeassistant_stubs-2025.10.4.dist-info/METADATA,sha256=zATNWxIjUrf6KsYtsoR7ldllI2lccTORoQm4rVswJ9E,2950
|
|
4453
|
+
homeassistant_stubs-2025.10.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4454
|
+
homeassistant_stubs-2025.10.4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4455
|
+
homeassistant_stubs-2025.10.4.dist-info/RECORD,,
|
|
File without changes
|
{homeassistant_stubs-2025.10.2.dist-info → homeassistant_stubs-2025.10.4.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|