homeassistant-stubs 2024.5.0b7__py3-none-any.whl → 2024.5.2__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.
@@ -1,4 +1,4 @@
1
- from .const import DEFAULT_SCAN_INTERVAL as DEFAULT_SCAN_INTERVAL, DOMAIN as DOMAIN
1
+ from .const import DEFAULT_SCAN_INTERVAL as DEFAULT_SCAN_INTERVAL, DOMAIN as DOMAIN, MAX_RETRIES_AFTER_STARTUP as MAX_RETRIES_AFTER_STARTUP
2
2
  from _typeshed import Incomplete
3
3
  from airthings_ble import AirthingsDevice as AirthingsDevice
4
4
  from homeassistant.components import bluetooth as bluetooth
@@ -3,3 +3,4 @@ MFCT_ID: int
3
3
  VOLUME_BECQUEREL: str
4
4
  VOLUME_PICOCURIE: str
5
5
  DEFAULT_SCAN_INTERVAL: int
6
+ MAX_RETRIES_AFTER_STARTUP: int
@@ -16,7 +16,7 @@ from datetime import datetime
16
16
  from homeassistant.auth.models import User as User
17
17
  from homeassistant.auth.permissions.const import POLICY_CONTROL as POLICY_CONTROL
18
18
  from homeassistant.const import ATTR_ENTITY_ID as ATTR_ENTITY_ID, CONF_AUTHENTICATION as CONF_AUTHENTICATION, CONF_BINARY_SENSORS as CONF_BINARY_SENSORS, CONF_HOST as CONF_HOST, CONF_NAME as CONF_NAME, CONF_PASSWORD as CONF_PASSWORD, CONF_PORT as CONF_PORT, CONF_SCAN_INTERVAL as CONF_SCAN_INTERVAL, CONF_SENSORS as CONF_SENSORS, CONF_SWITCHES as CONF_SWITCHES, CONF_USERNAME as CONF_USERNAME, ENTITY_MATCH_ALL as ENTITY_MATCH_ALL, ENTITY_MATCH_NONE as ENTITY_MATCH_NONE, HTTP_BASIC_AUTHENTICATION as HTTP_BASIC_AUTHENTICATION, Platform as Platform
19
- from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall
19
+ from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, callback as callback
20
20
  from homeassistant.exceptions import Unauthorized as Unauthorized, UnknownUser as UnknownUser
21
21
  from homeassistant.helpers import discovery as discovery
22
22
  from homeassistant.helpers.dispatcher import async_dispatcher_send as async_dispatcher_send, dispatcher_send as dispatcher_send
@@ -63,14 +63,21 @@ class AmcrestChecker(ApiWrapper):
63
63
  def available_flag(self) -> threading.Event: ...
64
64
  @property
65
65
  def async_available_flag(self) -> asyncio.Event: ...
66
- def _start_recovery(self) -> None: ...
66
+ def _async_start_recovery(self) -> None: ...
67
67
  def command(self, *args: Any, **kwargs: Any) -> Any: ...
68
68
  async def async_command(self, *args: Any, **kwargs: Any) -> httpx.Response: ...
69
69
  async def async_stream_command(self, *args: Any, **kwargs: Any) -> AsyncIterator[httpx.Response]: ...
70
70
  async def _async_command_wrapper(self) -> AsyncIterator[None]: ...
71
+ def _handle_offline_thread_safe(self, ex: Exception) -> bool: ...
71
72
  def _handle_offline(self, ex: Exception) -> None: ...
73
+ def _async_handle_offline(self, ex: Exception) -> None: ...
74
+ def _handle_error_thread_safe(self) -> bool: ...
72
75
  def _handle_error(self) -> None: ...
76
+ def _async_handle_error(self) -> None: ...
77
+ def _set_online_thread_safe(self) -> bool: ...
73
78
  def _set_online(self) -> None: ...
79
+ def _async_set_online(self) -> None: ...
80
+ def _async_signal_online(self) -> None: ...
74
81
  async def _wrap_test_online(self, now: datetime) -> None: ...
75
82
 
76
83
  def _monitor_events(hass: HomeAssistant, name: str, api: AmcrestChecker, event_codes: set[str]) -> None: ...
@@ -7,7 +7,7 @@ from collections.abc import Callable as Callable
7
7
  from homeassistant.components.camera import Camera as Camera, CameraEntityFeature as CameraEntityFeature
8
8
  from homeassistant.components.ffmpeg import FFmpegManager as FFmpegManager, get_ffmpeg_manager as get_ffmpeg_manager
9
9
  from homeassistant.const import ATTR_ENTITY_ID as ATTR_ENTITY_ID, CONF_NAME as CONF_NAME, STATE_OFF as STATE_OFF, STATE_ON as STATE_ON
10
- from homeassistant.core import HomeAssistant as HomeAssistant
10
+ from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
11
11
  from homeassistant.helpers.aiohttp_client import async_aiohttp_proxy_stream as async_aiohttp_proxy_stream, async_aiohttp_proxy_web as async_aiohttp_proxy_web, async_get_clientsession as async_get_clientsession
12
12
  from homeassistant.helpers.dispatcher import async_dispatcher_connect as async_dispatcher_connect
13
13
  from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
@@ -98,7 +98,7 @@ class AmcrestCam(Camera):
98
98
  async def stream_source(self) -> str | None: ...
99
99
  @property
100
100
  def is_on(self) -> bool: ...
101
- async def async_on_demand_update(self) -> None: ...
101
+ def async_on_demand_update(self) -> None: ...
102
102
  async def async_added_to_hass(self) -> None: ...
103
103
  async def async_will_remove_from_hass(self) -> None: ...
104
104
  _attr_unique_id: Incomplete
@@ -26,7 +26,7 @@ class KNXNotificationService(BaseNotificationService):
26
26
  async def async_setup_entry(hass: HomeAssistant, config_entry: config_entries.ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
27
27
  def _create_notification_instance(xknx: XKNX, config: ConfigType) -> XknxNotification: ...
28
28
 
29
- class KNXNotify(NotifyEntity, KnxEntity):
29
+ class KNXNotify(KnxEntity, NotifyEntity):
30
30
  _device: XknxNotification
31
31
  _attr_entity_category: Incomplete
32
32
  _attr_unique_id: Incomplete
@@ -61,6 +61,7 @@ class EnsureJobAfterCooldown:
61
61
  async def _async_job(self) -> None: ...
62
62
  def _async_task_done(self, task: asyncio.Future) -> None: ...
63
63
  def _async_execute(self) -> None: ...
64
+ async def async_fire(self) -> None: ...
64
65
  def _async_cancel_timer(self) -> None: ...
65
66
  def async_schedule(self) -> None: ...
66
67
  async def async_cleanup(self) -> None: ...
@@ -27,7 +27,7 @@ class RadarrEvent(CalendarEvent, RadarrEventMixIn):
27
27
 
28
28
  class RadarrDataUpdateCoordinator(DataUpdateCoordinator[T], ABC, Generic[T], metaclass=abc.ABCMeta):
29
29
  config_entry: ConfigEntry
30
- update_interval: Incomplete
30
+ _update_interval: Incomplete
31
31
  api_client: Incomplete
32
32
  host_configuration: Incomplete
33
33
  def __init__(self, hass: HomeAssistant, host_configuration: PyArrHostConfiguration, api_client: RadarrClient) -> None: ...
@@ -51,7 +51,7 @@ class QueueDataUpdateCoordinator(RadarrDataUpdateCoordinator):
51
51
  async def _fetch_data(self) -> int: ...
52
52
 
53
53
  class CalendarUpdateCoordinator(RadarrDataUpdateCoordinator[None]):
54
- update_interval: Incomplete
54
+ _update_interval: Incomplete
55
55
  event: Incomplete
56
56
  _events: Incomplete
57
57
  def __init__(self, hass: HomeAssistant, host_configuration: PyArrHostConfiguration, api_client: RadarrClient) -> None: ...
@@ -72,9 +72,9 @@ _PLATFORM_SCHEMA_BASE: Incomplete
72
72
  async def async_setup_platform(hass: HomeAssistant, config: ConfigType, async_add_entities: AddEntitiesCallback, discovery_info: DiscoveryInfoType | None = None) -> None: ...
73
73
 
74
74
  class StatisticsSensor(SensorEntity):
75
- _attr_icon: Incomplete
76
- _attr_name: Incomplete
77
75
  _attr_should_poll: bool
76
+ _attr_icon = ICON
77
+ _attr_name: Incomplete
78
78
  _attr_unique_id: Incomplete
79
79
  _source_entity_id: Incomplete
80
80
  is_binary: Incomplete
@@ -93,6 +93,8 @@ class StatisticsSensor(SensorEntity):
93
93
  _state_characteristic_fn: Incomplete
94
94
  _update_listener: Incomplete
95
95
  def __init__(self, source_entity_id: str, name: str, unique_id: str | None, state_characteristic: str, samples_max_buffer_size: int | None, samples_max_age: timedelta | None, samples_keep_last: bool, precision: int, percentile: int) -> None: ...
96
+ def _async_stats_sensor_state_listener(self, event: Event[EventStateChangedData]) -> None: ...
97
+ def _async_stats_sensor_startup(self, _: HomeAssistant) -> None: ...
96
98
  async def async_added_to_hass(self) -> None: ...
97
99
  def _add_state_to_queue(self, new_state: State) -> None: ...
98
100
  def _derive_unit_of_measurement(self, new_state: State) -> str | None: ...
@@ -109,8 +111,11 @@ class StatisticsSensor(SensorEntity):
109
111
  @property
110
112
  def extra_state_attributes(self) -> dict[str, StateType] | None: ...
111
113
  def _purge_old_states(self, max_age: timedelta) -> None: ...
112
- def _next_to_purge_timestamp(self) -> datetime | None: ...
114
+ def _async_next_to_purge_timestamp(self) -> datetime | None: ...
113
115
  async def async_update(self) -> None: ...
116
+ def _async_purge_update_and_schedule(self) -> None: ...
117
+ def _async_cancel_update_listener(self) -> None: ...
118
+ def _async_scheduled_update(self, now: datetime) -> None: ...
114
119
  def _fetch_states_from_database(self) -> list[State]: ...
115
120
  async def _initialize_from_database(self) -> None: ...
116
121
  def _update_attributes(self) -> None: ...
@@ -1,4 +1,4 @@
1
- from .const import CONF_DEVICE_TOKEN as CONF_DEVICE_TOKEN, EXCEPTION_DETAILS as EXCEPTION_DETAILS, EXCEPTION_UNKNOWN as EXCEPTION_UNKNOWN, SYNOLOGY_CONNECTION_EXCEPTIONS as SYNOLOGY_CONNECTION_EXCEPTIONS
1
+ from .const import CONF_DEVICE_TOKEN as CONF_DEVICE_TOKEN, DEFAULT_TIMEOUT as DEFAULT_TIMEOUT, EXCEPTION_DETAILS as EXCEPTION_DETAILS, EXCEPTION_UNKNOWN as EXCEPTION_UNKNOWN, SYNOLOGY_CONNECTION_EXCEPTIONS as SYNOLOGY_CONNECTION_EXCEPTIONS
2
2
  from _typeshed import Incomplete
3
3
  from collections.abc import Callable as Callable
4
4
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
@@ -35,7 +35,9 @@ class SynoApi:
35
35
  _with_system: bool
36
36
  _with_upgrade: bool
37
37
  _with_utilisation: bool
38
+ _login_future: Incomplete
38
39
  def __init__(self, hass: HomeAssistant, entry: ConfigEntry) -> None: ...
40
+ async def async_login(self) -> None: ...
39
41
  async def async_setup(self) -> None: ...
40
42
  def subscribe(self, api_key: str, unique_id: str) -> Callable[[], None]: ...
41
43
  def _setup_api_requests(self) -> None: ...
@@ -1,6 +1,7 @@
1
1
  from .common import SynoApi as SynoApi, raise_config_entry_auth_error as raise_config_entry_auth_error
2
2
  from .const import DEFAULT_SCAN_INTERVAL as DEFAULT_SCAN_INTERVAL, SIGNAL_CAMERA_SOURCE_CHANGED as SIGNAL_CAMERA_SOURCE_CHANGED, SYNOLOGY_AUTH_FAILED_EXCEPTIONS as SYNOLOGY_AUTH_FAILED_EXCEPTIONS, SYNOLOGY_CONNECTION_EXCEPTIONS as SYNOLOGY_CONNECTION_EXCEPTIONS
3
3
  from _typeshed import Incomplete
4
+ from collections.abc import Awaitable, Callable as Callable, Coroutine
4
5
  from datetime import timedelta
5
6
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
7
  from homeassistant.const import CONF_SCAN_INTERVAL as CONF_SCAN_INTERVAL
@@ -8,10 +9,14 @@ from homeassistant.core import HomeAssistant as HomeAssistant
8
9
  from homeassistant.helpers.dispatcher import async_dispatcher_send as async_dispatcher_send
9
10
  from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
10
11
  from synology_dsm.api.surveillance_station.camera import SynoCamera
11
- from typing import Any, TypeVar
12
+ from typing import Any, Concatenate, ParamSpec, TypeVar
12
13
 
13
14
  _LOGGER: Incomplete
14
15
  _DataT = TypeVar('_DataT')
16
+ _T = TypeVar('_T', bound='SynologyDSMUpdateCoordinator')
17
+ _P = ParamSpec('_P')
18
+
19
+ def async_re_login_on_expired(func: Callable[Concatenate[_T, _P], Awaitable[_DataT]]) -> Callable[Concatenate[_T, _P], Coroutine[Any, Any, _DataT]]: ...
15
20
 
16
21
  class SynologyDSMUpdateCoordinator(DataUpdateCoordinator[_DataT]):
17
22
  api: Incomplete
@@ -176,7 +176,7 @@ class _TrackPointUTCTime:
176
176
  expected_fire_timestamp: float
177
177
  _cancel_callback: asyncio.TimerHandle | None = ...
178
178
  def async_attach(self) -> None: ...
179
- def _run_action(self) -> None: ...
179
+ def __call__(self) -> None: ...
180
180
  def async_cancel(self) -> None: ...
181
181
  def __init__(self, hass, job, utc_point_in_time, expected_fire_timestamp, _cancel_callback) -> None: ...
182
182
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: homeassistant-stubs
3
- Version: 2024.5.0b7
3
+ Version: 2024.5.2
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.0b7)
19
+ Requires-Dist: homeassistant (==2024.5.2)
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
@@ -104,9 +104,9 @@ homeassistant-stubs/components/airthings/__init__.pyi,sha256=F0rHSL0IpzREBFAXJMO
104
104
  homeassistant-stubs/components/airthings/config_flow.pyi,sha256=3j4OziU43JcPMew2vkhQip-LWHX35jA8Zri7w4pjXPw,605
105
105
  homeassistant-stubs/components/airthings/const.pyi,sha256=_scgybjOSMHLDC-E799zvzPt_n9BCzpvRrYz6_-h3BA,29
106
106
  homeassistant-stubs/components/airthings/sensor.pyi,sha256=7xAIhThviFsmSh7cjmkiaNVGPB0sdzMC9CtuoDSboAk,2023
107
- homeassistant-stubs/components/airthings_ble/__init__.pyi,sha256=-VQnQOluSug3JfrajtMa7isxj6AwgHGvTlDKatEG8xI,918
107
+ homeassistant-stubs/components/airthings_ble/__init__.pyi,sha256=Sjf4iB_L0GAkDOLWgjovacF86LvgtU7Cy0gs6MUUxhE,974
108
108
  homeassistant-stubs/components/airthings_ble/config_flow.pyi,sha256=6GQg2cVBcm3kCCQibH6KNOP4YjRousW8SHHj_H-9yUQ,1512
109
- homeassistant-stubs/components/airthings_ble/const.pyi,sha256=myzvf8_EC7jK4HfTu2Evzn3xADj6WxTtR2M7_gR9Bg0,96
109
+ homeassistant-stubs/components/airthings_ble/const.pyi,sha256=N4w2-TIyhnwVisKbKNmSFUbLhBSSzf98l_xbQ8zLsaw,127
110
110
  homeassistant-stubs/components/airthings_ble/sensor.pyi,sha256=5bpsiuJSSmd6ifccdANTRhuOwbNn63kDKpoJBG9Thbs,2291
111
111
  homeassistant-stubs/components/airtouch5/__init__.pyi,sha256=j5wiq5BRTSjYGE2pRJArnQAhznjPhUlCJVOwicGe2jA,516
112
112
  homeassistant-stubs/components/airtouch5/climate.pyi,sha256=wzhlaa-wJyyZ_ppeitjJz3AdezArwWEpTFMlQSquxv4,4350
@@ -207,9 +207,9 @@ homeassistant-stubs/components/ambient_station/const.pyi,sha256=VV1sitWwnb5pVw0d
207
207
  homeassistant-stubs/components/ambient_station/diagnostics.pyi,sha256=PL58FZRgHNbojIwcInYVv8kNwAohkxtrTx543e3iB98,800
208
208
  homeassistant-stubs/components/ambient_station/entity.pyi,sha256=1hy0Kt05ABkgF01k6eJAK1z7Z0AJXMZFCuslXZdY94U,1126
209
209
  homeassistant-stubs/components/ambient_station/sensor.pyi,sha256=4fF16wtY1WQG1jwGF11RTAYBs4pNDMioqoG0oGbn2Lo,3495
210
- homeassistant-stubs/components/amcrest/__init__.pyi,sha256=aoP_V_Djh7gTKcrCnX2hzD5sZyg6dDiGFxPgCf1zSiQ,4547
210
+ homeassistant-stubs/components/amcrest/__init__.pyi,sha256=Co5wn6QS1PZb3MPJXEDu1qNwL-Kg_bSWLoKFiBCPBtM,4953
211
211
  homeassistant-stubs/components/amcrest/binary_sensor.pyi,sha256=Sy_Ek3XMj4Iy2HHRzt7aU2TFTi83oAs1LEOzTicjz3w,3263
212
- homeassistant-stubs/components/amcrest/camera.pyi,sha256=87yTA73hZzNGtgpFABur0eBuOgWs8RGhCFe5AmJERm4,6729
212
+ homeassistant-stubs/components/amcrest/camera.pyi,sha256=EVkQ2PJvDYBQRVy5hgeAd3wCprszJhJKxJF2vFehj3Y,6745
213
213
  homeassistant-stubs/components/amcrest/const.pyi,sha256=-ZlhgDrHLdi8DlwBNMJPX1I70NUVprzSuARf3wL9JvI,355
214
214
  homeassistant-stubs/components/amcrest/helpers.pyi,sha256=dtMC8Z7X6TztqTbM-Uptl61qiFU6pCWn82BpyftBEos,340
215
215
  homeassistant-stubs/components/amcrest/sensor.pyi,sha256=h8E37WhyPnCrthhr4hkUPXw4i1rEbiI_J9SIGjOoVg4,1804
@@ -1434,7 +1434,7 @@ homeassistant-stubs/components/knx/helpers/__init__.pyi,sha256=47DEQpj8HBSa-_TIm
1434
1434
  homeassistant-stubs/components/knx/helpers/keyring.pyi,sha256=oTrE8GVCNVbPdtEwfER_jEpK_WT9aNzMYJAsF5ko1iA,548
1435
1435
  homeassistant-stubs/components/knx/knx_entity.pyi,sha256=F73dDV76darf-8BpOdb-7PMKRNHQFS4rdea8MA_t0Q8,614
1436
1436
  homeassistant-stubs/components/knx/light.pyi,sha256=ZBOT_8BDzZR4GC4XMf5UGwIkMr-6MGBif6AwEz2FFXk,2352
1437
- homeassistant-stubs/components/knx/notify.pyi,sha256=yrZbf5vzA8KmCX42Q3gan7CevcgC-0bmO3_nVs1UuRI,2069
1437
+ homeassistant-stubs/components/knx/notify.pyi,sha256=yvMpBhILLyy1u3rZYDGlHYq-K9aLs4OB6fB6W9gXxA4,2069
1438
1438
  homeassistant-stubs/components/knx/number.pyi,sha256=6IjV1UviOXpBRO0mhzfo2yZCdykbJ4k43zduR0o6jQ0,1782
1439
1439
  homeassistant-stubs/components/knx/project.pyi,sha256=PnlUYSUm8UHDVGI_RPASdz6ygLtYHFEjBUwChv68jYo,1609
1440
1440
  homeassistant-stubs/components/knx/repairs.pyi,sha256=qHTjuOu0i00PbB3tiZDJKAGCGecC9zlZS3dxWCcpOos,483
@@ -1753,7 +1753,7 @@ homeassistant-stubs/components/mqtt/alarm_control_panel.pyi,sha256=GY_e5FcGWJkMu
1753
1753
  homeassistant-stubs/components/mqtt/binary_sensor.pyi,sha256=2KsKKklC8ZYrxBNnck6ptIt4LKV0dqaZuEiU8UBtZPs,3030
1754
1754
  homeassistant-stubs/components/mqtt/button.pyi,sha256=v0a_HI2SXDq9OrWYmGe_4QyHodedsvysMVCANer76uQ,1913
1755
1755
  homeassistant-stubs/components/mqtt/camera.pyi,sha256=ETti_q5ZP-98HP5oN9UF5tegTGjDzMsDdsitW20_OhA,2046
1756
- homeassistant-stubs/components/mqtt/client.pyi,sha256=qYXxmp-Sb9WE19vjHrPR7i7WtItUQBc3-yw045dQgIU,9240
1756
+ homeassistant-stubs/components/mqtt/client.pyi,sha256=rs58EZpDV5BxIOyZfwzPRd2j0ObpXLGhHZxK38QcxTg,9284
1757
1757
  homeassistant-stubs/components/mqtt/climate.pyi,sha256=44wn21ev_J1C8H_gy76oX-rUu_6jZKb9PVL95IqedM4,8593
1758
1758
  homeassistant-stubs/components/mqtt/config.pyi,sha256=ZzcogEgaXfMFwZIYMPiIpTSMnuMKx6Xsvv30vbB8iXw,721
1759
1759
  homeassistant-stubs/components/mqtt/config_flow.pyi,sha256=v2BB9K_j8XM3zrjjSI6gjlFG9H7YoyGgdv9cThbZcV4,5410
@@ -2158,7 +2158,7 @@ homeassistant-stubs/components/radarr/binary_sensor.pyi,sha256=9vUQMU8sUucw4kh-9
2158
2158
  homeassistant-stubs/components/radarr/calendar.pyi,sha256=Qjsx60HmOzKhJZtZ-L3OltcwqJ_tiJLYUiUKM3tOcKg,1221
2159
2159
  homeassistant-stubs/components/radarr/config_flow.pyi,sha256=U1mbc_ETXto72uOYpFpwJFutuP2pROZCBree2QwPD4Y,1132
2160
2160
  homeassistant-stubs/components/radarr/const.pyi,sha256=ENPs9dH0ZPK4EZ6oMqBY5LQrX6domwoL3JWk4zKSkRU,183
2161
- homeassistant-stubs/components/radarr/coordinator.pyi,sha256=u8lRh-TA_RKwKUM4bb6RE4a-i0ilgp0cDlKvYGdLhZU,2992
2161
+ homeassistant-stubs/components/radarr/coordinator.pyi,sha256=mTyERLDIEyCOrLyCaA1RAzXEqeZCAIXxcTq3ZLJrDj4,2994
2162
2162
  homeassistant-stubs/components/radarr/sensor.pyi,sha256=EnpYlHC-oHjOFW1-WNjQEtafYz-hkfuQQSx_jYS_opo,2661
2163
2163
  homeassistant-stubs/components/rainforest_raven/__init__.pyi,sha256=GvStmKyGSGimxitVo_PW8rO-Kf85G6e2RsevriNVLz4,511
2164
2164
  homeassistant-stubs/components/rainforest_raven/config_flow.pyi,sha256=MriKchKiYtCM9ZBygXME3U-36L8LxNx5P3Hsnv7q9DI,1258
@@ -2556,7 +2556,7 @@ homeassistant-stubs/components/starlink/sensor.pyi,sha256=gFTj15wUE1MLF-9Sk3xgx3
2556
2556
  homeassistant-stubs/components/starlink/switch.pyi,sha256=2znA7Z5twfN2t7NMJ_2a3_IpxgOxc7MfTpJFjAOVTp0,1758
2557
2557
  homeassistant-stubs/components/starlink/time.pyi,sha256=s1CYzOSmCc9h1ZZ0VPrGsQuMSsNcc3ciKNLoAY4AxQ8,1908
2558
2558
  homeassistant-stubs/components/statistics/__init__.pyi,sha256=rWT3SFRVo9UAulZ2cOIIZLDcsSvgXDgWjiGGp2jOpoY,121
2559
- homeassistant-stubs/components/statistics/sensor.pyi,sha256=lEleacZ6OgBx8-mH2Nffu2zuL8T7JcMUGCHjVoEDMy8,7259
2559
+ homeassistant-stubs/components/statistics/sensor.pyi,sha256=RVD9ohaxLcLAiIlANyfWoEqxBTqUKldc4CEZ1Evk31M,7615
2560
2560
  homeassistant-stubs/components/steamist/__init__.pyi,sha256=tpDBkH4pb0Nz3sBlfcjIGL9cvBdMxXkcAFdsRVy9ysE,1330
2561
2561
  homeassistant-stubs/components/steamist/config_flow.pyi,sha256=6e34HOgpOhcp2wHX09hT80TJJKKDj8wai8hJZSyCDE4,1931
2562
2562
  homeassistant-stubs/components/steamist/const.pyi,sha256=8EEG9DIm7aFoxTSCwGpYVUq4UeGZWN9HuVf109732hM,148
@@ -2645,10 +2645,10 @@ homeassistant-stubs/components/synology_dsm/__init__.pyi,sha256=XlJVjhakFALw0oyj
2645
2645
  homeassistant-stubs/components/synology_dsm/binary_sensor.pyi,sha256=tiM1FSNXyzyONIiwz08PF_6zMScsMxCwE5flJ0fd3N4,2586
2646
2646
  homeassistant-stubs/components/synology_dsm/button.pyi,sha256=38xJErknhrPolC21G3BeNMlACr0bo1QuPzfr2ZqYbBQ,1771
2647
2647
  homeassistant-stubs/components/synology_dsm/camera.pyi,sha256=PFf23IeY1fi4vG0hdGh7ss9nfladCp6AStJ-Q9HRDcI,2822
2648
- homeassistant-stubs/components/synology_dsm/common.pyi,sha256=X8WzS5KQ1AgFN97ktauBdINjUiCowSXm5wYTdjRm1_s,2311
2648
+ homeassistant-stubs/components/synology_dsm/common.pyi,sha256=u4KC1SBIFsgg1YFPKXmqRdmiCI9M9aP1DBvhtCwnIiY,2422
2649
2649
  homeassistant-stubs/components/synology_dsm/config_flow.pyi,sha256=0xtosOXK0ebKzuZgh7nvrO32sYmfua_mpkmXN7ekCoc,3851
2650
2650
  homeassistant-stubs/components/synology_dsm/const.pyi,sha256=PTkF-q4a4cngU8eu7iy-S9rvdGqHHk5baofRjghTIJM,745
2651
- homeassistant-stubs/components/synology_dsm/coordinator.pyi,sha256=ZqPeIV50NhCf2aPZZ4YHFZettodOaLPiXeMDcqlkudI,2065
2651
+ homeassistant-stubs/components/synology_dsm/coordinator.pyi,sha256=hktYWSodoyURzeBiCCtMlFJo8-kAw6h77TfOw5b1qEI,2392
2652
2652
  homeassistant-stubs/components/synology_dsm/diagnostics.pyi,sha256=_P_S524OdyHL7vbtrYbSH5klBTkRSBAI6gyqKfwDYGg,633
2653
2653
  homeassistant-stubs/components/synology_dsm/entity.pyi,sha256=R3LG8QrN-dp-qNxtJiwYSehG1DQLjNWhryhZaR6ATtM,2011
2654
2654
  homeassistant-stubs/components/synology_dsm/media_source.pyi,sha256=yGwaXxRISY1Yi-8C8cWQBGrrIdv-Idt8rxE4RvNjmas,1796
@@ -3225,7 +3225,7 @@ homeassistant-stubs/helpers/entity_platform.pyi,sha256=jxJ1c6nJXYuY8GckE3X6yoPOT
3225
3225
  homeassistant-stubs/helpers/entity_registry.pyi,sha256=dQ-TFzzwu8TVCTEO7dETOQkYn3zKEm24KPKmjb4WPK0,13937
3226
3226
  homeassistant-stubs/helpers/entity_values.pyi,sha256=ivHFA5Ay7dXCfomEdjcPFc54lX-_9kaD91MCs2BAnxg,455
3227
3227
  homeassistant-stubs/helpers/entityfilter.pyi,sha256=8pYuzKPfv8LEAILvtoWrjiLWF08gPR9yNpbexwsp1So,2008
3228
- homeassistant-stubs/helpers/event.pyi,sha256=vLIZJDboEaogcFShBTXYVml7juy2EcRYKSRQXF1ynts,16693
3228
+ homeassistant-stubs/helpers/event.pyi,sha256=yakIp43MfbOrPVmSUYfQFvcB0BD_Bh0C6QPg9gUJ6Fc,16690
3229
3229
  homeassistant-stubs/helpers/floor_registry.pyi,sha256=3kU9w4vvFNGR8Bu2MaRXSoKmUFdsOeGiI0e_5g1hObE,2688
3230
3230
  homeassistant-stubs/helpers/frame.pyi,sha256=KyzwUtH9DEEPXOshDt3nBd8cdd5EFBykNM0ecChqqUY,1706
3231
3231
  homeassistant-stubs/helpers/group.pyi,sha256=0Hs__xX08YdzO9KVd4w-Gs3l9f6x3ArtVXlygKl9x2k,482
@@ -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.0b7.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
3326
- homeassistant_stubs-2024.5.0b7.dist-info/METADATA,sha256=qRoR-HpEDFtwyF83puOJIYO5vNXDmNJzWSYDxqmcHi4,3015
3327
- homeassistant_stubs-2024.5.0b7.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
3328
- homeassistant_stubs-2024.5.0b7.dist-info/RECORD,,
3325
+ homeassistant_stubs-2024.5.2.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
3326
+ homeassistant_stubs-2024.5.2.dist-info/METADATA,sha256=2N8Hui9JhyHcvuBOMuwdMxNjrePWZNuAXXPcryzMm4s,3011
3327
+ homeassistant_stubs-2024.5.2.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
3328
+ homeassistant_stubs-2024.5.2.dist-info/RECORD,,