homeassistant-stubs 2024.6.0b0__py3-none-any.whl → 2024.6.0b1__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/aladdin_connect/__init__.pyi +5 -7
- homeassistant-stubs/components/aladdin_connect/api.pyi +12 -0
- homeassistant-stubs/components/aladdin_connect/application_credentials.pyi +5 -0
- homeassistant-stubs/components/aladdin_connect/config_flow.pyi +14 -20
- homeassistant-stubs/components/aladdin_connect/const.pyi +4 -5
- homeassistant-stubs/components/aladdin_connect/cover.pyi +10 -14
- homeassistant-stubs/components/aladdin_connect/model.pyi +14 -3
- homeassistant-stubs/components/aladdin_connect/sensor.pyi +5 -5
- homeassistant-stubs/components/mqtt/client.pyi +4 -2
- {homeassistant_stubs-2024.6.0b0.dist-info → homeassistant_stubs-2024.6.0b1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.6.0b0.dist-info → homeassistant_stubs-2024.6.0b1.dist-info}/RECORD +13 -12
- homeassistant-stubs/components/aladdin_connect/diagnostics.pyi +0 -11
- {homeassistant_stubs-2024.6.0b0.dist-info → homeassistant_stubs-2024.6.0b1.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.6.0b0.dist-info → homeassistant_stubs-2024.6.0b1.dist-info}/WHEEL +0 -0
@@ -1,14 +1,12 @@
|
|
1
|
-
from .
|
2
|
-
from
|
1
|
+
from . import api as api
|
2
|
+
from .const import CONFIG_FLOW_MINOR_VERSION as CONFIG_FLOW_MINOR_VERSION, CONFIG_FLOW_VERSION as CONFIG_FLOW_VERSION
|
3
3
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
4
|
-
from homeassistant.const import
|
4
|
+
from homeassistant.const import Platform as Platform
|
5
5
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
6
|
-
from homeassistant.
|
7
|
-
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
8
|
-
from typing import Final
|
6
|
+
from homeassistant.helpers import aiohttp_client as aiohttp_client, config_entry_oauth2_flow as config_entry_oauth2_flow
|
9
7
|
|
10
|
-
_LOGGER: Final[Incomplete]
|
11
8
|
PLATFORMS: list[Platform]
|
12
9
|
|
13
10
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
14
11
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
12
|
+
async def async_migrate_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: ...
|
@@ -0,0 +1,12 @@
|
|
1
|
+
from _typeshed import Incomplete
|
2
|
+
from aiohttp import ClientSession as ClientSession
|
3
|
+
from genie_partner_sdk.auth import Auth
|
4
|
+
from homeassistant.helpers import config_entry_oauth2_flow as config_entry_oauth2_flow
|
5
|
+
|
6
|
+
API_URL: str
|
7
|
+
API_KEY: str
|
8
|
+
|
9
|
+
class AsyncConfigEntryAuth(Auth):
|
10
|
+
_oauth_session: Incomplete
|
11
|
+
def __init__(self, websession: ClientSession, oauth_session: config_entry_oauth2_flow.OAuth2Session) -> None: ...
|
12
|
+
async def async_get_access_token(self) -> str: ...
|
@@ -0,0 +1,5 @@
|
|
1
|
+
from .const import OAUTH2_AUTHORIZE as OAUTH2_AUTHORIZE, OAUTH2_TOKEN as OAUTH2_TOKEN
|
2
|
+
from homeassistant.components.application_credentials import AuthorizationServer as AuthorizationServer
|
3
|
+
from homeassistant.core import HomeAssistant as HomeAssistant
|
4
|
+
|
5
|
+
async def async_get_authorization_server(hass: HomeAssistant) -> AuthorizationServer: ...
|
@@ -1,23 +1,17 @@
|
|
1
|
-
|
2
|
-
from
|
1
|
+
import logging
|
2
|
+
from .const import CONFIG_FLOW_MINOR_VERSION as CONFIG_FLOW_MINOR_VERSION, CONFIG_FLOW_VERSION as CONFIG_FLOW_VERSION, DOMAIN as DOMAIN
|
3
3
|
from collections.abc import Mapping
|
4
|
-
from homeassistant.config_entries import ConfigEntry as ConfigEntry,
|
5
|
-
from homeassistant.
|
6
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
|
-
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
8
|
-
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
4
|
+
from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigFlowResult as ConfigFlowResult
|
5
|
+
from homeassistant.helpers import config_entry_oauth2_flow as config_entry_oauth2_flow
|
9
6
|
from typing import Any
|
10
7
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
22
|
-
|
23
|
-
class InvalidAuth(HomeAssistantError): ...
|
8
|
+
class OAuth2FlowHandler(config_entry_oauth2_flow.AbstractOAuth2FlowHandler, domain=DOMAIN):
|
9
|
+
DOMAIN = DOMAIN
|
10
|
+
VERSION = CONFIG_FLOW_VERSION
|
11
|
+
MINOR_VERSION = CONFIG_FLOW_MINOR_VERSION
|
12
|
+
reauth_entry: ConfigEntry | None
|
13
|
+
async def async_step_reauth(self, user_input: Mapping[str, Any]) -> ConfigFlowResult: ...
|
14
|
+
async def async_step_reauth_confirm(self, user_input: Mapping[str, Any] | None = None) -> ConfigFlowResult: ...
|
15
|
+
async def async_oauth_create_entry(self, data: dict) -> ConfigFlowResult: ...
|
16
|
+
@property
|
17
|
+
def logger(self) -> logging.Logger: ...
|
@@ -1,11 +1,10 @@
|
|
1
1
|
from _typeshed import Incomplete
|
2
2
|
from homeassistant.components.cover import CoverEntityFeature as CoverEntityFeature
|
3
|
-
from homeassistant.const import STATE_CLOSED as STATE_CLOSED, STATE_CLOSING as STATE_CLOSING, STATE_OPEN as STATE_OPEN, STATE_OPENING as STATE_OPENING
|
4
3
|
from typing import Final
|
5
4
|
|
6
|
-
NOTIFICATION_ID: Final[str]
|
7
|
-
NOTIFICATION_TITLE: Final[str]
|
8
|
-
STATES_MAP: Final[dict[str, str]]
|
9
5
|
DOMAIN: str
|
6
|
+
CONFIG_FLOW_VERSION: int
|
7
|
+
CONFIG_FLOW_MINOR_VERSION: int
|
8
|
+
OAUTH2_AUTHORIZE: str
|
9
|
+
OAUTH2_TOKEN: str
|
10
10
|
SUPPORTED_FEATURES: Final[Incomplete]
|
11
|
-
CLIENT_ID: str
|
@@ -1,12 +1,12 @@
|
|
1
|
-
from .
|
2
|
-
from .
|
3
|
-
from
|
1
|
+
from . import api as api
|
2
|
+
from .const import DOMAIN as DOMAIN, SUPPORTED_FEATURES as SUPPORTED_FEATURES
|
3
|
+
from .model import GarageDoor as GarageDoor
|
4
4
|
from _typeshed import Incomplete
|
5
|
+
from genie_partner_sdk.client import AladdinConnectClient
|
5
6
|
from homeassistant.components.cover import CoverDeviceClass as CoverDeviceClass, CoverEntity as CoverEntity
|
6
7
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
7
|
-
from homeassistant.const import STATE_CLOSED as STATE_CLOSED, STATE_CLOSING as STATE_CLOSING, STATE_OPENING as STATE_OPENING
|
8
8
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
9
|
-
from homeassistant.exceptions import
|
9
|
+
from homeassistant.exceptions import PlatformNotReady as PlatformNotReady
|
10
10
|
from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
|
11
11
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
12
12
|
from typing import Any
|
@@ -14,7 +14,7 @@ from typing import Any
|
|
14
14
|
SCAN_INTERVAL: Incomplete
|
15
15
|
|
16
16
|
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
|
17
|
-
def remove_stale_devices(hass: HomeAssistant, config_entry: ConfigEntry, devices: list[
|
17
|
+
def remove_stale_devices(hass: HomeAssistant, config_entry: ConfigEntry, devices: list[GarageDoor]) -> None: ...
|
18
18
|
|
19
19
|
class AladdinDevice(CoverEntity):
|
20
20
|
_attr_device_class: Incomplete
|
@@ -24,19 +24,15 @@ class AladdinDevice(CoverEntity):
|
|
24
24
|
_acc: Incomplete
|
25
25
|
_device_id: Incomplete
|
26
26
|
_number: Incomplete
|
27
|
-
_serial: Incomplete
|
28
27
|
_attr_device_info: Incomplete
|
29
28
|
_attr_unique_id: Incomplete
|
30
|
-
def __init__(self, acc: AladdinConnectClient, device:
|
31
|
-
async def async_added_to_hass(self) -> None: ...
|
32
|
-
async def async_will_remove_from_hass(self) -> None: ...
|
33
|
-
async def async_close_cover(self, **kwargs: Any) -> None: ...
|
29
|
+
def __init__(self, acc: AladdinConnectClient, device: GarageDoor, entry: ConfigEntry) -> None: ...
|
34
30
|
async def async_open_cover(self, **kwargs: Any) -> None: ...
|
35
|
-
|
31
|
+
async def async_close_cover(self, **kwargs: Any) -> None: ...
|
36
32
|
async def async_update(self) -> None: ...
|
37
33
|
@property
|
38
34
|
def is_closed(self) -> bool | None: ...
|
39
35
|
@property
|
40
|
-
def is_closing(self) -> bool: ...
|
36
|
+
def is_closing(self) -> bool | None: ...
|
41
37
|
@property
|
42
|
-
def is_opening(self) -> bool: ...
|
38
|
+
def is_opening(self) -> bool | None: ...
|
@@ -1,9 +1,20 @@
|
|
1
|
+
from _typeshed import Incomplete
|
1
2
|
from typing import TypedDict
|
2
3
|
|
3
|
-
class
|
4
|
+
class GarageDoorData(TypedDict):
|
4
5
|
device_id: str
|
5
6
|
door_number: int
|
6
7
|
name: str
|
7
8
|
status: str
|
8
|
-
|
9
|
-
|
9
|
+
link_status: str
|
10
|
+
battery_level: int
|
11
|
+
|
12
|
+
class GarageDoor:
|
13
|
+
device_id: Incomplete
|
14
|
+
door_number: Incomplete
|
15
|
+
unique_id: Incomplete
|
16
|
+
name: Incomplete
|
17
|
+
status: Incomplete
|
18
|
+
link_status: Incomplete
|
19
|
+
battery_level: Incomplete
|
20
|
+
def __init__(self, data: GarageDoorData) -> None: ...
|
@@ -1,12 +1,13 @@
|
|
1
|
+
from . import api as api
|
1
2
|
from .const import DOMAIN as DOMAIN
|
2
|
-
from .model import
|
3
|
-
from AIOAladdinConnect import AladdinConnectClient
|
3
|
+
from .model import GarageDoor as GarageDoor
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from collections.abc import Callable as Callable
|
6
6
|
from dataclasses import dataclass
|
7
|
+
from genie_partner_sdk.client import AladdinConnectClient
|
7
8
|
from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription, SensorStateClass as SensorStateClass
|
8
9
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
9
|
-
from homeassistant.const import PERCENTAGE as PERCENTAGE
|
10
|
+
from homeassistant.const import PERCENTAGE as PERCENTAGE
|
10
11
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
11
12
|
from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
|
12
13
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
@@ -28,7 +29,6 @@ class AladdinConnectSensor(SensorEntity):
|
|
28
29
|
_acc: Incomplete
|
29
30
|
_attr_unique_id: Incomplete
|
30
31
|
_attr_device_info: Incomplete
|
31
|
-
|
32
|
-
def __init__(self, acc: AladdinConnectClient, device: DoorDevice, description: AccSensorEntityDescription) -> None: ...
|
32
|
+
def __init__(self, acc: AladdinConnectClient, device: GarageDoor, description: AccSensorEntityDescription) -> None: ...
|
33
33
|
@property
|
34
34
|
def native_value(self) -> float | None: ...
|
@@ -11,9 +11,11 @@ from homeassistant.const import CONF_CLIENT_ID as CONF_CLIENT_ID, CONF_PASSWORD
|
|
11
11
|
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, Event as Event, HassJob as HassJob, HassJobType as HassJobType, HomeAssistant as HomeAssistant, callback as callback, get_hassjob_callable_job_type as get_hassjob_callable_job_type
|
12
12
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
13
13
|
from homeassistant.helpers.dispatcher import async_dispatcher_send as async_dispatcher_send
|
14
|
+
from homeassistant.helpers.importlib import async_import_module as async_import_module
|
14
15
|
from homeassistant.helpers.start import async_at_started as async_at_started
|
15
16
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
16
17
|
from homeassistant.loader import bind_hass as bind_hass
|
18
|
+
from homeassistant.setup import SetupPhases as SetupPhases, async_pause_setup as async_pause_setup
|
17
19
|
from homeassistant.util.async_ import create_eager_task as create_eager_task
|
18
20
|
from homeassistant.util.collection import chunked_or_all as chunked_or_all
|
19
21
|
from homeassistant.util.logging import catch_log_exception as catch_log_exception, log_exception as log_exception
|
@@ -102,12 +104,12 @@ class MQTT:
|
|
102
104
|
def __init__(self, hass: HomeAssistant, config_entry: ConfigEntry, conf: ConfigType) -> None: ...
|
103
105
|
def _async_ha_started(self, _hass: HomeAssistant) -> None: ...
|
104
106
|
async def _async_ha_stop(self, _event: Event) -> None: ...
|
105
|
-
def
|
107
|
+
async def async_start(self, mqtt_data: MqttData) -> None: ...
|
106
108
|
@property
|
107
109
|
def subscriptions(self) -> list[Subscription]: ...
|
108
110
|
def cleanup(self) -> None: ...
|
109
111
|
async def _async_connect_in_executor(self) -> AsyncGenerator[None, None]: ...
|
110
|
-
def
|
112
|
+
async def async_init_client(self) -> None: ...
|
111
113
|
async def _misc_loop(self) -> None: ...
|
112
114
|
def _async_reader_callback(self, client: mqtt.Client) -> None: ...
|
113
115
|
def _async_start_misc_loop(self) -> None: ...
|
{homeassistant_stubs-2024.6.0b0.dist-info → homeassistant_stubs-2024.6.0b1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.6.
|
3
|
+
Version: 2024.6.0b1
|
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
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
17
17
|
Classifier: Topic :: Software Development
|
18
18
|
Classifier: Typing :: Typed
|
19
|
-
Requires-Dist: homeassistant (==2024.6.
|
19
|
+
Requires-Dist: homeassistant (==2024.6.0b1)
|
20
20
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
21
21
|
Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
|
22
22
|
Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
|
{homeassistant_stubs-2024.6.0b0.dist-info → homeassistant_stubs-2024.6.0b1.dist-info}/RECORD
RENAMED
@@ -153,13 +153,14 @@ homeassistant-stubs/components/airzone_cloud/entity.pyi,sha256=hRXbf-Bo-hCiH5xZS
|
|
153
153
|
homeassistant-stubs/components/airzone_cloud/select.pyi,sha256=bycq3y5FvCPzK2BWMnkFpM4x_g4q9jgDRCW_OyCD6qw,2135
|
154
154
|
homeassistant-stubs/components/airzone_cloud/sensor.pyi,sha256=I7PTa6aMTeANs9BVORzs6x4pYre6BMv_3LLjpqGkNWo,2490
|
155
155
|
homeassistant-stubs/components/airzone_cloud/water_heater.pyi,sha256=sVZJ49IcpYn-wbJ5pxZ8oRVPxj5oLCNSRqdx41Km69c,2039
|
156
|
-
homeassistant-stubs/components/aladdin_connect/__init__.pyi,sha256=
|
157
|
-
homeassistant-stubs/components/aladdin_connect/
|
158
|
-
homeassistant-stubs/components/aladdin_connect/
|
159
|
-
homeassistant-stubs/components/aladdin_connect/
|
160
|
-
homeassistant-stubs/components/aladdin_connect/
|
161
|
-
homeassistant-stubs/components/aladdin_connect/
|
162
|
-
homeassistant-stubs/components/aladdin_connect/
|
156
|
+
homeassistant-stubs/components/aladdin_connect/__init__.pyi,sha256=N_UoELPZ55G3yBh_2sIjyTjFalUo3RDZaP-51Wg5xhU,731
|
157
|
+
homeassistant-stubs/components/aladdin_connect/api.pyi,sha256=OEhAoLC-evO9ZaXnyvGPvRPik6ka44SVSpi7Qt62Sdw,477
|
158
|
+
homeassistant-stubs/components/aladdin_connect/application_credentials.pyi,sha256=gC5LevrYVBmGRf6YJuwIR4rPyphIk0ro8IvjoPQVjiI,343
|
159
|
+
homeassistant-stubs/components/aladdin_connect/config_flow.pyi,sha256=Ud5X4N5aSQJvBV--T1gMapYYohQ1hReQVHGBd-ewhmk,983
|
160
|
+
homeassistant-stubs/components/aladdin_connect/const.pyi,sha256=RRwOUEEesfw2T610xDmZ6dqmw4VC7WqyMu3yowAcDYw,289
|
161
|
+
homeassistant-stubs/components/aladdin_connect/cover.pyi,sha256=g3FSmGYSyshEzmukagghsdUV2pg0pC2t9KXFlJe-GN8,1785
|
162
|
+
homeassistant-stubs/components/aladdin_connect/model.pyi,sha256=31QuXPg5td63_zPh6PS9nR5M8VSVbQxNFmTKOt3GYL4,469
|
163
|
+
homeassistant-stubs/components/aladdin_connect/sensor.pyi,sha256=W_94kmYj2dmv7v-VezkOi8DxomdvA_oRGj6sq6rqTkY,1961
|
163
164
|
homeassistant-stubs/components/alarm_control_panel/__init__.pyi,sha256=-2EqOmww8DO9UwhG_BYc3_aPI1fPYAxksb4Q1TKBfXU,5762
|
164
165
|
homeassistant-stubs/components/alarm_control_panel/const.pyi,sha256=qQ67ccTCIwoc1Q2MO7e1Fk6E7oSXyo4Ch3cDhYsXchM,1420
|
165
166
|
homeassistant-stubs/components/alarm_control_panel/device_action.pyi,sha256=MBMRM5J6rpIKfySyJtvzcsA8jt8glz60oPpZqk0eCNY,1695
|
@@ -1810,7 +1811,7 @@ homeassistant-stubs/components/mqtt/alarm_control_panel.pyi,sha256=NXwmqpYE9aecx
|
|
1810
1811
|
homeassistant-stubs/components/mqtt/binary_sensor.pyi,sha256=NyKWfyeBeI8pMtBqEr_RI5A7dsE4tLrlFXlstd3zwcw,3032
|
1811
1812
|
homeassistant-stubs/components/mqtt/button.pyi,sha256=nJZOzm9Mcak-8TOyS8f0rmqpAdF3KB_uB8hu5I6H8T8,1901
|
1812
1813
|
homeassistant-stubs/components/mqtt/camera.pyi,sha256=B1Fr4m8_PF7NaSfxyGU07yAfmFqrzcT1MSJImw2mJ3Y,2028
|
1813
|
-
homeassistant-stubs/components/mqtt/client.pyi,sha256=
|
1814
|
+
homeassistant-stubs/components/mqtt/client.pyi,sha256=PRsSwKufPP1vPKj3lXgMLzia8lExRkraRPFcb1YnaeA,10441
|
1814
1815
|
homeassistant-stubs/components/mqtt/climate.pyi,sha256=jn95RtxFmuwLH1pL4tQODIxS79-Q1wDCSxRUZ-YxBYw,8513
|
1815
1816
|
homeassistant-stubs/components/mqtt/config.pyi,sha256=ZzcogEgaXfMFwZIYMPiIpTSMnuMKx6Xsvv30vbB8iXw,721
|
1816
1817
|
homeassistant-stubs/components/mqtt/config_flow.pyi,sha256=Ba0IozITsckpJY_1gezkqo3hfyILbkmI9CGiOb5X-y0,5365
|
@@ -3397,7 +3398,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3397
3398
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3398
3399
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=RTT2312P0TB9bA-rj3xdQK_J6sqVQE4LBJozgLH3oao,4621
|
3399
3400
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3400
|
-
homeassistant_stubs-2024.6.
|
3401
|
-
homeassistant_stubs-2024.6.
|
3402
|
-
homeassistant_stubs-2024.6.
|
3403
|
-
homeassistant_stubs-2024.6.
|
3401
|
+
homeassistant_stubs-2024.6.0b1.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3402
|
+
homeassistant_stubs-2024.6.0b1.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3403
|
+
homeassistant_stubs-2024.6.0b1.dist-info/METADATA,sha256=L7xh28Gj4Pw5Qacq-lJ10NfbcSoeAt5G7Wov8CvYo9g,3015
|
3404
|
+
homeassistant_stubs-2024.6.0b1.dist-info/RECORD,,
|
@@ -1,11 +0,0 @@
|
|
1
|
-
from .const import DOMAIN as DOMAIN
|
2
|
-
from AIOAladdinConnect import AladdinConnectClient as AladdinConnectClient
|
3
|
-
from _typeshed import Incomplete
|
4
|
-
from homeassistant.components.diagnostics import async_redact_data as async_redact_data
|
5
|
-
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
6
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
|
-
from typing import Any
|
8
|
-
|
9
|
-
TO_REDACT: Incomplete
|
10
|
-
|
11
|
-
async def async_get_config_entry_diagnostics(hass: HomeAssistant, config_entry: ConfigEntry) -> dict[str, Any]: ...
|
{homeassistant_stubs-2024.6.0b0.dist-info → homeassistant_stubs-2024.6.0b1.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|