homeassistant-stubs 2023.4.0b5__py3-none-any.whl → 2023.4.0b6__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/fritz/button.pyi +1 -1
- homeassistant-stubs/components/fritz/common.pyi +0 -1
- homeassistant-stubs/components/fritzbox/__init__.pyi +2 -1
- homeassistant-stubs/components/fritzbox/binary_sensor.pyi +0 -4
- homeassistant-stubs/components/fronius/sensor.pyi +1 -0
- homeassistant-stubs/components/nut/sensor.pyi +1 -1
- homeassistant-stubs/components/onewire/onewire_entities.pyi +2 -2
- homeassistant-stubs/components/otbr/__init__.pyi +1 -22
- homeassistant-stubs/components/otbr/util.pyi +30 -1
- homeassistant-stubs/components/otbr/websocket_api.pyi +1 -2
- homeassistant-stubs/components/pi_hole/binary_sensor.pyi +1 -1
- homeassistant-stubs/components/pi_hole/sensor.pyi +1 -1
- homeassistant-stubs/components/pi_hole/update.pyi +1 -1
- homeassistant-stubs/components/simplisafe/binary_sensor.pyi +2 -1
- homeassistant-stubs/components/sun/sensor.pyi +1 -0
- homeassistant-stubs/components/synology_dsm/entity.pyi +1 -2
- homeassistant-stubs/components/synology_dsm/switch.pyi +0 -1
- {homeassistant_stubs-2023.4.0b5.dist-info → homeassistant_stubs-2023.4.0b6.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2023.4.0b5.dist-info → homeassistant_stubs-2023.4.0b6.dist-info}/RECORD +21 -21
- {homeassistant_stubs-2023.4.0b5.dist-info → homeassistant_stubs-2023.4.0b6.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2023.4.0b5.dist-info → homeassistant_stubs-2023.4.0b6.dist-info}/WHEEL +0 -0
@@ -26,8 +26,8 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
|
|
26
26
|
|
27
27
|
class FritzButton(ButtonEntity):
|
28
28
|
entity_description: FritzButtonDescription
|
29
|
+
_attr_has_entity_name: bool
|
29
30
|
avm_wrapper: Incomplete
|
30
|
-
_attr_name: Incomplete
|
31
31
|
_attr_unique_id: Incomplete
|
32
32
|
_attr_device_info: Incomplete
|
33
33
|
def __init__(self, avm_wrapper: AvmWrapper, device_friendly_name: str, description: FritzButtonDescription) -> None: ...
|
@@ -206,7 +206,6 @@ class FritzBoxBaseCoordinatorEntity(update_coordinator.CoordinatorEntity):
|
|
206
206
|
entity_description: FritzEntityDescription
|
207
207
|
_attr_has_entity_name: bool
|
208
208
|
_device_name: Incomplete
|
209
|
-
_attr_name: Incomplete
|
210
209
|
_attr_unique_id: Incomplete
|
211
210
|
def __init__(self, avm_wrapper: AvmWrapper, device_name: str, description: FritzEntityDescription) -> None: ...
|
212
211
|
@property
|
@@ -18,9 +18,10 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
18
18
|
|
19
19
|
class FritzBoxEntity(CoordinatorEntity[FritzboxDataUpdateCoordinator], ABC, metaclass=abc.ABCMeta):
|
20
20
|
ain: Incomplete
|
21
|
+
_attr_has_entity_name: bool
|
21
22
|
entity_description: Incomplete
|
22
|
-
_attr_name: Incomplete
|
23
23
|
_attr_unique_id: Incomplete
|
24
|
+
_attr_name: Incomplete
|
24
25
|
def __init__(self, coordinator: FritzboxDataUpdateCoordinator, ain: str, entity_description: EntityDescription | None = ...) -> None: ...
|
25
26
|
@property
|
26
27
|
@abstractmethod
|
@@ -2,7 +2,6 @@ from . import FritzBoxDeviceEntity as FritzBoxDeviceEntity
|
|
2
2
|
from .const import CONF_COORDINATOR as CONF_COORDINATOR
|
3
3
|
from .coordinator import FritzboxDataUpdateCoordinator as FritzboxDataUpdateCoordinator
|
4
4
|
from .model import FritzEntityDescriptionMixinBase as FritzEntityDescriptionMixinBase
|
5
|
-
from _typeshed import Incomplete
|
6
5
|
from collections.abc import Callable as Callable
|
7
6
|
from homeassistant.components.binary_sensor import BinarySensorDeviceClass as BinarySensorDeviceClass, BinarySensorEntity as BinarySensorEntity, BinarySensorEntityDescription as BinarySensorEntityDescription
|
8
7
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
@@ -25,8 +24,5 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
|
|
25
24
|
|
26
25
|
class FritzboxBinarySensor(FritzBoxDeviceEntity, BinarySensorEntity):
|
27
26
|
entity_description: FritzBinarySensorEntityDescription
|
28
|
-
_attr_name: Incomplete
|
29
|
-
_attr_unique_id: Incomplete
|
30
|
-
def __init__(self, coordinator: FritzboxDataUpdateCoordinator, ain: str, entity_description: FritzBinarySensorEntityDescription) -> None: ...
|
31
27
|
@property
|
32
28
|
def is_on(self) -> bool | None: ...
|
@@ -33,6 +33,7 @@ class _FroniusSensorEntity(CoordinatorEntity['FroniusCoordinatorBase'], SensorEn
|
|
33
33
|
_attr_has_entity_name: bool
|
34
34
|
solar_net_id: Incomplete
|
35
35
|
_attr_native_value: Incomplete
|
36
|
+
_attr_translation_key: Incomplete
|
36
37
|
def __init__(self, coordinator: FroniusCoordinatorBase, key: str, solar_net_id: str) -> None: ...
|
37
38
|
def _device_data(self) -> dict[str, Any]: ...
|
38
39
|
def _get_entity_value(self) -> Any: ...
|
@@ -18,8 +18,8 @@ def _get_nut_device_info(data: PyNUTData) -> DeviceInfo: ...
|
|
18
18
|
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
|
19
19
|
|
20
20
|
class NUTSensor(CoordinatorEntity[DataUpdateCoordinator[dict[str, str]]], SensorEntity):
|
21
|
+
_attr_has_entity_name: bool
|
21
22
|
entity_description: Incomplete
|
22
|
-
_attr_name: Incomplete
|
23
23
|
_attr_unique_id: Incomplete
|
24
24
|
_attr_device_info: Incomplete
|
25
25
|
def __init__(self, coordinator: DataUpdateCoordinator[dict[str, str]], sensor_description: SensorEntityDescription, data: PyNUTData, unique_id: str) -> None: ...
|
@@ -13,15 +13,15 @@ _LOGGER: Incomplete
|
|
13
13
|
|
14
14
|
class OneWireEntity(Entity):
|
15
15
|
entity_description: OneWireEntityDescription
|
16
|
+
_attr_has_entity_name: bool
|
16
17
|
_last_update_success: bool
|
17
18
|
_attr_unique_id: Incomplete
|
18
19
|
_attr_device_info: Incomplete
|
19
|
-
_attr_name: Incomplete
|
20
20
|
_device_file: Incomplete
|
21
21
|
_state: Incomplete
|
22
22
|
_value_raw: Incomplete
|
23
23
|
_owproxy: Incomplete
|
24
|
-
def __init__(self, description: OneWireEntityDescription, device_id: str, device_info: DeviceInfo, device_file: str,
|
24
|
+
def __init__(self, description: OneWireEntityDescription, device_id: str, device_info: DeviceInfo, device_file: str, owproxy: protocol._Proxy) -> None: ...
|
25
25
|
@property
|
26
26
|
def extra_state_attributes(self) -> dict[str, Any] | None: ...
|
27
27
|
def _read_value(self) -> str: ...
|
@@ -1,35 +1,14 @@
|
|
1
|
-
import python_otbr_api
|
2
1
|
from . import websocket_api as websocket_api
|
3
2
|
from .const import DOMAIN as DOMAIN
|
4
|
-
from
|
5
|
-
from collections.abc import Callable as Callable, Coroutine
|
3
|
+
from .util import OTBRData as OTBRData, update_issues as update_issues
|
6
4
|
from homeassistant.components.thread import async_add_dataset as async_add_dataset
|
7
5
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
8
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
9
7
|
from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady, HomeAssistantError as HomeAssistantError
|
10
8
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
11
9
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
12
|
-
from typing import Any, Concatenate, TypeVar
|
13
|
-
|
14
|
-
_R = TypeVar('_R')
|
15
|
-
_P: Incomplete
|
16
|
-
INSECURE_NETWORK_KEYS: Incomplete
|
17
|
-
INSECURE_PASSPHRASES: Incomplete
|
18
|
-
|
19
|
-
def _handle_otbr_error(func: Callable[Concatenate[OTBRData, _P], Coroutine[Any, Any, _R]]) -> Callable[Concatenate[OTBRData, _P], Coroutine[Any, Any, _R]]: ...
|
20
|
-
|
21
|
-
class OTBRData:
|
22
|
-
url: str
|
23
|
-
api: python_otbr_api.OTBR
|
24
|
-
async def set_enabled(self, enabled: bool) -> None: ...
|
25
|
-
async def get_active_dataset_tlvs(self) -> bytes | None: ...
|
26
|
-
async def create_active_dataset(self, dataset: python_otbr_api.OperationalDataSet) -> None: ...
|
27
|
-
async def set_active_dataset_tlvs(self, dataset: bytes) -> None: ...
|
28
|
-
async def get_extended_address(self) -> bytes: ...
|
29
|
-
def __init__(self, url, api) -> None: ...
|
30
10
|
|
31
11
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
32
|
-
def _warn_on_default_network_settings(hass: HomeAssistant, entry: ConfigEntry, dataset_tlvs: bytes) -> None: ...
|
33
12
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
34
13
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
|
35
14
|
async def async_reload_entry(hass: HomeAssistant, entry: ConfigEntry) -> None: ...
|
@@ -1,6 +1,35 @@
|
|
1
|
-
|
1
|
+
import python_otbr_api
|
2
|
+
from .const import DOMAIN as DOMAIN
|
3
|
+
from _typeshed import Incomplete
|
4
|
+
from collections.abc import Callable as Callable, Coroutine
|
5
|
+
from homeassistant.components.homeassistant_hardware.silabs_multiprotocol_addon import is_multiprotocol_url as is_multiprotocol_url, multi_pan_addon_using_device as multi_pan_addon_using_device
|
2
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
|
+
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
8
|
+
from typing import Any, Concatenate, TypeVar
|
9
|
+
|
10
|
+
_R = TypeVar('_R')
|
11
|
+
_P: Incomplete
|
12
|
+
INFO_URL_SKY_CONNECT: str
|
13
|
+
INFO_URL_YELLOW: str
|
14
|
+
INSECURE_NETWORK_KEYS: Incomplete
|
15
|
+
INSECURE_PASSPHRASES: Incomplete
|
16
|
+
|
17
|
+
def _handle_otbr_error(func: Callable[Concatenate[OTBRData, _P], Coroutine[Any, Any, _R]]) -> Callable[Concatenate[OTBRData, _P], Coroutine[Any, Any, _R]]: ...
|
18
|
+
|
19
|
+
class OTBRData:
|
20
|
+
url: str
|
21
|
+
api: python_otbr_api.OTBR
|
22
|
+
entry_id: str
|
23
|
+
async def set_enabled(self, enabled: bool) -> None: ...
|
24
|
+
async def get_active_dataset_tlvs(self) -> bytes | None: ...
|
25
|
+
async def create_active_dataset(self, dataset: python_otbr_api.OperationalDataSet) -> None: ...
|
26
|
+
async def set_active_dataset_tlvs(self, dataset: bytes) -> None: ...
|
27
|
+
async def get_extended_address(self) -> bytes: ...
|
28
|
+
def __init__(self, url, api, entry_id) -> None: ...
|
3
29
|
|
4
30
|
def _get_zha_url(hass: HomeAssistant) -> str | None: ...
|
5
31
|
async def _get_zha_channel(hass: HomeAssistant) -> int | None: ...
|
6
32
|
async def get_allowed_channel(hass: HomeAssistant, otbr_url: str) -> int | None: ...
|
33
|
+
async def _warn_on_channel_collision(hass: HomeAssistant, otbrdata: OTBRData, dataset_tlvs: bytes) -> None: ...
|
34
|
+
def _warn_on_default_network_settings(hass: HomeAssistant, otbrdata: OTBRData, dataset_tlvs: bytes) -> None: ...
|
35
|
+
async def update_issues(hass: HomeAssistant, otbrdata: OTBRData, dataset_tlvs: bytes) -> None: ...
|
@@ -1,6 +1,5 @@
|
|
1
|
-
from . import OTBRData as OTBRData
|
2
1
|
from .const import DEFAULT_CHANNEL as DEFAULT_CHANNEL, DOMAIN as DOMAIN
|
3
|
-
from .util import get_allowed_channel as get_allowed_channel
|
2
|
+
from .util import OTBRData as OTBRData, get_allowed_channel as get_allowed_channel, update_issues as update_issues
|
4
3
|
from homeassistant.components import websocket_api as websocket_api
|
5
4
|
from homeassistant.components.thread import async_add_dataset as async_add_dataset, async_get_dataset as async_get_dataset
|
6
5
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
@@ -25,7 +25,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
|
|
25
25
|
|
26
26
|
class PiHoleBinarySensor(PiHoleEntity, BinarySensorEntity):
|
27
27
|
entity_description: PiHoleBinarySensorEntityDescription
|
28
|
-
|
28
|
+
_attr_has_entity_name: bool
|
29
29
|
_attr_unique_id: Incomplete
|
30
30
|
def __init__(self, api: Hole, coordinator: DataUpdateCoordinator, name: str, server_unique_id: str, description: PiHoleBinarySensorEntityDescription) -> None: ...
|
31
31
|
@property
|
@@ -16,7 +16,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
|
|
16
16
|
|
17
17
|
class PiHoleSensor(PiHoleEntity, SensorEntity):
|
18
18
|
entity_description: SensorEntityDescription
|
19
|
-
|
19
|
+
_attr_has_entity_name: bool
|
20
20
|
_attr_unique_id: Incomplete
|
21
21
|
def __init__(self, api: Hole, coordinator: DataUpdateCoordinator, name: str, server_unique_id: str, description: SensorEntityDescription) -> None: ...
|
22
22
|
@property
|
@@ -23,7 +23,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
|
|
23
23
|
|
24
24
|
class PiHoleUpdateEntity(PiHoleEntity, UpdateEntity):
|
25
25
|
entity_description: PiHoleUpdateEntityDescription
|
26
|
-
|
26
|
+
_attr_has_entity_name: bool
|
27
27
|
_attr_unique_id: Incomplete
|
28
28
|
_attr_title: Incomplete
|
29
29
|
def __init__(self, api: Hole, coordinator: DataUpdateCoordinator, name: str, server_unique_id: str, description: PiHoleUpdateEntityDescription) -> None: ...
|
@@ -6,6 +6,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
6
6
|
from homeassistant.const import EntityCategory as EntityCategory
|
7
7
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
8
8
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
9
|
+
from simplipy.device import DeviceV3 as DeviceV3
|
9
10
|
from simplipy.device.sensor.v3 import SensorV3 as SensorV3
|
10
11
|
from simplipy.system.v3 import SystemV3 as SystemV3
|
11
12
|
|
@@ -27,6 +28,6 @@ class BatteryBinarySensor(SimpliSafeEntity, BinarySensorEntity):
|
|
27
28
|
_attr_name: str
|
28
29
|
_attr_unique_id: Incomplete
|
29
30
|
_device: Incomplete
|
30
|
-
def __init__(self, simplisafe: SimpliSafe, system: SystemV3,
|
31
|
+
def __init__(self, simplisafe: SimpliSafe, system: SystemV3, device: DeviceV3) -> None: ...
|
31
32
|
_attr_is_on: Incomplete
|
32
33
|
def async_update_from_rest_api(self) -> None: ...
|
@@ -26,6 +26,7 @@ SENSOR_TYPES: tuple[SunSensorEntityDescription, ...]
|
|
26
26
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
|
27
27
|
|
28
28
|
class SunSensor(SensorEntity):
|
29
|
+
_attr_has_entity_name: bool
|
29
30
|
entity_description: SunSensorEntityDescription
|
30
31
|
entity_id: Incomplete
|
31
32
|
_attr_unique_id: Incomplete
|
@@ -19,8 +19,8 @@ class SynologyDSMBaseEntity(CoordinatorEntity[_CoordinatorT]):
|
|
19
19
|
entity_description: SynologyDSMEntityDescription
|
20
20
|
unique_id: str
|
21
21
|
_attr_attribution = ATTRIBUTION
|
22
|
+
_attr_has_entity_name: bool
|
22
23
|
_api: Incomplete
|
23
|
-
_attr_name: Incomplete
|
24
24
|
_attr_unique_id: Incomplete
|
25
25
|
_attr_device_info: Incomplete
|
26
26
|
def __init__(self, api: SynoApi, coordinator: _CoordinatorT, description: SynologyDSMEntityDescription) -> None: ...
|
@@ -33,6 +33,5 @@ class SynologyDSMDeviceEntity(SynologyDSMBaseEntity[SynologyDSMCentralUpdateCoor
|
|
33
33
|
_device_model: Incomplete
|
34
34
|
_device_firmware: Incomplete
|
35
35
|
_device_type: Incomplete
|
36
|
-
_attr_name: Incomplete
|
37
36
|
_attr_device_info: Incomplete
|
38
37
|
def __init__(self, api: SynoApi, coordinator: SynologyDSMCentralUpdateCoordinator, description: SynologyDSMEntityDescription, device_id: str | None = ...) -> None: ...
|
@@ -23,7 +23,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
|
|
23
23
|
class SynoDSMSurveillanceHomeModeToggle(SynologyDSMBaseEntity[SynologyDSMSwitchUpdateCoordinator], SwitchEntity):
|
24
24
|
entity_description: SynologyDSMSwitchEntityDescription
|
25
25
|
_version: Incomplete
|
26
|
-
_attr_name: Incomplete
|
27
26
|
def __init__(self, api: SynoApi, version: str, coordinator: SynologyDSMSwitchUpdateCoordinator, description: SynologyDSMSwitchEntityDescription) -> None: ...
|
28
27
|
@property
|
29
28
|
def is_on(self) -> bool: ...
|
{homeassistant_stubs-2023.4.0b5.dist-info → homeassistant_stubs-2023.4.0b6.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2023.4.
|
3
|
+
Version: 2023.4.0b6
|
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
|
@@ -18,7 +18,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
19
19
|
Classifier: Topic :: Software Development
|
20
20
|
Classifier: Typing :: Typed
|
21
|
-
Requires-Dist: homeassistant (==2023.4.
|
21
|
+
Requires-Dist: homeassistant (==2023.4.0b6)
|
22
22
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
23
23
|
Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
|
24
24
|
Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
|
{homeassistant_stubs-2023.4.0b5.dist-info → homeassistant_stubs-2023.4.0b6.dist-info}/RECORD
RENAMED
@@ -551,8 +551,8 @@ homeassistant-stubs/components/forecast_solar/models.pyi,sha256=UyqMm5oN_Aop8Z4p
|
|
551
551
|
homeassistant-stubs/components/forecast_solar/sensor.pyi,sha256=fx0y0445xlHZa0NHWEfVPwA5wsGb8Q96oV9K25ZB_BU,1560
|
552
552
|
homeassistant-stubs/components/fritz/__init__.pyi,sha256=gRJmGVjHtgBsyafdZgEgXFA951Hs60oVkFe46fzjczw,1057
|
553
553
|
homeassistant-stubs/components/fritz/binary_sensor.pyi,sha256=u4qCGJ_qQ2lEm7grpbGSwSAe_MOesZ-AonH0u5P7xIU,1597
|
554
|
-
homeassistant-stubs/components/fritz/button.pyi,sha256=
|
555
|
-
homeassistant-stubs/components/fritz/common.pyi,sha256=
|
554
|
+
homeassistant-stubs/components/fritz/button.pyi,sha256=xLFSatUV9bR5KyJn8olDMANusRLN6Hut1uOoE0JuqTE,1787
|
555
|
+
homeassistant-stubs/components/fritz/common.pyi,sha256=cQGB4Zw5JZ3nr7F3bSCLr8qOTj50VvKfMfoFwKkXtz8,9499
|
556
556
|
homeassistant-stubs/components/fritz/config_flow.pyi,sha256=ImujwFpy3L65_g3DcKcA8Ntp024ubWTt8YMgnyY2eA0,2709
|
557
557
|
homeassistant-stubs/components/fritz/const.pyi,sha256=ntMbMh_PHa5XceBYcjCtU32nJGQk31gTT_sSmpvqk3U,904
|
558
558
|
homeassistant-stubs/components/fritz/device_tracker.pyi,sha256=ATEnZpPID8U-LmR3cvb2OWJXN3G_PWg0MNof6LviuVQ,1572
|
@@ -561,8 +561,8 @@ homeassistant-stubs/components/fritz/sensor.pyi,sha256=XiJCBLsj7WiC5eZs_lg36SevS
|
|
561
561
|
homeassistant-stubs/components/fritz/services.pyi,sha256=eNSuzNmhlKnRhVi2DYncUTlV2hP6_pQdkov6L9Y4UAs,1044
|
562
562
|
homeassistant-stubs/components/fritz/switch.pyi,sha256=fVaWKUHBHgynn3roBMNiiJxupdO4YGrem7-28CMXjXw,5412
|
563
563
|
homeassistant-stubs/components/fritz/update.pyi,sha256=1b2W9yG3FFhwm9472Abrzst8SlU4TJyrnuqELwvoVhE,1219
|
564
|
-
homeassistant-stubs/components/fritzbox/__init__.pyi,sha256=
|
565
|
-
homeassistant-stubs/components/fritzbox/binary_sensor.pyi,sha256=
|
564
|
+
homeassistant-stubs/components/fritzbox/__init__.pyi,sha256=1Gu_q7g13aXDGNPRyKp93lCztHSglX35V9PAkQlyUlI,2098
|
565
|
+
homeassistant-stubs/components/fritzbox/binary_sensor.pyi,sha256=koSa3yi9GsU3Ac1XzXggBoQSAOqH7rgQo5gB3B7sRMw,1855
|
566
566
|
homeassistant-stubs/components/fritzbox/button.pyi,sha256=BAbjzYI74i6hu33RBPrxWTwKsZCVxeDHHpbj_vCIDWc,988
|
567
567
|
homeassistant-stubs/components/fritzbox/climate.pyi,sha256=DeUM-Ft3xNuXhWI4plW1gbdRbnmda1IJPxxvq69aX9A,2421
|
568
568
|
homeassistant-stubs/components/fritzbox/config_flow.pyi,sha256=lICercdFy5C9SGjj6MkhJKykcK0GkUQiGMc-ExU3J-4,1522
|
@@ -583,7 +583,7 @@ homeassistant-stubs/components/fronius/__init__.pyi,sha256=wRNakencNbuVR1ty3VlKS
|
|
583
583
|
homeassistant-stubs/components/fronius/config_flow.pyi,sha256=Qfbhi3sCzi-LPqfsx1-wSEuwWollOEbrVoZZjzhbxRg,1358
|
584
584
|
homeassistant-stubs/components/fronius/const.pyi,sha256=wZU-rDMB8pSU_eVrgXzK0qpNHttfz8SdA1ZO2tCte0U,409
|
585
585
|
homeassistant-stubs/components/fronius/coordinator.pyi,sha256=FQYqZSP9zk_ZuKO9cqO3kUyS7XSv43YVzXzSQHZ_HYA,3618
|
586
|
-
homeassistant-stubs/components/fronius/sensor.pyi,sha256=
|
586
|
+
homeassistant-stubs/components/fronius/sensor.pyi,sha256=ZasTjx9Oqd84G2L0PzxeFTHB1OitTzVip_VF5OBXL_o,5053
|
587
587
|
homeassistant-stubs/components/frontend/__init__.pyi,sha256=8eUYi5lfJctTePokxBj7p0jMVBgsbLWZy5P9Mm6tlS0,5558
|
588
588
|
homeassistant-stubs/components/frontend/storage.pyi,sha256=1q3tM9T0uJne5-dhhc4CBwhonZOOaSPq9cWVns0P3nw,1033
|
589
589
|
homeassistant-stubs/components/fully_kiosk/__init__.pyi,sha256=dG1Y2GdY4SVor3d-EBjMe-w5BJdtUnz7Z5nLKD87AI8,600
|
@@ -1243,7 +1243,7 @@ homeassistant-stubs/components/nut/__init__.pyi,sha256=EXCaMpAc89jQwypUMtiqYMEIJ
|
|
1243
1243
|
homeassistant-stubs/components/nut/config_flow.pyi,sha256=jGgAZHQ8xvE55B6wxTZo9Te_MiINXGTsf6_IZbtbwRA,2324
|
1244
1244
|
homeassistant-stubs/components/nut/const.pyi,sha256=b5DSTu_VYqYmOypI4GtMjo-B268QVZYoaZ9f8bJcpbE,320
|
1245
1245
|
homeassistant-stubs/components/nut/diagnostics.pyi,sha256=iJFoE3MAvK_WP0EtOxQmWQFhXuucY8tonRm2Nj8DN3o,648
|
1246
|
-
homeassistant-stubs/components/nut/sensor.pyi,sha256=
|
1246
|
+
homeassistant-stubs/components/nut/sensor.pyi,sha256=q7cX8yiSZiMkAvGJ4xUeVjO00XMlM5yztQBDhq3OlCI,2270
|
1247
1247
|
homeassistant-stubs/components/oncue/__init__.pyi,sha256=QiKB6LM4IBlFSYsLVfaoATgn4wVMn0mNFbTe4xFQ-_U,852
|
1248
1248
|
homeassistant-stubs/components/oncue/binary_sensor.pyi,sha256=LSYcsGGHmNPhv08_sQvVWIY0RMQ23LODqlEC844XEj8,1083
|
1249
1249
|
homeassistant-stubs/components/oncue/config_flow.pyi,sha256=odLZ1Tj4BmphVi3YzRLs9V0bgifAepVzjfWz_PonC5Y,641
|
@@ -1256,7 +1256,7 @@ homeassistant-stubs/components/onewire/config_flow.pyi,sha256=Cft7O-A56wQ8z4p_gn
|
|
1256
1256
|
homeassistant-stubs/components/onewire/const.pyi,sha256=hRqntP8bAGykIWMTg_Fobo5hJ-yvGD0yfisqRQVJPLM,612
|
1257
1257
|
homeassistant-stubs/components/onewire/diagnostics.pyi,sha256=3cPlx3eq1XwW3ABCmanqg4eibuN4ugMcJcRbML7Im30,547
|
1258
1258
|
homeassistant-stubs/components/onewire/model.pyi,sha256=Soku6b7bFCWxKi5sKwNL7YKPTNj33PcGhBt_jqkeIxw,251
|
1259
|
-
homeassistant-stubs/components/onewire/onewire_entities.pyi,sha256=
|
1259
|
+
homeassistant-stubs/components/onewire/onewire_entities.pyi,sha256=201cvesXjlcS89Xen56XK6TKKXXVeTOeyuuA_YSvCuI,1365
|
1260
1260
|
homeassistant-stubs/components/onewire/onewirehub.pyi,sha256=l6fehMZeR6pNB2CrzRi-amZiawo2j3ugtzGYFBdfpl8,1561
|
1261
1261
|
homeassistant-stubs/components/onewire/sensor.pyi,sha256=ccXooMIhbjU3PrM6PEpETHrhD0vSDNMkLt57OW7p6vw,2769
|
1262
1262
|
homeassistant-stubs/components/onewire/switch.pyi,sha256=ZpOsea9QFj4N6e5FyD7Gs_FyXFaQBjLW2TKknJ-Haww,1781
|
@@ -1277,11 +1277,11 @@ homeassistant-stubs/components/openuv/const.pyi,sha256=R_CVn7DD03sBz0d8msZqnvSup
|
|
1277
1277
|
homeassistant-stubs/components/openuv/coordinator.pyi,sha256=My_l8bbVswzdzL-OkJB_b4bksIVak5omJdMQNQOQifU,1062
|
1278
1278
|
homeassistant-stubs/components/openuv/diagnostics.pyi,sha256=wq8y2_kq1S0TMwHHlg5ZT0F7vTmJQqkcm_dB56s4FqI,706
|
1279
1279
|
homeassistant-stubs/components/openuv/sensor.pyi,sha256=56nVA92iLWVCuahnsZmm7VlcdqQZUeU_WDwJ6jAT3cs,1745
|
1280
|
-
homeassistant-stubs/components/otbr/__init__.pyi,sha256=
|
1280
|
+
homeassistant-stubs/components/otbr/__init__.pyi,sha256=kRS9aPV-RSSWUSEVWWBlHStYN4FolUXAxo-5QTBR_uM,1060
|
1281
1281
|
homeassistant-stubs/components/otbr/config_flow.pyi,sha256=Ltd4GeLZJPGIjR0a1JSux_hlSAsCiz392y4eVO3Z5Nk,1004
|
1282
1282
|
homeassistant-stubs/components/otbr/const.pyi,sha256=WEAz5hSbJGd1D07M4M382F7Z-4wHVAsy_ZE-JeJL6TQ,33
|
1283
|
-
homeassistant-stubs/components/otbr/util.pyi,sha256=
|
1284
|
-
homeassistant-stubs/components/otbr/websocket_api.pyi,sha256=
|
1283
|
+
homeassistant-stubs/components/otbr/util.pyi,sha256=Ry4tm0-HJCXPQJ5s6lapcD9ovYtMvEGrAxSPFL5JXIo,1862
|
1284
|
+
homeassistant-stubs/components/otbr/websocket_api.pyi,sha256=P_3xzd_wG8M35GNLRzvyOsvFpjRePBhscnfBLpCBoAo,1080
|
1285
1285
|
homeassistant-stubs/components/overkiz/__init__.pyi,sha256=xqMJkRe1XNYAuch6K8krWjZW7x04-JOj5E1ydWVIRGE,1334
|
1286
1286
|
homeassistant-stubs/components/overkiz/alarm_control_panel.pyi,sha256=Aa8qPPAzkoUx2w6MbYIxO6F-p3HLdOTcECaaIcDLSL0,4186
|
1287
1287
|
homeassistant-stubs/components/overkiz/binary_sensor.pyi,sha256=YLWz-G9c2he6T_5Au0ZtQ1KH8Eb5UP7wsrdlOwF5Fko,1676
|
@@ -1326,12 +1326,12 @@ homeassistant-stubs/components/peco/const.pyi,sha256=DioZaITe5k8v9Wi6F-fkflBlM-a
|
|
1326
1326
|
homeassistant-stubs/components/peco/sensor.pyi,sha256=rksld-TY4UFPs9SapspVhyVkIAXBaXSVWBkLe9V25Vk,2227
|
1327
1327
|
homeassistant-stubs/components/persistent_notification/__init__.pyi,sha256=M94fNM4GvfJiQTR5IAq3QSdvrUqqs_nX3NBmzYnG1uk,1610
|
1328
1328
|
homeassistant-stubs/components/pi_hole/__init__.pyi,sha256=h30EdY9ERpSJP4LT4-EmOFWOlsbyDKwsAgoh7CtqqgA,1565
|
1329
|
-
homeassistant-stubs/components/pi_hole/binary_sensor.pyi,sha256=
|
1329
|
+
homeassistant-stubs/components/pi_hole/binary_sensor.pyi,sha256=5seK3HnfsOxjrfjEjRc4ut6NAYDLMWGBjhDT_K5VUWk,2071
|
1330
1330
|
homeassistant-stubs/components/pi_hole/config_flow.pyi,sha256=Van9xeLVkg0G7NFjIK9NbUOakaKXa0yJeqkU-wMIMKE,1317
|
1331
1331
|
homeassistant-stubs/components/pi_hole/const.pyi,sha256=5sCzxFGYJXCD0dNDPUdG48MN2jDJb0XtnBExq7ggO-U,342
|
1332
|
-
homeassistant-stubs/components/pi_hole/sensor.pyi,sha256=
|
1332
|
+
homeassistant-stubs/components/pi_hole/sensor.pyi,sha256=K3KgPGudMjyErdWfWagDe0JAsyqryGz8_AM04pqIn30,1343
|
1333
1333
|
homeassistant-stubs/components/pi_hole/switch.pyi,sha256=aFnxES7rgc8nFMRWmSkAqiuOTyN3DZonh1VuHo_hnFY,1262
|
1334
|
-
homeassistant-stubs/components/pi_hole/update.pyi,sha256=
|
1334
|
+
homeassistant-stubs/components/pi_hole/update.pyi,sha256=vg0ow89lZR7vFcKI4Bom597ibRJGIX-atfTY4sZIumQ,2038
|
1335
1335
|
homeassistant-stubs/components/powerwall/__init__.pyi,sha256=iPb-ZkSuTKKrrv2SDkEF549TOQWANVS2Qpqj4ZQ-BjY,2275
|
1336
1336
|
homeassistant-stubs/components/powerwall/binary_sensor.pyi,sha256=OWfQGEPI2fqTQlqU5Bsf9vCNjC41JmOFugJhMdQ_NgU,1898
|
1337
1337
|
homeassistant-stubs/components/powerwall/config_flow.pyi,sha256=pzpkAIjexe6FVY9ZPGcPKAJk2nzx0Zx6xOv_nwNDuCs,1926
|
@@ -1668,7 +1668,7 @@ homeassistant-stubs/components/simplepush/const.pyi,sha256=p5wcyO7TZb1HjYYJ0iXIa
|
|
1668
1668
|
homeassistant-stubs/components/simplepush/notify.pyi,sha256=ZjmIvsuYHoqGQeFcLhvrmDZunIclM5Sdc5U5K5P6_ks,1299
|
1669
1669
|
homeassistant-stubs/components/simplisafe/__init__.pyi,sha256=RXhk3jY4gU_XnEYul2KuQrVUxMhRi-tiZ7X0xR4rre8,5589
|
1670
1670
|
homeassistant-stubs/components/simplisafe/alarm_control_panel.pyi,sha256=9eZfGHRGJzHXA-1waX3q4dNS_tJlpNgnczIXX8avO_I,2729
|
1671
|
-
homeassistant-stubs/components/simplisafe/binary_sensor.pyi,sha256=
|
1671
|
+
homeassistant-stubs/components/simplisafe/binary_sensor.pyi,sha256=Yg_VM-3fTBZXYUFYrKwUHEff3nAvqeYqs199w46C99Y,1718
|
1672
1672
|
homeassistant-stubs/components/simplisafe/button.pyi,sha256=YqW-nHSeQXZ4yz70BQaiHAa9AuCqA2lVqUwnXnjCwMg,1827
|
1673
1673
|
homeassistant-stubs/components/simplisafe/config_flow.pyi,sha256=t625Qac9HKKL7J9g49O1nar49KqsYTKTlGTSMTJyoDk,1514
|
1674
1674
|
homeassistant-stubs/components/simplisafe/const.pyi,sha256=B81hU-I1L_Q8nD9syq-PepRa3z3cUj1r-cuD5o6-PXY,288
|
@@ -1751,7 +1751,7 @@ homeassistant-stubs/components/sun/__init__.pyi,sha256=0yFJnfdq0Xd7zVDs4Q6loJNtt
|
|
1751
1751
|
homeassistant-stubs/components/sun/config_flow.pyi,sha256=jS-u6E2qhashTn1oQ7owos30kaOhHbeEoyj6LCOVdvY,454
|
1752
1752
|
homeassistant-stubs/components/sun/const.pyi,sha256=Pc5HaWbrm-tj18gMTMSl0KTgRtfR4kDNOAxTFiZ4yXs,70
|
1753
1753
|
homeassistant-stubs/components/sun/recorder.pyi,sha256=tfNvI6IFtYlK5AApuyIbef0Wly5ONbbcv0bKiutpKlI,581
|
1754
|
-
homeassistant-stubs/components/sun/sensor.pyi,sha256=
|
1754
|
+
homeassistant-stubs/components/sun/sensor.pyi,sha256=EX5_3tLEMpDfBsR-mot3d7E8vZ4xhg8F_-bd2eVbJWk,2054
|
1755
1755
|
homeassistant-stubs/components/sun/trigger.pyi,sha256=hjdVz5vwuUwmbsKZM0Liy3hIXBWY_G9dpDtuC-xTflg,803
|
1756
1756
|
homeassistant-stubs/components/surepetcare/__init__.pyi,sha256=pgxYpOwKv1T4hniygQeAES0Zk6e44A2tXhiiv22xmzk,2104
|
1757
1757
|
homeassistant-stubs/components/surepetcare/binary_sensor.pyi,sha256=hOmKlCa8zMzhdVUn9j56iVqa60f7h5wX-GVbyKqf2wc,2037
|
@@ -1798,11 +1798,11 @@ homeassistant-stubs/components/synology_dsm/config_flow.pyi,sha256=G1LoIX9NgkirJ
|
|
1798
1798
|
homeassistant-stubs/components/synology_dsm/const.pyi,sha256=PTkF-q4a4cngU8eu7iy-S9rvdGqHHk5baofRjghTIJM,745
|
1799
1799
|
homeassistant-stubs/components/synology_dsm/coordinator.pyi,sha256=XPb_f6oQ0IiLxiA0jbAlVAaI2BaSAniVytV_nbI9REw,1933
|
1800
1800
|
homeassistant-stubs/components/synology_dsm/diagnostics.pyi,sha256=7bHKhu1hD4BqMFGov2qTvlYp65-t6KSU5x5arJQbe7k,715
|
1801
|
-
homeassistant-stubs/components/synology_dsm/entity.pyi,sha256=
|
1801
|
+
homeassistant-stubs/components/synology_dsm/entity.pyi,sha256=Au_IkC0p4fFTapOyepuLq-IlDqkIjiQcr2HPoSa52gU,1972
|
1802
1802
|
homeassistant-stubs/components/synology_dsm/models.pyi,sha256=BVxDmLjA-qIktjJdK0bSQwrnRa2t7-bkS1n4WBuT4t8,629
|
1803
1803
|
homeassistant-stubs/components/synology_dsm/sensor.pyi,sha256=UYHJa3NZ8oUIJry_v6biOVoPWqKfpF12Cz7krZk6li8,3294
|
1804
1804
|
homeassistant-stubs/components/synology_dsm/service.pyi,sha256=h0qhMzwZO2z_nq_I0T1WbE5ViCtRCZy0eN0SIa-x2TE,422
|
1805
|
-
homeassistant-stubs/components/synology_dsm/switch.pyi,sha256=
|
1805
|
+
homeassistant-stubs/components/synology_dsm/switch.pyi,sha256=UJL8IYKahVpj4nc2VW00AhHio1C0n05ctNnvcLSDkqk,2004
|
1806
1806
|
homeassistant-stubs/components/synology_dsm/update.pyi,sha256=Y_Dc1k3Qr_XL5pQpydCLSYnFjub1TcovyuXXWfY-TT4,1708
|
1807
1807
|
homeassistant-stubs/components/systemmonitor/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1808
1808
|
homeassistant-stubs/components/systemmonitor/sensor.pyi,sha256=ePoLlX8kjzb8zILu7VNUGf55kBQm-znrAKYHOqyhgUQ,3804
|
@@ -2305,7 +2305,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=zxT5g702AE8bCbQd9UynrAwNF_MndI2e
|
|
2305
2305
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
2306
2306
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=LdOts7aNdgGBanbHeaHTA-FS2PuPe9ZfNfjWFYnSi6U,3167
|
2307
2307
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ob8lXxNfm75wO2xk-ihATXFzNxI7V9Q1h507lnyzmtE,272
|
2308
|
-
homeassistant_stubs-2023.4.
|
2309
|
-
homeassistant_stubs-2023.4.
|
2310
|
-
homeassistant_stubs-2023.4.
|
2311
|
-
homeassistant_stubs-2023.4.
|
2308
|
+
homeassistant_stubs-2023.4.0b6.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
2309
|
+
homeassistant_stubs-2023.4.0b6.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
2310
|
+
homeassistant_stubs-2023.4.0b6.dist-info/METADATA,sha256=nU1fN3SkdNtQyRsPm8KwXFSjy9-y19ihxCieg7O7FMI,3110
|
2311
|
+
homeassistant_stubs-2023.4.0b6.dist-info/RECORD,,
|
{homeassistant_stubs-2023.4.0b5.dist-info → homeassistant_stubs-2023.4.0b6.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|