homeassistant-stubs 2023.8.0b0__py3-none-any.whl → 2023.8.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.
@@ -26,7 +26,6 @@ ENTITY_CATEGORIES: EsphomeEnumMapper[EsphomeEntityCategory, EntityCategory | Non
26
26
 
27
27
  class EsphomeEntity(Entity, Generic[_InfoT, _StateT]):
28
28
  _attr_should_poll: bool
29
- _attr_has_entity_name: bool
30
29
  _static_info: _InfoT
31
30
  _state: _StateT
32
31
  _has_state: bool
@@ -37,6 +36,7 @@ class EsphomeEntity(Entity, Generic[_InfoT, _StateT]):
37
36
  entity_id: Incomplete
38
37
  _attr_device_info: Incomplete
39
38
  _entry_id: Incomplete
39
+ _attr_has_entity_name: Incomplete
40
40
  def __init__(self, entry_data: RuntimeEntryData, domain: str, entity_info: EntityInfo, state_type: type[_StateT]) -> None: ...
41
41
  async def async_added_to_hass(self) -> None: ...
42
42
  _attr_unique_id: Incomplete
@@ -48,6 +48,3 @@ class EventEntity(RestoreEntity):
48
48
  @property
49
49
  def extra_restore_state_data(self) -> EventExtraStoredData: ...
50
50
  async def async_get_last_event_data(self) -> EventExtraStoredData | None: ...
51
-
52
- # Names in __all__ with no definition:
53
- # EventEntityFeature
@@ -5,6 +5,8 @@ from .models import JellyfinData as JellyfinData
5
5
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
6
  from homeassistant.core import HomeAssistant as HomeAssistant
7
7
  from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady
8
+ from homeassistant.helpers import device_registry as dr
8
9
 
9
10
  async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
10
11
  async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
12
+ async def async_remove_config_entry_device(hass: HomeAssistant, config_entry: ConfigEntry, device_entry: dr.DeviceEntry) -> bool: ...
@@ -19,10 +19,12 @@ class JellyfinDataUpdateCoordinator(DataUpdateCoordinator[JellyfinDataT], ABC, m
19
19
  client_device_id: Incomplete
20
20
  user_id: Incomplete
21
21
  session_ids: Incomplete
22
+ device_ids: Incomplete
22
23
  def __init__(self, hass: HomeAssistant, api_client: JellyfinClient, system_info: dict[str, Any], client_device_id: str, user_id: str) -> None: ...
23
24
  async def _async_update_data(self) -> JellyfinDataT: ...
24
25
  @abstractmethod
25
26
  async def _fetch_data(self) -> JellyfinDataT: ...
26
27
 
27
28
  class SessionsDataUpdateCoordinator(JellyfinDataUpdateCoordinator[dict[str, dict[str, Any]]]):
29
+ device_ids: Incomplete
28
30
  async def _fetch_data(self) -> dict[str, dict[str, Any]]: ...
@@ -20,7 +20,6 @@ async def async_setup_platform(hass: HomeAssistant, config: ConfigType, async_ad
20
20
  async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
21
21
 
22
22
  class ScrapeSensor(CoordinatorEntity[ScrapeCoordinator], ManualTriggerEntity, SensorEntity):
23
- _attr_name: Incomplete
24
23
  _attr_native_unit_of_measurement: Incomplete
25
24
  _attr_state_class: Incomplete
26
25
  _select: Incomplete
@@ -38,12 +38,12 @@ class SQLSensor(ManualTriggerEntity, SensorEntity):
38
38
  _column_name: Incomplete
39
39
  sessionmaker: Incomplete
40
40
  _attr_extra_state_attributes: Incomplete
41
- _attr_unique_id: Incomplete
42
41
  _use_database_executor: Incomplete
43
42
  _lambda_stmt: Incomplete
44
- _attr_has_entity_name: Incomplete
43
+ _attr_name: Incomplete
44
+ _attr_has_entity_name: bool
45
45
  _attr_device_info: Incomplete
46
- def __init__(self, trigger_entity_config: ConfigType, sessmaker: scoped_session, query: str, column: str, unit: str | None, value_template: Template | None, unique_id: str | None, yaml: bool, state_class: SensorStateClass | None, use_database_executor: bool) -> None: ...
46
+ def __init__(self, trigger_entity_config: ConfigType, sessmaker: scoped_session, query: str, column: str, unit: str | None, value_template: Template | None, yaml: bool, state_class: SensorStateClass | None, use_database_executor: bool) -> None: ...
47
47
  async def async_added_to_hass(self) -> None: ...
48
48
  @property
49
49
  def extra_state_attributes(self) -> dict[str, Any] | None: ...
@@ -29,6 +29,7 @@ class SmartPlugLedSwitch(CoordinatedTPLinkEntity, SwitchEntity):
29
29
  def is_on(self) -> bool: ...
30
30
 
31
31
  class SmartPlugSwitch(CoordinatedTPLinkEntity, SwitchEntity):
32
+ _attr_name: Incomplete
32
33
  _attr_unique_id: Incomplete
33
34
  def __init__(self, device: SmartDevice, coordinator: TPLinkDataUpdateCoordinator) -> None: ...
34
35
  async def async_turn_on(self, **kwargs: Any) -> None: ...
@@ -14,6 +14,7 @@ from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, c
14
14
  from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
15
15
  from homeassistant.util.json import format_unserializable_data as format_unserializable_data
16
16
  from typing import Any, Literal, TypeVar, TypedDict
17
+ from yarl import URL
17
18
 
18
19
  _LOGGER: Incomplete
19
20
  DATA_REGISTRY: str
@@ -29,6 +30,7 @@ CONNECTION_UPNP: str
29
30
  CONNECTION_ZIGBEE: str
30
31
  ORPHANED_DEVICE_KEEP_SECONDS: Incomplete
31
32
  RUNTIME_ONLY_ATTRS: Incomplete
33
+ CONFIGURATION_URL_SCHEMES: Incomplete
32
34
 
33
35
  class DeviceEntryDisabler(StrEnum):
34
36
  CONFIG_ENTRY: str
@@ -61,11 +63,12 @@ class DeviceInfoError(HomeAssistantError):
61
63
  def __init__(self, domain: str, device_info: DeviceInfo, message: str) -> None: ...
62
64
 
63
65
  def _validate_device_info(config_entry: ConfigEntry | None, device_info: DeviceInfo) -> str: ...
66
+ def _validate_configuration_url(value: Any) -> str | None: ...
64
67
 
65
68
  class DeviceEntry:
66
69
  area_id: str | None
67
70
  config_entries: set[str]
68
- configuration_url: str | None
71
+ configuration_url: str | URL | None
69
72
  connections: set[tuple[str, str]]
70
73
  disabled_by: DeviceEntryDisabler | None
71
74
  entry_type: DeviceEntryType | None
@@ -131,8 +134,8 @@ class DeviceRegistry:
131
134
  def async_get(self, device_id: str) -> DeviceEntry | None: ...
132
135
  def async_get_device(self, identifiers: set[tuple[str, str]] | None = ..., connections: set[tuple[str, str]] | None = ...) -> DeviceEntry | None: ...
133
136
  def _async_get_deleted_device(self, identifiers: set[tuple[str, str]], connections: set[tuple[str, str]]) -> DeletedDeviceEntry | None: ...
134
- def async_get_or_create(self, *, config_entry_id: str, configuration_url: str | None | UndefinedType = ..., connections: set[tuple[str, str]] | None | UndefinedType = ..., default_manufacturer: str | None | UndefinedType = ..., default_model: str | None | UndefinedType = ..., default_name: str | None | UndefinedType = ..., disabled_by: DeviceEntryDisabler | None | UndefinedType = ..., entry_type: DeviceEntryType | None | UndefinedType = ..., hw_version: str | None | UndefinedType = ..., identifiers: set[tuple[str, str]] | None | UndefinedType = ..., manufacturer: str | None | UndefinedType = ..., model: str | None | UndefinedType = ..., name: str | None | UndefinedType = ..., suggested_area: str | None | UndefinedType = ..., sw_version: str | None | UndefinedType = ..., via_device: tuple[str, str] | None | UndefinedType = ...) -> DeviceEntry: ...
135
- def async_update_device(self, device_id: str, *, add_config_entry_id: str | UndefinedType = ..., area_id: str | None | UndefinedType = ..., configuration_url: str | None | UndefinedType = ..., disabled_by: DeviceEntryDisabler | None | UndefinedType = ..., entry_type: DeviceEntryType | None | UndefinedType = ..., hw_version: str | None | UndefinedType = ..., manufacturer: str | None | UndefinedType = ..., merge_connections: set[tuple[str, str]] | UndefinedType = ..., merge_identifiers: set[tuple[str, str]] | UndefinedType = ..., model: str | None | UndefinedType = ..., name_by_user: str | None | UndefinedType = ..., name: str | None | UndefinedType = ..., new_identifiers: set[tuple[str, str]] | UndefinedType = ..., remove_config_entry_id: str | UndefinedType = ..., suggested_area: str | None | UndefinedType = ..., sw_version: str | None | UndefinedType = ..., via_device_id: str | None | UndefinedType = ...) -> DeviceEntry | None: ...
137
+ def async_get_or_create(self, *, config_entry_id: str, configuration_url: str | URL | None | UndefinedType = ..., connections: set[tuple[str, str]] | None | UndefinedType = ..., default_manufacturer: str | None | UndefinedType = ..., default_model: str | None | UndefinedType = ..., default_name: str | None | UndefinedType = ..., disabled_by: DeviceEntryDisabler | None | UndefinedType = ..., entry_type: DeviceEntryType | None | UndefinedType = ..., hw_version: str | None | UndefinedType = ..., identifiers: set[tuple[str, str]] | None | UndefinedType = ..., manufacturer: str | None | UndefinedType = ..., model: str | None | UndefinedType = ..., name: str | None | UndefinedType = ..., suggested_area: str | None | UndefinedType = ..., sw_version: str | None | UndefinedType = ..., via_device: tuple[str, str] | None | UndefinedType = ...) -> DeviceEntry: ...
138
+ def async_update_device(self, device_id: str, *, add_config_entry_id: str | UndefinedType = ..., area_id: str | None | UndefinedType = ..., configuration_url: str | URL | None | UndefinedType = ..., disabled_by: DeviceEntryDisabler | None | UndefinedType = ..., entry_type: DeviceEntryType | None | UndefinedType = ..., hw_version: str | None | UndefinedType = ..., manufacturer: str | None | UndefinedType = ..., merge_connections: set[tuple[str, str]] | UndefinedType = ..., merge_identifiers: set[tuple[str, str]] | UndefinedType = ..., model: str | None | UndefinedType = ..., name_by_user: str | None | UndefinedType = ..., name: str | None | UndefinedType = ..., new_identifiers: set[tuple[str, str]] | UndefinedType = ..., remove_config_entry_id: str | UndefinedType = ..., suggested_area: str | None | UndefinedType = ..., sw_version: str | None | UndefinedType = ..., via_device_id: str | None | UndefinedType = ...) -> DeviceEntry | None: ...
136
139
  def async_remove_device(self, device_id: str) -> None: ...
137
140
  async def async_load(self) -> None: ...
138
141
  def async_schedule_save(self) -> None: ...
@@ -17,6 +17,7 @@ from homeassistant.exceptions import HomeAssistantError as HomeAssistantError, N
17
17
  from homeassistant.loader import bind_hass as bind_hass
18
18
  from homeassistant.util import ensure_unique_string as ensure_unique_string, slugify as slugify
19
19
  from typing import Any, Final, Literal, TypeVar, TypedDict
20
+ from yarl import URL
20
21
 
21
22
  _T = TypeVar('_T')
22
23
  _LOGGER: Incomplete
@@ -36,7 +37,7 @@ def get_supported_features(hass: HomeAssistant, entity_id: str) -> int: ...
36
37
  def get_unit_of_measurement(hass: HomeAssistant, entity_id: str) -> str | None: ...
37
38
 
38
39
  class DeviceInfo(TypedDict, total=False):
39
- configuration_url: str | None
40
+ configuration_url: str | URL | None
40
41
  connections: set[tuple[str, str]]
41
42
  default_manufacturer: str
42
43
  default_model: str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: homeassistant-stubs
3
- Version: 2023.8.0b0
3
+ Version: 2023.8.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
@@ -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 (==2023.8.0b0)
20
+ Requires-Dist: homeassistant (==2023.8.0b2)
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
@@ -555,7 +555,7 @@ homeassistant-stubs/components/esphome/cover.pyi,sha256=UXM5imgeBu6cuYUPTHD48i7u
555
555
  homeassistant-stubs/components/esphome/dashboard.pyi,sha256=-G7q8D5OFw025UJgPOXg5gbVh9Rm8Hgd1Ub-Fi2SA8g,2007
556
556
  homeassistant-stubs/components/esphome/diagnostics.pyi,sha256=m9u9e2MSh3dM5kyYYAXN9o232G0UXFKjE6f4-nduyzc,738
557
557
  homeassistant-stubs/components/esphome/domain_data.pyi,sha256=v0kgd4qrSFVA3iUY3gihIIPieAJByjMe8BNIKRW9Rds,1078
558
- homeassistant-stubs/components/esphome/entity.pyi,sha256=V_GIMMAhc_Vl83_znH-X9Lf3WAVha1knbKgvx6zb8s0,3029
558
+ homeassistant-stubs/components/esphome/entity.pyi,sha256=S8pzacMK0fgk1dSiNdl_8iYWVWHdAACiwFzi0RoLeoY,3035
559
559
  homeassistant-stubs/components/esphome/entry_data.pyi,sha256=1fc9n5rxQixcHWUYy4bAHFCsq_4xRDE6xyVcTFgzvTg,4827
560
560
  homeassistant-stubs/components/esphome/enum_mapper.pyi,sha256=bjS1ZsaM9u8BZH921cCcND4_S3kNP44WnphDvoljf_w,560
561
561
  homeassistant-stubs/components/esphome/fan.pyi,sha256=P0NG9b24DsN6oOqThp46fQP3gv2uOYfgI8dq4TuN0g4,2306
@@ -569,7 +569,7 @@ homeassistant-stubs/components/esphome/sensor.pyi,sha256=nKrr8W7bTXyJQf3QplzLiB5
569
569
  homeassistant-stubs/components/esphome/switch.pyi,sha256=NCDBsPjsioPWYd-x97Zgcn7EX8Rw4RvYWwestVatEsE,1243
570
570
  homeassistant-stubs/components/esphome/update.pyi,sha256=4hmOl4mPwIt6jI0FlbgWiwawYRzxFCl4UVxqaF1t2FU,2237
571
571
  homeassistant-stubs/components/esphome/voice_assistant.pyi,sha256=Q7cPAJxtYEyAmeBJ5tnUxTmEMqgUZg6TZ0JkPoGU3Gs,2827
572
- homeassistant-stubs/components/event/__init__.pyi,sha256=SLgCrlZAqAr6X2REIdM733-SabVQrWjkeGpr_PyvnUY,2338
572
+ homeassistant-stubs/components/event/__init__.pyi,sha256=AXibj4m8OYwqkeLCMBeq4zkzffaUQFDpR_Flm_3ERbE,2275
573
573
  homeassistant-stubs/components/event/const.pyi,sha256=RccBYn7-x6TXzOVCrHRVlrJXpVGQ8d7uLtNZRxdNqsc,55
574
574
  homeassistant-stubs/components/event/recorder.pyi,sha256=BzgZDpw9nWiU9fjd22Jba2l5vQT4_txaDtT_iNS_3GE,197
575
575
  homeassistant-stubs/components/evil_genius_labs/__init__.pyi,sha256=1wdcUYqLRvf7MDdrT5XvbPK4IxS0taj4d8CMyNmFPz4,1318
@@ -882,12 +882,12 @@ homeassistant-stubs/components/isy994/services.pyi,sha256=5oTCUYD2-Duv3mPW2avwQw
882
882
  homeassistant-stubs/components/isy994/switch.pyi,sha256=snBJzp3JnkX1-arPe7BH3IZXXy1bwHR8a4TmmH_PMWI,2654
883
883
  homeassistant-stubs/components/isy994/system_health.pyi,sha256=z87IoPzMOgMr2BCxhyG9BO16O8nCgqJiFMYVJgUdUKY,615
884
884
  homeassistant-stubs/components/isy994/util.pyi,sha256=QcUtnNThkujVnj92C7_Bo9YqiWEujiQSaDsn_NiFlqw,226
885
- homeassistant-stubs/components/jellyfin/__init__.pyi,sha256=acBlmhGpI2DNXKF2MrwYDLhNtJ8OCSpGfC5B9gb9SWY,856
885
+ homeassistant-stubs/components/jellyfin/__init__.pyi,sha256=fnVdUXR3BnenRMYsGefdP9HToIP1T1lejyR2IXhVopE,1046
886
886
  homeassistant-stubs/components/jellyfin/browse_media.pyi,sha256=DlR6cxHG95uiemDI2AHLINNLczqzNuK6APczS3wIx1c,1529
887
887
  homeassistant-stubs/components/jellyfin/client_wrapper.pyi,sha256=73XwvAYmORer0dMLdq71iDrmLO2_jCgR3fZ826UU7nw,1417
888
888
  homeassistant-stubs/components/jellyfin/config_flow.pyi,sha256=jBAdtPwsSueD47De0K1_dbZ6GZ6Pa-LHwMPDEVPnVrE,951
889
889
  homeassistant-stubs/components/jellyfin/const.pyi,sha256=sDTv48nHriR5ZVkOeBjJimRavEjNHwdSnvU9LDGzB_c,1300
890
- homeassistant-stubs/components/jellyfin/coordinator.pyi,sha256=EBY0od1c3nrTeQr25iDz2ujZoy8PiLbfFSD1pUocJTc,1370
890
+ homeassistant-stubs/components/jellyfin/coordinator.pyi,sha256=cbDzf5zt2-3jsEjZuwqRlJUGTYsObgf6VsRDPedFPCI,1424
891
891
  homeassistant-stubs/components/jellyfin/diagnostics.pyi,sha256=HdtFp9OTrT-VO_FKHv3qrAlaCunFZ2a0dAEXksKFgwk,555
892
892
  homeassistant-stubs/components/jellyfin/entity.pyi,sha256=l7NHZCwSxerZQCU6taG56QK8w4Dkh4VzHHSm0dr4_oU,878
893
893
  homeassistant-stubs/components/jellyfin/media_player.pyi,sha256=zxw3KEtGSwpiQyxzpS49eRFCNxXFHVEbxEncBNPDwoQ,3419
@@ -1696,7 +1696,7 @@ homeassistant-stubs/components/scrape/__init__.pyi,sha256=oVi8RSDTuHil3kh1i8Rern
1696
1696
  homeassistant-stubs/components/scrape/config_flow.pyi,sha256=zv8ej3fpgQ4B5i3KpzId2wHkw2rsbsxrlp8OwB7s-NI,3727
1697
1697
  homeassistant-stubs/components/scrape/const.pyi,sha256=Ihpov5N9PWbYPat-55jDU7dQ9jqzo-WyfjQk0LMHaNs,272
1698
1698
  homeassistant-stubs/components/scrape/coordinator.pyi,sha256=YNveo3hDqv9MEv3oZfTPsjMXnp-M7oy0vrI4BbusHJg,618
1699
- homeassistant-stubs/components/scrape/sensor.pyi,sha256=Wak2-dyuSFM1EfmRvktPSZJ97BXXcsSTI5GEsqrRQuY,2741
1699
+ homeassistant-stubs/components/scrape/sensor.pyi,sha256=aAa3IO6Aah7fO4mxzSRA8cGWaRue9I1QgPU2Kv1zmY8,2714
1700
1700
  homeassistant-stubs/components/select/__init__.pyi,sha256=EcO4Sm-hBFGb9GIc76L3j0yzYkyZGgT5H-dLnGeChgE,1762
1701
1701
  homeassistant-stubs/components/select/const.pyi,sha256=cjGmyzpRsXm0SQt8W1BKDTxwMEIeAa9lLQM1kIZZYtw,228
1702
1702
  homeassistant-stubs/components/select/device_action.pyi,sha256=qRvTc3jXQfHM0Fq8hB0O6pVrCCSBs6B3DwUcIr-XYeE,1672
@@ -1833,7 +1833,7 @@ homeassistant-stubs/components/sql/__init__.pyi,sha256=0Cpy6tHJTNs9jgR9QnP-j5oRX
1833
1833
  homeassistant-stubs/components/sql/config_flow.pyi,sha256=bXYDNgwLhvSkupzgCpQy4ILd7GqsNkqeSrfHBzkt6eU,1699
1834
1834
  homeassistant-stubs/components/sql/const.pyi,sha256=AcBPpOD5orU9lqetin3xQVjt7_9PbEu-olYAQ5-mNuc,181
1835
1835
  homeassistant-stubs/components/sql/models.pyi,sha256=4hvQvLpc-m9zuZahM2TO8mqs-UmnfhMQPaReUcqOAhE,320
1836
- homeassistant-stubs/components/sql/sensor.pyi,sha256=5k4LVdhgzZmGb0oQVsNhvZeUKMn8DcCfzjI04_lHssA,3839
1836
+ homeassistant-stubs/components/sql/sensor.pyi,sha256=3tyWR1vtT2a58Mbqn8LAwcQz-fJrYXn-X21P7eqXSdQ,3805
1837
1837
  homeassistant-stubs/components/sql/util.pyi,sha256=y7P1LVWoTKpzOHFhQIyp6IWrGHItxabqdBLTz7p_pUA,359
1838
1838
  homeassistant-stubs/components/ssdp/__init__.pyi,sha256=MF2PuxRdsQ9vLquZy9gZSa_NYYf5ycqP_niGaw4T-70,7161
1839
1839
  homeassistant-stubs/components/statistics/__init__.pyi,sha256=rWT3SFRVo9UAulZ2cOIIZLDcsSvgXDgWjiGGp2jOpoY,121
@@ -1983,7 +1983,7 @@ homeassistant-stubs/components/tplink/diagnostics.pyi,sha256=BLAr84nFFaYfhxKtdrv
1983
1983
  homeassistant-stubs/components/tplink/entity.pyi,sha256=O5taWdgFqh8cCmhiuF6trcgTClFlnQ4br72DcoYaa4o,1055
1984
1984
  homeassistant-stubs/components/tplink/light.pyi,sha256=lqDXpfbOXfuF0wycH-GoYawDFIoApTK7DqS6RLYmsro,3771
1985
1985
  homeassistant-stubs/components/tplink/sensor.pyi,sha256=kbXcQlAN4HLghGQX8oYAZ3JOkau8vCeldIahq_uOIbY,2281
1986
- homeassistant-stubs/components/tplink/switch.pyi,sha256=L6W5nW-QQGvmBqZVZtPgn1e95lNcnzkH21mMzdDUU3A,2102
1986
+ homeassistant-stubs/components/tplink/switch.pyi,sha256=IpR-4VS95_eTYmldR0QwZkYAR7qyNzlDI4Bjew4aWkg,2129
1987
1987
  homeassistant-stubs/components/tplink_omada/__init__.pyi,sha256=xvIRjC1GEQ7IF99WHQGyFXPtr1n_Q5WrNVqrtOm_WoM,699
1988
1988
  homeassistant-stubs/components/tplink_omada/binary_sensor.pyi,sha256=MlMKt4vRmtck2gl2-TWux3uh-oWFv9rFI48GDrdxqkM,2021
1989
1989
  homeassistant-stubs/components/tplink_omada/config_flow.pyi,sha256=wFy7BtVt2d3WHEhLFh0GS9eBptRQIZZ6dTB4ZoUFgPU,1843
@@ -2335,11 +2335,11 @@ homeassistant-stubs/helpers/config_validation.pyi,sha256=B8AARGI6TXAFQT-nGnWtl0J
2335
2335
  homeassistant-stubs/helpers/data_entry_flow.pyi,sha256=QrMSa551haZShY3-lHallfYWpc7zsqG7bU3ix6t4UgQ,1084
2336
2336
  homeassistant-stubs/helpers/debounce.pyi,sha256=gHyKXUGANvhPqLQIYUNntiRPOStkN2fZucGmckow49A,1085
2337
2337
  homeassistant-stubs/helpers/deprecation.pyi,sha256=Ccumo_AJonXlNsML_UrDR3SDkvKASB68TwOMVJGc0vI,843
2338
- homeassistant-stubs/helpers/device_registry.pyi,sha256=ph0GlS22IuaafVec7wstsLqlwabaWYV-aYdgTKqF0NY,8302
2338
+ homeassistant-stubs/helpers/device_registry.pyi,sha256=Tg7iJ0IEFrIa1uwW0ju53BFZsjG_Ib-ciOmoYPjqzkg,8442
2339
2339
  homeassistant-stubs/helpers/discovery.pyi,sha256=ss9qo-iZqaX2g-5RGNJy7dvzoYavMHBHtNYVq_1aXJI,1628
2340
2340
  homeassistant-stubs/helpers/discovery_flow.pyi,sha256=vwZkwsSp1bpkj_MvC2jXI8hC_G_JTTe4IZKv9r_0lYw,1315
2341
2341
  homeassistant-stubs/helpers/dispatcher.pyi,sha256=qtRAkAsf1dnjjxsMWib8K_I517opUTf5NXMd40AOSRo,999
2342
- homeassistant-stubs/helpers/entity.pyi,sha256=a2GfuufqE6bz-4XwlvC3vQK9CI5U8ThglJwcL0ja5p0,10686
2342
+ homeassistant-stubs/helpers/entity.pyi,sha256=pzvs-LG5rRtwD8RNvcnZkhrQr0v2oi5-AELHyFwan8k,10713
2343
2343
  homeassistant-stubs/helpers/entity_component.pyi,sha256=U9Ly3G1NKZutKpSyzPuk9rAYK3s-IoYAMskgFCLejs0,3259
2344
2344
  homeassistant-stubs/helpers/entity_platform.pyi,sha256=dA0aGe_zm0UylvKSllzFm4Z_diYUCnqR3n4abUhC5VI,5618
2345
2345
  homeassistant-stubs/helpers/entity_registry.pyi,sha256=4-fo7a6cAClF2pNL5HSuILmuDv4DPUf-fDM1xxbJmYs,11947
@@ -2434,7 +2434,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=zxT5g702AE8bCbQd9UynrAwNF_MndI2e
2434
2434
  homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
2435
2435
  homeassistant-stubs/util/yaml/loader.pyi,sha256=LdOts7aNdgGBanbHeaHTA-FS2PuPe9ZfNfjWFYnSi6U,3167
2436
2436
  homeassistant-stubs/util/yaml/objects.pyi,sha256=Ob8lXxNfm75wO2xk-ihATXFzNxI7V9Q1h507lnyzmtE,272
2437
- homeassistant_stubs-2023.8.0b0.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
2438
- homeassistant_stubs-2023.8.0b0.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
2439
- homeassistant_stubs-2023.8.0b0.dist-info/METADATA,sha256=YvFPqa3CpuJlr3Y0OIqNwjHrY3ZQXBjQ5PJ4l50FGPk,3059
2440
- homeassistant_stubs-2023.8.0b0.dist-info/RECORD,,
2437
+ homeassistant_stubs-2023.8.0b2.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
2438
+ homeassistant_stubs-2023.8.0b2.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
2439
+ homeassistant_stubs-2023.8.0b2.dist-info/METADATA,sha256=GoFOurttSVGcA8zLM-v2ADCchssbxqniGqlE_WVnmzo,3059
2440
+ homeassistant_stubs-2023.8.0b2.dist-info/RECORD,,