homeassistant-stubs 2024.1.2__py3-none-any.whl → 2024.1.3__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/alarm_control_panel/__init__.pyi +0 -1
- homeassistant-stubs/components/alexa/auth.pyi +2 -2
- homeassistant-stubs/components/alexa/const.pyi +2 -0
- homeassistant-stubs/components/alexa/diagnostics.pyi +14 -0
- homeassistant-stubs/components/alexa/smart_home.pyi +1 -0
- homeassistant-stubs/components/alexa/state_report.pyi +2 -0
- homeassistant-stubs/components/binary_sensor/__init__.pyi +0 -1
- homeassistant-stubs/components/button/__init__.pyi +0 -1
- homeassistant-stubs/components/camera/__init__.pyi +0 -1
- homeassistant-stubs/components/climate/__init__.pyi +0 -1
- homeassistant-stubs/components/cover/__init__.pyi +0 -1
- homeassistant-stubs/components/event/__init__.pyi +0 -1
- homeassistant-stubs/components/faa_delays/binary_sensor.pyi +0 -1
- homeassistant-stubs/components/fan/__init__.pyi +0 -1
- homeassistant-stubs/components/flexit_bacnet/climate.pyi +3 -1
- homeassistant-stubs/components/flexit_bacnet/const.pyi +2 -0
- homeassistant-stubs/components/image/__init__.pyi +0 -1
- homeassistant-stubs/components/image_processing/__init__.pyi +0 -1
- homeassistant-stubs/components/knx/const.pyi +1 -0
- homeassistant-stubs/components/knx/device_trigger.pyi +2 -1
- homeassistant-stubs/components/knx/telegrams.pyi +2 -1
- homeassistant-stubs/components/lawn_mower/__init__.pyi +0 -1
- homeassistant-stubs/components/light/__init__.pyi +0 -1
- homeassistant-stubs/components/lock/__init__.pyi +0 -1
- homeassistant-stubs/components/media_player/__init__.pyi +0 -1
- homeassistant-stubs/components/number/__init__.pyi +0 -1
- homeassistant-stubs/components/remote/__init__.pyi +0 -1
- homeassistant-stubs/components/select/__init__.pyi +0 -1
- homeassistant-stubs/components/sensor/__init__.pyi +0 -1
- homeassistant-stubs/components/shelly/sensor.pyi +1 -0
- homeassistant-stubs/components/switch/__init__.pyi +0 -1
- homeassistant-stubs/components/text/__init__.pyi +0 -1
- homeassistant-stubs/components/tplink/light.pyi +1 -0
- homeassistant-stubs/components/unifiprotect/models.pyi +1 -1
- homeassistant-stubs/components/update/__init__.pyi +0 -1
- homeassistant-stubs/components/vacuum/__init__.pyi +0 -2
- homeassistant-stubs/components/valve/__init__.pyi +1 -1
- homeassistant-stubs/components/water_heater/__init__.pyi +0 -1
- homeassistant-stubs/components/weather/__init__.pyi +0 -1
- homeassistant-stubs/helpers/entity.pyi +0 -2
- {homeassistant_stubs-2024.1.2.dist-info → homeassistant_stubs-2024.1.3.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.1.2.dist-info → homeassistant_stubs-2024.1.3.dist-info}/RECORD +44 -43
- {homeassistant_stubs-2024.1.2.dist-info → homeassistant_stubs-2024.1.3.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.1.2.dist-info → homeassistant_stubs-2024.1.3.dist-info}/WHEEL +0 -0
@@ -24,7 +24,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
24
24
|
|
25
25
|
class AlarmControlPanelEntityDescription(EntityDescription, frozen_or_thawed=True):
|
26
26
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
27
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
28
27
|
|
29
28
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
30
29
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
from .const import STORAGE_ACCESS_TOKEN as STORAGE_ACCESS_TOKEN, STORAGE_REFRESH_TOKEN as STORAGE_REFRESH_TOKEN
|
2
|
+
from .diagnostics import async_redact_lwa_params as async_redact_lwa_params
|
1
3
|
from _typeshed import Incomplete
|
2
4
|
from homeassistant.const import CONF_CLIENT_ID as CONF_CLIENT_ID, CONF_CLIENT_SECRET as CONF_CLIENT_SECRET
|
3
5
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
@@ -11,8 +13,6 @@ PREEMPTIVE_REFRESH_TTL_IN_SECONDS: int
|
|
11
13
|
STORAGE_KEY: str
|
12
14
|
STORAGE_VERSION: int
|
13
15
|
STORAGE_EXPIRE_TIME: str
|
14
|
-
STORAGE_ACCESS_TOKEN: str
|
15
|
-
STORAGE_REFRESH_TOKEN: str
|
16
16
|
|
17
17
|
class Auth:
|
18
18
|
hass: Incomplete
|
@@ -0,0 +1,14 @@
|
|
1
|
+
from _typeshed import Incomplete
|
2
|
+
from collections.abc import Mapping
|
3
|
+
from homeassistant.components.diagnostics import async_redact_data as async_redact_data
|
4
|
+
from homeassistant.const import CONF_CLIENT_ID as CONF_CLIENT_ID, CONF_CLIENT_SECRET as CONF_CLIENT_SECRET
|
5
|
+
from homeassistant.core import callback as callback
|
6
|
+
from typing import Any
|
7
|
+
|
8
|
+
STORAGE_ACCESS_TOKEN: str
|
9
|
+
STORAGE_REFRESH_TOKEN: str
|
10
|
+
TO_REDACT_LWA: Incomplete
|
11
|
+
TO_REDACT_AUTH: Incomplete
|
12
|
+
|
13
|
+
def async_redact_lwa_params(lwa_params: dict[str, str]) -> dict[str, str]: ...
|
14
|
+
def async_redact_auth_data(mapping: Mapping[Any, Any]) -> dict[str, str]: ...
|
@@ -1,6 +1,7 @@
|
|
1
1
|
from .auth import Auth as Auth
|
2
2
|
from .config import AbstractConfig as AbstractConfig
|
3
3
|
from .const import API_DIRECTIVE as API_DIRECTIVE, API_HEADER as API_HEADER, CONF_ENDPOINT as CONF_ENDPOINT, CONF_ENTITY_CONFIG as CONF_ENTITY_CONFIG, CONF_FILTER as CONF_FILTER, CONF_LOCALE as CONF_LOCALE, EVENT_ALEXA_SMART_HOME as EVENT_ALEXA_SMART_HOME
|
4
|
+
from .diagnostics import async_redact_auth_data as async_redact_auth_data
|
4
5
|
from .errors import AlexaBridgeUnreachableError as AlexaBridgeUnreachableError, AlexaError as AlexaError
|
5
6
|
from .handlers import HANDLERS as HANDLERS
|
6
7
|
from .state_report import AlexaDirective as AlexaDirective
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import aiohttp
|
2
2
|
from .config import AbstractConfig as AbstractConfig
|
3
3
|
from .const import API_CHANGE as API_CHANGE, API_CONTEXT as API_CONTEXT, API_DIRECTIVE as API_DIRECTIVE, API_ENDPOINT as API_ENDPOINT, API_EVENT as API_EVENT, API_HEADER as API_HEADER, API_PAYLOAD as API_PAYLOAD, API_SCOPE as API_SCOPE, Cause as Cause, DATE_FORMAT as DATE_FORMAT, DOMAIN as DOMAIN
|
4
|
+
from .diagnostics import async_redact_auth_data as async_redact_auth_data
|
4
5
|
from .entities import AlexaEntity as AlexaEntity, ENTITY_ADAPTERS as ENTITY_ADAPTERS, generate_alexa_id as generate_alexa_id
|
5
6
|
from .errors import AlexaInvalidEndpointError as AlexaInvalidEndpointError, NoTokenAvailable as NoTokenAvailable, RequireRelink as RequireRelink
|
6
7
|
from _typeshed import Incomplete
|
@@ -15,6 +16,7 @@ from typing import Any
|
|
15
16
|
|
16
17
|
_LOGGER: Incomplete
|
17
18
|
DEFAULT_TIMEOUT: int
|
19
|
+
TO_REDACT: Incomplete
|
18
20
|
|
19
21
|
class AlexaDirective:
|
20
22
|
entity: State
|
@@ -85,7 +85,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
85
85
|
class BinarySensorEntityDescription(EntityDescription, frozen_or_thawed=True):
|
86
86
|
device_class: BinarySensorDeviceClass | None
|
87
87
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
88
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
89
88
|
|
90
89
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
91
90
|
|
@@ -30,7 +30,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
30
30
|
class ButtonEntityDescription(EntityDescription, frozen_or_thawed=True):
|
31
31
|
device_class: ButtonDeviceClass | None
|
32
32
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
33
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
34
33
|
|
35
34
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
36
35
|
|
@@ -58,7 +58,6 @@ CAMERA_SERVICE_RECORD: Final[Incomplete]
|
|
58
58
|
|
59
59
|
class CameraEntityDescription(EntityDescription, frozen_or_thawed=True):
|
60
60
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
61
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
62
61
|
|
63
62
|
class Image:
|
64
63
|
content_type: str
|
@@ -29,7 +29,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
29
29
|
|
30
30
|
class ClimateEntityDescription(EntityDescription, frozen_or_thawed=True):
|
31
31
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
32
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
33
32
|
|
34
33
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
35
34
|
|
@@ -76,7 +76,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
76
76
|
class CoverEntityDescription(EntityDescription, frozen_or_thawed=True):
|
77
77
|
device_class: CoverDeviceClass | None
|
78
78
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
79
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
80
79
|
|
81
80
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
82
81
|
|
@@ -20,7 +20,6 @@ class EventEntityDescription(EntityDescription, frozen_or_thawed=True):
|
|
20
20
|
device_class: EventDeviceClass | None
|
21
21
|
event_types: list[str] | None
|
22
22
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, event_types) -> None: ...
|
23
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, event_types) -> None: ...
|
24
23
|
|
25
24
|
@dataclass
|
26
25
|
class EventExtraStoredData(ExtraStoredData):
|
@@ -25,7 +25,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
|
|
25
25
|
class FAABinarySensor(CoordinatorEntity[FAADataUpdateCoordinator], BinarySensorEntity):
|
26
26
|
_attr_has_entity_name: bool
|
27
27
|
entity_description: FaaDelaysBinarySensorEntityDescription
|
28
|
-
_attr_name: Incomplete
|
29
28
|
_attr_unique_id: Incomplete
|
30
29
|
_attr_device_info: Incomplete
|
31
30
|
def __init__(self, coordinator: FAADataUpdateCoordinator, entry_id: str, description: FaaDelaysBinarySensorEntityDescription) -> None: ...
|
@@ -54,7 +54,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
54
54
|
|
55
55
|
class FanEntityDescription(ToggleEntityDescription, frozen_or_thawed=True):
|
56
56
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
57
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
58
57
|
|
59
58
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
60
59
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import DOMAIN as DOMAIN, PRESET_TO_VENTILATION_MODE_MAP as PRESET_TO_VENTILATION_MODE_MAP, VENTILATION_TO_PRESET_MODE_MAP as VENTILATION_TO_PRESET_MODE_MAP
|
1
|
+
from .const import DOMAIN as DOMAIN, MAX_TEMP as MAX_TEMP, MIN_TEMP as MIN_TEMP, PRESET_TO_VENTILATION_MODE_MAP as PRESET_TO_VENTILATION_MODE_MAP, VENTILATION_TO_PRESET_MODE_MAP as VENTILATION_TO_PRESET_MODE_MAP
|
2
2
|
from _typeshed import Incomplete
|
3
3
|
from flexit_bacnet import FlexitBACnet as FlexitBACnet
|
4
4
|
from homeassistant.components.climate import ClimateEntity as ClimateEntity, ClimateEntityFeature as ClimateEntityFeature, HVACMode as HVACMode, PRESET_AWAY as PRESET_AWAY, PRESET_BOOST as PRESET_BOOST, PRESET_HOME as PRESET_HOME
|
@@ -20,6 +20,8 @@ class FlexitClimateEntity(ClimateEntity):
|
|
20
20
|
_attr_supported_features: Incomplete
|
21
21
|
_attr_target_temperature_step = PRECISION_HALVES
|
22
22
|
_attr_temperature_unit: Incomplete
|
23
|
+
_attr_max_temp = MAX_TEMP
|
24
|
+
_attr_min_temp = MIN_TEMP
|
23
25
|
_device: Incomplete
|
24
26
|
_attr_unique_id: Incomplete
|
25
27
|
_attr_device_info: Incomplete
|
@@ -2,5 +2,7 @@ from _typeshed import Incomplete
|
|
2
2
|
from homeassistant.components.climate import PRESET_AWAY as PRESET_AWAY, PRESET_BOOST as PRESET_BOOST, PRESET_HOME as PRESET_HOME, PRESET_NONE as PRESET_NONE
|
3
3
|
|
4
4
|
DOMAIN: str
|
5
|
+
MAX_TEMP: int
|
6
|
+
MIN_TEMP: int
|
5
7
|
VENTILATION_TO_PRESET_MODE_MAP: Incomplete
|
6
8
|
PRESET_TO_VENTILATION_MODE_MAP: Incomplete
|
@@ -29,7 +29,6 @@ GET_IMAGE_TIMEOUT: Final[int]
|
|
29
29
|
|
30
30
|
class ImageEntityDescription(EntityDescription, frozen_or_thawed=True):
|
31
31
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
32
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
33
32
|
|
34
33
|
@dataclass
|
35
34
|
class Image:
|
@@ -51,7 +51,6 @@ class ImageProcessingEntityDescription(EntityDescription, frozen_or_thawed=True)
|
|
51
51
|
camera_entity: str | None
|
52
52
|
confidence: float | None
|
53
53
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, camera_entity, confidence) -> None: ...
|
54
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, camera_entity, confidence) -> None: ...
|
55
54
|
|
56
55
|
class ImageProcessingEntity(Entity):
|
57
56
|
entity_description: ImageProcessingEntityDescription
|
@@ -48,6 +48,7 @@ DATA_KNX_CONFIG: Final[str]
|
|
48
48
|
DATA_HASS_CONFIG: Final[str]
|
49
49
|
ATTR_COUNTER: Final[str]
|
50
50
|
ATTR_SOURCE: Final[str]
|
51
|
+
SIGNAL_KNX_TELEGRAM_DICT: Final[str]
|
51
52
|
AsyncMessageCallbackType = Callable[[Telegram], Awaitable[None]]
|
52
53
|
MessageCallbackType = Callable[[Telegram], None]
|
53
54
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import voluptuous as vol
|
2
2
|
from . import KNXModule as KNXModule
|
3
|
-
from .const import DOMAIN as DOMAIN
|
3
|
+
from .const import DOMAIN as DOMAIN, SIGNAL_KNX_TELEGRAM_DICT as SIGNAL_KNX_TELEGRAM_DICT
|
4
4
|
from .project import KNXProject as KNXProject
|
5
5
|
from .schema import ga_list_validator as ga_list_validator
|
6
6
|
from .telegrams import TelegramDict as TelegramDict
|
@@ -9,6 +9,7 @@ from homeassistant.components.device_automation import DEVICE_TRIGGER_BASE_SCHEM
|
|
9
9
|
from homeassistant.const import CONF_DEVICE_ID as CONF_DEVICE_ID, CONF_DOMAIN as CONF_DOMAIN, CONF_PLATFORM as CONF_PLATFORM, CONF_TYPE as CONF_TYPE
|
10
10
|
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, HassJob as HassJob, HomeAssistant as HomeAssistant, callback as callback
|
11
11
|
from homeassistant.helpers import selector as selector
|
12
|
+
from homeassistant.helpers.dispatcher import async_dispatcher_connect as async_dispatcher_connect
|
12
13
|
from homeassistant.helpers.trigger import TriggerActionType as TriggerActionType, TriggerInfo as TriggerInfo
|
13
14
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
14
15
|
from typing import Any, Final
|
@@ -1,8 +1,9 @@
|
|
1
|
-
from .const import DOMAIN as DOMAIN
|
1
|
+
from .const import DOMAIN as DOMAIN, SIGNAL_KNX_TELEGRAM_DICT as SIGNAL_KNX_TELEGRAM_DICT
|
2
2
|
from .project import KNXProject as KNXProject
|
3
3
|
from _typeshed import Incomplete
|
4
4
|
from collections.abc import Callable as Callable
|
5
5
|
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, HassJob as HassJob, HomeAssistant as HomeAssistant, callback as callback
|
6
|
+
from homeassistant.helpers.dispatcher import async_dispatcher_send as async_dispatcher_send
|
6
7
|
from homeassistant.helpers.storage import Store as Store
|
7
8
|
from typing import Final, TypedDict
|
8
9
|
from xknx import XKNX as XKNX
|
@@ -17,7 +17,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
17
17
|
|
18
18
|
class LawnMowerEntityEntityDescription(EntityDescription, frozen_or_thawed=True):
|
19
19
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
20
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
21
20
|
|
22
21
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
23
22
|
|
@@ -140,7 +140,6 @@ class Profiles:
|
|
140
140
|
|
141
141
|
class LightEntityDescription(ToggleEntityDescription, frozen_or_thawed=True):
|
142
142
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
143
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
144
143
|
|
145
144
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
146
145
|
|
@@ -34,7 +34,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
34
34
|
|
35
35
|
class LockEntityDescription(EntityDescription, frozen_or_thawed=True):
|
36
36
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
37
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
38
37
|
|
39
38
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
40
39
|
|
@@ -74,7 +74,6 @@ class MediaPlayerEntityDescription(EntityDescription, frozen_or_thawed=True):
|
|
74
74
|
device_class: MediaPlayerDeviceClass | None
|
75
75
|
volume_step: float | None
|
76
76
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, volume_step) -> None: ...
|
77
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, volume_step) -> None: ...
|
78
77
|
|
79
78
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
80
79
|
|
@@ -22,7 +22,6 @@ class NumberEntityDescription(EntityDescription, frozen_or_thawed=True):
|
|
22
22
|
step: None
|
23
23
|
unit_of_measurement: None
|
24
24
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, max_value, min_value, mode, native_max_value, native_min_value, native_step, native_unit_of_measurement, step) -> None: ...
|
25
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, max_value, min_value, mode, native_max_value, native_min_value, native_step, native_unit_of_measurement, step) -> None: ...
|
26
25
|
|
27
26
|
class NumberEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
|
28
27
|
_entity_component_unrecorded_attributes: Incomplete
|
@@ -53,7 +53,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
53
53
|
|
54
54
|
class RemoteEntityDescription(ToggleEntityDescription, frozen_or_thawed=True):
|
55
55
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
56
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
57
56
|
|
58
57
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
59
58
|
|
@@ -10,7 +10,6 @@ __all__ = ['ATTR_CYCLE', 'ATTR_OPTION', 'ATTR_OPTIONS', 'DOMAIN', 'PLATFORM_SCHE
|
|
10
10
|
class SelectEntityDescription(EntityDescription, frozen_or_thawed=True):
|
11
11
|
options: list[str] | None
|
12
12
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, options) -> None: ...
|
13
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, options) -> None: ...
|
14
13
|
|
15
14
|
class SelectEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
|
16
15
|
_entity_component_unrecorded_attributes: Incomplete
|
@@ -27,7 +27,6 @@ class SensorEntityDescription(EntityDescription, frozen_or_thawed=True):
|
|
27
27
|
suggested_unit_of_measurement: str | None
|
28
28
|
unit_of_measurement: None
|
29
29
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, last_reset, native_unit_of_measurement, options, state_class, suggested_display_precision, suggested_unit_of_measurement) -> None: ...
|
30
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, last_reset, native_unit_of_measurement, options, state_class, suggested_display_precision, suggested_unit_of_measurement) -> None: ...
|
31
30
|
|
32
31
|
class SensorEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
|
33
32
|
_entity_component_unrecorded_attributes: Incomplete
|
@@ -13,6 +13,7 @@ from homeassistant.core import HomeAssistant as HomeAssistant
|
|
13
13
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
14
14
|
from homeassistant.helpers.entity_registry import RegistryEntry as RegistryEntry
|
15
15
|
from homeassistant.helpers.typing import StateType as StateType
|
16
|
+
from homeassistant.util.enum import try_parse_enum as try_parse_enum
|
16
17
|
from typing import Final
|
17
18
|
|
18
19
|
@dataclass(frozen=True)
|
@@ -34,7 +34,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
34
34
|
class SwitchEntityDescription(ToggleEntityDescription, frozen_or_thawed=True):
|
35
35
|
device_class: SwitchDeviceClass | None
|
36
36
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
37
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
38
37
|
|
39
38
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
40
39
|
|
@@ -20,7 +20,6 @@ class TextEntityDescription(EntityDescription, frozen_or_thawed=True):
|
|
20
20
|
mode: TextMode
|
21
21
|
pattern: str | None
|
22
22
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, native_min, native_max, mode, pattern) -> None: ...
|
23
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, native_min, native_max, mode, pattern) -> None: ...
|
24
23
|
|
25
24
|
class TextEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
|
26
25
|
_entity_component_unrecorded_attributes: Incomplete
|
@@ -36,6 +36,7 @@ class TPLinkSmartBulb(CoordinatedTPLinkEntity, LightEntity):
|
|
36
36
|
def __init__(self, device: SmartBulb, coordinator: TPLinkDataUpdateCoordinator) -> None: ...
|
37
37
|
def _async_extract_brightness_transition(self, **kwargs: Any) -> tuple[int | None, int | None]: ...
|
38
38
|
async def _async_set_hsv(self, hs_color: tuple[int, int], brightness: int | None, transition: int | None) -> None: ...
|
39
|
+
async def _async_set_color_temp(self, color_temp: float | int, brightness: int | None, transition: int | None) -> None: ...
|
39
40
|
async def _async_turn_on_with_brightness(self, brightness: int | None, transition: int | None) -> None: ...
|
40
41
|
async def async_turn_on(self, **kwargs: Any) -> None: ...
|
41
42
|
async def async_turn_off(self, **kwargs: Any) -> None: ...
|
@@ -34,7 +34,7 @@ class ProtectRequiredKeysMixin(EntityDescription, Generic[T]):
|
|
34
34
|
class ProtectEventMixin(ProtectRequiredKeysMixin[T]):
|
35
35
|
ufp_event_obj: str | None = ...
|
36
36
|
def get_event_obj(self, obj: T) -> Event | None: ...
|
37
|
-
def get_is_on(self, event: Event | None) -> bool: ...
|
37
|
+
def get_is_on(self, obj: T, event: Event | None) -> bool: ...
|
38
38
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement, ufp_required_field, ufp_value, ufp_value_fn, ufp_enabled, ufp_perm, ufp_event_obj) -> None: ...
|
39
39
|
|
40
40
|
@dataclass(frozen=True)
|
@@ -19,7 +19,6 @@ class UpdateEntityDescription(EntityDescription, frozen_or_thawed=True):
|
|
19
19
|
device_class: UpdateDeviceClass | None
|
20
20
|
entity_category: EntityCategory | None
|
21
21
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
22
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
23
22
|
|
24
23
|
class UpdateEntity(RestoreEntity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_, metaclass=ABCCachedProperties):
|
25
24
|
_entity_component_unrecorded_attributes: Incomplete
|
@@ -117,7 +117,6 @@ class _BaseVacuum(Entity, cached_properties=BASE_CACHED_PROPERTIES_WITH_ATTR_):
|
|
117
117
|
|
118
118
|
class VacuumEntityDescription(ToggleEntityDescription, frozen_or_thawed=True):
|
119
119
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
120
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
121
120
|
|
122
121
|
VACUUM_CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
123
122
|
|
@@ -140,7 +139,6 @@ class VacuumEntity(_BaseVacuum, ToggleEntity, cached_properties=VACUUM_CACHED_PR
|
|
140
139
|
|
141
140
|
class StateVacuumEntityDescription(EntityDescription, frozen_or_thawed=True):
|
142
141
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
143
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
144
142
|
|
145
143
|
STATE_VACUUM_CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
146
144
|
|
@@ -59,7 +59,7 @@ class ValveEntity(Entity):
|
|
59
59
|
@property
|
60
60
|
def state(self) -> str | None: ...
|
61
61
|
@property
|
62
|
-
def state_attributes(self) -> dict[str, Any]: ...
|
62
|
+
def state_attributes(self) -> dict[str, Any] | None: ...
|
63
63
|
@property
|
64
64
|
def supported_features(self) -> ValveEntityFeature: ...
|
65
65
|
@property
|
@@ -58,7 +58,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
58
58
|
|
59
59
|
class WaterHeaterEntityEntityDescription(EntityDescription, frozen_or_thawed=True):
|
60
60
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
61
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
62
61
|
|
63
62
|
CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
64
63
|
|
@@ -104,7 +104,6 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: .
|
|
104
104
|
|
105
105
|
class WeatherEntityDescription(EntityDescription, frozen_or_thawed=True):
|
106
106
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
107
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
108
107
|
|
109
108
|
class PostInitMeta(ABCCachedProperties):
|
110
109
|
def __call__(cls, *args: Any, **kwargs: Any) -> Any: ...
|
@@ -67,7 +67,6 @@ class EntityDescription(frozen_or_thawed=True, metaclass=FrozenOrThawed):
|
|
67
67
|
translation_key: str | None
|
68
68
|
unit_of_measurement: str | None
|
69
69
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
70
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
71
70
|
|
72
71
|
@dataclasses.dataclass(frozen=True, slots=True)
|
73
72
|
class CalculatedState:
|
@@ -229,7 +228,6 @@ class Entity(cached_properties=CACHED_PROPERTIES_WITH_ATTR_, metaclass=ABCCached
|
|
229
228
|
|
230
229
|
class ToggleEntityDescription(EntityDescription, frozen_or_thawed=True):
|
231
230
|
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
232
|
-
def __mypy-replace(*, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, unit_of_measurement) -> None: ...
|
233
231
|
|
234
232
|
TOGGLE_ENTITY_CACHED_PROPERTIES_WITH_ATTR_: Incomplete
|
235
233
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.1.
|
3
|
+
Version: 2024.1.3
|
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.1.
|
20
|
+
Requires-Dist: homeassistant (==2024.1.3)
|
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
|
@@ -125,7 +125,7 @@ homeassistant-stubs/components/aladdin_connect/cover.pyi,sha256=03RrL240s881JicE
|
|
125
125
|
homeassistant-stubs/components/aladdin_connect/diagnostics.pyi,sha256=RkY7VWqwwsmBxy1FPB_QuSaO3W0Y1BbxPkMXbE1OYlQ,525
|
126
126
|
homeassistant-stubs/components/aladdin_connect/model.pyi,sha256=gif3_LF8-0S80dij8GvDbuKoRoSpVHsjINtSjr1IDGg,160
|
127
127
|
homeassistant-stubs/components/aladdin_connect/sensor.pyi,sha256=SHFDSGf9aYO70I1mEj2qGeDnVCfCdKdnPI2GyINO8rw,2134
|
128
|
-
homeassistant-stubs/components/alarm_control_panel/__init__.pyi,sha256=
|
128
|
+
homeassistant-stubs/components/alarm_control_panel/__init__.pyi,sha256=EkboYijyDmg3LzA5GJvF8Htf1vUmOfXKMhYL1TPksPA,4701
|
129
129
|
homeassistant-stubs/components/alarm_control_panel/const.pyi,sha256=qQ67ccTCIwoc1Q2MO7e1Fk6E7oSXyo4Ch3cDhYsXchM,1420
|
130
130
|
homeassistant-stubs/components/alarm_control_panel/device_action.pyi,sha256=MBMRM5J6rpIKfySyJtvzcsA8jt8glz60oPpZqk0eCNY,1695
|
131
131
|
homeassistant-stubs/components/alarm_control_panel/device_condition.pyi,sha256=2jir5hL28nJND2z-4gKPeWacr2BJfRxhA_1U-gkz22o,1836
|
@@ -137,10 +137,11 @@ homeassistant-stubs/components/alert/__init__.pyi,sha256=4r8SBqO_TVFATjOPor_v2XL
|
|
137
137
|
homeassistant-stubs/components/alert/const.pyi,sha256=BIlouKkzZh_l0MR_On8ll-WBXrZ-G0MSDMWFkyPwilI,281
|
138
138
|
homeassistant-stubs/components/alert/reproduce_state.pyi,sha256=DqZm_rr-hl-Q0KALVt8oF-3GpcpD9YwhRdwYMNjtY2Y,798
|
139
139
|
homeassistant-stubs/components/alexa/__init__.pyi,sha256=4216pmhm58Ncd62G1u97CHKArTw27Zex8UMRCOQyJT4,1183
|
140
|
-
homeassistant-stubs/components/alexa/auth.pyi,sha256=
|
140
|
+
homeassistant-stubs/components/alexa/auth.pyi,sha256=DdJO5tJg77TpLWhHQwQ-jCccl-7Xxu0-jZJsMtN3qf4,1465
|
141
141
|
homeassistant-stubs/components/alexa/capabilities.pyi,sha256=lyap56mEkjMgooVwSCe67KVpsUVeZy2EcumdfJMOg50,13712
|
142
142
|
homeassistant-stubs/components/alexa/config.pyi,sha256=we0N7gGdYkg4GKmMaX5tYJO9may9K-2uTO08eBENDto,2066
|
143
|
-
homeassistant-stubs/components/alexa/const.pyi,sha256=
|
143
|
+
homeassistant-stubs/components/alexa/const.pyi,sha256=0XtFwf_Ol5Qg0PF-dx_NG-CJrZbSZR_x4rM0dLvhc3w,1229
|
144
|
+
homeassistant-stubs/components/alexa/diagnostics.pyi,sha256=MMWU0xVLqEbJyPqI_L97rFGOIMVlnRK-Dkph0dg9RR0,604
|
144
145
|
homeassistant-stubs/components/alexa/entities.pyi,sha256=Oe2Km9864CydC0dfc7M5Jyn5pODiItbb6DvcD93wiCQ,8771
|
145
146
|
homeassistant-stubs/components/alexa/errors.pyi,sha256=UkG3qI4tJrpqQvDIzLdFCS0vfkxnlFNlXiHDYQr2GAs,2131
|
146
147
|
homeassistant-stubs/components/alexa/flash_briefings.pyi,sha256=3b3RoUJQ1Y5Z4MNPIwG3KclI8VQ19KzEeXaoRJomA5Q,1382
|
@@ -148,8 +149,8 @@ homeassistant-stubs/components/alexa/handlers.pyi,sha256=PYATx3EVWd9nzxpZtcPu-A-
|
|
148
149
|
homeassistant-stubs/components/alexa/intent.pyi,sha256=Hh6Lmkj644qewepW3-qv7ZRgmDXvLU5LeBTcp4rDSbI,2060
|
149
150
|
homeassistant-stubs/components/alexa/logbook.pyi,sha256=K3P54gJl-KRGn7LgHdXCcNTk8Z-S2TRuOFVsweBKkBw,567
|
150
151
|
homeassistant-stubs/components/alexa/resources.pyi,sha256=7yc9w8BwTxgPhvVmVFmTsGIrJ_XY4qULs2B0U19n70k,3944
|
151
|
-
homeassistant-stubs/components/alexa/smart_home.pyi,sha256=
|
152
|
-
homeassistant-stubs/components/alexa/state_report.pyi,sha256=
|
152
|
+
homeassistant-stubs/components/alexa/smart_home.pyi,sha256=Azx74y9cHbej2ojm4cqNNNuDRRGyKX8C_WZEDyNdDLA,2575
|
153
|
+
homeassistant-stubs/components/alexa/state_report.pyi,sha256=6fcYrByMC7bGzARO81tmigjXzZel6ifDmeETFZn-1bQ,3624
|
153
154
|
homeassistant-stubs/components/amazon_polly/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
154
155
|
homeassistant-stubs/components/amazon_polly/const.pyi,sha256=vbAbNiCnc3sCPDr591taLm8VM6pSWTzDod_L13EnFLM,884
|
155
156
|
homeassistant-stubs/components/amazon_polly/tts.pyi,sha256=Xvw1rLJ6HwIaZM-RhXPitqNY9le5RbdyHHzeK9twV-0,2428
|
@@ -279,7 +280,7 @@ homeassistant-stubs/components/bayesian/binary_sensor.pyi,sha256=vb90c0_qt3Y61LO
|
|
279
280
|
homeassistant-stubs/components/bayesian/const.pyi,sha256=BPam0N0nuPJ936NQV_nNfVCls_5XdQ95yG1U7EYGNJU,321
|
280
281
|
homeassistant-stubs/components/bayesian/helpers.pyi,sha256=aHMscpaBDpHKbsq3k7FTMIQMf_FVtyl8F-Om1yGIVYQ,1042
|
281
282
|
homeassistant-stubs/components/bayesian/issues.pyi,sha256=HiwdbHjCdNGH1bCg4R0wwh_XMlHl7XRaQ3Qv46_MwPQ,327
|
282
|
-
homeassistant-stubs/components/binary_sensor/__init__.pyi,sha256=
|
283
|
+
homeassistant-stubs/components/binary_sensor/__init__.pyi,sha256=CRg1gN90SHAUy-ZuGMHwVi2Ku_heeM47lkayuK_JX3o,4308
|
283
284
|
homeassistant-stubs/components/binary_sensor/device_condition.pyi,sha256=4mgXqyFq-m1cCIWNNvre6DMYpPFQTP9TMu2ycFPAvNs,2246
|
284
285
|
homeassistant-stubs/components/binary_sensor/device_trigger.pyi,sha256=qE0seygxfuqJlmMOH3e4U-RFvQVoHEMK1WixGCQGqDw,2212
|
285
286
|
homeassistant-stubs/components/binary_sensor/group.pyi,sha256=lmhKBgLtC75JKlVM0td29usf7IovWyqFVAXhsrX_muI,361
|
@@ -353,14 +354,14 @@ homeassistant-stubs/components/brother/diagnostics.pyi,sha256=AUXroxsbK6VybkXoKe
|
|
353
354
|
homeassistant-stubs/components/brother/sensor.pyi,sha256=K2ww4x80COZb_zcEy7moS3DOsn7eYSM9p4TXSXxI07A,2527
|
354
355
|
homeassistant-stubs/components/brother/utils.pyi,sha256=St6YZRknPMogWLVi12fK0rkVc_lHSqQSw6iIrQPSGQY,450
|
355
356
|
homeassistant-stubs/components/browser/__init__.pyi,sha256=AZsijjI191wYaG9Ba3_xnIq2BuJAdGvugiKtx-92T0s,443
|
356
|
-
homeassistant-stubs/components/button/__init__.pyi,sha256=
|
357
|
+
homeassistant-stubs/components/button/__init__.pyi,sha256=_bk485hjEujY-wSZgzg8NGzaUQVeyWWuXZm4MDjiUII,2293
|
357
358
|
homeassistant-stubs/components/button/const.pyi,sha256=LRNZ2Epck8UjrpaKeoTUYJQMaBRd5JevVjtLKTBC62Q,31
|
358
359
|
homeassistant-stubs/components/button/device_action.pyi,sha256=KF3s5UTCq9Wb_qsMLwUJQFLIsi_2Ju2ZHDaYlS1v-QA,983
|
359
360
|
homeassistant-stubs/components/button/device_trigger.pyi,sha256=VAUodVs-6EBVLz2ZuUPogWlAE1gfTTViaDC3M5P6FxI,931
|
360
361
|
homeassistant-stubs/components/calendar/__init__.pyi,sha256=isQljlzHoJzYzQMLItO9QPNcW2Kdxb8ZusMLhdS40uw,7296
|
361
362
|
homeassistant-stubs/components/calendar/const.pyi,sha256=eUpEeyhgKQ8zo6Foevt2nc1nI1JYBt1muOsn3NT2jqY,602
|
362
363
|
homeassistant-stubs/components/calendar/trigger.pyi,sha256=1O2xkdCUtoElHynXTR8gDr8k3iBp3FX94VROLVbQE1M,3025
|
363
|
-
homeassistant-stubs/components/camera/__init__.pyi,sha256=
|
364
|
+
homeassistant-stubs/components/camera/__init__.pyi,sha256=YWSCqdZerotKDdqQcNRpgO04I9oFz3xdfi6-Q1IkHGQ,10722
|
364
365
|
homeassistant-stubs/components/camera/const.pyi,sha256=WavezA5-2u3RQF1nBe_dsh-RD9rh7Z-m4tumZp4jl00,872
|
365
366
|
homeassistant-stubs/components/camera/diagnostics.pyi,sha256=SHd1UzkG59ul4OqMgd8tXdr52UqJQCSsHnGKDthfIII,455
|
366
367
|
homeassistant-stubs/components/camera/img_util.pyi,sha256=rEWvDRbmNe8sYRCzqs9mGcg1ck58eKPAA6XhE-cDKq4,621
|
@@ -379,7 +380,7 @@ homeassistant-stubs/components/clickatell/__init__.pyi,sha256=47DEQpj8HBSa-_TImW
|
|
379
380
|
homeassistant-stubs/components/clickatell/notify.pyi,sha256=IEwN7FS6bbUe91QMWiZMfH_rt1YS-ASBpOt6NgTftfA,895
|
380
381
|
homeassistant-stubs/components/clicksend/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
381
382
|
homeassistant-stubs/components/clicksend/notify.pyi,sha256=a195ryTNYWf_niAnjQz2OpsYF4AQ1eKwB2t7vSzmZoo,1136
|
382
|
-
homeassistant-stubs/components/climate/__init__.pyi,sha256=
|
383
|
+
homeassistant-stubs/components/climate/__init__.pyi,sha256=lHSZ6EiNdoaoiKYDiwe88rWLRZfxz34lIcz4HBqLfOY,9827
|
383
384
|
homeassistant-stubs/components/climate/const.pyi,sha256=vIGNCIY1Hx6ZqTrIK23_Z6QNwa46cX0v9-T7P8hqi_I,2922
|
384
385
|
homeassistant-stubs/components/climate/device_action.pyi,sha256=xx3hQUQOzNPFHUSXZHi_4HVChKB6xnjwsq5tO98sURI,1454
|
385
386
|
homeassistant-stubs/components/climate/device_condition.pyi,sha256=fwkkwzQLqzo-4_tZoUXKub9sCKMOzd79AcWoZe2W5Uw,1472
|
@@ -405,7 +406,7 @@ homeassistant-stubs/components/cloud/subscription.pyi,sha256=nOeRyqP6TtJyHqYapBZ
|
|
405
406
|
homeassistant-stubs/components/cloud/system_health.pyi,sha256=aTzokkepycKNtqqofKfHzJNwNXL43_BttPJTmSrFEls,476
|
406
407
|
homeassistant-stubs/components/cloud/tts.pyi,sha256=Du3GQk7BHkojIiLB4HR0AamE6kHTedXpwsrO9puKonQ,1684
|
407
408
|
homeassistant-stubs/components/configurator/__init__.pyi,sha256=C2JkFP3_sEvHGQMgCtUs-zpZ1OyO5IG9c9BiRjHA8ug,2667
|
408
|
-
homeassistant-stubs/components/cover/__init__.pyi,sha256=
|
409
|
+
homeassistant-stubs/components/cover/__init__.pyi,sha256=1AKw9QgSrAL08p0qVzYhIubS5vSgvG7xc9TtwfWQRx4,6379
|
409
410
|
homeassistant-stubs/components/cover/device_action.pyi,sha256=blbykW1YNlOhVacvGgHL2DWPzyZ22Q0Bo-MielwHjMI,1751
|
410
411
|
homeassistant-stubs/components/cover/device_condition.pyi,sha256=GLkF-BYjUhm156TNwxrbgskLYcO0cjXLcvL6D8tEMBk,1434
|
411
412
|
homeassistant-stubs/components/cover/device_trigger.pyi,sha256=OU0vHVMkQqARgOWSSho8Ea9q_LiWQmw53bx0rwyH-LQ,1543
|
@@ -668,7 +669,7 @@ homeassistant-stubs/components/esphome/switch.pyi,sha256=NCDBsPjsioPWYd-x97Zgcn7
|
|
668
669
|
homeassistant-stubs/components/esphome/text.pyi,sha256=lYSt5HYC94qudzNes6pcn_XJwJic9_yTLPKZFen72U4,1260
|
669
670
|
homeassistant-stubs/components/esphome/update.pyi,sha256=chJUb7F1SndFEpgdWfriqbpahOV0QOudi71y4hLimNs,2246
|
670
671
|
homeassistant-stubs/components/esphome/voice_assistant.pyi,sha256=ECuAcsDmz2k2NTA-MKSHp0LZQ4CiZbvyOXgKBhoj7nk,2577
|
671
|
-
homeassistant-stubs/components/event/__init__.pyi,sha256=
|
672
|
+
homeassistant-stubs/components/event/__init__.pyi,sha256=pQjTId0w6Lyj6T-DX4C8rn3baCe8k_pzoZdags9cowQ,2701
|
672
673
|
homeassistant-stubs/components/event/const.pyi,sha256=RccBYn7-x6TXzOVCrHRVlrJXpVGQ8d7uLtNZRxdNqsc,55
|
673
674
|
homeassistant-stubs/components/evil_genius_labs/__init__.pyi,sha256=3rgYZpNGs0GQ3fTBnj5QK44JLlplj62q4aUBr9NUmnM,1327
|
674
675
|
homeassistant-stubs/components/evil_genius_labs/config_flow.pyi,sha256=i9tPhUD7TiluSWu7SkJr78njXFVBRgtJT2poY07LSzQ,759
|
@@ -681,11 +682,11 @@ homeassistant-stubs/components/evohome/climate.pyi,sha256=BIeGmE8vdA39je5vUIJIpe
|
|
681
682
|
homeassistant-stubs/components/evohome/const.pyi,sha256=dkv4fcsH0D-gpiAeGFzA4wUkXcPcFxoTbtgDzM1vwWU,245
|
682
683
|
homeassistant-stubs/components/evohome/water_heater.pyi,sha256=y0LMiUN4L5U_aaV8iTV8RTuhZ9MEnSgA-QmvKUXohOk,2025
|
683
684
|
homeassistant-stubs/components/faa_delays/__init__.pyi,sha256=6eCS5RBWKh7uTF_JdpJJT3fSoPYCLXSyuAj582taHxI,539
|
684
|
-
homeassistant-stubs/components/faa_delays/binary_sensor.pyi,sha256=
|
685
|
+
homeassistant-stubs/components/faa_delays/binary_sensor.pyi,sha256=xHq6Tl0q_RDu2pF6ggNLwKgwigb-Aob9OvhM6lvrdtk,2086
|
685
686
|
homeassistant-stubs/components/faa_delays/config_flow.pyi,sha256=jwqamIwuA4eaaKV2OYR1ZIW4mmwMriANt_VfmDVvIZE,556
|
686
687
|
homeassistant-stubs/components/faa_delays/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
687
688
|
homeassistant-stubs/components/faa_delays/coordinator.pyi,sha256=6Srspg6DT1riIX8tKb78K2fVnnHp6RvpK_4nwE0qmrg,612
|
688
|
-
homeassistant-stubs/components/fan/__init__.pyi,sha256=
|
689
|
+
homeassistant-stubs/components/fan/__init__.pyi,sha256=3AojzcCF_iIJJnYuICns9z8nnUa5jlrJA_af-vS7GqI,5636
|
689
690
|
homeassistant-stubs/components/fan/device_action.pyi,sha256=OBedfRV84tetl5ZFjQTbDq3cpVqRJjDWEojSY00K748,827
|
690
691
|
homeassistant-stubs/components/fan/device_condition.pyi,sha256=UZBpwsNISwIBpbm0HKTC9qVtmf6eAUO1-NNJsdIQQCE,955
|
691
692
|
homeassistant-stubs/components/fan/device_trigger.pyi,sha256=nlcZZmBzMW1rB5AeK7_mZAQoynfSEvMFrgtxkwkVMDU,887
|
@@ -716,9 +717,9 @@ homeassistant-stubs/components/fitbit/exceptions.pyi,sha256=QxhOVnoz9vL8vOn_TegJ
|
|
716
717
|
homeassistant-stubs/components/fitbit/model.pyi,sha256=epCpe-wT_3Y74bcePGReg2VMd9QOR6gWkFd_RbQUbF0,1033
|
717
718
|
homeassistant-stubs/components/fitbit/sensor.pyi,sha256=wgWIa5ZiITSQ8dyYJy1uo4_oaaT-68_8_vbjNvXUT-0,6705
|
718
719
|
homeassistant-stubs/components/flexit_bacnet/__init__.pyi,sha256=vNYVcKGwxOx8Dc0y2Ho1p_HJ04rJpGeEKT-OAAC_Odw,562
|
719
|
-
homeassistant-stubs/components/flexit_bacnet/climate.pyi,sha256=
|
720
|
+
homeassistant-stubs/components/flexit_bacnet/climate.pyi,sha256=O__48qOgA0MxilNuRh_fRqU4shGkq4q7o-Rv9yB4Sm4,2210
|
720
721
|
homeassistant-stubs/components/flexit_bacnet/config_flow.pyi,sha256=2sTum4TK8PhRkCWBGkiSqkbzZCoZCrTTQdwojKh4DpY,572
|
721
|
-
homeassistant-stubs/components/flexit_bacnet/const.pyi,sha256=
|
722
|
+
homeassistant-stubs/components/flexit_bacnet/const.pyi,sha256=HTBKN4lqQuGtfYkfbh_D8svFOXF6bhZSy8T9nxo_sek,318
|
722
723
|
homeassistant-stubs/components/flux_led/__init__.pyi,sha256=N2Npkt4rP8olxLhc2lOhpumHDiKc0WDfJWcsXpKn6VE,2531
|
723
724
|
homeassistant-stubs/components/flux_led/button.pyi,sha256=ZaabMM6KYnfeMI4_NrRIh7GRS1Y4zXIgrQQVBgtei-c,1295
|
724
725
|
homeassistant-stubs/components/flux_led/config_flow.pyi,sha256=JTbw6NMdaEZ-iSyxBWwk9KosiOzdQWzPnDfDSHPEumI,3091
|
@@ -999,9 +1000,9 @@ homeassistant-stubs/components/idasen_desk/config_flow.pyi,sha256=rwo7mdV2UYGNc0
|
|
999
1000
|
homeassistant-stubs/components/idasen_desk/const.pyi,sha256=3OCFrfS2EdbrsN4gafHq-IKtTWJcfp5EL1B0B_unjJk,39
|
1000
1001
|
homeassistant-stubs/components/idasen_desk/cover.pyi,sha256=On3jT2MDfsGuZe8D-aGE7FwiNrRnqOz0EQfLRkPRewM,1909
|
1001
1002
|
homeassistant-stubs/components/idasen_desk/sensor.pyi,sha256=C0RSwEUx2hfCReDkQndcVhlHZh38WRGdZDku1ghsPpI,2294
|
1002
|
-
homeassistant-stubs/components/image/__init__.pyi,sha256=
|
1003
|
+
homeassistant-stubs/components/image/__init__.pyi,sha256=f73do8iTJ0RwVD8bUd3Qj9tmU-WGeRepAEdUNHFuGHA,4061
|
1003
1004
|
homeassistant-stubs/components/image/const.pyi,sha256=fVVmz7sXld4vEtrenF1HXjsb5pdcBDYy8vlrL77UXu8,71
|
1004
|
-
homeassistant-stubs/components/image_processing/__init__.pyi,sha256=
|
1005
|
+
homeassistant-stubs/components/image_processing/__init__.pyi,sha256=2DyZ9SCl2GR6fXSYp1YOdidYq5aRhFK2zLY0JFM8DoQ,3143
|
1005
1006
|
homeassistant-stubs/components/image_upload/__init__.pyi,sha256=D5eDZDn2jwpLZAUd0kj0c4TCEnSF-GIPlWRFi2ghOVw,2274
|
1006
1007
|
homeassistant-stubs/components/image_upload/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
1007
1008
|
homeassistant-stubs/components/imap/__init__.pyi,sha256=lCtceadmryadcmEYMyDOjW4nHdgyXVMn0SYnW2LxVyo,993
|
@@ -1088,12 +1089,12 @@ homeassistant-stubs/components/knx/binary_sensor.pyi,sha256=BgPd0HLWOxttfdpnJKEg
|
|
1088
1089
|
homeassistant-stubs/components/knx/button.pyi,sha256=VwWeklDIcJXqQ8n5e7p8mK7E0436HQHMjuv4hzCZr9U,1233
|
1089
1090
|
homeassistant-stubs/components/knx/climate.pyi,sha256=vqCy4xIJ4XJ2AQ1xL1jzERP6cCnOptdsjHlXmVUHstY,2668
|
1090
1091
|
homeassistant-stubs/components/knx/config_flow.pyi,sha256=TIxokHBbTsz3c8Xgdts36GJoXY6UZm7463VAG28vLHs,5244
|
1091
|
-
homeassistant-stubs/components/knx/const.pyi,sha256=
|
1092
|
+
homeassistant-stubs/components/knx/const.pyi,sha256=Hw4G76usvN40CimnUObOI25SoxUc30XhnDXSx048oLY,2812
|
1092
1093
|
homeassistant-stubs/components/knx/cover.pyi,sha256=39qF9WH6vHca2mGrLNVO2YwjtvPDlF2sMJteMqLvPaM,2343
|
1093
1094
|
homeassistant-stubs/components/knx/date.pyi,sha256=OZgsKttgn8AWbDAG42zQLDECAbgFR_nddOehwBQrwVY,1728
|
1094
1095
|
homeassistant-stubs/components/knx/datetime.pyi,sha256=5xCLnzHfX_xHzY6SwnRH9uTl1NFDQhCJyyxlbA1DhHQ,1680
|
1095
1096
|
homeassistant-stubs/components/knx/device.pyi,sha256=o2jeQM_CV5JCYncQQuHooELzEq93qvf0XDUU2jyjXAI,805
|
1096
|
-
homeassistant-stubs/components/knx/device_trigger.pyi,sha256=
|
1097
|
+
homeassistant-stubs/components/knx/device_trigger.pyi,sha256=vV1kSn_056rwU0w4Hzt1q3V1WA-0CkHbrn364LsgkgM,1546
|
1097
1098
|
homeassistant-stubs/components/knx/diagnostics.pyi,sha256=9_gpNHVyA6NtbhXBNqQsv8bpEVqWooyw19fNO_JGxqc,757
|
1098
1099
|
homeassistant-stubs/components/knx/expose.pyi,sha256=dmiCH7axp4gJ0yCnYo7-e4eeYzTtzmKx52Bz7fI73ek,1968
|
1099
1100
|
homeassistant-stubs/components/knx/fan.pyi,sha256=x-xvQORO77WTtfGbdy5jwgvGFSyOMfLW4AKvJCVAGVA,2038
|
@@ -1108,7 +1109,7 @@ homeassistant-stubs/components/knx/schema.pyi,sha256=qp1didAkSTcDLBGivZ9ler875M8
|
|
1108
1109
|
homeassistant-stubs/components/knx/select.pyi,sha256=bsKsJkuTw9yZ04T6BsKAsQ4dfNZ7C2bmwX8HND7tCK0,1943
|
1109
1110
|
homeassistant-stubs/components/knx/sensor.pyi,sha256=fODJCTwZEKN9OcLA3TGbKiQgumZRNPD3ugiBrLWzdbY,3430
|
1110
1111
|
homeassistant-stubs/components/knx/switch.pyi,sha256=tPO0FxxvZuo0XtmiJybg737kH7Kye79gRk4eUs4ZYyI,1689
|
1111
|
-
homeassistant-stubs/components/knx/telegrams.pyi,sha256=
|
1112
|
+
homeassistant-stubs/components/knx/telegrams.pyi,sha256=6Fz-0hQ5kWV9xX5XmiDa0oklxD3u6ugf0yvxCiRuPK8,1697
|
1112
1113
|
homeassistant-stubs/components/knx/text.pyi,sha256=wvkuO6mIatAWWOJI2Z7QrllSahtvYfnB2lnxseytn_Y,1732
|
1113
1114
|
homeassistant-stubs/components/knx/time.pyi,sha256=Lt0Cg6or8mxPfSuCrB83OrokxaqPpQMhnfpEZCKdntE,1728
|
1114
1115
|
homeassistant-stubs/components/knx/weather.pyi,sha256=sfBa11nP55Cxq-AHcenXvPtxQYU2JN3q77y3VJS2nWw,1790
|
@@ -1147,7 +1148,7 @@ homeassistant-stubs/components/laundrify/config_flow.pyi,sha256=LTnIGu_l_9cUH6Pl
|
|
1147
1148
|
homeassistant-stubs/components/laundrify/const.pyi,sha256=k8Op9J8z_2AzCtSp4G_WteXTT9VOhFH4HrPflR2Y4vo,89
|
1148
1149
|
homeassistant-stubs/components/laundrify/coordinator.pyi,sha256=tBTYNMKbB_Y4h30qIYAtjJqexdD8QicXpop42am9RoA,807
|
1149
1150
|
homeassistant-stubs/components/laundrify/model.pyi,sha256=042CV7o_GAE-c2Wk8wcyerweRoqIWWcivQpgKDTG2H4,132
|
1150
|
-
homeassistant-stubs/components/lawn_mower/__init__.pyi,sha256=
|
1151
|
+
homeassistant-stubs/components/lawn_mower/__init__.pyi,sha256=zu-uYNqUIJk5g9oDXCL-JPnzt6y-rOBUavSD-5d3ahM,2169
|
1151
1152
|
homeassistant-stubs/components/lawn_mower/const.pyi,sha256=ZWMDPRDQCseJExMFfrT-jtIFOVK2XYWV7lNx5IxcS9Q,299
|
1152
1153
|
homeassistant-stubs/components/lcn/__init__.pyi,sha256=J0dXyBwmc24qF2QMeWvgu23leYGI7ghjnUhrV3lRDuc,2914
|
1153
1154
|
homeassistant-stubs/components/lcn/binary_sensor.pyi,sha256=DgpI99QYlOuMIoGPRc_SfABFCyJTu7fz86gvimOU_eQ,2331
|
@@ -1190,7 +1191,7 @@ homeassistant-stubs/components/lifx/migration.pyi,sha256=URV7J1VeeBSlsKJdeHN-DHc
|
|
1190
1191
|
homeassistant-stubs/components/lifx/select.pyi,sha256=_kZiHIYVB42xc0ZsmGaapa0WnwUlQU45NPyswYgPKfE,1906
|
1191
1192
|
homeassistant-stubs/components/lifx/sensor.pyi,sha256=0E56bCFkB4sN9687Hmzp-RmLZhN7TeRxZTOyLy87njg,1362
|
1192
1193
|
homeassistant-stubs/components/lifx/util.pyi,sha256=K6e0TQKYK-MuFubYW0FgrwddR8vqSzmJKk7_cgSFnws,2059
|
1193
|
-
homeassistant-stubs/components/light/__init__.pyi,sha256=
|
1194
|
+
homeassistant-stubs/components/light/__init__.pyi,sha256=Py5VMYspj4IcKL3DDxPU5g6yVNxdjxr_5aQ0ySLtc8U,8084
|
1194
1195
|
homeassistant-stubs/components/light/device_action.pyi,sha256=9I-9OvIXMO2mJqwHIugHtLA1hnau3dAbktiQn779OT8,1825
|
1195
1196
|
homeassistant-stubs/components/light/device_condition.pyi,sha256=PjpIeqIXc4BrnDcNNu1cqcmtcGbPeumAd5XnR2-WYi4,817
|
1196
1197
|
homeassistant-stubs/components/light/device_trigger.pyi,sha256=uC5UaBHAFOgtfm8E-yV6NM6nrgoZhsNG9COx_7KkZLY,887
|
@@ -1234,7 +1235,7 @@ homeassistant-stubs/components/local_todo/config_flow.pyi,sha256=yNxML4CpjS30zMy
|
|
1234
1235
|
homeassistant-stubs/components/local_todo/const.pyi,sha256=c2LoyxXuf6BLf9ubXFHtMFuw9n1J6KqBKKt94ljvIKY,59
|
1235
1236
|
homeassistant-stubs/components/local_todo/store.pyi,sha256=Bi0t0Wj3r2G5jwC961QbcAsE2XfOzzy9G8PhtfD0O4Y,472
|
1236
1237
|
homeassistant-stubs/components/local_todo/todo.pyi,sha256=AC8UcyqscDvAPjG7jCnFuwHEUf--SVO7QTvMfVLtUqE,1808
|
1237
|
-
homeassistant-stubs/components/lock/__init__.pyi,sha256=
|
1238
|
+
homeassistant-stubs/components/lock/__init__.pyi,sha256=CSE-HfOw7RNCayvPteCB8TIVUO4B_hykVZmTdg6lExI,4385
|
1238
1239
|
homeassistant-stubs/components/lock/device_action.pyi,sha256=nds_dhqIaIWbZYwuXFxUZbmF4fGylpwTfxWsywPdADg,1170
|
1239
1240
|
homeassistant-stubs/components/lock/device_condition.pyi,sha256=MPxXYyUG20b1IgTofWjVWjItggZ7jTR51B9Jb2ZpqoA,1071
|
1240
1241
|
homeassistant-stubs/components/lock/device_trigger.pyi,sha256=Ot8LrdsjHn-h4NrhCH8xt9SMx6F_kpTmvabhkw9uz0M,1247
|
@@ -1305,7 +1306,7 @@ homeassistant-stubs/components/matter/sensor.pyi,sha256=vCK9B7BjkeZWYscan9UmFzrx
|
|
1305
1306
|
homeassistant-stubs/components/matter/switch.pyi,sha256=0S0oj45wgqxlM2beS2eegO3FwR62NUJmx1XgcL_MNdQ,1092
|
1306
1307
|
homeassistant-stubs/components/matter/util.pyi,sha256=cW6CK4oLTg6vW_aZaeXMHQPzYwOUVT4Knf4rvho-HJg,463
|
1307
1308
|
homeassistant-stubs/components/media_extractor/__init__.pyi,sha256=2Z_oKTEwPCSBwa-KyG8B1YTi6EFEV_LnLnm1A3YARNU,1605
|
1308
|
-
homeassistant-stubs/components/media_player/__init__.pyi,sha256=
|
1309
|
+
homeassistant-stubs/components/media_player/__init__.pyi,sha256=Dmv-Ag9KBiG3P43KnFFCvfQivkMocDiu6JUgDvi0Iic,15703
|
1309
1310
|
homeassistant-stubs/components/media_player/browse_media.pyi,sha256=SysoQw99rR3ObC4c-qB9DqEzj90Ak91URITYga1PXPE,1634
|
1310
1311
|
homeassistant-stubs/components/media_player/const.pyi,sha256=F93we6vEB3AXR1kDrMOWew-E1g-_98wd_bWh1FGUGC8,3964
|
1311
1312
|
homeassistant-stubs/components/media_player/device_condition.pyi,sha256=yxu5IHje4r00At6t86uGiPQ6Y_Jpnlnf3jbZLMOLuZk,1084
|
@@ -1534,7 +1535,7 @@ homeassistant-stubs/components/notion/const.pyi,sha256=1uErR-6Lw4nTOrOCxIyWpbBzD
|
|
1534
1535
|
homeassistant-stubs/components/notion/diagnostics.pyi,sha256=euSbdM3IKqRLatPtv3757UrKMwJiHdNVtgDeexmeEpo,848
|
1535
1536
|
homeassistant-stubs/components/notion/model.pyi,sha256=8kt-LgjSRqt-FwlzI3LtNMXiYhRMZptdobNN0rdl-Kg,243
|
1536
1537
|
homeassistant-stubs/components/notion/sensor.pyi,sha256=uOY_9jCikeKscqI4ObIBMmwlCTGER-sE2iDbs5YGyVY,1603
|
1537
|
-
homeassistant-stubs/components/number/__init__.pyi,sha256=
|
1538
|
+
homeassistant-stubs/components/number/__init__.pyi,sha256=02tNSO-tZJm2PpQbGYJDMlrRlEUpA5mNG_6n8sVHXOk,4808
|
1538
1539
|
homeassistant-stubs/components/number/const.pyi,sha256=XiUNuknjDbsxwG6TuHB_67BmYoLz5MN85TEdLHtj-PA,3270
|
1539
1540
|
homeassistant-stubs/components/number/device_action.pyi,sha256=vmqWvjvUm7V-IwFs5a2fGpreW6pNSTuSXNQKitUr8vQ,1148
|
1540
1541
|
homeassistant-stubs/components/number/reproduce_state.pyi,sha256=MAW63_kFuXtmd6ixpR55aIfAmKwz9jKN-x2j849eriw,721
|
@@ -1818,7 +1819,7 @@ homeassistant-stubs/components/recorder/table_managers/statistics_meta.pyi,sha25
|
|
1818
1819
|
homeassistant-stubs/components/recorder/tasks.pyi,sha256=i0yeMaPguT56FQLE_2bTkzQN3sUm2TgQsXsr1CRuyng,6538
|
1819
1820
|
homeassistant-stubs/components/recorder/util.pyi,sha256=apl91ruzRPGFB1iMPTVMOWKIZvU1-kw0QA4KwoAbZu4,5601
|
1820
1821
|
homeassistant-stubs/components/recorder/websocket_api.pyi,sha256=bFolq0vi2ceTxe_nGfVz6ONpmLDwPkk5Dx-481hP97g,4640
|
1821
|
-
homeassistant-stubs/components/remote/__init__.pyi,sha256=
|
1822
|
+
homeassistant-stubs/components/remote/__init__.pyi,sha256=YE_ruRa2h5XLj66aoYPb1lZ_REP0oGtALr_Ni1ZrxpA,3868
|
1822
1823
|
homeassistant-stubs/components/remote/device_action.pyi,sha256=6Vfp_kSun-CL4YEEv4I_O2A81JnXangKitq86wbdOqY,827
|
1823
1824
|
homeassistant-stubs/components/remote/device_condition.pyi,sha256=PjpIeqIXc4BrnDcNNu1cqcmtcGbPeumAd5XnR2-WYi4,817
|
1824
1825
|
homeassistant-stubs/components/remote/device_trigger.pyi,sha256=uC5UaBHAFOgtfm8E-yV6NM6nrgoZhsNG9COx_7KkZLY,887
|
@@ -1943,7 +1944,7 @@ homeassistant-stubs/components/scrape/config_flow.pyi,sha256=zjeqZCv7xOCj1SPZgLL
|
|
1943
1944
|
homeassistant-stubs/components/scrape/const.pyi,sha256=Ihpov5N9PWbYPat-55jDU7dQ9jqzo-WyfjQk0LMHaNs,272
|
1944
1945
|
homeassistant-stubs/components/scrape/coordinator.pyi,sha256=YNveo3hDqv9MEv3oZfTPsjMXnp-M7oy0vrI4BbusHJg,618
|
1945
1946
|
homeassistant-stubs/components/scrape/sensor.pyi,sha256=goKwfYw3Nn1DSB_gQ0Lods2qBc_3mNHVjFTxK7tbaDs,2839
|
1946
|
-
homeassistant-stubs/components/select/__init__.pyi,sha256
|
1947
|
+
homeassistant-stubs/components/select/__init__.pyi,sha256=-7Wdnau8KYSDx8na_bXbQHP1WHt7r0RPvVZYR5mH2H0,2388
|
1947
1948
|
homeassistant-stubs/components/select/const.pyi,sha256=cjGmyzpRsXm0SQt8W1BKDTxwMEIeAa9lLQM1kIZZYtw,228
|
1948
1949
|
homeassistant-stubs/components/select/device_action.pyi,sha256=qRvTc3jXQfHM0Fq8hB0O6pVrCCSBs6B3DwUcIr-XYeE,1672
|
1949
1950
|
homeassistant-stubs/components/select/device_condition.pyi,sha256=LxgvmRl7gNIcwO7KNKdyE0ghUfiz2wf_HY8weSL0QVY,1391
|
@@ -1969,7 +1970,7 @@ homeassistant-stubs/components/sensirion_ble/__init__.pyi,sha256=r-KD0rVVyAz4Vc4
|
|
1969
1970
|
homeassistant-stubs/components/sensirion_ble/config_flow.pyi,sha256=W-uzTO6MLQ2yedUv1CovszKVjWJd6QPTIoeInxBqoYg,973
|
1970
1971
|
homeassistant-stubs/components/sensirion_ble/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
1971
1972
|
homeassistant-stubs/components/sensirion_ble/sensor.pyi,sha256=JZDkf6KATog2IFSxFo714CPPPD663lm5bJq7G1WxnJE,2052
|
1972
|
-
homeassistant-stubs/components/sensor/__init__.pyi,sha256=
|
1973
|
+
homeassistant-stubs/components/sensor/__init__.pyi,sha256=nygLLJvWh_lGsnlVfnPwXzK8kH3OsdvtwAJoE0YDQhk,5304
|
1973
1974
|
homeassistant-stubs/components/sensor/const.pyi,sha256=UkHQha_qKUgt5DXSFYnqpJnUtK5HI02pWJXFh6IMF_Y,4094
|
1974
1975
|
homeassistant-stubs/components/sensor/device_condition.pyi,sha256=zJK9kGtiNx8E6tyTxAkGicAoyCux-F7DKifgg_PdIF4,2566
|
1975
1976
|
homeassistant-stubs/components/sensor/device_trigger.pyi,sha256=MuM78NZhHS3mleMvvQyc60PPVqo88WJ0_SAGMC1IIG8,2564
|
@@ -2010,7 +2011,7 @@ homeassistant-stubs/components/shelly/event.pyi,sha256=4cUT3S9t3IFoMMgFwKQIWRSuG
|
|
2010
2011
|
homeassistant-stubs/components/shelly/light.pyi,sha256=nZej4TxQkEa6RJNvnrc9aEuOUysqMSNBmYum4f4y6ig,4089
|
2011
2012
|
homeassistant-stubs/components/shelly/logbook.pyi,sha256=Tyg-NqquagNlOHxhEV_cCs5kk9G38dYResAzZhFBpN0,994
|
2012
2013
|
homeassistant-stubs/components/shelly/number.pyi,sha256=30sCn7n0lpCYJv-YQN3YDbvtJ4JKYQfAj5RlwR8Rs_M,2729
|
2013
|
-
homeassistant-stubs/components/shelly/sensor.pyi,sha256=
|
2014
|
+
homeassistant-stubs/components/shelly/sensor.pyi,sha256=GXgqhUmC3SxJoLNStupO5JG_ntFuMKiIZ0t-BHWZSxI,6074
|
2014
2015
|
homeassistant-stubs/components/shelly/switch.pyi,sha256=xwSr4tSU9zba_baQochAFSOmwFRSZFGsgz1XaH6Otsg,3795
|
2015
2016
|
homeassistant-stubs/components/shelly/update.pyi,sha256=tLbPlYSmYIIh5bD8OHOSe32H3ToyuliHuG-WbekY7UI,4901
|
2016
2017
|
homeassistant-stubs/components/shelly/utils.pyi,sha256=fDE_ZWExR9DRETtJKg7GAcDt1apRCu_FVxpMdDBA1KU,3941
|
@@ -2139,7 +2140,7 @@ homeassistant-stubs/components/surepetcare/const.pyi,sha256=GTd4mgCeqWxDDccLYudb
|
|
2139
2140
|
homeassistant-stubs/components/surepetcare/entity.pyi,sha256=QrvWOjn2VDZ-V-QZc-6drCo1HPm1EqJtkd3yMnexzJ0,905
|
2140
2141
|
homeassistant-stubs/components/surepetcare/lock.pyi,sha256=sQH3L-8_sJ6Eu80MNiOaQ0lGw0p6BjegAZx9DblTZnY,1457
|
2141
2142
|
homeassistant-stubs/components/surepetcare/sensor.pyi,sha256=yVTu51bzu8sPWC0rPRDiSZ40EW9qBVInAZvNTrBqKJE,1900
|
2142
|
-
homeassistant-stubs/components/switch/__init__.pyi,sha256=
|
2143
|
+
homeassistant-stubs/components/switch/__init__.pyi,sha256=9KEybjy-Wi-lOzZnfi9mh1w3uW8XdeBCC6187Ft0mo0,2533
|
2143
2144
|
homeassistant-stubs/components/switch/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
2144
2145
|
homeassistant-stubs/components/switch/device_action.pyi,sha256=6Vfp_kSun-CL4YEEv4I_O2A81JnXangKitq86wbdOqY,827
|
2145
2146
|
homeassistant-stubs/components/switch/device_condition.pyi,sha256=PjpIeqIXc4BrnDcNNu1cqcmtcGbPeumAd5XnR2-WYi4,817
|
@@ -2233,7 +2234,7 @@ homeassistant-stubs/components/tcp/common.pyi,sha256=O_N6GTj9bnUyNXfSRRtulLqxL8z
|
|
2233
2234
|
homeassistant-stubs/components/tcp/const.pyi,sha256=j2n65jEfVKhLGLMRZ_4RBhBynXI9tvRytjUAvStkh4U,223
|
2234
2235
|
homeassistant-stubs/components/tcp/model.pyi,sha256=dF0hf2xVA6hp1Y6EsQh-1pLLHZYZmt41zS8xukcX1Jw,357
|
2235
2236
|
homeassistant-stubs/components/tcp/sensor.pyi,sha256=9srczN5oefwQ-0XIorSN4FHcPTcoOK2uU1QTXDTWl68,958
|
2236
|
-
homeassistant-stubs/components/text/__init__.pyi,sha256=
|
2237
|
+
homeassistant-stubs/components/text/__init__.pyi,sha256=ZJbWPihXZiD8kqGMXynlFBHbqMkedRNzRDxftKEXcXE,2515
|
2237
2238
|
homeassistant-stubs/components/text/const.pyi,sha256=jgUyRC9MeoNPeKV2lYbcmnBp64F9BDV6t2O_j93SkTg,112
|
2238
2239
|
homeassistant-stubs/components/text/device_action.pyi,sha256=vmqWvjvUm7V-IwFs5a2fGpreW6pNSTuSXNQKitUr8vQ,1148
|
2239
2240
|
homeassistant-stubs/components/text/reproduce_state.pyi,sha256=MAW63_kFuXtmd6ixpR55aIfAmKwz9jKN-x2j849eriw,721
|
@@ -2273,7 +2274,7 @@ homeassistant-stubs/components/tplink/const.pyi,sha256=zYFwFV3sWXNDhFnVdzypku-ek
|
|
2273
2274
|
homeassistant-stubs/components/tplink/coordinator.pyi,sha256=riH1Pl8M5ho5FYgi-qmMoc1hlVApIn2gxkdxHKfnBVI,701
|
2274
2275
|
homeassistant-stubs/components/tplink/diagnostics.pyi,sha256=BcHR-cbVyML5XG0KC4MSwm6zzDrgiy7J0_fcEhDTOg8,602
|
2275
2276
|
homeassistant-stubs/components/tplink/entity.pyi,sha256=V-LHWEbYb9qTtVs3Z5Eydn03e51cecFwqLqSxCE0Hj4,1056
|
2276
|
-
homeassistant-stubs/components/tplink/light.pyi,sha256=
|
2277
|
+
homeassistant-stubs/components/tplink/light.pyi,sha256=B5SVnc_OQGHU_nEafkOuMAXHHeLtC-4IhP1gXhAO5ZA,3842
|
2277
2278
|
homeassistant-stubs/components/tplink/sensor.pyi,sha256=5rG1_h1qReXxn3HBdPp5gGv8fHFppdZ2TN7Ftwl3afY,2354
|
2278
2279
|
homeassistant-stubs/components/tplink/switch.pyi,sha256=Ei9u8PrkCzHaDpCiVBxVpa7JNsI2M7eWA26OFVxqJWs,2176
|
2279
2280
|
homeassistant-stubs/components/tplink_omada/__init__.pyi,sha256=xvIRjC1GEQ7IF99WHQGyFXPtr1n_Q5WrNVqrtOm_WoM,699
|
@@ -2384,7 +2385,7 @@ homeassistant-stubs/components/unifiprotect/lock.pyi,sha256=2-4254hrgQrCIob3ykyS
|
|
2384
2385
|
homeassistant-stubs/components/unifiprotect/media_player.pyi,sha256=jUKGV2l9n7envRw_RxP_SA1Np98eW5AbHmwILGcSVlc,2370
|
2385
2386
|
homeassistant-stubs/components/unifiprotect/media_source.pyi,sha256=-klbLgsv4Sqqx3FNkcsiTKcqpuxyHUncq9mgR1sMk0c,3996
|
2386
2387
|
homeassistant-stubs/components/unifiprotect/migrate.pyi,sha256=n4lJKKOthq3bsA-wTfZ3thuZA2TLBZZqG3UlfQVoYTg,923
|
2387
|
-
homeassistant-stubs/components/unifiprotect/models.pyi,sha256=
|
2388
|
+
homeassistant-stubs/components/unifiprotect/models.pyi,sha256=2CdkgzOpAHA2MweKTDat0p8GlqZ3-EYFV-svSRmOxfw,2591
|
2388
2389
|
homeassistant-stubs/components/unifiprotect/number.pyi,sha256=prEu_yw8UkEyfdOOhr7Adouozn5fT_QXZuq56VPvq2A,3312
|
2389
2390
|
homeassistant-stubs/components/unifiprotect/repairs.pyi,sha256=BG3t2D0LAh4Xp0mGHJnZIoSZ8-18QCwblIN-BY3JS3E,1274
|
2390
2391
|
homeassistant-stubs/components/unifiprotect/select.pyi,sha256=q8wjNcLmUo8XK1fo6RKqlQ3T4iYuKnTu1-TkJ0UUALE,4312
|
@@ -2399,7 +2400,7 @@ homeassistant-stubs/components/upcloud/binary_sensor.pyi,sha256=YXI5E2Mpc-nzRRwE
|
|
2399
2400
|
homeassistant-stubs/components/upcloud/config_flow.pyi,sha256=XVFdDxbvbL29eiMRElfuHaAlulDBMIz1p2pP6H7MhK8,1215
|
2400
2401
|
homeassistant-stubs/components/upcloud/const.pyi,sha256=C6zWQHqWA-KQH2LtPdtmJ6cGEvoJQHfoQ1qBH1jWD5k,128
|
2401
2402
|
homeassistant-stubs/components/upcloud/switch.pyi,sha256=4mbLZABXTJR4otwyT_XbjsDGAQnisbW7UAlA5jKG0Bg,910
|
2402
|
-
homeassistant-stubs/components/update/__init__.pyi,sha256=
|
2403
|
+
homeassistant-stubs/components/update/__init__.pyi,sha256=e1xGrNif4GvSRn9CoJf0qWomgNHOTjd5n48C5tfqBJU,3717
|
2403
2404
|
homeassistant-stubs/components/update/const.pyi,sha256=mab_pd8C1EO0lzFg30fAZsMo0po6ccE4TsSKmjnIJBA,553
|
2404
2405
|
homeassistant-stubs/components/update/device_trigger.pyi,sha256=uC5UaBHAFOgtfm8E-yV6NM6nrgoZhsNG9COx_7KkZLY,887
|
2405
2406
|
homeassistant-stubs/components/update/significant_change.pyi,sha256=eaOaqkbWNIsVG87WBDnTRsPnceJMiKsB4rHf0efKshA,377
|
@@ -2420,7 +2421,7 @@ homeassistant-stubs/components/usb/__init__.pyi,sha256=umlQozy-a7RbghH-Yjhls_9mT
|
|
2420
2421
|
homeassistant-stubs/components/usb/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
2421
2422
|
homeassistant-stubs/components/usb/models.pyi,sha256=q0Lo0ZWQJUPj8_x8HbPUfvZa0ODwWGBkVpMlb5DHIus,288
|
2422
2423
|
homeassistant-stubs/components/usb/utils.pyi,sha256=6UemdWVPWrMRCmRkptKRg_QNzIOkSFwxbEUzBCDlPLw,179
|
2423
|
-
homeassistant-stubs/components/vacuum/__init__.pyi,sha256=
|
2424
|
+
homeassistant-stubs/components/vacuum/__init__.pyi,sha256=Pz6bs87Z3x4frINXha1JGta3VeWQEL8YlBtmlqaMVAQ,6706
|
2424
2425
|
homeassistant-stubs/components/vacuum/device_action.pyi,sha256=m2w8gEkIJR5ZNsbSJ9g6dRcl4eJwgCh9hL1pHL0hGnU,1028
|
2425
2426
|
homeassistant-stubs/components/vacuum/device_condition.pyi,sha256=XvvfvItTC-KWfi1oEgjKTBsu1F432V4pBI2AZarSNRk,975
|
2426
2427
|
homeassistant-stubs/components/vacuum/device_trigger.pyi,sha256=aTmX03ktrcEDs5hAfa5bx-zdlgI2MwfHuQ9-73hC55o,1149
|
@@ -2435,7 +2436,7 @@ homeassistant-stubs/components/vallox/fan.pyi,sha256=GtOvQGrLIXwWySYLTL-4eYwm_b5
|
|
2435
2436
|
homeassistant-stubs/components/vallox/number.pyi,sha256=sY8yAgV6Gofv1l_wrZP-1WIFARUvN4aWzUntJPqLRR4,1986
|
2436
2437
|
homeassistant-stubs/components/vallox/sensor.pyi,sha256=1ioLZbXpI1tAYmgL7ArxFUtVBhreUss1k7_buQehNvc,2786
|
2437
2438
|
homeassistant-stubs/components/vallox/switch.pyi,sha256=ssvVvSUbkRkFUF2utNJ8oOfwoDe5VoAsDgAtVjnE4RQ,1928
|
2438
|
-
homeassistant-stubs/components/valve/__init__.pyi,sha256=
|
2439
|
+
homeassistant-stubs/components/valve/__init__.pyi,sha256=0LWRNqcM3CQlTW1EdQjKqLwgGWsZUmsa1OaFyK0b63Q,3525
|
2439
2440
|
homeassistant-stubs/components/velbus/__init__.pyi,sha256=FwaF36O-UOKalVQcekKrwY2jLML6UlwKT8F-mEeAMUw,1300
|
2440
2441
|
homeassistant-stubs/components/velbus/binary_sensor.pyi,sha256=OO6wJHc01A-0LfV4Dg9nGI851k-xdtQsraEronVKAfA,713
|
2441
2442
|
homeassistant-stubs/components/velbus/button.pyi,sha256=QP5viIgud6dvytW0iXe4yRHiqPuyBrbeBB53UhGQYKA,958
|
@@ -2465,7 +2466,7 @@ homeassistant-stubs/components/wallbox/lock.pyi,sha256=HObkePNPNpmQiou-5_dQUU4sS
|
|
2465
2466
|
homeassistant-stubs/components/wallbox/number.pyi,sha256=SisTjV_x0sFQ9gX5ar1tMzVhH4vI7_3vEwmNZCuUXoI,2784
|
2466
2467
|
homeassistant-stubs/components/wallbox/sensor.pyi,sha256=5ArC5jGk7PcmeLx7NynEWsCxBQuJcI5n3Ani41FO3X4,2907
|
2467
2468
|
homeassistant-stubs/components/wallbox/switch.pyi,sha256=zBVdnHpvIMeX9IQqWDS5XLxBfxy8WCgcoiL--lhcCHc,1425
|
2468
|
-
homeassistant-stubs/components/water_heater/__init__.pyi,sha256=
|
2469
|
+
homeassistant-stubs/components/water_heater/__init__.pyi,sha256=VcQDG61znAB2Yuu4XVANMK2sY1AsjYvtHZA5HKtISaQ,5761
|
2469
2470
|
homeassistant-stubs/components/water_heater/device_action.pyi,sha256=12MBH__-i4CT6Rvdh22IT7M6SV-mi4MSHQrgsg1htU8,1020
|
2470
2471
|
homeassistant-stubs/components/water_heater/group.pyi,sha256=4CmWktOg5zaqKICuxz8YYAx8Z0jkwLcERjWpEltiy_Y,550
|
2471
2472
|
homeassistant-stubs/components/water_heater/reproduce_state.pyi,sha256=nHSt7opQO7-0NyM-ydiRt224v6DEKlIGcsIdCtTRw-Q,1267
|
@@ -2475,7 +2476,7 @@ homeassistant-stubs/components/watttime/config_flow.pyi,sha256=MAgxf7y1GZDjB_7JI
|
|
2475
2476
|
homeassistant-stubs/components/watttime/const.pyi,sha256=WX94iT8ibJmZNZujirfIKWa-HX4jqc1IJN160IO82cQ,132
|
2476
2477
|
homeassistant-stubs/components/watttime/diagnostics.pyi,sha256=Bs6jA8GmjFLQK3lgfvnZD48kLid9QtX78ZXJUS6jmrg,876
|
2477
2478
|
homeassistant-stubs/components/watttime/sensor.pyi,sha256=Qcldxk20zD8ZGKgudGSCCr-sq951XrTFM2QllfFfQ-Y,1923
|
2478
|
-
homeassistant-stubs/components/weather/__init__.pyi,sha256=
|
2479
|
+
homeassistant-stubs/components/weather/__init__.pyi,sha256=nY4uC9LmbnLCSs1y3-zQQS0942RF-ZVeAtHnqfESQD0,14627
|
2479
2480
|
homeassistant-stubs/components/weather/const.pyi,sha256=1-Bg2H4I24AouWuUigwtfraqrhxgGpdiqfV96dpxIi0,1453
|
2480
2481
|
homeassistant-stubs/components/weather/group.pyi,sha256=TsVwaBs1B7CumwL6HDFgh0GggSrltGfLGTBxeXIR9aA,284
|
2481
2482
|
homeassistant-stubs/components/weather/intent.pyi,sha256=OLz9_vPCSmd3hwYytJahehQTqsSe1h_jzji1-Rl6uQw,603
|
@@ -2666,7 +2667,7 @@ homeassistant-stubs/helpers/device_registry.pyi,sha256=184ow-Zbs_RB7OC9wgD8kWP14
|
|
2666
2667
|
homeassistant-stubs/helpers/discovery.pyi,sha256=ss9qo-iZqaX2g-5RGNJy7dvzoYavMHBHtNYVq_1aXJI,1628
|
2667
2668
|
homeassistant-stubs/helpers/discovery_flow.pyi,sha256=L1pHTaSYLIDv97LBXRcW9Xu65P0kafqpblDm7ESxrCM,1331
|
2668
2669
|
homeassistant-stubs/helpers/dispatcher.pyi,sha256=NPnzBf3jFBIK5LlfDBt8oHyTJsX57BHnfXCegTh4iHw,1217
|
2669
|
-
homeassistant-stubs/helpers/entity.pyi,sha256=
|
2670
|
+
homeassistant-stubs/helpers/entity.pyi,sha256=xAzaD_NjZWRuNm0XaOGFnr3xuTBBGtUwFCFALWW5YFA,12340
|
2670
2671
|
homeassistant-stubs/helpers/entity_component.pyi,sha256=YuzIvkwc7LAeYZDUtc3ge8QOJQLYwrWreS3l-hsDHM0,3514
|
2671
2672
|
homeassistant-stubs/helpers/entity_platform.pyi,sha256=kBlrDlD6QF2CcyWHzSOCz1ov1W-CSaVoD0c86EtZS24,5686
|
2672
2673
|
homeassistant-stubs/helpers/entity_registry.pyi,sha256=tBMKV05qfDzsdMUfO7py109O8lHHYOWBLvVgHu23-DU,11954
|
@@ -2758,7 +2759,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=jFcwagnGj4ygvqVGNXDI5Afa9wRM0qOA
|
|
2758
2759
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
2759
2760
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=rpwKMMMMYynwcs_IWf0ZvKVp6zoqDJghwROm1p03Jzs,4125
|
2760
2761
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=89c0boOGMdQvHxVk7Xs42DKMj3ldlozxjrpiV74RkGY,457
|
2761
|
-
homeassistant_stubs-2024.1.
|
2762
|
-
homeassistant_stubs-2024.1.
|
2763
|
-
homeassistant_stubs-2024.1.
|
2764
|
-
homeassistant_stubs-2024.1.
|
2762
|
+
homeassistant_stubs-2024.1.3.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
2763
|
+
homeassistant_stubs-2024.1.3.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
2764
|
+
homeassistant_stubs-2024.1.3.dist-info/METADATA,sha256=76MbWOD5b0h0XaQVd8H0VSufkqx3FMnTedANuSRldO0,3062
|
2765
|
+
homeassistant_stubs-2024.1.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|