homeassistant-stubs 2025.2.0b7__py3-none-any.whl → 2025.2.0b8__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/backup/__init__.pyi +2 -2
- homeassistant-stubs/components/backup/util.pyi +11 -2
- homeassistant-stubs/components/homee/const.pyi +1 -1
- homeassistant-stubs/components/onedrive/__init__.pyi +5 -5
- homeassistant-stubs/components/onedrive/api.pyi +5 -11
- homeassistant-stubs/components/onedrive/backup.pyi +6 -8
- homeassistant-stubs/components/onedrive/config_flow.pyi +1 -1
- {homeassistant_stubs-2025.2.0b7.dist-info → homeassistant_stubs-2025.2.0b8.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.2.0b7.dist-info → homeassistant_stubs-2025.2.0b8.dist-info}/RECORD +11 -11
- {homeassistant_stubs-2025.2.0b7.dist-info → homeassistant_stubs-2025.2.0b8.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.2.0b7.dist-info → homeassistant_stubs-2025.2.0b8.dist-info}/licenses/LICENSE +0 -0
@@ -1,10 +1,10 @@
|
|
1
1
|
from .agent import BackupAgent as BackupAgent, BackupAgentError as BackupAgentError, BackupAgentPlatformProtocol as BackupAgentPlatformProtocol, LocalBackupAgent as LocalBackupAgent
|
2
|
-
from .manager import BackupManager, BackupManagerError as BackupManagerError, BackupPlatformProtocol as BackupPlatformProtocol, BackupReaderWriter as BackupReaderWriter, BackupReaderWriterError as BackupReaderWriterError, CreateBackupEvent as CreateBackupEvent, IdleEvent as IdleEvent, IncorrectPasswordError as IncorrectPasswordError, ManagerBackup as ManagerBackup, NewBackup as NewBackup, RestoreBackupEvent as RestoreBackupEvent, RestoreBackupState as RestoreBackupState, WrittenBackup as WrittenBackup
|
2
|
+
from .manager import BackupManager, BackupManagerError as BackupManagerError, BackupPlatformProtocol as BackupPlatformProtocol, BackupReaderWriter as BackupReaderWriter, BackupReaderWriterError as BackupReaderWriterError, CreateBackupEvent as CreateBackupEvent, CreateBackupStage as CreateBackupStage, CreateBackupState as CreateBackupState, IdleEvent as IdleEvent, IncorrectPasswordError as IncorrectPasswordError, ManagerBackup as ManagerBackup, NewBackup as NewBackup, RestoreBackupEvent as RestoreBackupEvent, RestoreBackupState as RestoreBackupState, WrittenBackup as WrittenBackup
|
3
3
|
from .models import AddonInfo as AddonInfo, AgentBackup as AgentBackup, Folder as Folder
|
4
4
|
from .util import suggested_filename as suggested_filename, suggested_filename_from_name_date as suggested_filename_from_name_date
|
5
5
|
from homeassistant.core import HomeAssistant, callback
|
6
6
|
|
7
|
-
__all__ = ['AddonInfo', 'AgentBackup', 'BackupAgent', 'BackupAgentError', 'BackupAgentPlatformProtocol', 'BackupManagerError', 'BackupPlatformProtocol', 'BackupReaderWriter', 'BackupReaderWriterError', 'CreateBackupEvent', 'Folder', 'IdleEvent', 'IncorrectPasswordError', 'LocalBackupAgent', 'ManagerBackup', 'NewBackup', 'RestoreBackupEvent', 'RestoreBackupState', 'WrittenBackup', 'async_get_manager', 'suggested_filename', 'suggested_filename_from_name_date']
|
7
|
+
__all__ = ['AddonInfo', 'AgentBackup', 'BackupAgent', 'BackupAgentError', 'BackupAgentPlatformProtocol', 'BackupManagerError', 'BackupPlatformProtocol', 'BackupReaderWriter', 'BackupReaderWriterError', 'CreateBackupEvent', 'CreateBackupStage', 'CreateBackupState', 'Folder', 'IdleEvent', 'IncorrectPasswordError', 'LocalBackupAgent', 'ManagerBackup', 'NewBackup', 'RestoreBackupEvent', 'RestoreBackupState', 'WrittenBackup', 'async_get_manager', 'suggested_filename', 'suggested_filename_from_name_date']
|
8
8
|
|
9
9
|
@callback
|
10
10
|
def async_get_manager(hass: HomeAssistant) -> BackupManager: ...
|
@@ -1,16 +1,17 @@
|
|
1
1
|
import aiohttp
|
2
2
|
import asyncio
|
3
3
|
import tarfile
|
4
|
+
import threading
|
4
5
|
from .const import BUF_SIZE as BUF_SIZE, LOGGER as LOGGER
|
5
6
|
from .models import AddonInfo as AddonInfo, AgentBackup as AgentBackup, Folder as Folder
|
6
7
|
from _typeshed import Incomplete
|
7
8
|
from collections.abc import AsyncIterator, Callable as Callable, Coroutine
|
9
|
+
from concurrent.futures import Future
|
8
10
|
from dataclasses import dataclass
|
9
11
|
from homeassistant.backup_restore import password_to_key as password_to_key
|
10
12
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
11
13
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
12
14
|
from homeassistant.util.json import JsonObjectType as JsonObjectType, json_loads_object as json_loads_object
|
13
|
-
from homeassistant.util.thread import ThreadWithException as ThreadWithException
|
14
15
|
from pathlib import Path
|
15
16
|
from typing import Any, IO, Self
|
16
17
|
|
@@ -39,22 +40,28 @@ def suggested_filename(backup: AgentBackup) -> str: ...
|
|
39
40
|
def validate_password(path: Path, password: str | None) -> bool: ...
|
40
41
|
|
41
42
|
class AsyncIteratorReader:
|
43
|
+
_aborted: bool
|
42
44
|
_hass: Incomplete
|
43
45
|
_stream: Incomplete
|
44
46
|
_buffer: bytes | None
|
47
|
+
_next_future: Future[bytes | None] | None
|
45
48
|
_pos: int
|
46
49
|
def __init__(self, hass: HomeAssistant, stream: AsyncIterator[bytes]) -> None: ...
|
47
50
|
async def _next(self) -> bytes | None: ...
|
51
|
+
def abort(self) -> None: ...
|
48
52
|
def read(self, n: int = -1, /) -> bytes: ...
|
49
53
|
def close(self) -> None: ...
|
50
54
|
|
51
55
|
class AsyncIteratorWriter:
|
56
|
+
_aborted: bool
|
52
57
|
_hass: Incomplete
|
53
58
|
_pos: int
|
54
59
|
_queue: asyncio.Queue[bytes | None]
|
60
|
+
_write_future: Future[bytes | None] | None
|
55
61
|
def __init__(self, hass: HomeAssistant) -> None: ...
|
56
62
|
def __aiter__(self) -> Self: ...
|
57
63
|
async def __anext__(self) -> bytes: ...
|
64
|
+
def abort(self) -> None: ...
|
58
65
|
def tell(self) -> int: ...
|
59
66
|
def write(self, s: bytes, /) -> int: ...
|
60
67
|
|
@@ -68,7 +75,9 @@ def _encrypt_backup(input_tar: tarfile.TarFile, output_tar: tarfile.TarFile, pas
|
|
68
75
|
class _CipherWorkerStatus:
|
69
76
|
done: asyncio.Event
|
70
77
|
error: Exception | None = ...
|
71
|
-
|
78
|
+
reader: AsyncIteratorReader
|
79
|
+
thread: threading.Thread
|
80
|
+
writer: AsyncIteratorWriter
|
72
81
|
|
73
82
|
class _CipherBackupStreamer:
|
74
83
|
_cipher_func: Callable[[IO[bytes], IO[bytes], str | None, Callable[[Exception | None], None], int, list[bytes]], None]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
from _typeshed import Incomplete
|
2
|
-
from homeassistant.const import LIGHT_LUX as LIGHT_LUX, PERCENTAGE as PERCENTAGE, REVOLUTIONS_PER_MINUTE as REVOLUTIONS_PER_MINUTE, UnitOfElectricCurrent as UnitOfElectricCurrent, UnitOfElectricPotential as UnitOfElectricPotential, UnitOfEnergy as UnitOfEnergy, UnitOfPower as UnitOfPower, UnitOfSpeed as UnitOfSpeed, UnitOfTemperature as UnitOfTemperature, UnitOfTime as UnitOfTime, UnitOfVolume as UnitOfVolume
|
2
|
+
from homeassistant.const import DEGREE as DEGREE, LIGHT_LUX as LIGHT_LUX, PERCENTAGE as PERCENTAGE, REVOLUTIONS_PER_MINUTE as REVOLUTIONS_PER_MINUTE, UnitOfElectricCurrent as UnitOfElectricCurrent, UnitOfElectricPotential as UnitOfElectricPotential, UnitOfEnergy as UnitOfEnergy, UnitOfPower as UnitOfPower, UnitOfSpeed as UnitOfSpeed, UnitOfTemperature as UnitOfTemperature, UnitOfTime as UnitOfTime, UnitOfVolume as UnitOfVolume
|
3
3
|
|
4
4
|
DOMAIN: str
|
5
5
|
HOMEE_UNIT_TO_HA_UNIT: Incomplete
|
@@ -1,17 +1,18 @@
|
|
1
1
|
from .api import OneDriveConfigEntryAccessTokenProvider as OneDriveConfigEntryAccessTokenProvider
|
2
|
-
from .const import DATA_BACKUP_AGENT_LISTENERS as DATA_BACKUP_AGENT_LISTENERS, DOMAIN as DOMAIN
|
2
|
+
from .const import DATA_BACKUP_AGENT_LISTENERS as DATA_BACKUP_AGENT_LISTENERS, DOMAIN as DOMAIN
|
3
3
|
from _typeshed import Incomplete
|
4
4
|
from dataclasses import dataclass
|
5
5
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
7
7
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady
|
8
|
+
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
8
9
|
from homeassistant.helpers.config_entry_oauth2_flow import OAuth2Session as OAuth2Session, async_get_config_entry_implementation as async_get_config_entry_implementation
|
9
|
-
from
|
10
|
-
from msgraph.generated.drives.item.items.items_request_builder import ItemsRequestBuilder as ItemsRequestBuilder
|
10
|
+
from onedrive_personal_sdk import OneDriveClient
|
11
11
|
|
12
12
|
@dataclass
|
13
13
|
class OneDriveRuntimeData:
|
14
|
-
|
14
|
+
client: OneDriveClient
|
15
|
+
token_provider: OneDriveConfigEntryAccessTokenProvider
|
15
16
|
backup_folder_id: str
|
16
17
|
type OneDriveConfigEntry = ConfigEntry[OneDriveRuntimeData]
|
17
18
|
|
@@ -22,4 +23,3 @@ async def async_unload_entry(hass: HomeAssistant, entry: OneDriveConfigEntry) ->
|
|
22
23
|
def _async_notify_backup_listeners(hass: HomeAssistant) -> None: ...
|
23
24
|
@callback
|
24
25
|
def _async_notify_backup_listeners_soon(hass: HomeAssistant) -> None: ...
|
25
|
-
async def _async_create_folder_if_not_exists(items: ItemsRequestBuilder, base_folder_id: str, folder: str) -> str: ...
|
@@ -1,20 +1,14 @@
|
|
1
1
|
from _typeshed import Incomplete
|
2
2
|
from homeassistant.const import CONF_ACCESS_TOKEN as CONF_ACCESS_TOKEN
|
3
3
|
from homeassistant.helpers import config_entry_oauth2_flow as config_entry_oauth2_flow
|
4
|
-
from
|
5
|
-
from typing import Any
|
4
|
+
from onedrive_personal_sdk import TokenProvider
|
6
5
|
|
7
|
-
class
|
8
|
-
_allowed_hosts_validator: Incomplete
|
9
|
-
def __init__(self) -> None: ...
|
10
|
-
def get_allowed_hosts_validator(self) -> AllowedHostsValidator: ...
|
11
|
-
|
12
|
-
class OneDriveConfigFlowAccessTokenProvider(OneDriveAccessTokenProvider):
|
6
|
+
class OneDriveConfigFlowAccessTokenProvider(TokenProvider):
|
13
7
|
_token: Incomplete
|
14
8
|
def __init__(self, token: str) -> None: ...
|
15
|
-
|
9
|
+
def async_get_access_token(self) -> str: ...
|
16
10
|
|
17
|
-
class OneDriveConfigEntryAccessTokenProvider(
|
11
|
+
class OneDriveConfigEntryAccessTokenProvider(TokenProvider):
|
18
12
|
_oauth_session: Incomplete
|
19
13
|
def __init__(self, oauth_session: config_entry_oauth2_flow.OAuth2Session) -> None: ...
|
20
|
-
|
14
|
+
def async_get_access_token(self) -> str: ...
|
@@ -4,14 +4,13 @@ from _typeshed import Incomplete
|
|
4
4
|
from collections.abc import AsyncIterator, Callable as Callable, Coroutine
|
5
5
|
from homeassistant.components.backup import AgentBackup as AgentBackup, BackupAgent as BackupAgent, BackupAgentError as BackupAgentError, suggested_filename as suggested_filename
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
7
|
-
from homeassistant.helpers.
|
8
|
-
from
|
9
|
-
from msgraph.generated.models.drive_item import DriveItem
|
7
|
+
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
8
|
+
from onedrive_personal_sdk.models.items import File as File, Folder as Folder
|
10
9
|
from typing import Any, Concatenate
|
11
10
|
|
12
11
|
_LOGGER: Incomplete
|
13
12
|
UPLOAD_CHUNK_SIZE: Incomplete
|
14
|
-
|
13
|
+
TIMEOUT: Incomplete
|
15
14
|
|
16
15
|
async def async_get_backup_agents(hass: HomeAssistant) -> list[BackupAgent]: ...
|
17
16
|
@callback
|
@@ -22,7 +21,8 @@ class OneDriveBackupAgent(BackupAgent):
|
|
22
21
|
domain = DOMAIN
|
23
22
|
_hass: Incomplete
|
24
23
|
_entry: Incomplete
|
25
|
-
|
24
|
+
_client: Incomplete
|
25
|
+
_token_provider: Incomplete
|
26
26
|
_folder_id: Incomplete
|
27
27
|
name: Incomplete
|
28
28
|
unique_id: Incomplete
|
@@ -38,6 +38,4 @@ class OneDriveBackupAgent(BackupAgent):
|
|
38
38
|
@handle_backup_errors
|
39
39
|
async def async_get_backup(self, backup_id: str, **kwargs: Any) -> AgentBackup | None: ...
|
40
40
|
def _backup_from_description(self, description: str) -> AgentBackup: ...
|
41
|
-
async def _find_item_by_backup_id(self, backup_id: str) ->
|
42
|
-
def _get_backup_file_item(self, backup_id: str) -> DriveItemItemRequestBuilder: ...
|
43
|
-
async def _upload_file(self, upload_url: str, stream: AsyncIterator[bytes], total_size: int) -> None: ...
|
41
|
+
async def _find_item_by_backup_id(self, backup_id: str) -> File | Folder | None: ...
|
@@ -4,8 +4,8 @@ from .const import DOMAIN as DOMAIN, OAUTH_SCOPES as OAUTH_SCOPES
|
|
4
4
|
from collections.abc import Mapping
|
5
5
|
from homeassistant.config_entries import ConfigFlowResult as ConfigFlowResult, SOURCE_REAUTH as SOURCE_REAUTH
|
6
6
|
from homeassistant.const import CONF_ACCESS_TOKEN as CONF_ACCESS_TOKEN, CONF_TOKEN as CONF_TOKEN
|
7
|
+
from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
|
7
8
|
from homeassistant.helpers.config_entry_oauth2_flow import AbstractOAuth2FlowHandler as AbstractOAuth2FlowHandler
|
8
|
-
from homeassistant.helpers.httpx_client import get_async_client as get_async_client
|
9
9
|
from typing import Any
|
10
10
|
|
11
11
|
class OneDriveConfigFlow(AbstractOAuth2FlowHandler, domain=DOMAIN):
|
{homeassistant_stubs-2025.2.0b7.dist-info → homeassistant_stubs-2025.2.0b8.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.2.
|
3
|
+
Version: 2025.2.0b8
|
4
4
|
Summary: PEP 484 typing stubs for Home Assistant Core
|
5
5
|
Project-URL: Homepage, https://github.com/KapJI/homeassistant-stubs
|
6
6
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Home Automation
|
|
18
18
|
Classifier: Topic :: Software Development
|
19
19
|
Classifier: Typing :: Typed
|
20
20
|
Requires-Python: <3.14,>=3.13
|
21
|
-
Requires-Dist: homeassistant==2025.2.
|
21
|
+
Requires-Dist: homeassistant==2025.2.0b8
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.2.0b7.dist-info → homeassistant_stubs-2025.2.0b8.dist-info}/RECORD
RENAMED
@@ -411,7 +411,7 @@ homeassistant-stubs/components/axis/hub/config.pyi,sha256=XdvjJsdRPVG1rx8AXEwsCG
|
|
411
411
|
homeassistant-stubs/components/axis/hub/entity_loader.pyi,sha256=XgpSlOIFJ1kZM4w9d53MqdtK3xgZxnlQRYOw0BIvIwE,971
|
412
412
|
homeassistant-stubs/components/axis/hub/event_source.pyi,sha256=2MWGaVgI5mHf_gEO1ds6qaZYNx5vD5xMINhcjbBJK1o,1182
|
413
413
|
homeassistant-stubs/components/axis/hub/hub.pyi,sha256=mulaCc4i9ZIxA8la7aIObtE4AJtjQBsKzr61mj_CMqU,1544
|
414
|
-
homeassistant-stubs/components/backup/__init__.pyi,sha256=
|
414
|
+
homeassistant-stubs/components/backup/__init__.pyi,sha256=ejMEeo_KU8N9kPcr0kafqwq-XrOV5xOxwdyI7oP7aUQ,1626
|
415
415
|
homeassistant-stubs/components/backup/agent.pyi,sha256=DpkW5FNDAA9T9AbxAVQOdjUu_YvBfLFJiT2Mg3sZVCs,1906
|
416
416
|
homeassistant-stubs/components/backup/backup.pyi,sha256=uLKcQpmIMp_pt9McFb0fb0bQgTLvA_ZiJPPX8o1ZxNc,1737
|
417
417
|
homeassistant-stubs/components/backup/config.pyi,sha256=OK8m9EmG0RnlevvU0ADEPE3HTWgbwDafzQQ5wvNBnuM,5418
|
@@ -420,7 +420,7 @@ homeassistant-stubs/components/backup/http.pyi,sha256=kDUEQMLnTwCH6vQNPkKxwHP9nR
|
|
420
420
|
homeassistant-stubs/components/backup/manager.pyi,sha256=y2DR5Re1VYLwSMAg9IeRlB3_A3AJGdVLciSXzAbYdpE,13781
|
421
421
|
homeassistant-stubs/components/backup/models.pyi,sha256=SG3JfOq6qc-2yppKCaDy1ONyxaFAtD8qMUfjnYVh-3Q,1052
|
422
422
|
homeassistant-stubs/components/backup/store.pyi,sha256=CTgV9bZqdqSFYc6xrwrWizFVQYOaraG9ZHWAIMnBKi8,1174
|
423
|
-
homeassistant-stubs/components/backup/util.pyi,sha256=
|
423
|
+
homeassistant-stubs/components/backup/util.pyi,sha256=0_yUHocSWTk3jPM-GFI-OTikYMCvtiYQzM-9b-pfG3k,4400
|
424
424
|
homeassistant-stubs/components/backup/websocket.pyi,sha256=2cnxdvl_VYBm_mbXgAqcepqqPoDVbaGymWmciaKM66k,3011
|
425
425
|
homeassistant-stubs/components/baf/__init__.pyi,sha256=Ylh2xJjcBgDaMmOK4Jf2dc6oFmekClLSl0IgZljcRVQ,670
|
426
426
|
homeassistant-stubs/components/baf/binary_sensor.pyi,sha256=EqurXjaTV7WQ5Wnkco7bPu1jSm-ZY4N_mmARtoxhFNE,1165
|
@@ -1431,7 +1431,7 @@ homeassistant-stubs/components/homeassistant_yellow/const.pyi,sha256=7X2X_4ADaYb
|
|
1431
1431
|
homeassistant-stubs/components/homeassistant_yellow/hardware.pyi,sha256=F0vW0HKbmTiUbCAYKK8j0nzSgOxlqC7Ja6h7WlE9qiA,518
|
1432
1432
|
homeassistant-stubs/components/homee/__init__.pyi,sha256=rogh-qriORRnR58yqrv4p4o-qpjPsYgLnXm03NR5OGQ,708
|
1433
1433
|
homeassistant-stubs/components/homee/config_flow.pyi,sha256=nkoWO86BrlvdMuhjymK3prZnmYP6_QpsBtJAnt_s11Y,574
|
1434
|
-
homeassistant-stubs/components/homee/const.pyi,sha256=
|
1434
|
+
homeassistant-stubs/components/homee/const.pyi,sha256=5KEv844zroIKbs0-bQXUQHXPJIcja6klelp0WotpxGA,629
|
1435
1435
|
homeassistant-stubs/components/homee/cover.pyi,sha256=6jsaHsVw05Jf6ftcwRPXu92IurLAP1GeHlCxcaBpLWg,2261
|
1436
1436
|
homeassistant-stubs/components/homee/entity.pyi,sha256=qyDTCBsSS744ZwCWVPJuJNkA82YVFKFwM-xmPXwFmn8,1856
|
1437
1437
|
homeassistant-stubs/components/homee/helpers.pyi,sha256=UbrbjMWJKHCmDOqc_OJ3oUonExbkQ1UhYOdtmAO3pzM,160
|
@@ -2393,11 +2393,11 @@ homeassistant-stubs/components/oncue/const.pyi,sha256=4EdfjkoGOjFyxQQnpGXMvvi-E5
|
|
2393
2393
|
homeassistant-stubs/components/oncue/entity.pyi,sha256=TZJvQio7AWzk_dLywz3eSiHJJJQsMeVOqjA69LfZ5xc,1181
|
2394
2394
|
homeassistant-stubs/components/oncue/sensor.pyi,sha256=9gLVq1feftHBrtw02Be1vpbB6Gus0lAv2JBxniW-g_8,1612
|
2395
2395
|
homeassistant-stubs/components/oncue/types.pyi,sha256=KqG_536UpHzCPPb-qCPZA6bUmXVTiPqmIZKwz8NabMs,285
|
2396
|
-
homeassistant-stubs/components/onedrive/__init__.pyi,sha256=
|
2397
|
-
homeassistant-stubs/components/onedrive/api.pyi,sha256=
|
2396
|
+
homeassistant-stubs/components/onedrive/__init__.pyi,sha256=s7GqsIlxkutUnLcvxneg7agtA9vjsxx9SNp0IB2NQ7o,1427
|
2397
|
+
homeassistant-stubs/components/onedrive/api.pyi,sha256=jBHSZx_30q-CO1JcPAiL6fAROzAgrQpQG9NTrh4LfXE,653
|
2398
2398
|
homeassistant-stubs/components/onedrive/application_credentials.pyi,sha256=gC5LevrYVBmGRf6YJuwIR4rPyphIk0ro8IvjoPQVjiI,343
|
2399
|
-
homeassistant-stubs/components/onedrive/backup.pyi,sha256=
|
2400
|
-
homeassistant-stubs/components/onedrive/config_flow.pyi,sha256=
|
2399
|
+
homeassistant-stubs/components/onedrive/backup.pyi,sha256=XjQFK73v1QgmGdpF1jfuR8JMBuAhMm9kjuePEa39sIo,2370
|
2400
|
+
homeassistant-stubs/components/onedrive/config_flow.pyi,sha256=KWv8ztIW3WB5yByJ4SuPlGKkFqqHk5MhOn-nZADl_4g,1175
|
2401
2401
|
homeassistant-stubs/components/onedrive/const.pyi,sha256=evMrmc2zcW6JonKLyshgaphWE_14cDyc9PQphaM_jGY,336
|
2402
2402
|
homeassistant-stubs/components/onewire/__init__.pyi,sha256=wMDZKMHzaTbanOaeZ95Qi4krp8DV-HxY9toO5lC0PEo,878
|
2403
2403
|
homeassistant-stubs/components/onewire/binary_sensor.pyi,sha256=3f8tg405qoYG9GCwHm-1CsAQw4VdpfgZK4B3NCt7qeE,1942
|
@@ -4019,7 +4019,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
4019
4019
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
4020
4020
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=9MJS3AZNCemqAEU41KVJox1f16OceP64SNXE1-Z37kU,4117
|
4021
4021
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=EmJiT8WnVUHa5dkbYzXtWzu5mhO1YG5bBnEAIF0XLAU,665
|
4022
|
-
homeassistant_stubs-2025.2.
|
4023
|
-
homeassistant_stubs-2025.2.
|
4024
|
-
homeassistant_stubs-2025.2.
|
4025
|
-
homeassistant_stubs-2025.2.
|
4022
|
+
homeassistant_stubs-2025.2.0b8.dist-info/METADATA,sha256=DRHJMKeLXRleSVkcdrq5o1AUoBC5PBjHytSkPFgNJWg,2956
|
4023
|
+
homeassistant_stubs-2025.2.0b8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4024
|
+
homeassistant_stubs-2025.2.0b8.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4025
|
+
homeassistant_stubs-2025.2.0b8.dist-info/RECORD,,
|
File without changes
|
File without changes
|