homeassistant-stubs 2024.12.2__py3-none-any.whl → 2024.12.4__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.
@@ -11,6 +11,7 @@ ALLOWED_FILE_PREFIXES: Incomplete
11
11
  def _check_import_call_allowed(mapped_args: dict[str, Any]) -> bool: ...
12
12
  def _check_file_allowed(mapped_args: dict[str, Any]) -> bool: ...
13
13
  def _check_sleep_call_allowed(mapped_args: dict[str, Any]) -> bool: ...
14
+ def _check_load_verify_locations_call_allowed(mapped_args: dict[str, Any]) -> bool: ...
14
15
 
15
16
  @dataclass(slots=True, frozen=True)
16
17
  class BlockingCall:
@@ -9,6 +9,7 @@ from collections.abc import AsyncGenerator, AsyncIterable, Callable
9
9
  from dataclasses import dataclass
10
10
  from enum import StrEnum
11
11
  from homeassistant.components import conversation as conversation, media_source as media_source, stt as stt, tts as tts, wake_word as wake_word, websocket_api as websocket_api
12
+ from homeassistant.const import MATCH_ALL as MATCH_ALL
12
13
  from homeassistant.core import Context as Context, HomeAssistant as HomeAssistant, callback as callback
13
14
  from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
14
15
  from homeassistant.helpers import intent as intent
@@ -15,8 +15,10 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEnti
15
15
  @dataclass(kw_only=True, frozen=True)
16
16
  class FlexitNumberEntityDescription(NumberEntityDescription):
17
17
  native_value_fn: Callable[[FlexitBACnet], float]
18
+ native_max_value_fn: Callable[[FlexitBACnet], int]
19
+ native_min_value_fn: Callable[[FlexitBACnet], int]
18
20
  set_native_value_fn: Callable[[FlexitBACnet], Callable[[int], Awaitable[None]]]
19
- 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=..., native_value_fn, set_native_value_fn) -> None: ...
21
+ 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=..., native_value_fn, native_max_value_fn, native_min_value_fn, set_native_value_fn) -> None: ...
20
22
 
21
23
  NUMBERS: tuple[FlexitNumberEntityDescription, ...]
22
24
 
@@ -28,4 +30,8 @@ class FlexitNumber(FlexitEntity, NumberEntity):
28
30
  def __init__(self, coordinator: FlexitCoordinator, entity_description: FlexitNumberEntityDescription) -> None: ...
29
31
  @property
30
32
  def native_value(self) -> float: ...
33
+ @property
34
+ def native_max_value(self) -> float: ...
35
+ @property
36
+ def native_min_value(self) -> float: ...
31
37
  async def async_set_native_value(self, value: float) -> None: ...
@@ -1,6 +1,6 @@
1
1
  from . import websocket_api as websocket_api
2
2
  from .const import DOMAIN as DOMAIN
3
- from .helpers import entities_may_have_state_changes_after as entities_may_have_state_changes_after, has_states_before as has_states_before
3
+ from .helpers import entities_may_have_state_changes_after as entities_may_have_state_changes_after, has_recorder_run_after as has_recorder_run_after
4
4
  from _typeshed import Incomplete
5
5
  from aiohttp import web
6
6
  from datetime import datetime as dt
@@ -1,7 +1,8 @@
1
1
  from collections.abc import Iterable
2
2
  from datetime import datetime as dt
3
3
  from homeassistant.components.recorder import get_instance as get_instance
4
+ from homeassistant.components.recorder.models import process_timestamp as process_timestamp
4
5
  from homeassistant.core import HomeAssistant as HomeAssistant
5
6
 
6
7
  def entities_may_have_state_changes_after(hass: HomeAssistant, entity_ids: Iterable, start_time: dt, no_attributes: bool) -> bool: ...
7
- def has_states_before(hass: HomeAssistant, run_time: dt) -> bool: ...
8
+ def has_recorder_run_after(hass: HomeAssistant, run_time: dt) -> bool: ...
@@ -1,6 +1,6 @@
1
1
  import asyncio
2
2
  from .const import EVENT_COALESCE_TIME as EVENT_COALESCE_TIME, MAX_PENDING_HISTORY_STATES as MAX_PENDING_HISTORY_STATES
3
- from .helpers import entities_may_have_state_changes_after as entities_may_have_state_changes_after, has_states_before as has_states_before
3
+ from .helpers import entities_may_have_state_changes_after as entities_may_have_state_changes_after, has_recorder_run_after as has_recorder_run_after
4
4
  from _typeshed import Incomplete
5
5
  from collections.abc import Callable as Callable, Iterable
6
6
  from dataclasses import dataclass
@@ -17,6 +17,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, asyn
17
17
 
18
18
  class HomeKitAlarmControlPanelEntity(HomeKitEntity, AlarmControlPanelEntity):
19
19
  _attr_supported_features: Incomplete
20
+ _attr_code_arm_required: bool
20
21
  def get_characteristic_types(self) -> list[str]: ...
21
22
  @property
22
23
  def alarm_state(self) -> AlarmControlPanelState: ...
@@ -1,6 +1,6 @@
1
- from ..db_schema import StateAttributes as StateAttributes, States as States
1
+ from ..db_schema import RecorderRuns as RecorderRuns, StateAttributes as StateAttributes, States as States
2
2
  from ..filters import Filters as Filters
3
- from ..models import process_timestamp_to_utc_isoformat as process_timestamp_to_utc_isoformat
3
+ from ..models import process_timestamp as process_timestamp, process_timestamp_to_utc_isoformat as process_timestamp_to_utc_isoformat
4
4
  from ..models.legacy import LegacyLazyState as LegacyLazyState, legacy_row_to_compressed_state as legacy_row_to_compressed_state
5
5
  from ..util import execute_stmt_lambda_element as execute_stmt_lambda_element, session_scope as session_scope
6
6
  from .const import LAST_CHANGED_KEY as LAST_CHANGED_KEY, NEED_ATTRIBUTE_DOMAINS as NEED_ATTRIBUTE_DOMAINS, SIGNIFICANT_DOMAINS as SIGNIFICANT_DOMAINS, SIGNIFICANT_DOMAINS_ENTITY_ID_LIKE as SIGNIFICANT_DOMAINS_ENTITY_ID_LIKE, STATE_KEY as STATE_KEY
@@ -42,7 +42,7 @@ def _state_changed_during_period_stmt(start_time: datetime, end_time: datetime |
42
42
  def state_changes_during_period(hass: HomeAssistant, start_time: datetime, end_time: datetime | None = None, entity_id: str | None = None, no_attributes: bool = False, descending: bool = False, limit: int | None = None, include_start_time_state: bool = True) -> dict[str, list[State]]: ...
43
43
  def _get_last_state_changes_stmt(number_of_states: int, entity_id: str) -> StatementLambdaElement: ...
44
44
  def get_last_state_changes(hass: HomeAssistant, number_of_states: int, entity_id: str) -> dict[str, list[State]]: ...
45
- def _get_states_for_entities_stmt(run_start_ts: float, utc_point_in_time: datetime, entity_ids: list[str], no_attributes: bool) -> StatementLambdaElement: ...
46
- def _get_rows_with_session(hass: HomeAssistant, session: Session, utc_point_in_time: datetime, entity_ids: list[str], *, no_attributes: bool = False) -> Iterable[Row]: ...
45
+ def _get_states_for_entities_stmt(run_start: datetime, utc_point_in_time: datetime, entity_ids: list[str], no_attributes: bool) -> StatementLambdaElement: ...
46
+ def _get_rows_with_session(hass: HomeAssistant, session: Session, utc_point_in_time: datetime, entity_ids: list[str], run: RecorderRuns | None = None, no_attributes: bool = False) -> Iterable[Row]: ...
47
47
  def _get_single_entity_states_stmt(utc_point_in_time: datetime, entity_id: str, no_attributes: bool = False) -> StatementLambdaElement: ...
48
48
  def _sorted_states_to_dict(hass: HomeAssistant, session: Session, states: Iterable[Row], start_time: datetime, entity_ids: list[str], include_start_time_state: bool = True, minimal_response: bool = False, no_attributes: bool = False, compressed_state_format: bool = False) -> dict[str, list[State | dict[str, Any]]]: ...
@@ -1,7 +1,7 @@
1
1
  from ..const import LAST_REPORTED_SCHEMA_VERSION as LAST_REPORTED_SCHEMA_VERSION
2
2
  from ..db_schema import SHARED_ATTR_OR_LEGACY_ATTRIBUTES as SHARED_ATTR_OR_LEGACY_ATTRIBUTES, StateAttributes as StateAttributes, States as States
3
3
  from ..filters import Filters as Filters
4
- from ..models import LazyState as LazyState, datetime_to_timestamp_or_none as datetime_to_timestamp_or_none, extract_metadata_ids as extract_metadata_ids, row_to_compressed_state as row_to_compressed_state
4
+ from ..models import LazyState as LazyState, datetime_to_timestamp_or_none as datetime_to_timestamp_or_none, extract_metadata_ids as extract_metadata_ids, process_timestamp as process_timestamp, row_to_compressed_state as row_to_compressed_state
5
5
  from ..util import execute_stmt_lambda_element as execute_stmt_lambda_element, session_scope as session_scope
6
6
  from .const import LAST_CHANGED_KEY as LAST_CHANGED_KEY, NEED_ATTRIBUTE_DOMAINS as NEED_ATTRIBUTE_DOMAINS, SIGNIFICANT_DOMAINS as SIGNIFICANT_DOMAINS, STATE_KEY as STATE_KEY
7
7
  from _typeshed import Incomplete
@@ -30,7 +30,7 @@ def _get_last_state_changes_single_stmt(metadata_id: int) -> Select: ...
30
30
  def _get_last_state_changes_multiple_stmt(number_of_states: int, metadata_id: int, include_last_reported: bool) -> Select: ...
31
31
  def get_last_state_changes(hass: HomeAssistant, number_of_states: int, entity_id: str) -> dict[str, list[State]]: ...
32
32
  def _get_start_time_state_for_entities_stmt(run_start_ts: float, epoch_time: float, metadata_ids: list[int], no_attributes: bool, include_last_changed: bool) -> Select: ...
33
- def _get_oldest_possible_ts(hass: HomeAssistant, utc_point_in_time: datetime) -> float | None: ...
33
+ def _get_run_start_ts_for_utc_point_in_time(hass: HomeAssistant, utc_point_in_time: datetime) -> float | None: ...
34
34
  def _get_start_time_state_stmt(run_start_ts: float, epoch_time: float, single_metadata_id: int | None, metadata_ids: list[int], no_attributes: bool, include_last_changed: bool) -> Select: ...
35
35
  def _get_single_entity_start_time_stmt(epoch_time: float, metadata_id: int, no_attributes: bool, include_last_changed: bool, include_last_reported: bool) -> Select: ...
36
36
  def _sorted_states_to_dict(states: Iterable[Row], start_time_ts: float | None, entity_ids: list[str], entity_id_to_metadata_id: dict[str, int | None], minimal_response: bool = False, compressed_state_format: bool = False, descending: bool = False, no_attributes: bool = False) -> dict[str, list[State | dict[str, Any]]]: ...
@@ -26,7 +26,6 @@ def delete_event_rows(event_ids: Iterable[int]) -> StatementLambdaElement: ...
26
26
  def delete_recorder_runs_rows(purge_before: datetime, current_run_id: int) -> StatementLambdaElement: ...
27
27
  def find_events_to_purge(purge_before: float, max_bind_vars: int) -> StatementLambdaElement: ...
28
28
  def find_states_to_purge(purge_before: float, max_bind_vars: int) -> StatementLambdaElement: ...
29
- def find_oldest_state() -> StatementLambdaElement: ...
30
29
  def find_short_term_statistics_to_purge(purge_before: datetime, max_bind_vars: int) -> StatementLambdaElement: ...
31
30
  def find_statistics_runs_to_purge(purge_before: datetime, max_bind_vars: int) -> StatementLambdaElement: ...
32
31
  def find_latest_statistics_runs_run_id() -> StatementLambdaElement: ...
@@ -1,17 +1,11 @@
1
1
  from ..db_schema import States as States
2
- from ..queries import find_oldest_state as find_oldest_state
3
- from ..util import execute_stmt_lambda_element as execute_stmt_lambda_element
4
2
  from _typeshed import Incomplete
5
- from sqlalchemy.orm.session import Session as Session
6
3
 
7
4
  class StatesManager:
8
5
  _pending: Incomplete
9
6
  _last_committed_id: Incomplete
10
7
  _last_reported: Incomplete
11
- _oldest_ts: Incomplete
12
8
  def __init__(self) -> None: ...
13
- @property
14
- def oldest_ts(self) -> float | None: ...
15
9
  def pop_pending(self, entity_id: str) -> States | None: ...
16
10
  def pop_committed(self, entity_id: str) -> int | None: ...
17
11
  def add_pending(self, entity_id: str, state: States) -> None: ...
@@ -19,6 +13,5 @@ class StatesManager:
19
13
  def get_pending_last_reported_timestamp(self) -> dict[int, float]: ...
20
14
  def post_commit_pending(self) -> None: ...
21
15
  def reset(self) -> None: ...
22
- def load_from_db(self, session: Session) -> None: ...
23
16
  def evict_purged_state_ids(self, purged_state_ids: set[int]) -> None: ...
24
17
  def evict_purged_entity_ids(self, purged_entity_ids: set[str]) -> None: ...
@@ -1,12 +1,13 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: homeassistant-stubs
3
- Version: 2024.12.2
3
+ Version: 2024.12.4
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
7
7
  Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
8
8
  Author-email: Ruslan Sayfutdinov <ruslan@sayfutdinov.com>
9
9
  License: MIT
10
+ License-File: LICENSE
10
11
  Keywords: homeassistant,pep484,typing
11
12
  Classifier: Development Status :: 5 - Production/Stable
12
13
  Classifier: Intended Audience :: Developers
@@ -17,7 +18,7 @@ Classifier: Topic :: Home Automation
17
18
  Classifier: Topic :: Software Development
18
19
  Classifier: Typing :: Typed
19
20
  Requires-Python: <3.14,>=3.12
20
- Requires-Dist: homeassistant==2024.12.2
21
+ Requires-Dist: homeassistant==2024.12.4
21
22
  Description-Content-Type: text/markdown
22
23
 
23
24
  [![CI](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml/badge.svg)](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
@@ -1,7 +1,7 @@
1
1
  homeassistant-stubs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  homeassistant-stubs/__main__.pyi,sha256=i5zPqWgqViKESzZLbFBJI-_G2Ehhd48maMZyTfmWq8k,455
3
3
  homeassistant-stubs/backup_restore.pyi,sha256=xBHyZ_y3wJ-kD_q5dIYrHvA8sDtyuvIhtjxOnBmki34,572
4
- homeassistant-stubs/block_async_io.pyi,sha256=mNk9ihGoyoMbmZ2M89yUe9u_L4f38JVvWO_D8OC7iEI,1106
4
+ homeassistant-stubs/block_async_io.pyi,sha256=ZnkhVZc7VYno_AfdbiVZjS-B-Ck2KzWqDjmE5lcXPg0,1194
5
5
  homeassistant-stubs/bootstrap.pyi,sha256=1MV3BF2h4aW_kkk4fEzDapw-afVneWCT4o8iBhN1cCw,4847
6
6
  homeassistant-stubs/config.pyi,sha256=JNEMpWGOkJJtFZLWcltjn581qHOZBa1gFVLvdRnJ89g,7020
7
7
  homeassistant-stubs/config_entries.pyi,sha256=E5wSKOkVxgK2IEpXV4Rs7pjNaVHc9Wd4JkX9VrT9tPc,22647
@@ -343,7 +343,7 @@ homeassistant-stubs/components/assist_pipeline/audio_enhancer.pyi,sha256=cMxcXkx
343
343
  homeassistant-stubs/components/assist_pipeline/const.pyi,sha256=xv0zUBiYG5YvIhFeeqHsOnFNnw6eJgoLqmUHwJNSZlI,432
344
344
  homeassistant-stubs/components/assist_pipeline/error.pyi,sha256=8PZnUHaKp95F74EGoO3POchwfWlji1__j3hsZw3J0ZY,758
345
345
  homeassistant-stubs/components/assist_pipeline/logbook.pyi,sha256=ei8z1A8SMImMAUV4yAQJvyt7D1XM_qal40W99LrP-To,566
346
- homeassistant-stubs/components/assist_pipeline/pipeline.pyi,sha256=--1MvmX_kqKovfQmXDFrqu2vT1YyNbKn_bOJHJVdD44,14087
346
+ homeassistant-stubs/components/assist_pipeline/pipeline.pyi,sha256=clEs3cBYfYuT9eSlhJHBO1sLB9-oHCSetdxU7NiC6vk,14142
347
347
  homeassistant-stubs/components/assist_pipeline/repair_flows.pyi,sha256=aOeJnI004cdt7Oz2YbozaJwXZDdFN7jcJTW1I70aUJw,551
348
348
  homeassistant-stubs/components/assist_pipeline/ring_buffer.pyi,sha256=1MPTjcDWoqLB9hXcK7EL1uZP4V3F-D7wklgvXj_DD7U,386
349
349
  homeassistant-stubs/components/assist_pipeline/select.pyi,sha256=IR0LTB954sCzzAV2XmqD10mNFfRPZtFUmOKH8vXqQGU,2055
@@ -1077,7 +1077,7 @@ homeassistant-stubs/components/flexit_bacnet/config_flow.pyi,sha256=YJg18LIBmO_f
1077
1077
  homeassistant-stubs/components/flexit_bacnet/const.pyi,sha256=HTBKN4lqQuGtfYkfbh_D8svFOXF6bhZSy8T9nxo_sek,318
1078
1078
  homeassistant-stubs/components/flexit_bacnet/coordinator.pyi,sha256=XCG9E6gOczrMDJmIKgkRtcXkUbv_SMWeQK9u95VZzdQ,789
1079
1079
  homeassistant-stubs/components/flexit_bacnet/entity.pyi,sha256=s2vkdIjiPr0TeDudV3qwNMlq_Ag-LvrtlvdC3LHQxFk,604
1080
- homeassistant-stubs/components/flexit_bacnet/number.pyi,sha256=b6K2PCp2f86bvHToL_2nos5mPAyXQWo2c87XogP80Tk,2142
1080
+ homeassistant-stubs/components/flexit_bacnet/number.pyi,sha256=CBwqWSwT-WoMHiwej2awFg91Qjo3-UnM4NCZfdUbNZs,2412
1081
1081
  homeassistant-stubs/components/flexit_bacnet/sensor.pyi,sha256=UATfeqGdMDHGGD9xW3C-AluMUm8cqngJSXLbcZe2_LE,2096
1082
1082
  homeassistant-stubs/components/flexit_bacnet/switch.pyi,sha256=QPHHmDEFGG183gefveg3CPRHY4w6e08BIXvkIDmT55A,2044
1083
1083
  homeassistant-stubs/components/flux_led/__init__.pyi,sha256=RJ2Ygc8t7abFtHRYusYbh-U-zN_w7ZWZtVjDAXhhvZs,2425
@@ -1306,10 +1306,10 @@ homeassistant-stubs/components/here_travel_time/const.pyi,sha256=oa4UlSMmBXUE8LK
1306
1306
  homeassistant-stubs/components/here_travel_time/coordinator.pyi,sha256=oeM-ElzWD6ngfQUTxx7UI6yvrVmz_abTgbQbxaS-Yrk,1907
1307
1307
  homeassistant-stubs/components/here_travel_time/model.pyi,sha256=QVkyWY1rRymtB-el9nYtkhi70TjiYD7rXwPUxCP2viM,878
1308
1308
  homeassistant-stubs/components/here_travel_time/sensor.pyi,sha256=7TaFx_EHsd3D9c9F7gMRcO_L8w-h-yUiztb2VCsd_90,2946
1309
- homeassistant-stubs/components/history/__init__.pyi,sha256=VXRt1eAK3SIeBW6WoaFb0eSOCpln_aToqmeUMA3rw9U,1613
1309
+ homeassistant-stubs/components/history/__init__.pyi,sha256=iiXVUSEL5rRaROcKP8PZ8L5rQ3YGz2_CQKpWlWASuEI,1623
1310
1310
  homeassistant-stubs/components/history/const.pyi,sha256=-PZ4FxcMPncwe3zKFvlt8lumPtorKkP5dViiDItRIww,71
1311
- homeassistant-stubs/components/history/helpers.pyi,sha256=uBJmqYNrHPmaLLSyrIEsADASFrnGT3xOwPbYX7nEtME,416
1312
- homeassistant-stubs/components/history/websocket_api.pyi,sha256=PSvw2n1opuJ4VEY73LfNY_MvteHplnqDecbPSrG9f1Q,4120
1311
+ homeassistant-stubs/components/history/helpers.pyi,sha256=yIlR3fPtFrPib45Av8llWRo1OC0uc82AF4T0KFOavmQ,513
1312
+ homeassistant-stubs/components/history/websocket_api.pyi,sha256=pUDZo6XDvLdJ7KQAy4FUkF1sezrw5qPVgoeTa55yEXk,4130
1313
1313
  homeassistant-stubs/components/history_stats/__init__.pyi,sha256=ub0dqSsk23WbVjQehZLEW3vTh_YYy_15BjEDjJBDmFc,1034
1314
1314
  homeassistant-stubs/components/history_stats/config_flow.pyi,sha256=O1npyFLkn_0-K3SdEOPz4nb4YTuRktc4roLg0xSoQj0,1561
1315
1315
  homeassistant-stubs/components/history_stats/const.pyi,sha256=JVFdRbNJsd9zd3av-vvMx_WXIQ1MM3Si9HEL1TSNcUU,306
@@ -1381,7 +1381,7 @@ homeassistant-stubs/components/homekit/type_thermostats.pyi,sha256=IvgnmVmszNrYb
1381
1381
  homeassistant-stubs/components/homekit/type_triggers.pyi,sha256=kwEdRdExeT4Q_1mI5MrQDemcpZrqERMzbZR5MbO2ZJo,1462
1382
1382
  homeassistant-stubs/components/homekit/util.pyi,sha256=uy_varYonjPDr3mvlCHRz5uIETzLz4GbYIjf4goaRz0,6208
1383
1383
  homeassistant-stubs/components/homekit_controller/__init__.pyi,sha256=1QXa2junRJKaFu7rhQFNHo6G6GocNTAAeQcMCoJSozY,1391
1384
- homeassistant-stubs/components/homekit_controller/alarm_control_panel.pyi,sha256=iCVYNCP9wVROhunWYEIACEi_ySYCLMRZSoGWZR8aq-s,1758
1384
+ homeassistant-stubs/components/homekit_controller/alarm_control_panel.pyi,sha256=eGSrGzaeeu-t0MeBjq4hgE4fb5lxhgnyGySe5kQPbX4,1792
1385
1385
  homeassistant-stubs/components/homekit_controller/button.pyi,sha256=TrTbn2Df1faRZwz5YW87lWWDw2leEzXq5RPVScE7xtM,2573
1386
1386
  homeassistant-stubs/components/homekit_controller/config_flow.pyi,sha256=6XiBjYaC1v-w5gjbfVvy8avtZsdB9RRJSGm7HeqIjp8,2819
1387
1387
  homeassistant-stubs/components/homekit_controller/const.pyi,sha256=TRur-k4wePNbH1Vak8FXUMRQA3Ia2hd8WamdRIm6dvM,462
@@ -2517,7 +2517,7 @@ homeassistant-stubs/components/recorder/filters.pyi,sha256=l8qnsQC0mhUcCJauqv6ID
2517
2517
  homeassistant-stubs/components/recorder/migration.pyi,sha256=P-unW782C6VMGDkNTAaOMf3AQAmNJtjhRLL0UgI814c,20079
2518
2518
  homeassistant-stubs/components/recorder/pool.pyi,sha256=NEBEP2CTRuAx3Nq2zXeOCfk7n4qVWVZ4hjzYgk-RxDE,1219
2519
2519
  homeassistant-stubs/components/recorder/purge.pyi,sha256=rFgTAV4Un0h6OP7FdKTOa6eiP_I-Owf6dXYC2bR2JZ4,5546
2520
- homeassistant-stubs/components/recorder/queries.pyi,sha256=XGI8HaTzGDZ6sCmIv96oeZKVDSIOpVdlPB8-StZZmpo,8735
2520
+ homeassistant-stubs/components/recorder/queries.pyi,sha256=kng2f2rd05JvKBA66aiAA9-f__iHq2XoAJgUXMWkV_E,8680
2521
2521
  homeassistant-stubs/components/recorder/repack.pyi,sha256=uT-A8NGsSHYz1fQo2pVBFVRzp0z0GhMiwN5Ydl4bUN4,247
2522
2522
  homeassistant-stubs/components/recorder/services.pyi,sha256=VULd5jf1yak05XG2PL4xrwHp5any94qRVhxdc14hdHI,1429
2523
2523
  homeassistant-stubs/components/recorder/statistics.pyi,sha256=EZjsioDctZUUO8VyhTTVK3IcNXlEaHloBqzRVb5WgEM,17777
@@ -2535,8 +2535,8 @@ homeassistant-stubs/components/recorder/auto_repairs/statistics/duplicates.pyi,s
2535
2535
  homeassistant-stubs/components/recorder/auto_repairs/statistics/schema.pyi,sha256=ZGHKXHbB7gs99L-dK6HZ9hZh7eBXF9_s_cfMliOvSmM,720
2536
2536
  homeassistant-stubs/components/recorder/history/__init__.pyi,sha256=Tibqdb5DGrgUDIZNSTvc2pUrGoi7243DD1cBQ45LxZI,2102
2537
2537
  homeassistant-stubs/components/recorder/history/const.pyi,sha256=QiVq0ILuLWh_v0c_ZAhhaJuS_a2B4yKXQHgy97r81rs,212
2538
- homeassistant-stubs/components/recorder/history/legacy.pyi,sha256=HPYv2HlTud1bEeMKXw7cxHR5TV6XMjSyfNcWt5dyurE,5065
2539
- homeassistant-stubs/components/recorder/history/modern.pyi,sha256=zOVEA73Qux23swh-I5gNZsQQwjO7g-wtIG9CADl2pG8,5216
2538
+ homeassistant-stubs/components/recorder/history/legacy.pyi,sha256=CfbiLHmVUAovJNrOltWYmAXFAO6AfPz61mbxl_UxGHY,5165
2539
+ homeassistant-stubs/components/recorder/history/modern.pyi,sha256=7bOl-QrGsOJJlZaGwoTACoM8nFFS5VojTjeegsZlUCo,5272
2540
2540
  homeassistant-stubs/components/recorder/models/__init__.pyi,sha256=CUFfhF4KMdIayXSUuLXww7U40t5DBCUaf1Nr_2Lvfmw,1790
2541
2541
  homeassistant-stubs/components/recorder/models/context.pyi,sha256=ozPnonl9i-pXBokFkAq5QTEtsxj8Yfb7M2M444kyFRI,394
2542
2542
  homeassistant-stubs/components/recorder/models/database.pyi,sha256=59cqL8iEiBTQrF-n762RORfm9Q_xaJ8OW_7PbARe3WY,554
@@ -2555,7 +2555,7 @@ homeassistant-stubs/components/recorder/table_managers/event_data.pyi,sha256=shj
2555
2555
  homeassistant-stubs/components/recorder/table_managers/event_types.pyi,sha256=zUohyVAYXmy3GgUt_gWRCCo8AFxsr4s4rPsd1olbqU8,1491
2556
2556
  homeassistant-stubs/components/recorder/table_managers/recorder_runs.pyi,sha256=DruGzLyPcgG_7Y9-aCbWGsVzUgb5-8XguyyeHZsOoGY,1252
2557
2557
  homeassistant-stubs/components/recorder/table_managers/state_attributes.pyi,sha256=R018ZzYVpOwp3cyBVY4GYrLnrUWyjdaDmiLsqHPwyPQ,1550
2558
- homeassistant-stubs/components/recorder/table_managers/states.pyi,sha256=Hs6fEoEXH35vw-CiPcEIGioUi9XVKftsbikAg50K9Fc,1173
2558
+ homeassistant-stubs/components/recorder/table_managers/states.pyi,sha256=CtMsPngDOfD9r8Kr1VMnzhu2p7PHkRevzE28KIgCOUo,836
2559
2559
  homeassistant-stubs/components/recorder/table_managers/states_meta.pyi,sha256=eoAC195GdOyZIM3-RHGVrWMhVR_1oCqjNFpWFCm6OYY,1463
2560
2560
  homeassistant-stubs/components/recorder/table_managers/statistics_meta.pyi,sha256=9mLK8SvSaK_-kV75Ook95OV1PkhwKZWM3T6HHE6tgMY,2756
2561
2561
  homeassistant-stubs/components/remote/__init__.pyi,sha256=thGGFvHCAgR0O4EI8lISnmbINJCze2czah6B5Sismp8,4095
@@ -3788,7 +3788,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
3788
3788
  homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
3789
3789
  homeassistant-stubs/util/yaml/loader.pyi,sha256=FpRpxb-ZvfthDdO6Js0JqWtzlQfKDPP7nY5yOXp3604,3917
3790
3790
  homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
3791
- homeassistant_stubs-2024.12.2.dist-info/METADATA,sha256=UytPVq0LCEXkfdRa8wgNqnNzjLHA0a_Ydo3M4AHvISU,2932
3792
- homeassistant_stubs-2024.12.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
3793
- homeassistant_stubs-2024.12.2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
3794
- homeassistant_stubs-2024.12.2.dist-info/RECORD,,
3791
+ homeassistant_stubs-2024.12.4.dist-info/METADATA,sha256=rX9T9jr2dX7OD_Dtw__FJmDS_9BaIQ_dN-bWtGn4TBg,2954
3792
+ homeassistant_stubs-2024.12.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
3793
+ homeassistant_stubs-2024.12.4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
3794
+ homeassistant_stubs-2024.12.4.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.26.3
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any