mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Bump onedrive-personal-sdk to 0.0.10 (#138186)
This commit is contained in:
parent
de86e4bd3c
commit
b89f9a5961
@ -9,5 +9,5 @@
|
||||
"iot_class": "cloud_polling",
|
||||
"loggers": ["onedrive_personal_sdk"],
|
||||
"quality_scale": "bronze",
|
||||
"requirements": ["onedrive-personal-sdk==0.0.9"]
|
||||
"requirements": ["onedrive-personal-sdk==0.0.10"]
|
||||
}
|
||||
|
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@ -1559,7 +1559,7 @@ omnilogic==0.4.5
|
||||
ondilo==0.5.0
|
||||
|
||||
# homeassistant.components.onedrive
|
||||
onedrive-personal-sdk==0.0.9
|
||||
onedrive-personal-sdk==0.0.10
|
||||
|
||||
# homeassistant.components.onvif
|
||||
onvif-zeep-async==3.2.5
|
||||
|
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@ -1307,7 +1307,7 @@ omnilogic==0.4.5
|
||||
ondilo==0.5.0
|
||||
|
||||
# homeassistant.components.onedrive
|
||||
onedrive-personal-sdk==0.0.9
|
||||
onedrive-personal-sdk==0.0.10
|
||||
|
||||
# homeassistant.components.onvif
|
||||
onvif-zeep-async==3.2.5
|
||||
|
@ -5,10 +5,10 @@ from json import dumps
|
||||
|
||||
from onedrive_personal_sdk.models.items import (
|
||||
AppRoot,
|
||||
Contributor,
|
||||
File,
|
||||
Folder,
|
||||
Hashes,
|
||||
IdentitySet,
|
||||
ItemParentReference,
|
||||
User,
|
||||
)
|
||||
@ -31,7 +31,7 @@ BACKUP_METADATA = {
|
||||
"size": 34519040,
|
||||
}
|
||||
|
||||
CONTRIBUTOR = Contributor(
|
||||
IDENTITY_SET = IdentitySet(
|
||||
user=User(
|
||||
display_name="John Doe",
|
||||
id="id",
|
||||
@ -47,7 +47,7 @@ MOCK_APPROOT = AppRoot(
|
||||
parent_reference=ItemParentReference(
|
||||
drive_id="mock_drive_id", id="id", path="path"
|
||||
),
|
||||
created_by=CONTRIBUTOR,
|
||||
created_by=IDENTITY_SET,
|
||||
)
|
||||
|
||||
MOCK_BACKUP_FOLDER = Folder(
|
||||
@ -58,7 +58,7 @@ MOCK_BACKUP_FOLDER = Folder(
|
||||
parent_reference=ItemParentReference(
|
||||
drive_id="mock_drive_id", id="id", path="path"
|
||||
),
|
||||
created_by=CONTRIBUTOR,
|
||||
created_by=IDENTITY_SET,
|
||||
)
|
||||
|
||||
MOCK_BACKUP_FILE = File(
|
||||
@ -73,7 +73,7 @@ MOCK_BACKUP_FILE = File(
|
||||
),
|
||||
mime_type="application/x-tar",
|
||||
description="",
|
||||
created_by=CONTRIBUTOR,
|
||||
created_by=IDENTITY_SET,
|
||||
)
|
||||
|
||||
MOCK_METADATA_FILE = File(
|
||||
@ -96,5 +96,5 @@ MOCK_METADATA_FILE = File(
|
||||
}
|
||||
)
|
||||
),
|
||||
created_by=CONTRIBUTOR,
|
||||
created_by=IDENTITY_SET,
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user