homeassistant-stubs 2024.5.0b0__py3-none-any.whl → 2024.5.0b2__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/aseko_pool_live/binary_sensor.pyi +0 -1
- homeassistant-stubs/components/group/entity.pyi +1 -3
- homeassistant-stubs/components/group/registry.pyi +0 -1
- homeassistant-stubs/components/matter/config_flow.pyi +4 -0
- homeassistant-stubs/components/onewire/model.pyi +1 -1
- homeassistant-stubs/components/onewire/onewirehub.pyi +2 -2
- homeassistant-stubs/components/rfxtrx/event.pyi +1 -0
- homeassistant-stubs/components/shelly/coordinator.pyi +1 -1
- homeassistant-stubs/components/shelly/switch.pyi +1 -1
- homeassistant-stubs/components/shelly/utils.pyi +1 -0
- homeassistant-stubs/core.pyi +1 -0
- homeassistant-stubs/helpers/script.pyi +1 -1
- {homeassistant_stubs-2024.5.0b0.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.5.0b0.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/RECORD +16 -16
- {homeassistant_stubs-2024.5.0b0.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.5.0b0.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/WHEEL +0 -0
@@ -21,7 +21,6 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, asyn
|
|
21
21
|
|
22
22
|
class AsekoUnitBinarySensorEntity(AsekoEntity, BinarySensorEntity):
|
23
23
|
entity_description: AsekoBinarySensorEntityDescription
|
24
|
-
_attr_name: Incomplete
|
25
24
|
_attr_unique_id: Incomplete
|
26
25
|
def __init__(self, unit: Unit, coordinator: AsekoDataUpdateCoordinator, entity_description: AsekoBinarySensorEntityDescription) -> None: ...
|
27
26
|
@property
|
@@ -4,7 +4,7 @@ from .registry import GroupIntegrationRegistry as GroupIntegrationRegistry
|
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from abc import abstractmethod
|
6
6
|
from collections.abc import Callable as Callable, Collection, Mapping
|
7
|
-
from homeassistant.const import ATTR_ASSUMED_STATE as ATTR_ASSUMED_STATE, ATTR_ENTITY_ID as ATTR_ENTITY_ID,
|
7
|
+
from homeassistant.const import ATTR_ASSUMED_STATE as ATTR_ASSUMED_STATE, ATTR_ENTITY_ID as ATTR_ENTITY_ID, STATE_ON as STATE_ON
|
8
8
|
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, Event as Event, EventStateChangedData as EventStateChangedData, HomeAssistant as HomeAssistant, State as State, callback as callback, split_entity_id as split_entity_id
|
9
9
|
from homeassistant.helpers import start as start
|
10
10
|
from homeassistant.helpers.entity import Entity as Entity, async_generate_entity_id as async_generate_entity_id
|
@@ -31,7 +31,6 @@ class GroupEntity(Entity, metaclass=abc.ABCMeta):
|
|
31
31
|
class Group(Entity):
|
32
32
|
_unrecorded_attributes: Incomplete
|
33
33
|
_attr_should_poll: bool
|
34
|
-
single_active_domain: str | None
|
35
34
|
tracking: tuple[str, ...]
|
36
35
|
trackable: tuple[str, ...]
|
37
36
|
hass: Incomplete
|
@@ -71,7 +70,6 @@ class Group(Entity):
|
|
71
70
|
async def _async_state_changed_listener(self, event: Event[EventStateChangedData]) -> None: ...
|
72
71
|
def _reset_tracked_state(self) -> None: ...
|
73
72
|
def _see_state(self, new_state: State) -> None: ...
|
74
|
-
def _detect_specific_on_off_state(self, group_is_on: bool) -> set[str]: ...
|
75
73
|
def _async_update_group_state(self, tr_state: State | None = None) -> None: ...
|
76
74
|
|
77
75
|
def async_get_component(hass: HomeAssistant) -> EntityComponent[Group]: ...
|
@@ -19,7 +19,6 @@ class GroupIntegrationRegistry:
|
|
19
19
|
on_off_mapping: Incomplete
|
20
20
|
off_on_mapping: Incomplete
|
21
21
|
on_states_by_domain: Incomplete
|
22
|
-
off_state_by_domain: Incomplete
|
23
22
|
exclude_domains: Incomplete
|
24
23
|
def __init__(self) -> None: ...
|
25
24
|
def exclude_domain(self) -> None: ...
|
@@ -3,6 +3,8 @@ from .addon import get_addon_manager as get_addon_manager
|
|
3
3
|
from .const import ADDON_SLUG as ADDON_SLUG, CONF_INTEGRATION_CREATED_ADDON as CONF_INTEGRATION_CREATED_ADDON, CONF_USE_ADDON as CONF_USE_ADDON, DOMAIN as DOMAIN, LOGGER as LOGGER
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from homeassistant.components.hassio import AddonError as AddonError, AddonInfo as AddonInfo, AddonManager as AddonManager, AddonState as AddonState, HassioServiceInfo as HassioServiceInfo, is_hassio as is_hassio
|
6
|
+
from homeassistant.components.onboarding import async_is_onboarded as async_is_onboarded
|
7
|
+
from homeassistant.components.zeroconf import ZeroconfServiceInfo as ZeroconfServiceInfo
|
6
8
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
7
9
|
from homeassistant.const import CONF_URL as CONF_URL
|
8
10
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
@@ -23,6 +25,7 @@ def build_ws_address(host: str, port: int) -> str: ...
|
|
23
25
|
|
24
26
|
class MatterConfigFlow(ConfigFlow, domain=DOMAIN):
|
25
27
|
VERSION: int
|
28
|
+
_running_in_background: bool
|
26
29
|
ws_address: Incomplete
|
27
30
|
integration_created_addon: bool
|
28
31
|
install_task: Incomplete
|
@@ -39,6 +42,7 @@ class MatterConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
39
42
|
async def _async_get_addon_info(self) -> AddonInfo: ...
|
40
43
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
41
44
|
async def async_step_manual(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
45
|
+
async def async_step_zeroconf(self, discovery_info: ZeroconfServiceInfo) -> ConfigFlowResult: ...
|
42
46
|
async def async_step_hassio(self, discovery_info: HassioServiceInfo) -> ConfigFlowResult: ...
|
43
47
|
async def async_step_hassio_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
44
48
|
async def async_step_on_supervisor(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
@@ -11,7 +11,7 @@ DEVICE_COUPLERS: Incomplete
|
|
11
11
|
DEVICE_MANUFACTURER: Incomplete
|
12
12
|
_LOGGER: Incomplete
|
13
13
|
|
14
|
-
def _is_known_device(device_family: str, device_type: str) -> bool: ...
|
14
|
+
def _is_known_device(device_family: str, device_type: str | None) -> bool: ...
|
15
15
|
|
16
16
|
class OneWireHub:
|
17
17
|
hass: Incomplete
|
@@ -22,7 +22,7 @@ class OneWireHub:
|
|
22
22
|
async def initialize(self, config_entry: ConfigEntry) -> None: ...
|
23
23
|
async def discover_devices(self) -> None: ...
|
24
24
|
def _discover_devices(self, path: str = '/', parent_id: str | None = None) -> list[OWDeviceDescription]: ...
|
25
|
-
def _get_device_type(self, device_path: str) -> str: ...
|
25
|
+
def _get_device_type(self, device_path: str) -> str | None: ...
|
26
26
|
|
27
27
|
class CannotConnect(HomeAssistantError): ...
|
28
28
|
class InvalidPath(HomeAssistantError): ...
|
@@ -1,4 +1,5 @@
|
|
1
1
|
from . import DeviceTuple as DeviceTuple, RfxtrxEntity as RfxtrxEntity, async_setup_platform_entry as async_setup_platform_entry
|
2
|
+
from .const import DEVICE_PACKET_TYPE_LIGHTING4 as DEVICE_PACKET_TYPE_LIGHTING4
|
2
3
|
from RFXtrx import RFXtrxDevice as RFXtrxDevice, RFXtrxEvent as RFXtrxEvent
|
3
4
|
from _typeshed import Incomplete
|
4
5
|
from homeassistant.components.event import EventEntity as EventEntity
|
@@ -42,7 +42,7 @@ class ShellyCoordinatorBase(DataUpdateCoordinator[None], Generic[_DeviceT]):
|
|
42
42
|
@property
|
43
43
|
def sleep_period(self) -> int: ...
|
44
44
|
def async_setup(self, pending_platforms: list[Platform] | None = None) -> None: ...
|
45
|
-
async def
|
45
|
+
async def _async_device_connect_task(self) -> bool: ...
|
46
46
|
async def _async_reload_entry(self) -> None: ...
|
47
47
|
last_update_success: bool
|
48
48
|
async def async_shutdown_device_and_start_reauth(self) -> None: ...
|
@@ -1,7 +1,7 @@
|
|
1
1
|
from .const import DOMAIN as DOMAIN, GAS_VALVE_OPEN_STATES as GAS_VALVE_OPEN_STATES
|
2
2
|
from .coordinator import ShellyBlockCoordinator as ShellyBlockCoordinator, ShellyRpcCoordinator as ShellyRpcCoordinator, get_entry_data as get_entry_data
|
3
3
|
from .entity import BlockEntityDescription as BlockEntityDescription, ShellyBlockAttributeEntity as ShellyBlockAttributeEntity, ShellyBlockEntity as ShellyBlockEntity, ShellyRpcEntity as ShellyRpcEntity, async_setup_block_attribute_entities as async_setup_block_attribute_entities
|
4
|
-
from .utils import async_remove_shelly_entity as async_remove_shelly_entity, get_device_entry_gen as get_device_entry_gen, get_rpc_key_ids as get_rpc_key_ids, is_block_channel_type_light as is_block_channel_type_light, is_rpc_channel_type_light as is_rpc_channel_type_light, is_rpc_thermostat_internal_actuator as is_rpc_thermostat_internal_actuator
|
4
|
+
from .utils import async_remove_shelly_entity as async_remove_shelly_entity, get_device_entry_gen as get_device_entry_gen, get_rpc_key_ids as get_rpc_key_ids, is_block_channel_type_light as is_block_channel_type_light, is_rpc_channel_type_light as is_rpc_channel_type_light, is_rpc_thermostat_internal_actuator as is_rpc_thermostat_internal_actuator, is_rpc_thermostat_mode as is_rpc_thermostat_mode
|
5
5
|
from _typeshed import Incomplete
|
6
6
|
from aioshelly.block_device import Block as Block
|
7
7
|
from dataclasses import dataclass
|
@@ -59,3 +59,4 @@ def is_rpc_wifi_stations_disabled(config: dict[str, Any], _status: dict[str, Any
|
|
59
59
|
def get_http_port(data: MappingProxyType[str, Any]) -> int: ...
|
60
60
|
async def async_shutdown_device(device: BlockDevice | RpcDevice) -> None: ...
|
61
61
|
def async_remove_shelly_rpc_entities(hass: HomeAssistant, domain: str, mac: str, keys: list[str]) -> None: ...
|
62
|
+
def is_rpc_thermostat_mode(ident: int, status: dict[str, Any]) -> bool: ...
|
homeassistant-stubs/core.pyi
CHANGED
@@ -186,6 +186,7 @@ class HomeAssistant:
|
|
186
186
|
def _async_add_hass_job(self, hassjob: HassJob[..., Coroutine[Any, Any, _R] | _R], *args: Any, eager_start: bool = False, background: bool = False) -> asyncio.Future[_R] | None: ...
|
187
187
|
def create_task(self, target: Coroutine[Any, Any, Any], name: str | None = None) -> None: ...
|
188
188
|
def async_create_task(self, target: Coroutine[Any, Any, _R], name: str | None = None, eager_start: bool = True) -> asyncio.Task[_R]: ...
|
189
|
+
def async_create_task_internal(self, target: Coroutine[Any, Any, _R], name: str | None = None, eager_start: bool = True) -> asyncio.Task[_R]: ...
|
189
190
|
def async_create_background_task(self, target: Coroutine[Any, Any, _R], name: str, eager_start: bool = True) -> asyncio.Task[_R]: ...
|
190
191
|
def async_add_executor_job(self, target: Callable[[Unpack[_Ts]], _T], *args: Unpack[_Ts]) -> asyncio.Future[_T]: ...
|
191
192
|
def async_add_import_executor_job(self, target: Callable[[Unpack[_Ts]], _T], *args: Unpack[_Ts]) -> asyncio.Future[_T]: ...
|
@@ -213,7 +213,7 @@ class Script:
|
|
213
213
|
def _find_referenced_entities(referenced: set[str], sequence: Sequence[dict[str, Any]]) -> None: ...
|
214
214
|
def run(self, variables: _VarsType | None = None, context: Context | None = None) -> None: ...
|
215
215
|
async def async_run(self, run_variables: _VarsType | None = None, context: Context | None = None, started_action: Callable[..., Any] | None = None) -> ScriptRunResult | None: ...
|
216
|
-
async def _async_stop(self, aws: list[asyncio.Task], update_state: bool
|
216
|
+
async def _async_stop(self, aws: list[asyncio.Task], update_state: bool) -> None: ...
|
217
217
|
async def async_stop(self, update_state: bool = True, spare: _ScriptRun | None = None) -> None: ...
|
218
218
|
async def _async_get_condition(self, config): ...
|
219
219
|
def _prep_repeat_script(self, step: int) -> Script: ...
|
{homeassistant_stubs-2024.5.0b0.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.5.
|
3
|
+
Version: 2024.5.0b2
|
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.5.
|
19
|
+
Requires-Dist: homeassistant (==2024.5.0b2)
|
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.5.0b0.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/RECORD
RENAMED
@@ -302,7 +302,7 @@ homeassistant-stubs/components/aruba/device_tracker.pyi,sha256=2MIwyD9yQ_3CIYByU
|
|
302
302
|
homeassistant-stubs/components/arwn/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
303
303
|
homeassistant-stubs/components/arwn/sensor.pyi,sha256=exIq_DfFqJbE2UesCjx8U5K4Qq_7cbFU_kDQd2lVzi4,1711
|
304
304
|
homeassistant-stubs/components/aseko_pool_live/__init__.pyi,sha256=oJQQIm3qFt-nqY63_KJwIA9av66qHzFlnfZ0IylbTZM,919
|
305
|
-
homeassistant-stubs/components/aseko_pool_live/binary_sensor.pyi,sha256=
|
305
|
+
homeassistant-stubs/components/aseko_pool_live/binary_sensor.pyi,sha256=rYvjM76fo08WnNUfcGW9ZMC1smMYRJw41yQHVJvQraE,1705
|
306
306
|
homeassistant-stubs/components/aseko_pool_live/config_flow.pyi,sha256=vLjogM0MfvCJnEAGUayw_NGPIPcYPRaWs4f0jcAFgEc,1111
|
307
307
|
homeassistant-stubs/components/aseko_pool_live/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
308
308
|
homeassistant-stubs/components/aseko_pool_live/coordinator.pyi,sha256=wUF0htSNl9Gw9VaVtgi66upbOlB4DamSrG2vlSM2PQY,497
|
@@ -1125,14 +1125,14 @@ homeassistant-stubs/components/group/binary_sensor.pyi,sha256=XCZHEb_d4J7Il_yZ2X
|
|
1125
1125
|
homeassistant-stubs/components/group/config_flow.pyi,sha256=zugEMwzqDRPw58qL9ePhCxP6Jl8waWUp0QCzcm4GeWg,3726
|
1126
1126
|
homeassistant-stubs/components/group/const.pyi,sha256=SanQOXSFd3LWiK4enMQB3i1cmggRIYwu2rVEudnOm4E,268
|
1127
1127
|
homeassistant-stubs/components/group/cover.pyi,sha256=iQ8C6AdhwiXm5ne0SbEgqg5RV6h-fJ-isy_0MWUmbWs,3485
|
1128
|
-
homeassistant-stubs/components/group/entity.pyi,sha256=
|
1128
|
+
homeassistant-stubs/components/group/entity.pyi,sha256=YaepjI9QNz0tZQlF_9RLnsXu1K9R0ocakcen7FVY-fo,4159
|
1129
1129
|
homeassistant-stubs/components/group/event.pyi,sha256=YL-BFQIYQEt7u2kolvTPI1w0DnTqChri8IZbJLUokFM,2041
|
1130
1130
|
homeassistant-stubs/components/group/fan.pyi,sha256=2v1JYokO57dOPgY2qiHIftnCWxqXZTs5iZsEcAcxp54,3613
|
1131
1131
|
homeassistant-stubs/components/group/light.pyi,sha256=rFDQznpGcbzCwKXGFJ4fEo8o--OKO_azd1kYrVAhnIw,3507
|
1132
1132
|
homeassistant-stubs/components/group/lock.pyi,sha256=j7sM_Jsr1_S5jn7r3AhXT4kWHM0frxElxIEAdvR0JwU,2271
|
1133
1133
|
homeassistant-stubs/components/group/media_player.pyi,sha256=JCCIRb_-dG0bP0UPTMgciP82Cc40m0TTShzZpBakJGo,4563
|
1134
1134
|
homeassistant-stubs/components/group/notify.pyi,sha256=DXKOz050ed8J9L2JaX6Be1WsiOZVO1il4LwlPzhMIMY,1066
|
1135
|
-
homeassistant-stubs/components/group/registry.pyi,sha256=
|
1135
|
+
homeassistant-stubs/components/group/registry.pyi,sha256=aYwqC0cXCVN_uxuayfLO9VSKFtKo66Xz3R_2pp4rHvw,1093
|
1136
1136
|
homeassistant-stubs/components/group/reproduce_state.pyi,sha256=hsgYYKLLNWukmVn8EXhIMtzJwAvNx8Y-pm5iDmKiRQw,469
|
1137
1137
|
homeassistant-stubs/components/group/sensor.pyi,sha256=QKPvWUvGHXulD1QiqAV1DyMFbeYMR-ZD4PuVJfBAl5A,5128
|
1138
1138
|
homeassistant-stubs/components/group/switch.pyi,sha256=2aQZ0lDYwtK1AnoQ7iFyJJrCz4w7xM-6-65Gt3PKADU,1974
|
@@ -1646,7 +1646,7 @@ homeassistant-stubs/components/matter/addon.pyi,sha256=qPlEHnxkeD5UjWBhNxA40ZjSK
|
|
1646
1646
|
homeassistant-stubs/components/matter/api.pyi,sha256=AkeyJVfAWilCqut_s3za3iS6BSzWnfTn_0ZoX1FYdxg,2870
|
1647
1647
|
homeassistant-stubs/components/matter/binary_sensor.pyi,sha256=nGZO5njP4Ekm8HQO31nSBK2sOLq_N8-Gdgm9BsJUBcE,1670
|
1648
1648
|
homeassistant-stubs/components/matter/climate.pyi,sha256=VDUsi2HmJWPSVsz0qY8cFfdoYFtuNUcZXF8oRTM6X1s,2939
|
1649
|
-
homeassistant-stubs/components/matter/config_flow.pyi,sha256=
|
1649
|
+
homeassistant-stubs/components/matter/config_flow.pyi,sha256=flW6BhyrdmhbRf8VaAwQyK-CKOQjyZRp5UF3Bh9pD7Y,3296
|
1650
1650
|
homeassistant-stubs/components/matter/const.pyi,sha256=vIN9xwurYxkFSkv9q98RyCb2FheAVXr3YSGdwSsrO7I,180
|
1651
1651
|
homeassistant-stubs/components/matter/cover.pyi,sha256=ApVzhJGEDnadXiFExdq2jwyALQaYe5PePUl-DmRupJg,2075
|
1652
1652
|
homeassistant-stubs/components/matter/diagnostics.pyi,sha256=euUs7WTbEugSNJfeH2oyDTMghWTDmvMMIHox6u5IZ-o,855
|
@@ -1956,9 +1956,9 @@ homeassistant-stubs/components/onewire/binary_sensor.pyi,sha256=2g4aMKRNG_qncRyE
|
|
1956
1956
|
homeassistant-stubs/components/onewire/config_flow.pyi,sha256=iS0kRhu0nQ85BCaN4DkLcQXN2bpj992XnHj4mtiKZBQ,2318
|
1957
1957
|
homeassistant-stubs/components/onewire/const.pyi,sha256=hRqntP8bAGykIWMTg_Fobo5hJ-yvGD0yfisqRQVJPLM,612
|
1958
1958
|
homeassistant-stubs/components/onewire/diagnostics.pyi,sha256=3cPlx3eq1XwW3ABCmanqg4eibuN4ugMcJcRbML7Im30,547
|
1959
|
-
homeassistant-stubs/components/onewire/model.pyi,sha256=
|
1959
|
+
homeassistant-stubs/components/onewire/model.pyi,sha256=VFX2vlxwlm4nRfKIVVsyQgWFWwCsFpDtEISLuqOLx7M,312
|
1960
1960
|
homeassistant-stubs/components/onewire/onewire_entities.pyi,sha256=j3KGk1s569RbQgMv9hcdsEmYK2uZ-_h15xlruHJqngs,1507
|
1961
|
-
homeassistant-stubs/components/onewire/onewirehub.pyi,sha256=
|
1961
|
+
homeassistant-stubs/components/onewire/onewirehub.pyi,sha256=ON5lGgLrH4tns5ulO1jnbv9qGJ7c94FmrZzM3-ju70E,1585
|
1962
1962
|
homeassistant-stubs/components/onewire/sensor.pyi,sha256=WWFDHb1IxoosOMWHvlur2FaEe9bPZk5bvvlAyX4hmvA,2859
|
1963
1963
|
homeassistant-stubs/components/onewire/switch.pyi,sha256=7W7QY0tz9in7byKrAdPiLB5LFrq6JvNcefC_bHNYrc8,1875
|
1964
1964
|
homeassistant-stubs/components/open_meteo/__init__.pyi,sha256=b5_qJ_llgjYzMPtOeYdgxBJOjV3ipgNLN6rq1hM1WSc,855
|
@@ -2293,7 +2293,7 @@ homeassistant-stubs/components/rfxtrx/cover.pyi,sha256=0C_niX03ICTvBfUVleuD5zUT-
|
|
2293
2293
|
homeassistant-stubs/components/rfxtrx/device_action.pyi,sha256=hOwkfGGWPqjkgA2qoOmP3MdLGu7AnGIJrpaDP6evnWk,1280
|
2294
2294
|
homeassistant-stubs/components/rfxtrx/device_trigger.pyi,sha256=iiQGRFWZ1NB9eK6Sz4vtVsu0D4yQ8YdQ2LujpU2VIrM,1380
|
2295
2295
|
homeassistant-stubs/components/rfxtrx/diagnostics.pyi,sha256=T-Xu2dwlHTCBntyWHfJSTIZQqZ1PevcHBt6FZAjwZiQ,407
|
2296
|
-
homeassistant-stubs/components/rfxtrx/event.pyi,sha256=
|
2296
|
+
homeassistant-stubs/components/rfxtrx/event.pyi,sha256=X_EepLARog8q-BCxOF85dlg8XzVzw82o5pzLR8ih_-4,1344
|
2297
2297
|
homeassistant-stubs/components/rfxtrx/helpers.pyi,sha256=7ctNipYXcokIk5Yvu7qu9_SF1rxgIbe-4h919dpbtVY,304
|
2298
2298
|
homeassistant-stubs/components/rfxtrx/light.pyi,sha256=kZ3b6zMMSUUNqn5xiYAzYlHYMjGiPXttYJQKRTCTRCs,1579
|
2299
2299
|
homeassistant-stubs/components/rfxtrx/sensor.pyi,sha256=ib-gmatmbK5hAv-tn80b8a_Q84Rxw3lH75u1aji07Ns,3041
|
@@ -2454,7 +2454,7 @@ homeassistant-stubs/components/shelly/button.pyi,sha256=5i_zvODLmuIyYmk3ruU33j58
|
|
2454
2454
|
homeassistant-stubs/components/shelly/climate.pyi,sha256=VI6EcKhz8IN4Kdu3g1LKDVb0ZKRoLiYfMoIZ7FFtCRo,5583
|
2455
2455
|
homeassistant-stubs/components/shelly/config_flow.pyi,sha256=0iyELhQDMzcIVPynAGMi8PMgFCyz-FaPOtajnmDqKhk,3232
|
2456
2456
|
homeassistant-stubs/components/shelly/const.pyi,sha256=fpUmXnvLpiJv5wgcztDGRc2wH1ko_p1MdOlmwdU0oQY,2301
|
2457
|
-
homeassistant-stubs/components/shelly/coordinator.pyi,sha256=
|
2457
|
+
homeassistant-stubs/components/shelly/coordinator.pyi,sha256=YYPypgNjZctz8rvpsgCAaGwGbUBvUrvz9fCf12qWVtw,7254
|
2458
2458
|
homeassistant-stubs/components/shelly/cover.pyi,sha256=gQo6pbVOGipMBJd5XH5ahG5z_zJ1OiuPVJn2uvaQN9Y,2802
|
2459
2459
|
homeassistant-stubs/components/shelly/device_trigger.pyi,sha256=pXIeDnIMtGs_ZkJV8fvJG8kYkaTrZ6RW7YnCjKWxZNE,1988
|
2460
2460
|
homeassistant-stubs/components/shelly/diagnostics.pyi,sha256=tylnHfNliUxiw2sC_ycJRxg6ShUEYZNlYTKZjWWQLmo,733
|
@@ -2464,9 +2464,9 @@ homeassistant-stubs/components/shelly/light.pyi,sha256=dGDvfhs0DDQe22oOc_O5ZTPOw
|
|
2464
2464
|
homeassistant-stubs/components/shelly/logbook.pyi,sha256=Tyg-NqquagNlOHxhEV_cCs5kk9G38dYResAzZhFBpN0,994
|
2465
2465
|
homeassistant-stubs/components/shelly/number.pyi,sha256=9VcK3yv02FIoOWaI2q-yCGA72W4jvkjz5xt5wHNvzmk,2590
|
2466
2466
|
homeassistant-stubs/components/shelly/sensor.pyi,sha256=NK0hYtfW-gi4EDjFcP0jT6t3bMMmGhibujIMPVNv4To,6017
|
2467
|
-
homeassistant-stubs/components/shelly/switch.pyi,sha256=
|
2467
|
+
homeassistant-stubs/components/shelly/switch.pyi,sha256=AT5ud5s_ucnccTKnOYfChhBpe9iVcCV0q1EOSELyQFM,3896
|
2468
2468
|
homeassistant-stubs/components/shelly/update.pyi,sha256=rwNWiB2kyKK-reySjY7ZJ26bpP_KyI80P6ukh0yBN84,4721
|
2469
|
-
homeassistant-stubs/components/shelly/utils.pyi,sha256=
|
2469
|
+
homeassistant-stubs/components/shelly/utils.pyi,sha256=oxV3xC1_Osnycdg-Q-gamJb9pAr_INwVIYqGWQnQvy0,4662
|
2470
2470
|
homeassistant-stubs/components/shelly/valve.pyi,sha256=NrL9Ln_keBEw4WRLGsWHwcwWyBwMU6GF8F7Qvhh7cwA,2367
|
2471
2471
|
homeassistant-stubs/components/shopping_list/__init__.pyi,sha256=SAuctSuQY53LFbrl4-e5gFG-SOLppLqJOLdyGlp4Tr4,4669
|
2472
2472
|
homeassistant-stubs/components/shopping_list/config_flow.pyi,sha256=pZ_rPWc8tyyDavIxaSEPrQt0kFfswEUmqpjih7qIGbk,482
|
@@ -3184,7 +3184,7 @@ homeassistant-stubs/components/zwave_js/update.pyi,sha256=DZ89qey4VhEIz4DzjIi5tN
|
|
3184
3184
|
homeassistant-stubs/config.pyi,sha256=Lxa7qbBd2H-T7R5RHmnlNQT4xZ8uSMmI9mtsDNEqLUU,8894
|
3185
3185
|
homeassistant-stubs/config_entries.pyi,sha256=PS3dTrFk3nq75Z6taQ5eQfwMxYp0USHMNsFPqAGJTDA,19019
|
3186
3186
|
homeassistant-stubs/const.pyi,sha256=l99s93zsWlDvq2v8cRJFKqEBt7LX0QVHFNhjnmeFUPM,24581
|
3187
|
-
homeassistant-stubs/core.pyi,sha256=
|
3187
|
+
homeassistant-stubs/core.pyi,sha256=Yd221eUDnsd6vqfzMfF8awDv62rTt0O9x2xJtoqvBow,24858
|
3188
3188
|
homeassistant-stubs/data_entry_flow.pyi,sha256=tpi3kK2SZSiV1jbXEWChCc34T91d5Ew9IvBJSo_meOU,8238
|
3189
3189
|
homeassistant-stubs/exceptions.pyi,sha256=zP1npdngP9_UXGmR93YGKCtUfYXfc2ytP3chBUI9Lhs,3768
|
3190
3190
|
homeassistant-stubs/generated/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -3249,7 +3249,7 @@ homeassistant-stubs/helpers/registry.pyi,sha256=-v534seg3-3n2RzF2HP5fUUf9-lzGuOu
|
|
3249
3249
|
homeassistant-stubs/helpers/reload.pyi,sha256=HpsIK7zNBneJSVXIp7knvF_MtWx5bmsjzAa99nbxxfw,2237
|
3250
3250
|
homeassistant-stubs/helpers/restore_state.pyi,sha256=3bal-ZQ0mYDm8KmOVXp0kxgA6XKLRqUMw8bugq8XmLs,2933
|
3251
3251
|
homeassistant-stubs/helpers/schema_config_entry_flow.pyi,sha256=HGo98nEziISzacrN5uRGO_vWtRYPygvb0QjYF9Fwz98,4999
|
3252
|
-
homeassistant-stubs/helpers/script.pyi,sha256=
|
3252
|
+
homeassistant-stubs/helpers/script.pyi,sha256=9nu2vDUNozumwIsBxoqQC1xb0uVt5Qv_1zD-sCov3OI,13736
|
3253
3253
|
homeassistant-stubs/helpers/script_variables.pyi,sha256=oH8USW9PDMHyCACqINIUIm2ZQENbHSyRN37dhgXD_08,570
|
3254
3254
|
homeassistant-stubs/helpers/selector.pyi,sha256=19URGEJtfNHNOLOSvG_omcJY6Mo0pWEOm6U5o3j-SAE,15051
|
3255
3255
|
homeassistant-stubs/helpers/sensor.pyi,sha256=lElWOartDwgLVi4vvGlqHFEJ8u25O_PiiEUOSo-CQOg,263
|
@@ -3322,7 +3322,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3322
3322
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3323
3323
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=8rCANDOO3yTLdOqK3AZNmpv-dQD7JVKP1VKDhnEjK3Y,4239
|
3324
3324
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3325
|
-
homeassistant_stubs-2024.5.
|
3326
|
-
homeassistant_stubs-2024.5.
|
3327
|
-
homeassistant_stubs-2024.5.
|
3328
|
-
homeassistant_stubs-2024.5.
|
3325
|
+
homeassistant_stubs-2024.5.0b2.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3326
|
+
homeassistant_stubs-2024.5.0b2.dist-info/METADATA,sha256=9gVzZ1mAudL7XiHFfVEclV-OMXguAv5xy0qoMunpWOI,3015
|
3327
|
+
homeassistant_stubs-2024.5.0b2.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3328
|
+
homeassistant_stubs-2024.5.0b2.dist-info/RECORD,,
|
{homeassistant_stubs-2024.5.0b0.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|