homeassistant-stubs 2024.3.0b8__py3-none-any.whl → 2024.3.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.
- homeassistant-stubs/components/airthings_ble/sensor.pyi +1 -1
- homeassistant-stubs/components/calendar/__init__.pyi +1 -0
- homeassistant-stubs/components/camera/media_source.pyi +2 -1
- homeassistant-stubs/components/ipp/diagnostics.pyi +7 -0
- homeassistant-stubs/components/local_todo/todo.pyi +2 -0
- homeassistant-stubs/components/mjpeg/camera.pyi +2 -2
- homeassistant-stubs/components/onewire/binary_sensor.pyi +1 -1
- homeassistant-stubs/components/onewire/switch.pyi +1 -1
- homeassistant-stubs/components/rainforest_raven/coordinator.pyi +2 -0
- homeassistant-stubs/components/recorder/entity_registry.pyi +1 -1
- homeassistant-stubs/components/recorder/statistics.pyi +1 -2
- homeassistant-stubs/components/recorder/util.pyi +1 -0
- homeassistant-stubs/components/unifiprotect/data.pyi +0 -1
- {homeassistant_stubs-2024.3.0b8.dist-info → homeassistant_stubs-2024.3.2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.3.0b8.dist-info → homeassistant_stubs-2024.3.2.dist-info}/RECORD +17 -16
- {homeassistant_stubs-2024.3.0b8.dist-info → homeassistant_stubs-2024.3.2.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.3.0b8.dist-info → homeassistant_stubs-2024.3.2.dist-info}/WHEEL +0 -0
@@ -3,7 +3,7 @@ from _typeshed import Incomplete
|
|
3
3
|
from airthings_ble import AirthingsDevice
|
4
4
|
from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription, SensorStateClass as SensorStateClass
|
5
5
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
6
|
-
from homeassistant.const import CONCENTRATION_PARTS_PER_BILLION as CONCENTRATION_PARTS_PER_BILLION, CONCENTRATION_PARTS_PER_MILLION as CONCENTRATION_PARTS_PER_MILLION, EntityCategory as EntityCategory,
|
6
|
+
from homeassistant.const import CONCENTRATION_PARTS_PER_BILLION as CONCENTRATION_PARTS_PER_BILLION, CONCENTRATION_PARTS_PER_MILLION as CONCENTRATION_PARTS_PER_MILLION, EntityCategory as EntityCategory, PERCENTAGE as PERCENTAGE, Platform as Platform, UnitOfPressure as UnitOfPressure, UnitOfTemperature as UnitOfTemperature
|
7
7
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
8
8
|
from homeassistant.helpers.device_registry import CONNECTION_BLUETOOTH as CONNECTION_BLUETOOTH, DeviceInfo as DeviceInfo
|
9
9
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
@@ -35,6 +35,7 @@ def _as_local_timezone(*keys: Any) -> Callable[[dict[str, Any]], dict[str, Any]]
|
|
35
35
|
def _has_min_duration(start_key: str, end_key: str, min_duration: datetime.timedelta) -> Callable[[dict[str, Any]], dict[str, Any]]: ...
|
36
36
|
def _has_same_type(*keys: Any) -> Callable[[dict[str, Any]], dict[str, Any]]: ...
|
37
37
|
def _validate_rrule(value: Any) -> str: ...
|
38
|
+
def _empty_as_none(value: str | None) -> str | None: ...
|
38
39
|
|
39
40
|
CREATE_EVENT_SERVICE: str
|
40
41
|
CREATE_EVENT_SCHEMA: Incomplete
|
@@ -5,12 +5,13 @@ from homeassistant.components.media_player import BrowseError as BrowseError, Me
|
|
5
5
|
from homeassistant.components.media_source.error import Unresolvable as Unresolvable
|
6
6
|
from homeassistant.components.media_source.models import BrowseMediaSource as BrowseMediaSource, MediaSource as MediaSource, MediaSourceItem as MediaSourceItem, PlayMedia as PlayMedia
|
7
7
|
from homeassistant.components.stream import FORMAT_CONTENT_TYPE as FORMAT_CONTENT_TYPE, HLS_PROVIDER as HLS_PROVIDER
|
8
|
+
from homeassistant.const import ATTR_FRIENDLY_NAME as ATTR_FRIENDLY_NAME
|
8
9
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
9
10
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
10
11
|
from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
|
11
12
|
|
12
13
|
async def async_get_media_source(hass: HomeAssistant) -> CameraMediaSource: ...
|
13
|
-
def _media_source_for_camera(camera: Camera, content_type: str) -> BrowseMediaSource: ...
|
14
|
+
def _media_source_for_camera(hass: HomeAssistant, camera: Camera, content_type: str) -> BrowseMediaSource: ...
|
14
15
|
|
15
16
|
class CameraMediaSource(MediaSource):
|
16
17
|
name: str
|
@@ -0,0 +1,7 @@
|
|
1
|
+
from .const import DOMAIN as DOMAIN
|
2
|
+
from .coordinator import IPPDataUpdateCoordinator as IPPDataUpdateCoordinator
|
3
|
+
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
4
|
+
from homeassistant.core import HomeAssistant as HomeAssistant
|
5
|
+
from typing import Any
|
6
|
+
|
7
|
+
async def async_get_config_entry_diagnostics(hass: HomeAssistant, config_entry: ConfigEntry) -> dict[str, Any]: ...
|
@@ -7,6 +7,7 @@ from homeassistant.core import HomeAssistant as HomeAssistant
|
|
7
7
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
8
8
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
9
9
|
from ical.calendar import Calendar as Calendar
|
10
|
+
from ical.store import TodoStore
|
10
11
|
from ical.todo import Todo
|
11
12
|
|
12
13
|
_LOGGER: Incomplete
|
@@ -28,6 +29,7 @@ class LocalTodoListEntity(TodoListEntity):
|
|
28
29
|
_attr_name: Incomplete
|
29
30
|
_attr_unique_id: Incomplete
|
30
31
|
def __init__(self, store: LocalTodoListStore, calendar: Calendar, name: str, unique_id: str) -> None: ...
|
32
|
+
def _new_todo_store(self) -> TodoStore: ...
|
31
33
|
_attr_todo_items: Incomplete
|
32
34
|
async def async_update(self) -> None: ...
|
33
35
|
async def async_create_todo_item(self, item: TodoItem) -> None: ...
|
@@ -32,7 +32,7 @@ class MjpegCamera(Camera):
|
|
32
32
|
def __init__(self, *, name: str | None = None, mjpeg_url: str, still_image_url: str | None, authentication: str | None = None, username: str | None = None, password: str = '', verify_ssl: bool = True, unique_id: str | None = None, device_info: DeviceInfo | None = None) -> None: ...
|
33
33
|
async def stream_source(self) -> str: ...
|
34
34
|
async def async_camera_image(self, width: int | None = None, height: int | None = None) -> bytes | None: ...
|
35
|
-
def
|
36
|
-
async def
|
35
|
+
def _get_httpx_auth(self) -> httpx.Auth: ...
|
36
|
+
async def _async_digest_or_fallback_camera_image(self) -> bytes | None: ...
|
37
37
|
async def _handle_async_mjpeg_digest_stream(self, request: web.Request) -> web.StreamResponse | None: ...
|
38
38
|
async def handle_async_mjpeg_stream(self, request: web.Request) -> web.StreamResponse | None: ...
|
@@ -22,4 +22,4 @@ def get_entities(onewire_hub: OneWireHub) -> list[OneWireBinarySensor]: ...
|
|
22
22
|
class OneWireBinarySensor(OneWireEntity, BinarySensorEntity):
|
23
23
|
entity_description: OneWireBinarySensorEntityDescription
|
24
24
|
@property
|
25
|
-
def is_on(self) -> bool: ...
|
25
|
+
def is_on(self) -> bool | None: ...
|
@@ -23,6 +23,6 @@ def get_entities(onewire_hub: OneWireHub) -> list[OneWireSwitch]: ...
|
|
23
23
|
class OneWireSwitch(OneWireEntity, SwitchEntity):
|
24
24
|
entity_description: OneWireSwitchEntityDescription
|
25
25
|
@property
|
26
|
-
def is_on(self) -> bool: ...
|
26
|
+
def is_on(self) -> bool | None: ...
|
27
27
|
def turn_on(self, **kwargs: Any) -> None: ...
|
28
28
|
def turn_off(self, **kwargs: Any) -> None: ...
|
@@ -33,5 +33,7 @@ class RAVEnDataCoordinator(DataUpdateCoordinator):
|
|
33
33
|
def device_name(self) -> str: ...
|
34
34
|
@property
|
35
35
|
def device_info(self) -> DeviceInfo | None: ...
|
36
|
+
async def async_shutdown(self) -> None: ...
|
36
37
|
async def _async_update_data(self) -> dict[str, Any]: ...
|
38
|
+
async def _cleanup_device(self) -> None: ...
|
37
39
|
async def _get_device(self) -> RAVEnSerialDevice: ...
|
@@ -1,5 +1,5 @@
|
|
1
1
|
from .core import Recorder as Recorder
|
2
|
-
from .util import get_instance as get_instance, session_scope as session_scope
|
2
|
+
from .util import filter_unique_constraint_integrity_error as filter_unique_constraint_integrity_error, get_instance as get_instance, session_scope as session_scope
|
3
3
|
from _typeshed import Incomplete
|
4
4
|
from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, callback as callback
|
5
5
|
from homeassistant.helpers.start import async_at_start as async_at_start
|
@@ -3,7 +3,7 @@ from . import Recorder as Recorder
|
|
3
3
|
from .const import DOMAIN as DOMAIN, EVENT_RECORDER_5MIN_STATISTICS_GENERATED as EVENT_RECORDER_5MIN_STATISTICS_GENERATED, EVENT_RECORDER_HOURLY_STATISTICS_GENERATED as EVENT_RECORDER_HOURLY_STATISTICS_GENERATED, INTEGRATION_PLATFORM_COMPILE_STATISTICS as INTEGRATION_PLATFORM_COMPILE_STATISTICS, INTEGRATION_PLATFORM_LIST_STATISTIC_IDS as INTEGRATION_PLATFORM_LIST_STATISTIC_IDS, INTEGRATION_PLATFORM_VALIDATE_STATISTICS as INTEGRATION_PLATFORM_VALIDATE_STATISTICS, SupportedDialect as SupportedDialect
|
4
4
|
from .db_schema import STATISTICS_TABLES as STATISTICS_TABLES, Statistics as Statistics, StatisticsBase as StatisticsBase, StatisticsRuns as StatisticsRuns, StatisticsShortTerm as StatisticsShortTerm
|
5
5
|
from .models import StatisticData as StatisticData, StatisticDataTimestamp as StatisticDataTimestamp, StatisticMetaData as StatisticMetaData, StatisticResult as StatisticResult, datetime_to_timestamp_or_none as datetime_to_timestamp_or_none, process_timestamp as process_timestamp
|
6
|
-
from .util import execute as execute, execute_stmt_lambda_element as execute_stmt_lambda_element, get_instance as get_instance, retryable_database_job as retryable_database_job, session_scope as session_scope
|
6
|
+
from .util import execute as execute, execute_stmt_lambda_element as execute_stmt_lambda_element, filter_unique_constraint_integrity_error as filter_unique_constraint_integrity_error, get_instance as get_instance, retryable_database_job as retryable_database_job, session_scope as session_scope
|
7
7
|
from _typeshed import Incomplete
|
8
8
|
from collections.abc import Callable as Callable, Iterable, Sequence
|
9
9
|
from datetime import datetime, timedelta
|
@@ -138,7 +138,6 @@ def _statistics_exists(session: Session, table: type[StatisticsBase], metadata_i
|
|
138
138
|
def _async_import_statistics(hass: HomeAssistant, metadata: StatisticMetaData, statistics: Iterable[StatisticData]) -> None: ...
|
139
139
|
def async_import_statistics(hass: HomeAssistant, metadata: StatisticMetaData, statistics: Iterable[StatisticData]) -> None: ...
|
140
140
|
def async_add_external_statistics(hass: HomeAssistant, metadata: StatisticMetaData, statistics: Iterable[StatisticData]) -> None: ...
|
141
|
-
def _filter_unique_constraint_integrity_error(instance: Recorder) -> Callable[[Exception], bool]: ...
|
142
141
|
def _import_statistics_with_session(instance: Recorder, session: Session, metadata: StatisticMetaData, statistics: Iterable[StatisticData], table: type[StatisticsBase]) -> bool: ...
|
143
142
|
def get_short_term_statistics_run_cache(hass: HomeAssistant) -> ShortTermStatisticsRunCache: ...
|
144
143
|
def cache_latest_short_term_statistic_id_for_metadata_id(run_cache: ShortTermStatisticsRunCache, session: Session, metadata_id: int) -> int | None: ...
|
@@ -93,3 +93,4 @@ def take(take_num: int, iterable: Iterable) -> list[Any]: ...
|
|
93
93
|
def chunked(iterable: Iterable, chunked_num: int) -> Iterable[Any]: ...
|
94
94
|
def chunked_or_all(iterable: Collection[Any], chunked_num: int) -> Iterable[Any]: ...
|
95
95
|
def get_index_by_name(session: Session, table_name: str, index_name: str) -> str | None: ...
|
96
|
+
def filter_unique_constraint_integrity_error(instance: Recorder, row_type: str) -> Callable[[Exception], bool]: ...
|
{homeassistant_stubs-2024.3.0b8.dist-info → homeassistant_stubs-2024.3.2.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.3.
|
3
|
+
Version: 2024.3.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
|
@@ -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 (==2024.3.
|
20
|
+
Requires-Dist: homeassistant (==2024.3.2)
|
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
|
@@ -105,7 +105,7 @@ homeassistant-stubs/components/airthings/sensor.pyi,sha256=u1sZgEs_o2KY0UB83upuQ
|
|
105
105
|
homeassistant-stubs/components/airthings_ble/__init__.pyi,sha256=-VQnQOluSug3JfrajtMa7isxj6AwgHGvTlDKatEG8xI,918
|
106
106
|
homeassistant-stubs/components/airthings_ble/config_flow.pyi,sha256=2RP44XVI4nfSGaMDBXlUaJaatFCNk6BgTmPUa6cZ70w,1523
|
107
107
|
homeassistant-stubs/components/airthings_ble/const.pyi,sha256=myzvf8_EC7jK4HfTu2Evzn3xADj6WxTtR2M7_gR9Bg0,96
|
108
|
-
homeassistant-stubs/components/airthings_ble/sensor.pyi,sha256=
|
108
|
+
homeassistant-stubs/components/airthings_ble/sensor.pyi,sha256=5bpsiuJSSmd6ifccdANTRhuOwbNn63kDKpoJBG9Thbs,2291
|
109
109
|
homeassistant-stubs/components/airtouch5/__init__.pyi,sha256=j5wiq5BRTSjYGE2pRJArnQAhznjPhUlCJVOwicGe2jA,516
|
110
110
|
homeassistant-stubs/components/airtouch5/climate.pyi,sha256=wzhlaa-wJyyZ_ppeitjJz3AdezArwWEpTFMlQSquxv4,4350
|
111
111
|
homeassistant-stubs/components/airtouch5/config_flow.pyi,sha256=UbmgfAUYQzCOwIAx_SXr_NbbE3HgUyIWyEBGmJIlooU,503
|
@@ -469,14 +469,14 @@ homeassistant-stubs/components/button/__init__.pyi,sha256=54LH6Eec_57Crql3QZQjyv
|
|
469
469
|
homeassistant-stubs/components/button/const.pyi,sha256=LRNZ2Epck8UjrpaKeoTUYJQMaBRd5JevVjtLKTBC62Q,31
|
470
470
|
homeassistant-stubs/components/button/device_action.pyi,sha256=KF3s5UTCq9Wb_qsMLwUJQFLIsi_2Ju2ZHDaYlS1v-QA,983
|
471
471
|
homeassistant-stubs/components/button/device_trigger.pyi,sha256=VAUodVs-6EBVLz2ZuUPogWlAE1gfTTViaDC3M5P6FxI,931
|
472
|
-
homeassistant-stubs/components/calendar/__init__.pyi,sha256=
|
472
|
+
homeassistant-stubs/components/calendar/__init__.pyi,sha256=0BpbylaZo97TTgugR5yjGbQU4fWAwu3fX1RhWeeweb4,7353
|
473
473
|
homeassistant-stubs/components/calendar/const.pyi,sha256=eUpEeyhgKQ8zo6Foevt2nc1nI1JYBt1muOsn3NT2jqY,602
|
474
474
|
homeassistant-stubs/components/calendar/trigger.pyi,sha256=_r_2uA5M-EM0ykpjViz_kLnpHY-HNt0supCIwEeNfhs,3092
|
475
475
|
homeassistant-stubs/components/camera/__init__.pyi,sha256=gv6umkVzERq11ECwN11_eleTr2JXmjxk4F1eq8exNR8,10748
|
476
476
|
homeassistant-stubs/components/camera/const.pyi,sha256=WavezA5-2u3RQF1nBe_dsh-RD9rh7Z-m4tumZp4jl00,872
|
477
477
|
homeassistant-stubs/components/camera/diagnostics.pyi,sha256=SHd1UzkG59ul4OqMgd8tXdr52UqJQCSsHnGKDthfIII,455
|
478
478
|
homeassistant-stubs/components/camera/img_util.pyi,sha256=rEWvDRbmNe8sYRCzqs9mGcg1ck58eKPAA6XhE-cDKq4,621
|
479
|
-
homeassistant-stubs/components/camera/media_source.pyi,sha256=
|
479
|
+
homeassistant-stubs/components/camera/media_source.pyi,sha256=Xc8PZKYxdio-VeJFpZQA5bcQeBZMNkgnghaIpXn_1rU,1464
|
480
480
|
homeassistant-stubs/components/camera/prefs.pyi,sha256=NnrJDwce4xjPNKWt2bGVTzc5OaItuIyM0m3liyj4ECA,1369
|
481
481
|
homeassistant-stubs/components/camera/significant_change.pyi,sha256=jAQqTYLLfClGsTlFv9chopqShJ6bZQJqS7Fy84yRZ8c,265
|
482
482
|
homeassistant-stubs/components/canary/__init__.pyi,sha256=q-8u1Fbh-Qvx_iJO3Ql6nLg9OXc6jmftc72Apfdc3B4,1420
|
@@ -1300,6 +1300,7 @@ homeassistant-stubs/components/ipp/__init__.pyi,sha256=ag_p07na_8g137f9C25B-VzId
|
|
1300
1300
|
homeassistant-stubs/components/ipp/config_flow.pyi,sha256=HG9A8PHtJlLLIQR9eEz8DyZ2ye2D5hKz4wfG5oWXswg,1420
|
1301
1301
|
homeassistant-stubs/components/ipp/const.pyi,sha256=LlEbhXfZ-LVW1n-Ijy-TF-tt003z0ut3h5XDZ1y_0tk,265
|
1302
1302
|
homeassistant-stubs/components/ipp/coordinator.pyi,sha256=powBqbih3EdC4LV6VZ99_yARNpsvWYJAkmgmcVz04ic,763
|
1303
|
+
homeassistant-stubs/components/ipp/diagnostics.pyi,sha256=yEchUi9wa01b4cliVKJBYMRge4hTxUaqcoIxnxJ7a1I,384
|
1303
1304
|
homeassistant-stubs/components/ipp/entity.pyi,sha256=j-QLWzpRi4xzpU5oHj7ZVx6RD7USE8jAvANiffVwN5M,697
|
1304
1305
|
homeassistant-stubs/components/ipp/sensor.pyi,sha256=YSbB38WRj3U-x8yGcqIQ01_adEcxTL-olz0-ZKhvdMY,2829
|
1305
1306
|
homeassistant-stubs/components/iqvia/__init__.pyi,sha256=MYyMdtvKe7xORQ7Jdam7O8VZZ8Zp9TfCBEDYmfgbXko,1896
|
@@ -1532,7 +1533,7 @@ homeassistant-stubs/components/local_todo/__init__.pyi,sha256=PukXk2AemMUIRrLFro
|
|
1532
1533
|
homeassistant-stubs/components/local_todo/config_flow.pyi,sha256=yNxML4CpjS30zMy3lq2-zvwP779L_N8bCQQZySqRqD0,580
|
1533
1534
|
homeassistant-stubs/components/local_todo/const.pyi,sha256=c2LoyxXuf6BLf9ubXFHtMFuw9n1J6KqBKKt94ljvIKY,59
|
1534
1535
|
homeassistant-stubs/components/local_todo/store.pyi,sha256=Bi0t0Wj3r2G5jwC961QbcAsE2XfOzzy9G8PhtfD0O4Y,472
|
1535
|
-
homeassistant-stubs/components/local_todo/todo.pyi,sha256=
|
1536
|
+
homeassistant-stubs/components/local_todo/todo.pyi,sha256=Rh1l-dw1yBUxWPcqTmGZ2jssuMKEmfmn1xEvBfPWUNw,1974
|
1536
1537
|
homeassistant-stubs/components/lock/__init__.pyi,sha256=U8j8xFjb1uq0qNLifJYM3k2Bp68C4PaMlJqWEzk2q-c,4411
|
1537
1538
|
homeassistant-stubs/components/lock/device_action.pyi,sha256=nds_dhqIaIWbZYwuXFxUZbmF4fGylpwTfxWsywPdADg,1170
|
1538
1539
|
homeassistant-stubs/components/lock/device_condition.pyi,sha256=MPxXYyUG20b1IgTofWjVWjItggZ7jTR51B9Jb2ZpqoA,1071
|
@@ -1652,7 +1653,7 @@ homeassistant-stubs/components/minecraft_server/diagnostics.pyi,sha256=rgTmJyrEH
|
|
1652
1653
|
homeassistant-stubs/components/minecraft_server/entity.pyi,sha256=4gYBhmyKiBu_OFc3_Z1XCt3icbjN7TtT1TDYVHQkIks,767
|
1653
1654
|
homeassistant-stubs/components/minecraft_server/sensor.pyi,sha256=G90vrCXUeogYUlZMKZ_Il-t7WGhbI2KbErdNUUOFVTc,3111
|
1654
1655
|
homeassistant-stubs/components/mjpeg/__init__.pyi,sha256=5aTzT-B-TRb13oFwkQALRSRgwoi0v6cEHhhImAgoWCA,307
|
1655
|
-
homeassistant-stubs/components/mjpeg/camera.pyi,sha256=
|
1656
|
+
homeassistant-stubs/components/mjpeg/camera.pyi,sha256=2lQg_1hFC3YYJQpzkHCVp5KzAworBwbLasbrGCXX8qw,2479
|
1656
1657
|
homeassistant-stubs/components/mjpeg/config_flow.pyi,sha256=r_vvvnuPrg9XFHJ3nyIKLpFxjiRaSo3rV6hgzxhD5jY,1823
|
1657
1658
|
homeassistant-stubs/components/mjpeg/const.pyi,sha256=YvpMQFpeOnsOkWtwbb5r9jKhMu6BzBNCN6WHFbGsxeY,239
|
1658
1659
|
homeassistant-stubs/components/mjpeg/util.pyi,sha256=LksjepjHAYEkGQWJh-ln4oI6oVuGr5owU0HhvRtuOsg,163
|
@@ -1891,7 +1892,7 @@ homeassistant-stubs/components/oncue/const.pyi,sha256=4EdfjkoGOjFyxQQnpGXMvvi-E5
|
|
1891
1892
|
homeassistant-stubs/components/oncue/entity.pyi,sha256=TZJvQio7AWzk_dLywz3eSiHJJJQsMeVOqjA69LfZ5xc,1181
|
1892
1893
|
homeassistant-stubs/components/oncue/sensor.pyi,sha256=QdGyMVULjLn6ao9lMp2AzSoJEJGcnAbB9nVaKmfxOaw,1655
|
1893
1894
|
homeassistant-stubs/components/onewire/__init__.pyi,sha256=yHdcedc4Va2Sp7gkpEdAXZZKb-_G5cFblU8iN6GDVIU,856
|
1894
|
-
homeassistant-stubs/components/onewire/binary_sensor.pyi,sha256=
|
1895
|
+
homeassistant-stubs/components/onewire/binary_sensor.pyi,sha256=2g4aMKRNG_qncRyE1zYqKpJfzNBLRqKhpGoKv5vU83w,1912
|
1895
1896
|
homeassistant-stubs/components/onewire/config_flow.pyi,sha256=RHAQd3pwMmo_Hva_6pJeAirgE-jHZXXvkrNNB86UXH8,2323
|
1896
1897
|
homeassistant-stubs/components/onewire/const.pyi,sha256=hRqntP8bAGykIWMTg_Fobo5hJ-yvGD0yfisqRQVJPLM,612
|
1897
1898
|
homeassistant-stubs/components/onewire/diagnostics.pyi,sha256=3cPlx3eq1XwW3ABCmanqg4eibuN4ugMcJcRbML7Im30,547
|
@@ -1899,7 +1900,7 @@ homeassistant-stubs/components/onewire/model.pyi,sha256=aLty-ZqUndAsH-Yw4H8e-kPP
|
|
1899
1900
|
homeassistant-stubs/components/onewire/onewire_entities.pyi,sha256=j3KGk1s569RbQgMv9hcdsEmYK2uZ-_h15xlruHJqngs,1507
|
1900
1901
|
homeassistant-stubs/components/onewire/onewirehub.pyi,sha256=6YjQoLnUink_Cuuq4ftaZPifFqqa-Phlt2Wp3Bv4VQw,1571
|
1901
1902
|
homeassistant-stubs/components/onewire/sensor.pyi,sha256=WWFDHb1IxoosOMWHvlur2FaEe9bPZk5bvvlAyX4hmvA,2859
|
1902
|
-
homeassistant-stubs/components/onewire/switch.pyi,sha256=
|
1903
|
+
homeassistant-stubs/components/onewire/switch.pyi,sha256=7W7QY0tz9in7byKrAdPiLB5LFrq6JvNcefC_bHNYrc8,1875
|
1903
1904
|
homeassistant-stubs/components/open_meteo/__init__.pyi,sha256=b5_qJ_llgjYzMPtOeYdgxBJOjV3ipgNLN6rq1hM1WSc,855
|
1904
1905
|
homeassistant-stubs/components/open_meteo/config_flow.pyi,sha256=-GSbj6zEY7pJAuxXSpSs0pCdup2hD02O4hQTAT4NT44,539
|
1905
1906
|
homeassistant-stubs/components/open_meteo/const.pyi,sha256=WRrnFyU5HTSBNcHff8Fr_E39oqd-AGopiw50L6YYH-E,595
|
@@ -2100,7 +2101,7 @@ homeassistant-stubs/components/radarr/sensor.pyi,sha256=EnpYlHC-oHjOFW1-WNjQEtaf
|
|
2100
2101
|
homeassistant-stubs/components/rainforest_raven/__init__.pyi,sha256=GvStmKyGSGimxitVo_PW8rO-Kf85G6e2RsevriNVLz4,511
|
2101
2102
|
homeassistant-stubs/components/rainforest_raven/config_flow.pyi,sha256=5GrXZJGAwGZisdcira8ZqJ96PiTLpBRpq3NauegSLpc,1262
|
2102
2103
|
homeassistant-stubs/components/rainforest_raven/const.pyi,sha256=TjAQxsACL8HIFJghwIW43oGpqu5mTActwU4I3jam51E,30
|
2103
|
-
homeassistant-stubs/components/rainforest_raven/coordinator.pyi,sha256=
|
2104
|
+
homeassistant-stubs/components/rainforest_raven/coordinator.pyi,sha256=BAIA-4emM3xyAPLAjXGjIMMJWJ3VlZs8IEgvtzP9PhQ,1735
|
2104
2105
|
homeassistant-stubs/components/rainforest_raven/diagnostics.pyi,sha256=q3qs-rzF1_jZE7bebaWSUJa0J3e9--u3U8n6vjPf678,721
|
2105
2106
|
homeassistant-stubs/components/rainforest_raven/sensor.pyi,sha256=rdwji4K6MOXRqeGrm7ZOfst7U-XWcVGJMXZQQYWdPb4,2464
|
2106
2107
|
homeassistant-stubs/components/rainmachine/__init__.pyi,sha256=zdm8sI3CsycBcKe9Iv9efUsqAXODsEXbDvAnpvme8sE,4575
|
@@ -2146,7 +2147,7 @@ homeassistant-stubs/components/recorder/backup.pyi,sha256=GsFwE8bwZazWZW7vHY7-9f
|
|
2146
2147
|
homeassistant-stubs/components/recorder/const.pyi,sha256=HoR34ag7FChkWrT_sHoN7cJHlyqyOXiguoN84fkc07U,1455
|
2147
2148
|
homeassistant-stubs/components/recorder/core.pyi,sha256=QyiDVyuyE7EEPBYB6NRc9ENA8dpyR7o4PnJBx3hQ46I,13065
|
2148
2149
|
homeassistant-stubs/components/recorder/db_schema.pyi,sha256=f3CKSCljbyl_Kh8dnVOMwj6cXBXBom7qFiM5vS-Uel8,9397
|
2149
|
-
homeassistant-stubs/components/recorder/entity_registry.pyi,sha256=
|
2150
|
+
homeassistant-stubs/components/recorder/entity_registry.pyi,sha256=KQkJUlsXDdEHhnzy2f58byStPFplR3BoANWzwPIhbEM,578
|
2150
2151
|
homeassistant-stubs/components/recorder/executor.pyi,sha256=WNcDAKtH0b6T5tvtyz-GXsY3-QKe_voNa_PlyLtR5yk,536
|
2151
2152
|
homeassistant-stubs/components/recorder/filters.pyi,sha256=l8qnsQC0mhUcCJauqv6IDLFT0_EV_iX2u6iz3yr0Lww,2703
|
2152
2153
|
homeassistant-stubs/components/recorder/history/__init__.pyi,sha256=AO6Pbv1SNzf1qE47PmDSriNAHes7tUgjObOKpBCArfA,2195
|
@@ -2169,7 +2170,7 @@ homeassistant-stubs/components/recorder/purge.pyi,sha256=gC_Irgi_eQ-7c3xat1lp5T3
|
|
2169
2170
|
homeassistant-stubs/components/recorder/queries.pyi,sha256=CaenUzaHVOjt_uSXA6cawe_FXy9rCMSmO3sBnucNNVs,8519
|
2170
2171
|
homeassistant-stubs/components/recorder/repack.pyi,sha256=uT-A8NGsSHYz1fQo2pVBFVRzp0z0GhMiwN5Ydl4bUN4,247
|
2171
2172
|
homeassistant-stubs/components/recorder/services.pyi,sha256=xyfEYf4ldUwj68rhkj7WBi85_Rv51j0uPY6DVpplLHQ,1364
|
2172
|
-
homeassistant-stubs/components/recorder/statistics.pyi,sha256=
|
2173
|
+
homeassistant-stubs/components/recorder/statistics.pyi,sha256=xWlzX3FaHWay-Z9cOuPfmIGdYxj0oaT3qwr71DovzIU,16792
|
2173
2174
|
homeassistant-stubs/components/recorder/system_health/__init__.pyi,sha256=q2LlaYg8VEBO51qUY9LwPPnmqFUfhn7DsEkRakEnOGg,763
|
2174
2175
|
homeassistant-stubs/components/recorder/system_health/mysql.pyi,sha256=c_z5E_CiWWIki-QYEos1FMlZUIa2T0xOuHLWbLgpEt4,132
|
2175
2176
|
homeassistant-stubs/components/recorder/system_health/postgresql.pyi,sha256=c_z5E_CiWWIki-QYEos1FMlZUIa2T0xOuHLWbLgpEt4,132
|
@@ -2183,7 +2184,7 @@ homeassistant-stubs/components/recorder/table_managers/states.pyi,sha256=cGKeAOG
|
|
2183
2184
|
homeassistant-stubs/components/recorder/table_managers/states_meta.pyi,sha256=mmgGMAXT_4-juQ6y1m65JXaYS1TxVtSU9eRcmDCVsZM,1320
|
2184
2185
|
homeassistant-stubs/components/recorder/table_managers/statistics_meta.pyi,sha256=kcHk9wiljrDEB9vnMIbv1UZuCqO9GfKs5eOA4uZh-P4,2695
|
2185
2186
|
homeassistant-stubs/components/recorder/tasks.pyi,sha256=_Gy2QL9opxDLKambweZgeqYXTuXO2ecZ4IGiY7hdM-4,6302
|
2186
|
-
homeassistant-stubs/components/recorder/util.pyi,sha256=
|
2187
|
+
homeassistant-stubs/components/recorder/util.pyi,sha256=3PawQ1cyJveV5dfCfWFR7Mncyqgz-eVamHW7syi32Hg,5817
|
2187
2188
|
homeassistant-stubs/components/recorder/websocket_api.pyi,sha256=za-7tMEkInwRYFD6rB99OIyWrf_BTJdnspkEcSRnuc4,4341
|
2188
2189
|
homeassistant-stubs/components/remote/__init__.pyi,sha256=aPdglsyXkfxlqfCDL7UIcH0sI7BJkH0VOQxNggg-030,3894
|
2189
2190
|
homeassistant-stubs/components/remote/device_action.pyi,sha256=6Vfp_kSun-CL4YEEv4I_O2A81JnXangKitq86wbdOqY,827
|
@@ -2808,7 +2809,7 @@ homeassistant-stubs/components/unifiprotect/button.pyi,sha256=RscWOQhqreJ6WNcJIQ
|
|
2808
2809
|
homeassistant-stubs/components/unifiprotect/camera.pyi,sha256=i76bY7RVZnNSU1Vn7qyw02PeOuv1_iWw9OzouHbbUiM,2671
|
2809
2810
|
homeassistant-stubs/components/unifiprotect/config_flow.pyi,sha256=Dr1Pp_o0-miNMrBNb74zwiZjstTghWNcP5DhPo6ASP8,3612
|
2810
2811
|
homeassistant-stubs/components/unifiprotect/const.pyi,sha256=v-DBMoOLf7Pw7VyaBzc9u1nDHMLOr7mJ83oq1RZKLqE,839
|
2811
|
-
homeassistant-stubs/components/unifiprotect/data.pyi,sha256=
|
2812
|
+
homeassistant-stubs/components/unifiprotect/data.pyi,sha256=bDsRUoTcICBabKC_TtB05qRs1eZE7Biis6sH8Dr1YLY,3194
|
2812
2813
|
homeassistant-stubs/components/unifiprotect/diagnostics.pyi,sha256=X7SoEeWaUotXv5WQaWS3ZqTmOhiSE_kV2xlmkEVa238,351
|
2813
2814
|
homeassistant-stubs/components/unifiprotect/discovery.pyi,sha256=3enwOx02hOmMKMbP6q1lHNzal1OaEwwBi25j304gfyU,719
|
2814
2815
|
homeassistant-stubs/components/unifiprotect/entity.pyi,sha256=EKCHmWA-LSUN8rSCJqPfFgilgDu18HkL2yeOGA-3kCM,3503
|
@@ -3225,7 +3226,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3225
3226
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3226
3227
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_KzmG0bGDiN9zpcdhSx9p3leawOwjmdZDKE4ciEMfKc,4272
|
3227
3228
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=89c0boOGMdQvHxVk7Xs42DKMj3ldlozxjrpiV74RkGY,457
|
3228
|
-
homeassistant_stubs-2024.3.
|
3229
|
-
homeassistant_stubs-2024.3.
|
3230
|
-
homeassistant_stubs-2024.3.
|
3231
|
-
homeassistant_stubs-2024.3.
|
3229
|
+
homeassistant_stubs-2024.3.2.dist-info/METADATA,sha256=1dTGXEoECDzd3DQ73Dm0xnVcu2e_FI-VU-7u0y2bBFw,3062
|
3230
|
+
homeassistant_stubs-2024.3.2.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3231
|
+
homeassistant_stubs-2024.3.2.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3232
|
+
homeassistant_stubs-2024.3.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|