homeassistant-stubs 2024.3.0b3__py3-none-any.whl → 2024.3.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.
- homeassistant-stubs/components/bthome/config_flow.pyi +4 -4
- homeassistant-stubs/components/camera/prefs.pyi +2 -0
- homeassistant-stubs/components/homekit_controller/__init__.pyi +1 -0
- homeassistant-stubs/components/minecraft_server/__init__.pyi +1 -1
- homeassistant-stubs/components/tibber/sensor.pyi +4 -0
- homeassistant-stubs/components/unifiprotect/__init__.pyi +3 -1
- homeassistant-stubs/components/unifiprotect/migrate.pyi +3 -5
- homeassistant-stubs/helpers/config_validation.pyi +1 -0
- homeassistant-stubs/helpers/frame.pyi +2 -0
- {homeassistant_stubs-2024.3.0b3.dist-info → homeassistant_stubs-2024.3.0b5.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.3.0b3.dist-info → homeassistant_stubs-2024.3.0b5.dist-info}/RECORD +13 -13
- {homeassistant_stubs-2024.3.0b3.dist-info → homeassistant_stubs-2024.3.0b5.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.3.0b3.dist-info → homeassistant_stubs-2024.3.0b5.dist-info}/WHEEL +0 -0
@@ -4,7 +4,7 @@ from _typeshed import Incomplete
|
|
4
4
|
from bthome_ble import BTHomeBluetoothDeviceData as DeviceData
|
5
5
|
from collections.abc import Mapping
|
6
6
|
from homeassistant.components import onboarding as onboarding
|
7
|
-
from homeassistant.components.bluetooth import
|
7
|
+
from homeassistant.components.bluetooth import BluetoothServiceInfoBleak as BluetoothServiceInfoBleak, async_discovered_service_info as async_discovered_service_info
|
8
8
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow
|
9
9
|
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS
|
10
10
|
from homeassistant.data_entry_flow import FlowResult as FlowResult
|
@@ -13,11 +13,11 @@ from typing import Any
|
|
13
13
|
@dataclasses.dataclass
|
14
14
|
class Discovery:
|
15
15
|
title: str
|
16
|
-
discovery_info:
|
16
|
+
discovery_info: BluetoothServiceInfoBleak
|
17
17
|
device: DeviceData
|
18
18
|
def __init__(self, title, discovery_info, device) -> None: ...
|
19
19
|
|
20
|
-
def _title(discovery_info:
|
20
|
+
def _title(discovery_info: BluetoothServiceInfoBleak, device: DeviceData) -> str: ...
|
21
21
|
|
22
22
|
class BTHomeConfigFlow(ConfigFlow, domain=DOMAIN):
|
23
23
|
VERSION: int
|
@@ -25,7 +25,7 @@ class BTHomeConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
25
25
|
_discovered_device: Incomplete
|
26
26
|
_discovered_devices: Incomplete
|
27
27
|
def __init__(self) -> None: ...
|
28
|
-
async def async_step_bluetooth(self, discovery_info:
|
28
|
+
async def async_step_bluetooth(self, discovery_info: BluetoothServiceInfoBleak) -> FlowResult: ...
|
29
29
|
async def async_step_get_encryption_key(self, user_input: dict[str, Any] | None = None) -> FlowResult: ...
|
30
30
|
async def async_step_bluetooth_confirm(self, user_input: dict[str, Any] | None = None) -> FlowResult: ...
|
31
31
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> FlowResult: ...
|
@@ -18,9 +18,11 @@ class DynamicStreamSettings:
|
|
18
18
|
def __init__(self, preload_stream, orientation) -> None: ...
|
19
19
|
|
20
20
|
class CameraPreferences:
|
21
|
+
_preload_prefs: dict[str, dict[str, bool | Orientation]]
|
21
22
|
_hass: Incomplete
|
22
23
|
_store: Incomplete
|
23
24
|
_dynamic_stream_settings_by_entity_id: Incomplete
|
24
25
|
def __init__(self, hass: HomeAssistant) -> None: ...
|
26
|
+
async def async_load(self) -> None: ...
|
25
27
|
async def async_update(self, entity_id: str, *, preload_stream: bool | UndefinedType = ..., orientation: Orientation | UndefinedType = ...) -> dict[str, bool | Orientation]: ...
|
26
28
|
async def get_dynamic_stream_settings(self, entity_id: str) -> DynamicStreamSettings: ...
|
@@ -3,6 +3,7 @@ from .connection import HKDevice as HKDevice
|
|
3
3
|
from .const import DOMAIN as DOMAIN, KNOWN_DEVICES as KNOWN_DEVICES
|
4
4
|
from .utils import async_get_controller as async_get_controller
|
5
5
|
from _typeshed import Incomplete
|
6
|
+
from aiohomekit.controller import ble as ble, coap as coap, ip as ip
|
6
7
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
7
8
|
from homeassistant.const import ATTR_IDENTIFIERS as ATTR_IDENTIFIERS, EVENT_HOMEASSISTANT_STOP as EVENT_HOMEASSISTANT_STOP
|
8
9
|
from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant
|
@@ -6,7 +6,7 @@ from _typeshed import Incomplete
|
|
6
6
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
7
7
|
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS, CONF_HOST as CONF_HOST, CONF_NAME as CONF_NAME, CONF_PORT as CONF_PORT, CONF_TYPE as CONF_TYPE, Platform as Platform
|
8
8
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
9
|
-
from homeassistant.exceptions import
|
9
|
+
from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady
|
10
10
|
from typing import Any
|
11
11
|
|
12
12
|
PLATFORMS: Incomplete
|
@@ -21,6 +21,8 @@ ICON: str
|
|
21
21
|
SCAN_INTERVAL: Incomplete
|
22
22
|
MIN_TIME_BETWEEN_UPDATES: Incomplete
|
23
23
|
PARALLEL_UPDATES: int
|
24
|
+
RT_SENSORS_UNIQUE_ID_MIGRATION: Incomplete
|
25
|
+
RT_SENSORS_UNIQUE_ID_MIGRATION_SIMPLE: Incomplete
|
24
26
|
RT_SENSORS: tuple[SensorEntityDescription, ...]
|
25
27
|
SENSORS: tuple[SensorEntityDescription, ...]
|
26
28
|
|
@@ -80,8 +82,10 @@ class TibberRtDataCoordinator(DataUpdateCoordinator):
|
|
80
82
|
hass: Incomplete
|
81
83
|
_added_sensors: Incomplete
|
82
84
|
_async_remove_device_updates_handler: Incomplete
|
85
|
+
entity_registry: Incomplete
|
83
86
|
def __init__(self, async_add_entities: AddEntitiesCallback, tibber_home: tibber.TibberHome, hass: HomeAssistant) -> None: ...
|
84
87
|
def _handle_ha_stop(self, _event: Event) -> None: ...
|
88
|
+
def _migrate_unique_id(self, sensor_description: SensorEntityDescription) -> None: ...
|
85
89
|
def _add_sensors(self) -> None: ...
|
86
90
|
def get_live_measurement(self) -> Any: ...
|
87
91
|
|
@@ -13,6 +13,8 @@ from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFai
|
|
13
13
|
from homeassistant.helpers import device_registry as dr
|
14
14
|
from homeassistant.helpers.issue_registry import IssueSeverity as IssueSeverity
|
15
15
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
16
|
+
from pyunifiprotect.data import Bootstrap as Bootstrap
|
17
|
+
from pyunifiprotect.test_util.anonymize import anonymize_data as anonymize_data
|
16
18
|
|
17
19
|
_LOGGER: Incomplete
|
18
20
|
SCAN_INTERVAL: Incomplete
|
@@ -20,7 +22,7 @@ CONFIG_SCHEMA: Incomplete
|
|
20
22
|
|
21
23
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
22
24
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
23
|
-
async def _async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, data_service: ProtectData) -> None: ...
|
25
|
+
async def _async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, data_service: ProtectData, bootstrap: Bootstrap) -> None: ...
|
24
26
|
async def _async_options_updated(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
|
25
27
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
26
28
|
async def async_remove_config_entry_device(hass: HomeAssistant, config_entry: ConfigEntry, device_entry: dr.DeviceEntry) -> bool: ...
|
@@ -2,13 +2,11 @@ from _typeshed import Incomplete
|
|
2
2
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
3
3
|
from homeassistant.const import Platform as Platform
|
4
4
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
5
|
-
from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady
|
6
5
|
from pyunifiprotect import ProtectApiClient as ProtectApiClient
|
7
6
|
from pyunifiprotect.data import Bootstrap as Bootstrap, NVR as NVR, ProtectAdoptableDeviceModel as ProtectAdoptableDeviceModel
|
8
7
|
|
9
8
|
_LOGGER: Incomplete
|
10
9
|
|
11
|
-
async def async_migrate_data(hass: HomeAssistant, entry: ConfigEntry, protect: ProtectApiClient) -> None: ...
|
12
|
-
async def
|
13
|
-
async def
|
14
|
-
async def async_migrate_device_ids(hass: HomeAssistant, entry: ConfigEntry, protect: ProtectApiClient) -> None: ...
|
10
|
+
async def async_migrate_data(hass: HomeAssistant, entry: ConfigEntry, protect: ProtectApiClient, bootstrap: Bootstrap) -> None: ...
|
11
|
+
async def async_migrate_buttons(hass: HomeAssistant, entry: ConfigEntry, protect: ProtectApiClient, bootstrap: Bootstrap) -> None: ...
|
12
|
+
async def async_migrate_device_ids(hass: HomeAssistant, entry: ConfigEntry, protect: ProtectApiClient, bootstrap: Bootstrap) -> None: ...
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import re
|
2
2
|
import voluptuous as vol
|
3
3
|
from . import template as template_helper
|
4
|
+
from .frame import get_integration_logger as get_integration_logger
|
4
5
|
from _typeshed import Incomplete
|
5
6
|
from collections.abc import Callable as Callable, Hashable
|
6
7
|
from datetime import date as date_sys, datetime as datetime_sys, time as time_sys, timedelta
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import logging
|
1
2
|
from _typeshed import Incomplete
|
2
3
|
from collections.abc import Callable
|
3
4
|
from dataclasses import dataclass
|
@@ -20,6 +21,7 @@ class IntegrationFrame:
|
|
20
21
|
relative_filename: str
|
21
22
|
def __init__(self, *, custom_integration, frame, integration, module, relative_filename) -> None: ...
|
22
23
|
|
24
|
+
def get_integration_logger(fallback_name: str) -> logging.Logger: ...
|
23
25
|
def get_integration_frame(exclude_integrations: set | None = None) -> IntegrationFrame: ...
|
24
26
|
|
25
27
|
class MissingIntegrationFrame(HomeAssistantError): ...
|
{homeassistant_stubs-2024.3.0b3.dist-info → homeassistant_stubs-2024.3.0b5.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.3.
|
3
|
+
Version: 2024.3.0b5
|
4
4
|
Summary: PEP 484 typing stubs for Home Assistant Core
|
5
5
|
Home-page: https://github.com/KapJI/homeassistant-stubs
|
6
6
|
License: MIT
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.10
|
18
18
|
Classifier: Topic :: Software Development
|
19
19
|
Classifier: Typing :: Typed
|
20
|
-
Requires-Dist: homeassistant (==2024.3.
|
20
|
+
Requires-Dist: homeassistant (==2024.3.0b5)
|
21
21
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
22
22
|
Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
|
23
23
|
Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
|
{homeassistant_stubs-2024.3.0b3.dist-info → homeassistant_stubs-2024.3.0b5.dist-info}/RECORD
RENAMED
@@ -457,7 +457,7 @@ homeassistant-stubs/components/brother/utils.pyi,sha256=St6YZRknPMogWLVi12fK0rkV
|
|
457
457
|
homeassistant-stubs/components/browser/__init__.pyi,sha256=AZsijjI191wYaG9Ba3_xnIq2BuJAdGvugiKtx-92T0s,443
|
458
458
|
homeassistant-stubs/components/bthome/__init__.pyi,sha256=NjWG7PYVpBnCnuoe4i15seBGjluxctlvV4AziG1bitg,1592
|
459
459
|
homeassistant-stubs/components/bthome/binary_sensor.pyi,sha256=SRGVAJEN9IjG1mni0K35g8RBngk23F5eOej6P2NhiJY,1668
|
460
|
-
homeassistant-stubs/components/bthome/config_flow.pyi,sha256=
|
460
|
+
homeassistant-stubs/components/bthome/config_flow.pyi,sha256=2vQwnntbfO3RMSrHC2HYdpZmBhLpg0n4Trf-P_vNorM,1716
|
461
461
|
homeassistant-stubs/components/bthome/const.pyi,sha256=kraaN_ym3cpyJd4W3YqMa_Ta9kQuAH_xRgo4bTG11TM,578
|
462
462
|
homeassistant-stubs/components/bthome/coordinator.pyi,sha256=wDp5JZylUrgCV2TUKtpslyfXh3db_Co4ZsZek_cT1ZM,1431
|
463
463
|
homeassistant-stubs/components/bthome/device.pyi,sha256=y5q_X_Oi3dEEuyOyVddjHVH5D7y5R-_eYB-i_7tcz34,270
|
@@ -477,7 +477,7 @@ homeassistant-stubs/components/camera/const.pyi,sha256=WavezA5-2u3RQF1nBe_dsh-RD
|
|
477
477
|
homeassistant-stubs/components/camera/diagnostics.pyi,sha256=SHd1UzkG59ul4OqMgd8tXdr52UqJQCSsHnGKDthfIII,455
|
478
478
|
homeassistant-stubs/components/camera/img_util.pyi,sha256=rEWvDRbmNe8sYRCzqs9mGcg1ck58eKPAA6XhE-cDKq4,621
|
479
479
|
homeassistant-stubs/components/camera/media_source.pyi,sha256=TEBqXTFCkRnyW1dXtFAirej8_VvMx1IW9ojKsh6s5to,1370
|
480
|
-
homeassistant-stubs/components/camera/prefs.pyi,sha256=
|
480
|
+
homeassistant-stubs/components/camera/prefs.pyi,sha256=NnrJDwce4xjPNKWt2bGVTzc5OaItuIyM0m3liyj4ECA,1369
|
481
481
|
homeassistant-stubs/components/camera/significant_change.pyi,sha256=jAQqTYLLfClGsTlFv9chopqShJ6bZQJqS7Fy84yRZ8c,265
|
482
482
|
homeassistant-stubs/components/canary/__init__.pyi,sha256=q-8u1Fbh-Qvx_iJO3Ql6nLg9OXc6jmftc72Apfdc3B4,1420
|
483
483
|
homeassistant-stubs/components/canary/alarm_control_panel.pyi,sha256=pB7J-2KsDbNYCccRupB7u6j3ElMmFPxp5-NiIFCr15Q,1870
|
@@ -1185,7 +1185,7 @@ homeassistant-stubs/components/homekit/type_switches.pyi,sha256=VtaxqgamhaXKnqXe
|
|
1185
1185
|
homeassistant-stubs/components/homekit/type_thermostats.pyi,sha256=wemyPP5J_m5l-YoMo2g8itvv-6k_7bYTF-kSU0IdsY4,6403
|
1186
1186
|
homeassistant-stubs/components/homekit/type_triggers.pyi,sha256=kwEdRdExeT4Q_1mI5MrQDemcpZrqERMzbZR5MbO2ZJo,1462
|
1187
1187
|
homeassistant-stubs/components/homekit/util.pyi,sha256=RygHgEzJXPAq0ldKwp9-VBLUiAPnfFT5uFVeCuXKe5k,6176
|
1188
|
-
homeassistant-stubs/components/homekit_controller/__init__.pyi,sha256=
|
1188
|
+
homeassistant-stubs/components/homekit_controller/__init__.pyi,sha256=JkNyOiOtk_QM-PgwhbFfBmq4B_eW9q1ZB4oBruu_t0o,1314
|
1189
1189
|
homeassistant-stubs/components/homekit_controller/alarm_control_panel.pyi,sha256=WTk4yLlzu1Y12khyUip4YizlbMsmOup4K61fHsua9Jw,1910
|
1190
1190
|
homeassistant-stubs/components/homekit_controller/button.pyi,sha256=dpJ4-w7FI1SZZbmFEdSMMD8wlIDZ9JqmtSjCp27mW8s,2521
|
1191
1191
|
homeassistant-stubs/components/homekit_controller/config_flow.pyi,sha256=HbGfmiAooG6vxp_i4gADu4CtQnW45ixFJ4WCtUjqwYI,2674
|
@@ -1642,7 +1642,7 @@ homeassistant-stubs/components/min_max/__init__.pyi,sha256=zO6_nJAOWIQIxkZP_n_go
|
|
1642
1642
|
homeassistant-stubs/components/min_max/config_flow.pyi,sha256=qERC2jR2EbTO2rrwK9obGv7H3VhH3fR3AawaGxRXOxc,808
|
1643
1643
|
homeassistant-stubs/components/min_max/const.pyi,sha256=ordr13l52qEMK_NqSu0CdFOPfxsOESNVoiXcKRpqvBc,56
|
1644
1644
|
homeassistant-stubs/components/min_max/sensor.pyi,sha256=JC0wG5dL1xxQZognT6PojJKLUJU58RM3Hfdnq0wk7Lo,3668
|
1645
|
-
homeassistant-stubs/components/minecraft_server/__init__.pyi,sha256=
|
1645
|
+
homeassistant-stubs/components/minecraft_server/__init__.pyi,sha256=Ni739eQshzDTU4VTSSSfgrjc14KPhYtdDaiW_fm-YFk,1366
|
1646
1646
|
homeassistant-stubs/components/minecraft_server/api.pyi,sha256=O6yCaF_WqzUG0z87f-F3QGG3I9UOGZaGbGOZK9hwS-s,1773
|
1647
1647
|
homeassistant-stubs/components/minecraft_server/binary_sensor.pyi,sha256=RDntA9z-1KgurZiKsWfWuUtQNIseLu5Vl2StsNagCW8,1713
|
1648
1648
|
homeassistant-stubs/components/minecraft_server/config_flow.pyi,sha256=itC1yvY_QVgaRJaCXnsmKeWxLpDbPomUYEePs-esldU,868
|
@@ -2656,7 +2656,7 @@ homeassistant-stubs/components/tibber/config_flow.pyi,sha256=vNy36TiNIU8jpYqjUlz
|
|
2656
2656
|
homeassistant-stubs/components/tibber/const.pyi,sha256=sDV5hAP5QRg5952REjhy2-jxqlZQQZFnqF250naz4WM,52
|
2657
2657
|
homeassistant-stubs/components/tibber/diagnostics.pyi,sha256=J8-L9UWf3tMTkF3pS6xO5toEvoKEEVOMatMIDFCZ1cQ,306
|
2658
2658
|
homeassistant-stubs/components/tibber/notify.pyi,sha256=3zMoork894eg3rVg8-0m0aPGYQMq0Mz3KRVC6f9m15k,833
|
2659
|
-
homeassistant-stubs/components/tibber/sensor.pyi,sha256=
|
2659
|
+
homeassistant-stubs/components/tibber/sensor.pyi,sha256=tt6pnS_lDQ23mWDqOqXwIyamyNtIyaTpX4cINJzlW-w,5065
|
2660
2660
|
homeassistant-stubs/components/tile/__init__.pyi,sha256=DHkSlYwkUCSF0NL2T44x6u8USDWQSKA95Md3Zk_e-Sw,1458
|
2661
2661
|
homeassistant-stubs/components/tile/config_flow.pyi,sha256=HKiqr34ZLdYo2EdvnlIvReIFnYYmkl9gmbW0TuNyE2c,1158
|
2662
2662
|
homeassistant-stubs/components/tile/const.pyi,sha256=ApJjYGIfxEHQ112a2tGXF7SyTQbhrih7AUV4OwvbqgQ,65
|
@@ -2802,7 +2802,7 @@ homeassistant-stubs/components/unifi/sensor.pyi,sha256=xRcDbXoe3iTNhyHKN7d52ybBy
|
|
2802
2802
|
homeassistant-stubs/components/unifi/services.pyi,sha256=HUocu09DKvpcTs7K_A3ohNzArNElWFeT-UIEDubvZsY,834
|
2803
2803
|
homeassistant-stubs/components/unifi/switch.pyi,sha256=CSvWhWjmH_mkXgg8_mHv2cxDdcwXUvQBWT9uaq2N_4c,4441
|
2804
2804
|
homeassistant-stubs/components/unifi/update.pyi,sha256=bzBk6SIyhZuANHgUBing33LQRJZMyg2BmH1GAafai98,2845
|
2805
|
-
homeassistant-stubs/components/unifiprotect/__init__.pyi,sha256=
|
2805
|
+
homeassistant-stubs/components/unifiprotect/__init__.pyi,sha256=5qAgI_Ny4goQ7TTfGC0MIJwZlG2MjDt5WOapT-Wo-3Q,2329
|
2806
2806
|
homeassistant-stubs/components/unifiprotect/binary_sensor.pyi,sha256=9crrNmIVQgbw5nDgcaIb4Ne7hAb7jWd_RRxCazZGpzE,4367
|
2807
2807
|
homeassistant-stubs/components/unifiprotect/button.pyi,sha256=RscWOQhqreJ6WNcJIQFHtpEmduQoSAEa-B2knm8DOVM,2642
|
2808
2808
|
homeassistant-stubs/components/unifiprotect/camera.pyi,sha256=i76bY7RVZnNSU1Vn7qyw02PeOuv1_iWw9OzouHbbUiM,2671
|
@@ -2816,7 +2816,7 @@ homeassistant-stubs/components/unifiprotect/light.pyi,sha256=1WSvYI4ElpCmrlhzjQX
|
|
2816
2816
|
homeassistant-stubs/components/unifiprotect/lock.pyi,sha256=ifuITI0jI4CibZFsl6tjd_DrePIOWcYf9CCtyU1369I,1606
|
2817
2817
|
homeassistant-stubs/components/unifiprotect/media_player.pyi,sha256=v_HWfMMM7rFOeT3Z07k29EJTQVVGxKeK1A54o84G1v8,2355
|
2818
2818
|
homeassistant-stubs/components/unifiprotect/media_source.pyi,sha256=z_ZtKQGUiWlKZVF-QUZE74IAoFdclW6UmQNF2y8CUB8,4169
|
2819
|
-
homeassistant-stubs/components/unifiprotect/migrate.pyi,sha256=
|
2819
|
+
homeassistant-stubs/components/unifiprotect/migrate.pyi,sha256=tBV2aNRiMBTw1M5dbNvi360O3KbAIw7bPRb945fI4NU,834
|
2820
2820
|
homeassistant-stubs/components/unifiprotect/models.pyi,sha256=5XZuL_ZF3t1IK7H3u7Tk1Gom_fZIAxI2OcQTdkd1Ta0,2720
|
2821
2821
|
homeassistant-stubs/components/unifiprotect/number.pyi,sha256=8Gf0RKYMPBi_hATF8YYud7Q1t2t5QLPRi2t9Luuhh7g,3231
|
2822
2822
|
homeassistant-stubs/components/unifiprotect/repairs.pyi,sha256=Q30DHxBIWyE0By7qeIwsPyDv1RdgWCfBY2fgGmF0xhI,1569
|
@@ -3120,7 +3120,7 @@ homeassistant-stubs/helpers/collection.pyi,sha256=K9Ij5LXxG_l5iMkrCMFnDk7ZUHqEC8
|
|
3120
3120
|
homeassistant-stubs/helpers/condition.pyi,sha256=2uMQLtK7LYfyeWt_pBtfLOQESQdltKHEv595fCtO3BM,6150
|
3121
3121
|
homeassistant-stubs/helpers/config_entry_flow.pyi,sha256=SE0zRJHK1q8O0oMLCT2NZrLbvu3d2zk4BBgB4M63OFw,2946
|
3122
3122
|
homeassistant-stubs/helpers/config_entry_oauth2_flow.pyi,sha256=uiBSQVVB4I5Y9epZ8auWU4E9i1lBDGHYUKC0ji4JPtU,5072
|
3123
|
-
homeassistant-stubs/helpers/config_validation.pyi,sha256=
|
3123
|
+
homeassistant-stubs/helpers/config_validation.pyi,sha256=hjjwMYkuYjnCOyC88V4op7dcmv3H_K9wHdNeX67ukJA,10735
|
3124
3124
|
homeassistant-stubs/helpers/data_entry_flow.pyi,sha256=-jCFVvrRKC1_2J6CO_FNWYbi8WfFSJC8kPFYwyiUc4w,1121
|
3125
3125
|
homeassistant-stubs/helpers/debounce.pyi,sha256=07JBPda182aulLpcqRJxpyjS3YXoAWfaZC6EHA2QKJc,1270
|
3126
3126
|
homeassistant-stubs/helpers/deprecation.pyi,sha256=Qm-yOA8TALad1pHGAnw2NliTLgbTPcv8hZO1cu9HMgI,1567
|
@@ -3136,7 +3136,7 @@ homeassistant-stubs/helpers/entity_values.pyi,sha256=ivHFA5Ay7dXCfomEdjcPFc54lX-
|
|
3136
3136
|
homeassistant-stubs/helpers/entityfilter.pyi,sha256=8pYuzKPfv8LEAILvtoWrjiLWF08gPR9yNpbexwsp1So,2008
|
3137
3137
|
homeassistant-stubs/helpers/event.pyi,sha256=KfyqoK0Xcqr3JuHZC2m7zLQJH5l9XIBpRdY9q-lNyQU,16708
|
3138
3138
|
homeassistant-stubs/helpers/floor_registry.pyi,sha256=_usCDu-cXaPRC5tgbrOO-a5Rbt3TYptP6HUm3GrkA9s,2611
|
3139
|
-
homeassistant-stubs/helpers/frame.pyi,sha256=
|
3139
|
+
homeassistant-stubs/helpers/frame.pyi,sha256=weC2x8-bOFbhovuVys5SE3t7E6LONLYrtp3whXwdGoI,1377
|
3140
3140
|
homeassistant-stubs/helpers/group.pyi,sha256=0Hs__xX08YdzO9KVd4w-Gs3l9f6x3ArtVXlygKl9x2k,482
|
3141
3141
|
homeassistant-stubs/helpers/http.pyi,sha256=ARUMxQNVsvdwuHaJS075SyrsFa6gyTzKFKT5mKTNaBs,1747
|
3142
3142
|
homeassistant-stubs/helpers/httpx_client.pyi,sha256=Dl65ukO5VzlnK7OV1r_HMh7U0YTvFdInwrPPW85KPvg,1369
|
@@ -3225,7 +3225,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3225
3225
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3226
3226
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_KzmG0bGDiN9zpcdhSx9p3leawOwjmdZDKE4ciEMfKc,4272
|
3227
3227
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=89c0boOGMdQvHxVk7Xs42DKMj3ldlozxjrpiV74RkGY,457
|
3228
|
-
homeassistant_stubs-2024.3.
|
3229
|
-
homeassistant_stubs-2024.3.
|
3230
|
-
homeassistant_stubs-2024.3.
|
3231
|
-
homeassistant_stubs-2024.3.
|
3228
|
+
homeassistant_stubs-2024.3.0b5.dist-info/METADATA,sha256=RwqGV51cOTwNa0cCmLa0o98YAAcTytd6jMsyoKboSE4,3066
|
3229
|
+
homeassistant_stubs-2024.3.0b5.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3230
|
+
homeassistant_stubs-2024.3.0b5.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3231
|
+
homeassistant_stubs-2024.3.0b5.dist-info/RECORD,,
|
{homeassistant_stubs-2024.3.0b3.dist-info → homeassistant_stubs-2024.3.0b5.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|