homeassistant-stubs 2024.7.0b2__py3-none-any.whl → 2024.7.0b3__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/integration/sensor.pyi +2 -2
- homeassistant-stubs/components/knocki/event.pyi +1 -0
- homeassistant-stubs/components/lamarzocco/switch.pyi +2 -0
- homeassistant-stubs/components/overkiz/water_heater.pyi +2 -1
- homeassistant-stubs/components/overkiz/water_heater_entities/__init__.pyi +2 -0
- homeassistant-stubs/components/overkiz/water_heater_entities/atlantic_domestic_hot_water_production_mlb_component.pyi +32 -0
- homeassistant-stubs/components/tplink/__init__.pyi +5 -2
- homeassistant-stubs/components/tplink/config_flow.pyi +1 -1
- homeassistant-stubs/components/tplink/const.pyi +2 -0
- homeassistant-stubs/core.pyi +5 -5
- homeassistant-stubs/helpers/event.pyi +10 -4
- {homeassistant_stubs-2024.7.0b2.dist-info → homeassistant_stubs-2024.7.0b3.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.7.0b2.dist-info → homeassistant_stubs-2024.7.0b3.dist-info}/RECORD +15 -14
- {homeassistant_stubs-2024.7.0b2.dist-info → homeassistant_stubs-2024.7.0b3.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.7.0b2.dist-info → homeassistant_stubs-2024.7.0b3.dist-info}/WHEEL +0 -0
@@ -8,12 +8,12 @@ from decimal import Decimal
|
|
8
8
|
from enum import Enum
|
9
9
|
from homeassistant.components.sensor import DEVICE_CLASS_UNITS as DEVICE_CLASS_UNITS, RestoreSensor as RestoreSensor, SensorDeviceClass as SensorDeviceClass, SensorExtraStoredData as SensorExtraStoredData, SensorStateClass as SensorStateClass
|
10
10
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
11
|
-
from homeassistant.const import ATTR_DEVICE_CLASS as ATTR_DEVICE_CLASS, ATTR_UNIT_OF_MEASUREMENT as ATTR_UNIT_OF_MEASUREMENT, CONF_METHOD as CONF_METHOD, CONF_NAME as CONF_NAME, CONF_UNIQUE_ID as CONF_UNIQUE_ID,
|
11
|
+
from homeassistant.const import ATTR_DEVICE_CLASS as ATTR_DEVICE_CLASS, ATTR_UNIT_OF_MEASUREMENT as ATTR_UNIT_OF_MEASUREMENT, CONF_METHOD as CONF_METHOD, CONF_NAME as CONF_NAME, CONF_UNIQUE_ID as CONF_UNIQUE_ID, STATE_UNAVAILABLE as STATE_UNAVAILABLE, UnitOfTime as UnitOfTime
|
12
12
|
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, Event as Event, EventStateChangedData as EventStateChangedData, EventStateReportedData as EventStateReportedData, HomeAssistant as HomeAssistant, State as State, callback as callback
|
13
13
|
from homeassistant.helpers.device import async_device_info_to_link_from_entity as async_device_info_to_link_from_entity
|
14
14
|
from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
|
15
15
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
16
|
-
from homeassistant.helpers.event import async_call_later as async_call_later
|
16
|
+
from homeassistant.helpers.event import async_call_later as async_call_later, async_track_state_change_event as async_track_state_change_event, async_track_state_report_event as async_track_state_report_event
|
17
17
|
from homeassistant.helpers.typing import ConfigType as ConfigType, DiscoveryInfoType as DiscoveryInfoType
|
18
18
|
from typing import Any, Final, Self
|
19
19
|
|
@@ -5,6 +5,7 @@ from _typeshed import Incomplete
|
|
5
5
|
from collections.abc import Callable as Callable, Coroutine
|
6
6
|
from dataclasses import dataclass
|
7
7
|
from homeassistant.components.switch import SwitchEntity as SwitchEntity, SwitchEntityDescription as SwitchEntityDescription
|
8
|
+
from homeassistant.const import EntityCategory as EntityCategory
|
8
9
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
9
10
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
10
11
|
from lmcloud.lm_machine import LaMarzoccoMachine as LaMarzoccoMachine
|
@@ -33,6 +34,7 @@ class LaMarzoccoAutoOnOffSwitchEntity(LaMarzoccoBaseEntity, SwitchEntity):
|
|
33
34
|
_attr_translation_key: str
|
34
35
|
_identifier: Incomplete
|
35
36
|
_attr_translation_placeholders: Incomplete
|
37
|
+
entity_category: Incomplete
|
36
38
|
def __init__(self, coordinator: LaMarzoccoUpdateCoordinator, identifier: str) -> None: ...
|
37
39
|
async def _async_enable(self, state: bool) -> None: ...
|
38
40
|
async def async_turn_on(self, **kwargs: Any) -> None: ...
|
@@ -1,6 +1,7 @@
|
|
1
1
|
from . import HomeAssistantOverkizData as HomeAssistantOverkizData
|
2
2
|
from .const import DOMAIN as DOMAIN
|
3
|
-
from .
|
3
|
+
from .entity import OverkizEntity as OverkizEntity
|
4
|
+
from .water_heater_entities import CONTROLLABLE_NAME_TO_WATER_HEATER_ENTITY as CONTROLLABLE_NAME_TO_WATER_HEATER_ENTITY, WIDGET_TO_WATER_HEATER_ENTITY as WIDGET_TO_WATER_HEATER_ENTITY
|
4
5
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
5
6
|
from homeassistant.const import Platform as Platform
|
6
7
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
@@ -1,6 +1,8 @@
|
|
1
|
+
from .atlantic_domestic_hot_water_production_mlb_component import AtlanticDomesticHotWaterProductionMBLComponent as AtlanticDomesticHotWaterProductionMBLComponent
|
1
2
|
from .atlantic_pass_apc_dhw import AtlanticPassAPCDHW as AtlanticPassAPCDHW
|
2
3
|
from .domestic_hot_water_production import DomesticHotWaterProduction as DomesticHotWaterProduction
|
3
4
|
from .hitachi_dhw import HitachiDHW as HitachiDHW
|
4
5
|
from _typeshed import Incomplete
|
5
6
|
|
6
7
|
WIDGET_TO_WATER_HEATER_ENTITY: Incomplete
|
8
|
+
CONTROLLABLE_NAME_TO_WATER_HEATER_ENTITY: Incomplete
|
@@ -0,0 +1,32 @@
|
|
1
|
+
from .. import OverkizDataUpdateCoordinator as OverkizDataUpdateCoordinator
|
2
|
+
from ..entity import OverkizEntity as OverkizEntity
|
3
|
+
from _typeshed import Incomplete
|
4
|
+
from homeassistant.components.water_heater import STATE_ECO as STATE_ECO, STATE_OFF as STATE_OFF, STATE_PERFORMANCE as STATE_PERFORMANCE, WaterHeaterEntity as WaterHeaterEntity, WaterHeaterEntityFeature as WaterHeaterEntityFeature
|
5
|
+
from homeassistant.const import ATTR_TEMPERATURE as ATTR_TEMPERATURE, UnitOfTemperature as UnitOfTemperature
|
6
|
+
from typing import Any
|
7
|
+
|
8
|
+
class AtlanticDomesticHotWaterProductionMBLComponent(OverkizEntity, WaterHeaterEntity):
|
9
|
+
_attr_temperature_unit: Incomplete
|
10
|
+
_attr_supported_features: Incomplete
|
11
|
+
_attr_operation_list: Incomplete
|
12
|
+
_attr_max_temp: Incomplete
|
13
|
+
_attr_min_temp: Incomplete
|
14
|
+
def __init__(self, device_url: str, coordinator: OverkizDataUpdateCoordinator) -> None: ...
|
15
|
+
@property
|
16
|
+
def current_temperature(self) -> float: ...
|
17
|
+
@property
|
18
|
+
def target_temperature(self) -> float: ...
|
19
|
+
async def async_set_temperature(self, **kwargs: Any) -> None: ...
|
20
|
+
@property
|
21
|
+
def is_boost_mode_on(self) -> bool: ...
|
22
|
+
@property
|
23
|
+
def is_eco_mode_on(self) -> bool: ...
|
24
|
+
@property
|
25
|
+
def is_away_mode_on(self) -> bool: ...
|
26
|
+
@property
|
27
|
+
def current_operation(self) -> str: ...
|
28
|
+
async def async_set_operation_mode(self, operation_mode: str) -> None: ...
|
29
|
+
async def async_turn_away_mode_on(self) -> None: ...
|
30
|
+
async def async_turn_away_mode_off(self) -> None: ...
|
31
|
+
async def async_turn_boost_mode_on(self) -> None: ...
|
32
|
+
async def async_turn_boost_mode_off(self) -> None: ...
|
@@ -1,15 +1,16 @@
|
|
1
|
-
from .const import CONF_DEVICE_CONFIG as CONF_DEVICE_CONFIG, CONNECT_TIMEOUT as CONNECT_TIMEOUT, DISCOVERY_TIMEOUT as DISCOVERY_TIMEOUT, DOMAIN as DOMAIN, PLATFORMS as PLATFORMS
|
1
|
+
from .const import CONF_CREDENTIALS_HASH as CONF_CREDENTIALS_HASH, CONF_DEVICE_CONFIG as CONF_DEVICE_CONFIG, CONNECT_TIMEOUT as CONNECT_TIMEOUT, DISCOVERY_TIMEOUT as DISCOVERY_TIMEOUT, DOMAIN as DOMAIN, PLATFORMS as PLATFORMS
|
2
2
|
from .coordinator import TPLinkDataUpdateCoordinator as TPLinkDataUpdateCoordinator
|
3
3
|
from .models import TPLinkData as TPLinkData
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from aiohttp import ClientSession as ClientSession
|
6
|
+
from collections.abc import Iterable
|
6
7
|
from homeassistant import config_entries as config_entries
|
7
8
|
from homeassistant.components import network as network
|
8
9
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
9
10
|
from homeassistant.const import CONF_ALIAS as CONF_ALIAS, CONF_AUTHENTICATION as CONF_AUTHENTICATION, CONF_HOST as CONF_HOST, CONF_MAC as CONF_MAC, CONF_MODEL as CONF_MODEL, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
|
10
11
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
11
12
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady
|
12
|
-
from homeassistant.helpers import discovery_flow as discovery_flow
|
13
|
+
from homeassistant.helpers import device_registry as dr, discovery_flow as discovery_flow
|
13
14
|
from homeassistant.helpers.aiohttp_client import async_create_clientsession as async_create_clientsession
|
14
15
|
from homeassistant.helpers.event import async_track_time_interval as async_track_time_interval
|
15
16
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
@@ -31,4 +32,6 @@ def get_device_name(device: Device, parent: Device | None = None) -> str: ...
|
|
31
32
|
async def get_credentials(hass: HomeAssistant) -> Credentials | None: ...
|
32
33
|
async def set_credentials(hass: HomeAssistant, username: str, password: str) -> None: ...
|
33
34
|
def mac_alias(mac: str) -> str: ...
|
35
|
+
def _mac_connection_or_none(device: dr.DeviceEntry) -> str | None: ...
|
36
|
+
def _device_id_is_mac_or_none(mac: str, device_ids: Iterable[str]) -> str | None: ...
|
34
37
|
async def async_migrate_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: ...
|
@@ -1,5 +1,5 @@
|
|
1
1
|
from . import async_discover_devices as async_discover_devices, create_async_tplink_clientsession as create_async_tplink_clientsession, get_credentials as get_credentials, mac_alias as mac_alias, set_credentials as set_credentials
|
2
|
-
from .const import CONF_DEVICE_CONFIG as CONF_DEVICE_CONFIG, CONNECT_TIMEOUT as CONNECT_TIMEOUT, DOMAIN as DOMAIN
|
2
|
+
from .const import CONF_CONNECTION_TYPE as CONF_CONNECTION_TYPE, CONF_CREDENTIALS_HASH as CONF_CREDENTIALS_HASH, CONF_DEVICE_CONFIG as CONF_DEVICE_CONFIG, CONNECT_TIMEOUT as CONNECT_TIMEOUT, DOMAIN as DOMAIN
|
3
3
|
from _typeshed import Incomplete
|
4
4
|
from collections.abc import Mapping
|
5
5
|
from homeassistant.components import dhcp as dhcp
|
@@ -11,5 +11,7 @@ ATTR_CURRENT_POWER_W: Final[str]
|
|
11
11
|
ATTR_TODAY_ENERGY_KWH: Final[str]
|
12
12
|
ATTR_TOTAL_ENERGY_KWH: Final[str]
|
13
13
|
CONF_DEVICE_CONFIG: Final[str]
|
14
|
+
CONF_CREDENTIALS_HASH: Final[str]
|
15
|
+
CONF_CONNECTION_TYPE: Final[str]
|
14
16
|
PLATFORMS: Final[Incomplete]
|
15
17
|
UNIT_MAPPING: Incomplete
|
homeassistant-stubs/core.pyi
CHANGED
@@ -53,15 +53,15 @@ class ConfigSource(enum.StrEnum):
|
|
53
53
|
STORAGE: str
|
54
54
|
YAML: str
|
55
55
|
|
56
|
-
class
|
56
|
+
class EventStateEventData(TypedDict):
|
57
57
|
entity_id: str
|
58
|
-
old_state: State | None
|
59
58
|
new_state: State | None
|
60
59
|
|
61
|
-
class
|
62
|
-
|
60
|
+
class EventStateChangedData(EventStateEventData):
|
61
|
+
old_state: State | None
|
62
|
+
|
63
|
+
class EventStateReportedData(EventStateEventData):
|
63
64
|
old_last_reported: datetime.datetime
|
64
|
-
new_state: State | None
|
65
65
|
|
66
66
|
_DEPRECATED_SOURCE_DISCOVERED: Incomplete
|
67
67
|
_DEPRECATED_SOURCE_STORAGE: Incomplete
|
@@ -12,8 +12,8 @@ from collections import defaultdict
|
|
12
12
|
from collections.abc import Callable, Coroutine, Iterable, Mapping, Sequence
|
13
13
|
from dataclasses import dataclass
|
14
14
|
from datetime import datetime, timedelta
|
15
|
-
from homeassistant.const import EVENT_CORE_CONFIG_UPDATE as EVENT_CORE_CONFIG_UPDATE, EVENT_STATE_CHANGED as EVENT_STATE_CHANGED, MATCH_ALL as MATCH_ALL, SUN_EVENT_SUNRISE as SUN_EVENT_SUNRISE, SUN_EVENT_SUNSET as SUN_EVENT_SUNSET
|
16
|
-
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, Event as Event, EventStateChangedData as EventStateChangedData, HassJob as HassJob, HassJobType as HassJobType, HomeAssistant as HomeAssistant, State as State, callback as callback, split_entity_id as split_entity_id
|
15
|
+
from homeassistant.const import EVENT_CORE_CONFIG_UPDATE as EVENT_CORE_CONFIG_UPDATE, EVENT_STATE_CHANGED as EVENT_STATE_CHANGED, EVENT_STATE_REPORTED as EVENT_STATE_REPORTED, MATCH_ALL as MATCH_ALL, SUN_EVENT_SUNRISE as SUN_EVENT_SUNRISE, SUN_EVENT_SUNSET as SUN_EVENT_SUNSET
|
16
|
+
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, Event as Event, EventStateChangedData as EventStateChangedData, EventStateEventData as EventStateEventData, EventStateReportedData as EventStateReportedData, HassJob as HassJob, HassJobType as HassJobType, HomeAssistant as HomeAssistant, State as State, callback as callback, split_entity_id as split_entity_id
|
17
17
|
from homeassistant.exceptions import TemplateError as TemplateError
|
18
18
|
from homeassistant.loader import bind_hass as bind_hass
|
19
19
|
from homeassistant.util.async_ import run_callback_threadsafe as run_callback_threadsafe
|
@@ -22,6 +22,7 @@ from homeassistant.util.hass_dict import HassKey as HassKey
|
|
22
22
|
from typing import Any, Concatenate, Generic, TypeVar
|
23
23
|
|
24
24
|
_TRACK_STATE_CHANGE_DATA: HassKey[_KeyedEventData[EventStateChangedData]]
|
25
|
+
_TRACK_STATE_REPORT_DATA: HassKey[_KeyedEventData[EventStateReportedData]]
|
25
26
|
_TRACK_STATE_ADDED_DOMAIN_DATA: HassKey[_KeyedEventData[EventStateChangedData]]
|
26
27
|
_TRACK_STATE_REMOVED_DOMAIN_DATA: HassKey[_KeyedEventData[EventStateChangedData]]
|
27
28
|
_TRACK_ENTITY_REGISTRY_UPDATED_DATA: HassKey[_KeyedEventData[EventEntityRegistryUpdatedData]]
|
@@ -33,6 +34,7 @@ _LOGGER: Incomplete
|
|
33
34
|
RANDOM_MICROSECOND_MIN: int
|
34
35
|
RANDOM_MICROSECOND_MAX: int
|
35
36
|
_TypedDictT = TypeVar('_TypedDictT', bound=Mapping[str, Any])
|
37
|
+
_StateEventDataT = TypeVar('_StateEventDataT', bound=EventStateEventData)
|
36
38
|
|
37
39
|
@dataclass(slots=True, frozen=True)
|
38
40
|
class _KeyedEventTracker(Generic[_TypedDictT]):
|
@@ -75,12 +77,16 @@ def async_track_state_change(hass: HomeAssistant, entity_ids: str | Iterable[str
|
|
75
77
|
track_state_change: Incomplete
|
76
78
|
|
77
79
|
def async_track_state_change_event(hass: HomeAssistant, entity_ids: str | Iterable[str], action: Callable[[Event[EventStateChangedData]], Any], job_type: HassJobType | None = None) -> CALLBACK_TYPE: ...
|
78
|
-
def _async_dispatch_entity_id_event(hass: HomeAssistant, callbacks: dict[str, list[HassJob[[Event[
|
79
|
-
def
|
80
|
+
def _async_dispatch_entity_id_event(hass: HomeAssistant, callbacks: dict[str, list[HassJob[[Event[_StateEventDataT]], Any]]], event: Event[_StateEventDataT]) -> None: ...
|
81
|
+
def _async_state_filter(hass: HomeAssistant, callbacks: dict[str, list[HassJob[[Event[_StateEventDataT]], Any]]], event_data: _StateEventDataT) -> bool: ...
|
80
82
|
|
81
83
|
_KEYED_TRACK_STATE_CHANGE: Incomplete
|
82
84
|
|
83
85
|
def _async_track_state_change_event(hass: HomeAssistant, entity_ids: str | Iterable[str], action: Callable[[Event[EventStateChangedData]], Any], job_type: HassJobType | None) -> CALLBACK_TYPE: ...
|
86
|
+
|
87
|
+
_KEYED_TRACK_STATE_REPORT: Incomplete
|
88
|
+
|
89
|
+
def async_track_state_report_event(hass: HomeAssistant, entity_ids: str | Iterable[str], action: Callable[[Event[EventStateReportedData]], Any], job_type: HassJobType | None = None) -> CALLBACK_TYPE: ...
|
84
90
|
def _remove_empty_listener() -> None: ...
|
85
91
|
def _remove_listener(hass: HomeAssistant, tracker: _KeyedEventTracker[_TypedDictT], keys: Iterable[str], job: HassJob[[Event[_TypedDictT]], Any], callbacks: dict[str, list[HassJob[[Event[_TypedDictT]], Any]]]) -> None: ...
|
86
92
|
def _async_track_event(tracker: _KeyedEventTracker[_TypedDictT], hass: HomeAssistant, keys: str | Iterable[str], action: Callable[[Event[_TypedDictT]], None], job_type: HassJobType | None) -> CALLBACK_TYPE: ...
|
{homeassistant_stubs-2024.7.0b2.dist-info → homeassistant_stubs-2024.7.0b3.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.7.
|
3
|
+
Version: 2024.7.0b3
|
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.7.
|
19
|
+
Requires-Dist: homeassistant (==2024.7.0b3)
|
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.7.0b2.dist-info → homeassistant_stubs-2024.7.0b3.dist-info}/RECORD
RENAMED
@@ -1390,7 +1390,7 @@ homeassistant-stubs/components/input_text/reproduce_state.pyi,sha256=3MUzSA15F0q
|
|
1390
1390
|
homeassistant-stubs/components/integration/__init__.pyi,sha256=64pi7wDuX9BJBHe7V6Z1ZgSuNyxSgIijWuTFD2S4Bls,650
|
1391
1391
|
homeassistant-stubs/components/integration/config_flow.pyi,sha256=ODEUdIDWEGQxOjWPeb46ZCU6rpevm-L1_Of-u-9VqKU,1696
|
1392
1392
|
homeassistant-stubs/components/integration/const.pyi,sha256=R7lHqjIAH5GaVha03LbSKy6qe8HkDhWxXr7WCkvr2N0,283
|
1393
|
-
homeassistant-stubs/components/integration/sensor.pyi,sha256=
|
1393
|
+
homeassistant-stubs/components/integration/sensor.pyi,sha256=k2_vmUWyIwLLzMX3kELaKAl6zMFwVRyLm-zThhkYKJE,7243
|
1394
1394
|
homeassistant-stubs/components/intent/__init__.pyi,sha256=A6Gtd6LZ4_QBfREGumLwYirb5j28auSohMAw0zIM8Sg,1654
|
1395
1395
|
homeassistant-stubs/components/intent/const.pyi,sha256=3O_gvS76ZKuzViWqM8923WbKQEZ9umuZYPeJryQTmco,69
|
1396
1396
|
homeassistant-stubs/components/intent/timers.pyi,sha256=DPZLDEeRjpyeo1v9IYMheCIA8FU_Yi8bZpXDdSj9pHQ,5593
|
@@ -1475,7 +1475,7 @@ homeassistant-stubs/components/knocki/__init__.pyi,sha256=kRv_ekcWX2XsoYgNRn6sI-
|
|
1475
1475
|
homeassistant-stubs/components/knocki/config_flow.pyi,sha256=tI8CCvG23dhv3vPPKn2bOaXKgfNm83AVrtdrbisuZTw,693
|
1476
1476
|
homeassistant-stubs/components/knocki/const.pyi,sha256=ApJjYGIfxEHQ112a2tGXF7SyTQbhrih7AUV4OwvbqgQ,65
|
1477
1477
|
homeassistant-stubs/components/knocki/coordinator.pyi,sha256=SFGPeyLs9ILlzc0NckFBQ6qrw-lY4bOEvHm47i5PXrc,748
|
1478
|
-
homeassistant-stubs/components/knocki/event.pyi,sha256=
|
1478
|
+
homeassistant-stubs/components/knocki/event.pyi,sha256=R2ZSVS8T3esGkWS-eokY5h8cYOJLRG622YAXP9DqMJI,1166
|
1479
1479
|
homeassistant-stubs/components/knx/__init__.pyi,sha256=0lo18hqphG0WeGSlVi0GOifWpRvsgA7fqZswft_aX3M,4752
|
1480
1480
|
homeassistant-stubs/components/knx/binary_sensor.pyi,sha256=BgPd0HLWOxttfdpnJKEgGjM2yGEOLJXInx6pZMAW2D8,1725
|
1481
1481
|
homeassistant-stubs/components/knx/button.pyi,sha256=VwWeklDIcJXqQ8n5e7p8mK7E0436HQHMjuv4hzCZr9U,1233
|
@@ -1535,7 +1535,7 @@ homeassistant-stubs/components/lamarzocco/entity.pyi,sha256=vLYkGeEoXOx2a78Rrko3
|
|
1535
1535
|
homeassistant-stubs/components/lamarzocco/number.pyi,sha256=PRPQZWpFEAw_7_4VEFGNLp86SI40lvwfEVBAcwN0NTA,3666
|
1536
1536
|
homeassistant-stubs/components/lamarzocco/select.pyi,sha256=3KWnlj_n-36s6XMokiowbfjWSZDabsXY6hO9c15gXVc,1993
|
1537
1537
|
homeassistant-stubs/components/lamarzocco/sensor.pyi,sha256=CoGfqt1ycv6QtFsJ0pJlj2F5v7LMgdZFca9UC2aQRak,1792
|
1538
|
-
homeassistant-stubs/components/lamarzocco/switch.pyi,sha256=
|
1538
|
+
homeassistant-stubs/components/lamarzocco/switch.pyi,sha256=uhTVp0Kb92jln3wK4cSvUGhB16QuH1zCF6GqrCmE2Ko,2588
|
1539
1539
|
homeassistant-stubs/components/lamarzocco/update.pyi,sha256=a9K6cm4Otb0mCelo5L1FfJqOoU9zOrcTRQM-jH66iHg,1861
|
1540
1540
|
homeassistant-stubs/components/lametric/__init__.pyi,sha256=Kgq3HkaGWJ1H5QpkZbU-Vdg12TC_TyN5KOqdxM_rtCA,847
|
1541
1541
|
homeassistant-stubs/components/lametric/application_credentials.pyi,sha256=Hra7BGzFBCV4iwzzb0E2x0pEzZCctL7V-Y3mSqXmvWs,257
|
@@ -2109,8 +2109,9 @@ homeassistant-stubs/components/overkiz/select.pyi,sha256=TIOLeCrSeNrcASkGEIpfAZs
|
|
2109
2109
|
homeassistant-stubs/components/overkiz/sensor.pyi,sha256=4IpZzxQapDK9HEyTs7ZAuMjD5_7TqBzH95jvGqG7CfA,2978
|
2110
2110
|
homeassistant-stubs/components/overkiz/siren.pyi,sha256=pdyPnShU02nCoRsJs9NY2JXS3ilnYEbKaHY7wcJG14M,1016
|
2111
2111
|
homeassistant-stubs/components/overkiz/switch.pyi,sha256=qAjy7DoFvmnHtf3y2onFn2XIDBXvmuaqPol1gz29moM,2002
|
2112
|
-
homeassistant-stubs/components/overkiz/water_heater.pyi,sha256=
|
2113
|
-
homeassistant-stubs/components/overkiz/water_heater_entities/__init__.pyi,sha256=
|
2112
|
+
homeassistant-stubs/components/overkiz/water_heater.pyi,sha256=slpc_gKq2_-BOcv3EYYlmgGVPXyNCikV1HoJppXxyMI,738
|
2113
|
+
homeassistant-stubs/components/overkiz/water_heater_entities/__init__.pyi,sha256=Fn3PtnxL3WhUEyCspkKb8tCvVNRer0Tsv8HRsFxQ2UI,518
|
2114
|
+
homeassistant-stubs/components/overkiz/water_heater_entities/atlantic_domestic_hot_water_production_mlb_component.pyi,sha256=-9N1Hr2SPra_B-eCRZuksNialg6R6MPTJolnxZHllRM,1621
|
2114
2115
|
homeassistant-stubs/components/overkiz/water_heater_entities/atlantic_pass_apc_dhw.pyi,sha256=oikcX7Fwz7bdZ5MhkEwSoulPz4zo58cbV8iy1fvziNA,1216
|
2115
2116
|
homeassistant-stubs/components/overkiz/water_heater_entities/domestic_hot_water_production.pyi,sha256=A0tlreNtpw6aK6-KwDRBZC85LeY0S0aug5pfHriN_CI,1761
|
2116
2117
|
homeassistant-stubs/components/overkiz/water_heater_entities/hitachi_dhw.pyi,sha256=W8b4AcelbGUl_ZaobmROysMwXezSK2lAAeezJaEFltw,1174
|
@@ -2879,12 +2880,12 @@ homeassistant-stubs/components/tolo/number.pyi,sha256=ER_uoYjMxtJill_dLHLIoi9Ywy
|
|
2879
2880
|
homeassistant-stubs/components/tolo/select.pyi,sha256=9ks_rMjvZuJjonakIdiQSMZpCsX0_VvyuTA5AWQKw0E,1955
|
2880
2881
|
homeassistant-stubs/components/tolo/sensor.pyi,sha256=iXX4L6-0v9grZlNCxLkVdnnxdCKzqFrsINB5JetYs28,2136
|
2881
2882
|
homeassistant-stubs/components/tolo/switch.pyi,sha256=uCB3rqalqUTsVsNH_JTQ-FJnbIuCNP7gd_arltTaz34,1765
|
2882
|
-
homeassistant-stubs/components/tplink/__init__.pyi,sha256=
|
2883
|
+
homeassistant-stubs/components/tplink/__init__.pyi,sha256=33vn8sAX26WwFVqdOT9f7FUwWmKzVSI0xh14Cd7gtv0,2715
|
2883
2884
|
homeassistant-stubs/components/tplink/binary_sensor.pyi,sha256=rvGvbzuMi7Oe55E3s4jeMKImRVycdlwwbPaj0UP0Nk4,1520
|
2884
2885
|
homeassistant-stubs/components/tplink/button.pyi,sha256=mJuuHk4Xe3MVXveDpzfpPAUHzAVDGgLL2A7-U2Gmhdw,1389
|
2885
2886
|
homeassistant-stubs/components/tplink/climate.pyi,sha256=vsX5leWYVd6GXFRWLfKxqDEoJL0G4qjcy823flVug_Q,2188
|
2886
|
-
homeassistant-stubs/components/tplink/config_flow.pyi,sha256=
|
2887
|
-
homeassistant-stubs/components/tplink/const.pyi,sha256=
|
2887
|
+
homeassistant-stubs/components/tplink/config_flow.pyi,sha256=gDowqlNP4xg8_zoQJhNN9rCxfZS8XrQkZQg1ktaSg5U,3169
|
2888
|
+
homeassistant-stubs/components/tplink/const.pyi,sha256=zkoaSVwHL77PZgEoVWy_zVvRTB44IGvO7usaoHEUluc,510
|
2888
2889
|
homeassistant-stubs/components/tplink/coordinator.pyi,sha256=mWT8dNcTFM1HBGRJTm5z91ej7VaIoYfBksjOuOySlIw,835
|
2889
2890
|
homeassistant-stubs/components/tplink/diagnostics.pyi,sha256=DeZAwYKgyNzK6KIlHhdSsSmm83325gP311t5eo7VYEk,473
|
2890
2891
|
homeassistant-stubs/components/tplink/entity.pyi,sha256=M08xTYAOVii_Tdet3CShd-rfJcbvpviK_KHbfzSFbrI,3878
|
@@ -3295,7 +3296,7 @@ homeassistant-stubs/components/zwave_js/update.pyi,sha256=DZ89qey4VhEIz4DzjIi5tN
|
|
3295
3296
|
homeassistant-stubs/config.pyi,sha256=eYcmxUBsFHlFONUgGyI3U1F4DT4OHpThSQ5RpZMPYfE,8893
|
3296
3297
|
homeassistant-stubs/config_entries.pyi,sha256=fUEwpVXk7H5YIBPIqA76b_1l482FYRTuydDOCUQzSgo,19867
|
3297
3298
|
homeassistant-stubs/const.pyi,sha256=Z3J5lI4Hnga8LYApSVWLSM0HXSzrW-GdQonXlBOuyjo,24920
|
3298
|
-
homeassistant-stubs/core.pyi,sha256=
|
3299
|
+
homeassistant-stubs/core.pyi,sha256=SzwOy_zmS87ZQPgY2MAb7RGP3blntRU4hsUM2lYp1TE,25390
|
3299
3300
|
homeassistant-stubs/data_entry_flow.pyi,sha256=DkZCh7wCjFzgGqHC4OuU7IIIhreY3lyXIS6Mm2Q8358,8509
|
3300
3301
|
homeassistant-stubs/exceptions.pyi,sha256=ah3pCv24JHS-S6Z4EQOqofePMzlxuiaF-ATQJI33EN8,3749
|
3301
3302
|
homeassistant-stubs/generated/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -3337,7 +3338,7 @@ homeassistant-stubs/helpers/entity_platform.pyi,sha256=es8e8YgFxabaa6GAjYxbWAiEJ
|
|
3337
3338
|
homeassistant-stubs/helpers/entity_registry.pyi,sha256=kqD_OYjKZ92QKEqMDGyFIO-lD3BXqh3LA8ZVNREh8Ag,14119
|
3338
3339
|
homeassistant-stubs/helpers/entity_values.pyi,sha256=lxdx5isoDpSurN03yLcyJiiwkphatspaDbAPV51sKtE,509
|
3339
3340
|
homeassistant-stubs/helpers/entityfilter.pyi,sha256=1pbVZXp58ryJJF4T6X-w013NqYtQ0KhtUKcAJVhJJSY,2060
|
3340
|
-
homeassistant-stubs/helpers/event.pyi,sha256=
|
3341
|
+
homeassistant-stubs/helpers/event.pyi,sha256=y3PYOMZJTjW747K9txznojHNsWUPBOAY0l9qM1m7hns,17552
|
3341
3342
|
homeassistant-stubs/helpers/floor_registry.pyi,sha256=9lL6NgrX9pyP5PlBlfekCN4OB7V39QQCN-uJK1VIKOE,2813
|
3342
3343
|
homeassistant-stubs/helpers/frame.pyi,sha256=yCq8RIVwI7XTVQDbYs9ZAvZFMRZFGxkvMjNepHm3L7w,1683
|
3343
3344
|
homeassistant-stubs/helpers/group.pyi,sha256=0Hs__xX08YdzO9KVd4w-Gs3l9f6x3ArtVXlygKl9x2k,482
|
@@ -3437,7 +3438,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3437
3438
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3438
3439
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=RTT2312P0TB9bA-rj3xdQK_J6sqVQE4LBJozgLH3oao,4621
|
3439
3440
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3440
|
-
homeassistant_stubs-2024.7.
|
3441
|
-
homeassistant_stubs-2024.7.
|
3442
|
-
homeassistant_stubs-2024.7.
|
3443
|
-
homeassistant_stubs-2024.7.
|
3441
|
+
homeassistant_stubs-2024.7.0b3.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3442
|
+
homeassistant_stubs-2024.7.0b3.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3443
|
+
homeassistant_stubs-2024.7.0b3.dist-info/METADATA,sha256=_uZsiy1105vadJbWM-CDRE9IIWB2rNWPp6AnIPn01tc,3015
|
3444
|
+
homeassistant_stubs-2024.7.0b3.dist-info/RECORD,,
|
{homeassistant_stubs-2024.7.0b2.dist-info → homeassistant_stubs-2024.7.0b3.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|