homeassistant-stubs 2024.10.0b0__py3-none-any.whl → 2024.10.0b1__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/tplink/binary_sensor.pyi +1 -1
- homeassistant-stubs/components/tplink/button.pyi +2 -1
- homeassistant-stubs/components/tplink/deprecate.pyi +18 -0
- homeassistant-stubs/components/tplink/entity.pyi +8 -4
- homeassistant-stubs/components/tplink/number.pyi +1 -1
- homeassistant-stubs/components/tplink/select.pyi +1 -1
- homeassistant-stubs/components/tplink/sensor.pyi +2 -1
- homeassistant-stubs/components/tplink/switch.pyi +1 -1
- homeassistant-stubs/components/withings/config_flow.pyi +1 -1
- {homeassistant_stubs-2024.10.0b0.dist-info → homeassistant_stubs-2024.10.0b1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.10.0b0.dist-info → homeassistant_stubs-2024.10.0b1.dist-info}/RECORD +13 -12
- {homeassistant_stubs-2024.10.0b0.dist-info → homeassistant_stubs-2024.10.0b1.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2024.10.0b0.dist-info → homeassistant_stubs-2024.10.0b1.dist-info}/licenses/LICENSE +0 -0
@@ -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
|
-
|
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
|
|
{homeassistant_stubs-2024.10.0b0.dist-info → homeassistant_stubs-2024.10.0b1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.10.
|
3
|
+
Version: 2024.10.0b1
|
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.
|
21
|
+
Requires-Dist: homeassistant==2024.10.0b1
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2024.10.0b0.dist-info → homeassistant_stubs-2024.10.0b1.dist-info}/RECORD
RENAMED
@@ -3094,22 +3094,23 @@ homeassistant-stubs/components/tolo/select.pyi,sha256=_vGbbOopzgtHbMEQOwikNQuSGz
|
|
3094
3094
|
homeassistant-stubs/components/tolo/sensor.pyi,sha256=LR4HNKXROtWjXQoGZ8R8igV9gYQsEs0_2oSoE2mvbKI,2234
|
3095
3095
|
homeassistant-stubs/components/tolo/switch.pyi,sha256=oUPZlgxZetStaqHAMI3yPa2OzSXBjo3cIwexHzMHxHw,1839
|
3096
3096
|
homeassistant-stubs/components/tplink/__init__.pyi,sha256=IVYIcHaD1txN1gMZgmcAH2-EXbcBd1E7-y_m2dfJXFg,2935
|
3097
|
-
homeassistant-stubs/components/tplink/binary_sensor.pyi,sha256=
|
3098
|
-
homeassistant-stubs/components/tplink/button.pyi,sha256=
|
3097
|
+
homeassistant-stubs/components/tplink/binary_sensor.pyi,sha256=nZmzUgsY_qDuaAO2R0Bw7kLIZOezd9yMU4H8_CwhtSM,1585
|
3098
|
+
homeassistant-stubs/components/tplink/button.pyi,sha256=9TqjWh7Fudk2Xrw_Aa2wxdLY4bO-Q6OwOO6XOmwFqCQ,1564
|
3099
3099
|
homeassistant-stubs/components/tplink/climate.pyi,sha256=vsX5leWYVd6GXFRWLfKxqDEoJL0G4qjcy823flVug_Q,2188
|
3100
3100
|
homeassistant-stubs/components/tplink/config_flow.pyi,sha256=Nl_PtcNAXxv-hTpBK92mK9PBWegV-9f5SetKwqGl5ws,3441
|
3101
3101
|
homeassistant-stubs/components/tplink/const.pyi,sha256=ctBhfTN9ha9_Fb7XALCNcED1PxBPi4sWpx6-ij8P4a0,613
|
3102
3102
|
homeassistant-stubs/components/tplink/coordinator.pyi,sha256=mWT8dNcTFM1HBGRJTm5z91ej7VaIoYfBksjOuOySlIw,835
|
3103
|
+
homeassistant-stubs/components/tplink/deprecate.pyi,sha256=B8PUFuXUrkYi8MFCUsnvjUMcDNZIVX0oJtqXRd-k_bE,1108
|
3103
3104
|
homeassistant-stubs/components/tplink/diagnostics.pyi,sha256=DeZAwYKgyNzK6KIlHhdSsSmm83325gP311t5eo7VYEk,473
|
3104
|
-
homeassistant-stubs/components/tplink/entity.pyi,sha256=
|
3105
|
+
homeassistant-stubs/components/tplink/entity.pyi,sha256=CncIfd8Q1Hm6T6NgE8N3mjcp4pjgXaQWh1P_OpIMaL0,4294
|
3105
3106
|
homeassistant-stubs/components/tplink/fan.pyi,sha256=32oPmX87kR1Jyn7CAJnv7hKMBrKDDFX6rlQx8cAJ1fw,1851
|
3106
3107
|
homeassistant-stubs/components/tplink/light.pyi,sha256=iZXLJwCRX5YKK5iMDruv4HWPiP7eXMIe-Yura2behB0,4255
|
3107
3108
|
homeassistant-stubs/components/tplink/models.pyi,sha256=OrY0kxIlxdyemHc8gUpkLHoKizDcWnHvpTIp0TYLJjQ,352
|
3108
|
-
homeassistant-stubs/components/tplink/number.pyi,sha256=
|
3109
|
-
homeassistant-stubs/components/tplink/select.pyi,sha256=
|
3110
|
-
homeassistant-stubs/components/tplink/sensor.pyi,sha256=
|
3109
|
+
homeassistant-stubs/components/tplink/number.pyi,sha256=VNttF-N9MfZ05A0MmFjZyaYii_Hg85GYPJrS-Rd_RyM,2141
|
3110
|
+
homeassistant-stubs/components/tplink/select.pyi,sha256=4WDaqrgO04hoitbt4LQPTasyHPi1X90g7-reNpidtJM,1914
|
3111
|
+
homeassistant-stubs/components/tplink/sensor.pyi,sha256=jWcr7mkuMCU7bVdzR2wUHjhfnChk8HeBSt9A0J_vaHE,1912
|
3111
3112
|
homeassistant-stubs/components/tplink/siren.pyi,sha256=-1W9yDJvYQEjJTZPVK_cpsOSlHTBKFpj-nzgnaHp1Bc,1276
|
3112
|
-
homeassistant-stubs/components/tplink/switch.pyi,sha256=
|
3113
|
+
homeassistant-stubs/components/tplink/switch.pyi,sha256=KV07W_0pJuQ8Pveqt8l_M89QtPpuW7x03-UjtQbl19o,1665
|
3113
3114
|
homeassistant-stubs/components/tplink_omada/__init__.pyi,sha256=XOUtTsxxrlmef7m5SObBZ3u1idwpDy5zfXQz_QvUQSo,895
|
3114
3115
|
homeassistant-stubs/components/tplink_omada/binary_sensor.pyi,sha256=c-CMljAjfBHuW1X8z9Zbp8cbiwcrwQA_Bvjij9Bvtvo,2367
|
3115
3116
|
homeassistant-stubs/components/tplink_omada/config_flow.pyi,sha256=xmrEV4t06MCN6eHpbrXaaVm8eZbfaA4iod8rcZKpEAk,1832
|
@@ -3389,7 +3390,7 @@ homeassistant-stubs/components/withings/__init__.pyi,sha256=447-dpnQD2PW14O-HkN-
|
|
3389
3390
|
homeassistant-stubs/components/withings/application_credentials.pyi,sha256=6_z3o1cGYRclrOv3VM-TB4mqDiDVxiBpV4wRn9yArc4,834
|
3390
3391
|
homeassistant-stubs/components/withings/binary_sensor.pyi,sha256=J47mXr5mkUq60rYCDE1TUCGKn2kBSkqnDRScCIPn91k,1156
|
3391
3392
|
homeassistant-stubs/components/withings/calendar.pyi,sha256=rU-7I13v7PTk5Fj9n7umjfdTCdOMfHW-KbhVn6zEYxc,1408
|
3392
|
-
homeassistant-stubs/components/withings/config_flow.pyi,sha256=
|
3393
|
+
homeassistant-stubs/components/withings/config_flow.pyi,sha256=sKZ2pa6OkwoApvAeH5MGjFWYr7k3n2oz2SFgHBRRb_s,1117
|
3393
3394
|
homeassistant-stubs/components/withings/const.pyi,sha256=Q2d0Lz7o9MyUSg0QDLG_5Hb3hynQK_2uuI6GnbnTUuo,189
|
3394
3395
|
homeassistant-stubs/components/withings/coordinator.pyi,sha256=QMubwFGyXeZd0J2YP2Ry8ozh7hdTzj2SNWyBdJI7lqE,3693
|
3395
3396
|
homeassistant-stubs/components/withings/diagnostics.pyi,sha256=ANmFRhqM-CtgjN8fMVSSRL9PogY4vYiJ0-Iu4QQHY50,369
|
@@ -3652,7 +3653,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3652
3653
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3653
3654
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=FJDEgKwYTwuB8hBeJVjqwYqJ5hQZTSF_DtsnuO-E-pM,4758
|
3654
3655
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3655
|
-
homeassistant_stubs-2024.10.
|
3656
|
-
homeassistant_stubs-2024.10.
|
3657
|
-
homeassistant_stubs-2024.10.
|
3658
|
-
homeassistant_stubs-2024.10.
|
3656
|
+
homeassistant_stubs-2024.10.0b1.dist-info/METADATA,sha256=jFws8ZaopZXk4CV34we2V8W3sE0zJH3yqgwPBw3kbEc,2958
|
3657
|
+
homeassistant_stubs-2024.10.0b1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
3658
|
+
homeassistant_stubs-2024.10.0b1.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3659
|
+
homeassistant_stubs-2024.10.0b1.dist-info/RECORD,,
|
{homeassistant_stubs-2024.10.0b0.dist-info → homeassistant_stubs-2024.10.0b1.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|