homeassistant-stubs 2024.10.0b0__py3-none-any.whl → 2024.10.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.
@@ -0,0 +1,5 @@
1
+ from . import AirGradientConfigEntry as AirGradientConfigEntry
2
+ from homeassistant.core import HomeAssistant as HomeAssistant
3
+ from typing import Any
4
+
5
+ async def async_get_config_entry_diagnostics(hass: HomeAssistant, entry: AirGradientConfigEntry) -> dict[str, Any]: ...
@@ -22,7 +22,7 @@ class OverkizExecutor:
22
22
  def select_state(self, *states: str) -> OverkizStateType: ...
23
23
  def has_state(self, *states: str) -> bool: ...
24
24
  def select_attribute(self, *attributes: str) -> OverkizStateType: ...
25
- async def async_execute_command(self, command_name: str, *args: Any) -> None: ...
25
+ async def async_execute_command(self, command_name: str, *args: Any, refresh_afterwards: bool = True) -> None: ...
26
26
  async def async_cancel_command(self, commands_to_cancel: list[OverkizCommand]) -> bool: ...
27
27
  async def async_cancel_execution(self, exec_id: str) -> None: ...
28
28
  def get_gateway_id(self) -> str: ...
@@ -9,7 +9,7 @@ from typing import Final
9
9
 
10
10
  @dataclass(frozen=True, kw_only=True)
11
11
  class TPLinkBinarySensorEntityDescription(BinarySensorEntityDescription, TPLinkFeatureEntityDescription):
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=..., translation_placeholders=..., unit_of_measurement=...) -> None: ...
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=..., translation_placeholders=..., unit_of_measurement=..., deprecated_info=...) -> None: ...
13
13
 
14
14
  BINARY_SENSOR_DESCRIPTIONS: Final[Incomplete]
15
15
  BINARYSENSOR_DESCRIPTIONS_MAP: Incomplete
@@ -1,4 +1,5 @@
1
1
  from . import TPLinkConfigEntry as TPLinkConfigEntry
2
+ from .deprecate import DeprecatedInfo as DeprecatedInfo, async_cleanup_deprecated as async_cleanup_deprecated
2
3
  from .entity import CoordinatedTPLinkFeatureEntity as CoordinatedTPLinkFeatureEntity, TPLinkFeatureEntityDescription as TPLinkFeatureEntityDescription
3
4
  from _typeshed import Incomplete
4
5
  from dataclasses import dataclass
@@ -9,7 +10,7 @@ from typing import Final
9
10
 
10
11
  @dataclass(frozen=True, kw_only=True)
11
12
  class TPLinkButtonEntityDescription(ButtonEntityDescription, TPLinkFeatureEntityDescription):
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=..., translation_placeholders=..., unit_of_measurement=...) -> None: ...
13
+ 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=..., translation_placeholders=..., unit_of_measurement=..., deprecated_info=...) -> None: ...
13
14
 
14
15
  BUTTON_DESCRIPTIONS: Final[Incomplete]
15
16
  BUTTON_DESCRIPTIONS_MAP: Incomplete
@@ -0,0 +1,18 @@
1
+ from .const import DOMAIN as DOMAIN
2
+ from .entity import CoordinatedTPLinkFeatureEntity as CoordinatedTPLinkFeatureEntity, TPLinkFeatureEntityDescription as TPLinkFeatureEntityDescription
3
+ from collections.abc import Sequence
4
+ from dataclasses import dataclass
5
+ from homeassistant.components.automation import automations_with_entity as automations_with_entity
6
+ from homeassistant.components.script import scripts_with_entity as scripts_with_entity
7
+ from homeassistant.core import HomeAssistant as HomeAssistant
8
+ from homeassistant.helpers.issue_registry import IssueSeverity as IssueSeverity, async_create_issue as async_create_issue
9
+
10
+ @dataclass(slots=True)
11
+ class DeprecatedInfo:
12
+ platform: str
13
+ new_platform: str
14
+ breaks_in_ha_version: str
15
+ def __init__(self, platform, new_platform, breaks_in_ha_version) -> None: ...
16
+
17
+ def async_check_create_deprecated(hass: HomeAssistant, unique_id: str, entity_description: TPLinkFeatureEntityDescription) -> bool: ...
18
+ def async_cleanup_deprecated(hass: HomeAssistant, platform: str, entry_id: str, entities: Sequence[CoordinatedTPLinkFeatureEntity]) -> None: ...
@@ -2,12 +2,13 @@ import abc
2
2
  from . import get_device_name as get_device_name, legacy_device_id as legacy_device_id
3
3
  from .const import ATTR_CURRENT_A as ATTR_CURRENT_A, ATTR_CURRENT_POWER_W as ATTR_CURRENT_POWER_W, ATTR_TODAY_ENERGY_KWH as ATTR_TODAY_ENERGY_KWH, ATTR_TOTAL_ENERGY_KWH as ATTR_TOTAL_ENERGY_KWH, DOMAIN as DOMAIN, PRIMARY_STATE_ID as PRIMARY_STATE_ID
4
4
  from .coordinator import TPLinkDataUpdateCoordinator as TPLinkDataUpdateCoordinator
5
+ from .deprecate import DeprecatedInfo as DeprecatedInfo, async_check_create_deprecated as async_check_create_deprecated
5
6
  from _typeshed import Incomplete
6
7
  from abc import ABC, abstractmethod
7
8
  from collections.abc import Awaitable as Awaitable, Callable as Callable, Coroutine, Mapping
8
9
  from dataclasses import dataclass
9
10
  from homeassistant.const import EntityCategory as EntityCategory
10
- from homeassistant.core import callback as callback
11
+ from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
11
12
  from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
12
13
  from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
13
14
  from homeassistant.helpers.entity import EntityDescription as EntityDescription
@@ -25,7 +26,8 @@ LEGACY_KEY_MAPPING: Incomplete
25
26
 
26
27
  @dataclass(frozen=True, kw_only=True)
27
28
  class TPLinkFeatureEntityDescription(EntityDescription):
28
- 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=..., translation_placeholders=..., unit_of_measurement=...) -> None: ...
29
+ deprecated_info: DeprecatedInfo | None = ...
30
+ 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=..., translation_placeholders=..., unit_of_measurement=..., deprecated_info=...) -> None: ...
29
31
 
30
32
  def async_refresh_after(func: Callable[Concatenate[_T, _P], Awaitable[None]]) -> Callable[Concatenate[_T, _P], Coroutine[Any, Any, None]]: ...
31
33
 
@@ -50,11 +52,13 @@ class CoordinatedTPLinkFeatureEntity(CoordinatedTPLinkEntity, ABC, metaclass=abc
50
52
  _feature: Feature
51
53
  def __init__(self, device: Device, coordinator: TPLinkDataUpdateCoordinator, *, feature: Feature, description: TPLinkFeatureEntityDescription, parent: Device | None = None) -> None: ...
52
54
  def _get_unique_id(self) -> str: ...
55
+ @staticmethod
56
+ def _get_feature_unique_id(device: Device, entity_description: TPLinkFeatureEntityDescription) -> str: ...
53
57
  @classmethod
54
58
  def _category_for_feature(cls, feature: Feature | None) -> EntityCategory | None: ...
55
59
  @classmethod
56
60
  def _description_for_feature(cls, feature: Feature, descriptions: Mapping[str, _D], *, device: Device, parent: Device | None = None) -> _D | None: ...
57
61
  @classmethod
58
- def _entities_for_device(cls, device: Device, coordinator: TPLinkDataUpdateCoordinator, *, feature_type: Feature.Type, entity_class: type[_E], descriptions: Mapping[str, _D], parent: Device | None = None) -> list[_E]: ...
62
+ def _entities_for_device(cls, hass: HomeAssistant, device: Device, coordinator: TPLinkDataUpdateCoordinator, *, feature_type: Feature.Type, entity_class: type[_E], descriptions: Mapping[str, _D], parent: Device | None = None) -> list[_E]: ...
59
63
  @classmethod
60
- def entities_for_device_and_its_children(cls, device: Device, coordinator: TPLinkDataUpdateCoordinator, *, feature_type: Feature.Type, entity_class: type[_E], descriptions: Mapping[str, _D], child_coordinators: list[TPLinkDataUpdateCoordinator] | None = None) -> list[_E]: ...
64
+ def entities_for_device_and_its_children(cls, hass: HomeAssistant, device: Device, coordinator: TPLinkDataUpdateCoordinator, *, feature_type: Feature.Type, entity_class: type[_E], descriptions: Mapping[str, _D], child_coordinators: list[TPLinkDataUpdateCoordinator] | None = None) -> list[_E]: ...
@@ -12,7 +12,7 @@ _LOGGER: Incomplete
12
12
 
13
13
  @dataclass(frozen=True, kw_only=True)
14
14
  class TPLinkNumberEntityDescription(NumberEntityDescription, TPLinkFeatureEntityDescription):
15
- 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=..., translation_placeholders=..., unit_of_measurement=..., max_value=..., min_value=..., mode=..., native_max_value=..., native_min_value=..., native_step=..., native_unit_of_measurement=..., step=...) -> None: ...
15
+ 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=..., translation_placeholders=..., unit_of_measurement=..., deprecated_info=..., max_value=..., min_value=..., mode=..., native_max_value=..., native_min_value=..., native_step=..., native_unit_of_measurement=..., step=...) -> None: ...
16
16
 
17
17
  NUMBER_DESCRIPTIONS: Final[Incomplete]
18
18
  NUMBER_DESCRIPTIONS_MAP: Incomplete
@@ -10,7 +10,7 @@ from typing import Final
10
10
 
11
11
  @dataclass(frozen=True, kw_only=True)
12
12
  class TPLinkSelectEntityDescription(SelectEntityDescription, TPLinkFeatureEntityDescription):
13
- 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=..., translation_placeholders=..., unit_of_measurement=..., options=...) -> None: ...
13
+ 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=..., translation_placeholders=..., unit_of_measurement=..., deprecated_info=..., options=...) -> None: ...
14
14
 
15
15
  SELECT_DESCRIPTIONS: Final[Incomplete]
16
16
  SELECT_DESCRIPTIONS_MAP: Incomplete
@@ -1,5 +1,6 @@
1
1
  from . import TPLinkConfigEntry as TPLinkConfigEntry
2
2
  from .const import UNIT_MAPPING as UNIT_MAPPING
3
+ from .deprecate import async_cleanup_deprecated as async_cleanup_deprecated
3
4
  from .entity import CoordinatedTPLinkFeatureEntity as CoordinatedTPLinkFeatureEntity, TPLinkFeatureEntityDescription as TPLinkFeatureEntityDescription
4
5
  from _typeshed import Incomplete
5
6
  from dataclasses import dataclass
@@ -9,7 +10,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEnti
9
10
 
10
11
  @dataclass(frozen=True, kw_only=True)
11
12
  class TPLinkSensorEntityDescription(SensorEntityDescription, TPLinkFeatureEntityDescription):
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=..., translation_placeholders=..., unit_of_measurement=..., last_reset=..., native_unit_of_measurement=..., options=..., state_class=..., suggested_display_precision=..., suggested_unit_of_measurement=...) -> None: ...
13
+ 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=..., translation_placeholders=..., unit_of_measurement=..., deprecated_info=..., last_reset=..., native_unit_of_measurement=..., options=..., state_class=..., suggested_display_precision=..., suggested_unit_of_measurement=...) -> None: ...
13
14
 
14
15
  SENSOR_DESCRIPTIONS: tuple[TPLinkSensorEntityDescription, ...]
15
16
  SENSOR_DESCRIPTIONS_MAP: Incomplete
@@ -11,7 +11,7 @@ _LOGGER: Incomplete
11
11
 
12
12
  @dataclass(frozen=True, kw_only=True)
13
13
  class TPLinkSwitchEntityDescription(SwitchEntityDescription, TPLinkFeatureEntityDescription):
14
- 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=..., translation_placeholders=..., unit_of_measurement=...) -> None: ...
14
+ 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=..., translation_placeholders=..., unit_of_measurement=..., deprecated_info=...) -> None: ...
15
15
 
16
16
  SWITCH_DESCRIPTIONS: tuple[TPLinkSwitchEntityDescription, ...]
17
17
  SWITCH_DESCRIPTIONS_MAP: Incomplete
@@ -3,7 +3,7 @@ from .const import DEFAULT_TITLE as DEFAULT_TITLE, DOMAIN as DOMAIN
3
3
  from collections.abc import Mapping
4
4
  from homeassistant.components.webhook import async_generate_id as async_generate_id
5
5
  from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigFlowResult as ConfigFlowResult
6
- from homeassistant.const import CONF_TOKEN as CONF_TOKEN, CONF_WEBHOOK_ID as CONF_WEBHOOK_ID
6
+ from homeassistant.const import CONF_NAME as CONF_NAME, CONF_TOKEN as CONF_TOKEN, CONF_WEBHOOK_ID as CONF_WEBHOOK_ID
7
7
  from homeassistant.helpers import config_entry_oauth2_flow as config_entry_oauth2_flow
8
8
  from typing import Any
9
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: homeassistant-stubs
3
- Version: 2024.10.0b0
3
+ Version: 2024.10.0b2
4
4
  Summary: PEP 484 typing stubs for Home Assistant Core
5
5
  Project-URL: Homepage, https://github.com/KapJI/homeassistant-stubs
6
6
  Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
@@ -18,7 +18,7 @@ Classifier: Topic :: Home Automation
18
18
  Classifier: Topic :: Software Development
19
19
  Classifier: Typing :: Typed
20
20
  Requires-Python: <3.13,>=3.12
21
- Requires-Dist: homeassistant==2024.10.0b0
21
+ Requires-Dist: homeassistant==2024.10.0b2
22
22
  Description-Content-Type: text/markdown
23
23
 
24
24
  [![CI](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml/badge.svg)](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
@@ -96,6 +96,7 @@ homeassistant-stubs/components/airgradient/button.pyi,sha256=sI0Vp2x_bSOB07UF3Kt
96
96
  homeassistant-stubs/components/airgradient/config_flow.pyi,sha256=cBK11DlIP1K6b-6xegfJPauMdq-zDzSUrVaOWxifhJQ,985
97
97
  homeassistant-stubs/components/airgradient/const.pyi,sha256=5_BnHMq9IW-IG-oFZhvN7gZB2ODd8iQw8MjoyT8OR7k,121
98
98
  homeassistant-stubs/components/airgradient/coordinator.pyi,sha256=mxTkZdyev9lUz4fZyNbEO7VV2i0uYY1_mF2yAIoB5PM,904
99
+ homeassistant-stubs/components/airgradient/diagnostics.pyi,sha256=g2tOlx1yl-rOxfAgLDF6H2Cddr70WO5r_7Ix1NsHwqM,269
99
100
  homeassistant-stubs/components/airgradient/entity.pyi,sha256=o1oGxoBT0XXqRqhltvpMGr2y4_1HOfPYLuxOQsu7Ngg,518
100
101
  homeassistant-stubs/components/airgradient/number.pyi,sha256=SwZGk-wBOslsqiaY0Qz1BPW-XzjN4w2dWiOw8urgRys,2106
101
102
  homeassistant-stubs/components/airgradient/select.pyi,sha256=rGo-EImH--coxC4_Qu2n4FubRGORRsENqNWggGeD-DI,2327
@@ -2240,7 +2241,7 @@ homeassistant-stubs/components/overkiz/const.pyi,sha256=oykMxASm1hKzi1GdzdD7Ttd9
2240
2241
  homeassistant-stubs/components/overkiz/coordinator.pyi,sha256=ksP4qlVgNtg02HG1Brw6GYJxMvOvj1II5N_EA4LJRNU,2254
2241
2242
  homeassistant-stubs/components/overkiz/diagnostics.pyi,sha256=Dj3_eFGYjLL5eFehtKbXS1O69L2s1q38tspiFIYyxz4,621
2242
2243
  homeassistant-stubs/components/overkiz/entity.pyi,sha256=ef8qlYwQRiclWbtNoe1XAURCbQ2nbqoK9j82Jvrglow,1411
2243
- homeassistant-stubs/components/overkiz/executor.pyi,sha256=r2Jo3tT617tIEKeTrcwnLJa0rrEd1jxiQtold2vAtxA,1444
2244
+ homeassistant-stubs/components/overkiz/executor.pyi,sha256=Kg18hiCm2a73rFxP0BxDB7nFyH9TbBPkNnHlQf5tujc,1477
2244
2245
  homeassistant-stubs/components/overkiz/light.pyi,sha256=KiH63_1a7HC8aHNJBchbw_00xoE-90lbXR5022Y9c2U,1386
2245
2246
  homeassistant-stubs/components/overkiz/lock.pyi,sha256=v8cKGUcnZ4Fkcuz7FHjrv2kZU93UrpGUkU5VEGIt1mc,869
2246
2247
  homeassistant-stubs/components/overkiz/number.pyi,sha256=R5LICHewIe1lSw0yhDhXSIy94FdMtpwAoulZWVvTzHs,2643
@@ -3094,22 +3095,23 @@ homeassistant-stubs/components/tolo/select.pyi,sha256=_vGbbOopzgtHbMEQOwikNQuSGz
3094
3095
  homeassistant-stubs/components/tolo/sensor.pyi,sha256=LR4HNKXROtWjXQoGZ8R8igV9gYQsEs0_2oSoE2mvbKI,2234
3095
3096
  homeassistant-stubs/components/tolo/switch.pyi,sha256=oUPZlgxZetStaqHAMI3yPa2OzSXBjo3cIwexHzMHxHw,1839
3096
3097
  homeassistant-stubs/components/tplink/__init__.pyi,sha256=IVYIcHaD1txN1gMZgmcAH2-EXbcBd1E7-y_m2dfJXFg,2935
3097
- homeassistant-stubs/components/tplink/binary_sensor.pyi,sha256=7mQinXhp0QTreLU5QTRFc1CA0EfEumPhvKIa5q911ZY,1564
3098
- homeassistant-stubs/components/tplink/button.pyi,sha256=vP4K5dZZQb7uWQClbYNDk5ipbEMRc3SyWo-uBLArTH0,1433
3098
+ homeassistant-stubs/components/tplink/binary_sensor.pyi,sha256=nZmzUgsY_qDuaAO2R0Bw7kLIZOezd9yMU4H8_CwhtSM,1585
3099
+ homeassistant-stubs/components/tplink/button.pyi,sha256=9TqjWh7Fudk2Xrw_Aa2wxdLY4bO-Q6OwOO6XOmwFqCQ,1564
3099
3100
  homeassistant-stubs/components/tplink/climate.pyi,sha256=vsX5leWYVd6GXFRWLfKxqDEoJL0G4qjcy823flVug_Q,2188
3100
3101
  homeassistant-stubs/components/tplink/config_flow.pyi,sha256=Nl_PtcNAXxv-hTpBK92mK9PBWegV-9f5SetKwqGl5ws,3441
3101
3102
  homeassistant-stubs/components/tplink/const.pyi,sha256=ctBhfTN9ha9_Fb7XALCNcED1PxBPi4sWpx6-ij8P4a0,613
3102
3103
  homeassistant-stubs/components/tplink/coordinator.pyi,sha256=mWT8dNcTFM1HBGRJTm5z91ej7VaIoYfBksjOuOySlIw,835
3104
+ homeassistant-stubs/components/tplink/deprecate.pyi,sha256=B8PUFuXUrkYi8MFCUsnvjUMcDNZIVX0oJtqXRd-k_bE,1108
3103
3105
  homeassistant-stubs/components/tplink/diagnostics.pyi,sha256=DeZAwYKgyNzK6KIlHhdSsSmm83325gP311t5eo7VYEk,473
3104
- homeassistant-stubs/components/tplink/entity.pyi,sha256=mW5-8kGaaQSslpTHF3jOuHH3BJJS3PFNP-NuodIqv5E,3901
3106
+ homeassistant-stubs/components/tplink/entity.pyi,sha256=CncIfd8Q1Hm6T6NgE8N3mjcp4pjgXaQWh1P_OpIMaL0,4294
3105
3107
  homeassistant-stubs/components/tplink/fan.pyi,sha256=32oPmX87kR1Jyn7CAJnv7hKMBrKDDFX6rlQx8cAJ1fw,1851
3106
3108
  homeassistant-stubs/components/tplink/light.pyi,sha256=iZXLJwCRX5YKK5iMDruv4HWPiP7eXMIe-Yura2behB0,4255
3107
3109
  homeassistant-stubs/components/tplink/models.pyi,sha256=OrY0kxIlxdyemHc8gUpkLHoKizDcWnHvpTIp0TYLJjQ,352
3108
- homeassistant-stubs/components/tplink/number.pyi,sha256=2_9vVwLVD7Or5TfANAXbbvObfxLEUxVKDbCkdwyNyVA,2120
3109
- homeassistant-stubs/components/tplink/select.pyi,sha256=ieJmPdM_y_aj9ZKcj-6BHBnHSZo_eFJ3LSrkAWus-ZM,1893
3110
- homeassistant-stubs/components/tplink/sensor.pyi,sha256=8eYXaABW7H_9Eojf75DFTWjZvt7FUe-dM3Fk9_vixVI,1815
3110
+ homeassistant-stubs/components/tplink/number.pyi,sha256=VNttF-N9MfZ05A0MmFjZyaYii_Hg85GYPJrS-Rd_RyM,2141
3111
+ homeassistant-stubs/components/tplink/select.pyi,sha256=4WDaqrgO04hoitbt4LQPTasyHPi1X90g7-reNpidtJM,1914
3112
+ homeassistant-stubs/components/tplink/sensor.pyi,sha256=jWcr7mkuMCU7bVdzR2wUHjhfnChk8HeBSt9A0J_vaHE,1912
3111
3113
  homeassistant-stubs/components/tplink/siren.pyi,sha256=-1W9yDJvYQEjJTZPVK_cpsOSlHTBKFpj-nzgnaHp1Bc,1276
3112
- homeassistant-stubs/components/tplink/switch.pyi,sha256=qMoqt6sfdOEXM_U8s4R9_sSYoBXTaT3shpGAz2LZLa4,1644
3114
+ homeassistant-stubs/components/tplink/switch.pyi,sha256=KV07W_0pJuQ8Pveqt8l_M89QtPpuW7x03-UjtQbl19o,1665
3113
3115
  homeassistant-stubs/components/tplink_omada/__init__.pyi,sha256=XOUtTsxxrlmef7m5SObBZ3u1idwpDy5zfXQz_QvUQSo,895
3114
3116
  homeassistant-stubs/components/tplink_omada/binary_sensor.pyi,sha256=c-CMljAjfBHuW1X8z9Zbp8cbiwcrwQA_Bvjij9Bvtvo,2367
3115
3117
  homeassistant-stubs/components/tplink_omada/config_flow.pyi,sha256=xmrEV4t06MCN6eHpbrXaaVm8eZbfaA4iod8rcZKpEAk,1832
@@ -3389,7 +3391,7 @@ homeassistant-stubs/components/withings/__init__.pyi,sha256=447-dpnQD2PW14O-HkN-
3389
3391
  homeassistant-stubs/components/withings/application_credentials.pyi,sha256=6_z3o1cGYRclrOv3VM-TB4mqDiDVxiBpV4wRn9yArc4,834
3390
3392
  homeassistant-stubs/components/withings/binary_sensor.pyi,sha256=J47mXr5mkUq60rYCDE1TUCGKn2kBSkqnDRScCIPn91k,1156
3391
3393
  homeassistant-stubs/components/withings/calendar.pyi,sha256=rU-7I13v7PTk5Fj9n7umjfdTCdOMfHW-KbhVn6zEYxc,1408
3392
- homeassistant-stubs/components/withings/config_flow.pyi,sha256=HoLwO9LHZ96iT7Qa9riRUrsSKmyjjApLqPIJsQK_cyI,1093
3394
+ homeassistant-stubs/components/withings/config_flow.pyi,sha256=sKZ2pa6OkwoApvAeH5MGjFWYr7k3n2oz2SFgHBRRb_s,1117
3393
3395
  homeassistant-stubs/components/withings/const.pyi,sha256=Q2d0Lz7o9MyUSg0QDLG_5Hb3hynQK_2uuI6GnbnTUuo,189
3394
3396
  homeassistant-stubs/components/withings/coordinator.pyi,sha256=QMubwFGyXeZd0J2YP2Ry8ozh7hdTzj2SNWyBdJI7lqE,3693
3395
3397
  homeassistant-stubs/components/withings/diagnostics.pyi,sha256=ANmFRhqM-CtgjN8fMVSSRL9PogY4vYiJ0-Iu4QQHY50,369
@@ -3652,7 +3654,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
3652
3654
  homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
3653
3655
  homeassistant-stubs/util/yaml/loader.pyi,sha256=FJDEgKwYTwuB8hBeJVjqwYqJ5hQZTSF_DtsnuO-E-pM,4758
3654
3656
  homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
3655
- homeassistant_stubs-2024.10.0b0.dist-info/METADATA,sha256=o6Qst-FTpuEEapGxd-T-Mz52dPOhOaOFZKEJa_bd4bM,2958
3656
- homeassistant_stubs-2024.10.0b0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
3657
- homeassistant_stubs-2024.10.0b0.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
3658
- homeassistant_stubs-2024.10.0b0.dist-info/RECORD,,
3657
+ homeassistant_stubs-2024.10.0b2.dist-info/METADATA,sha256=eLNWB4oFbzoa7E6YUkTfa9QhsLfKqx9aIR-qj54_Mrg,2958
3658
+ homeassistant_stubs-2024.10.0b2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
3659
+ homeassistant_stubs-2024.10.0b2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
3660
+ homeassistant_stubs-2024.10.0b2.dist-info/RECORD,,