mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 01:11:07 +03:00
feat(server): do not automatically download android motion videos (#11774)
feat(server): do not automatically download embedded android motion videos
This commit is contained in:
@@ -8497,10 +8497,15 @@
|
||||
"properties": {
|
||||
"archiveSize": {
|
||||
"type": "integer"
|
||||
},
|
||||
"includeEmbeddedVideos": {
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"archiveSize"
|
||||
"archiveSize",
|
||||
"includeEmbeddedVideos"
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
@@ -8527,6 +8532,9 @@
|
||||
"archiveSize": {
|
||||
"minimum": 1,
|
||||
"type": "integer"
|
||||
},
|
||||
"includeEmbeddedVideos": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
|
||||
@@ -86,6 +86,7 @@ export type AvatarResponse = {
|
||||
};
|
||||
export type DownloadResponse = {
|
||||
archiveSize: number;
|
||||
includeEmbeddedVideos: boolean;
|
||||
};
|
||||
export type EmailNotificationsResponse = {
|
||||
albumInvite: boolean;
|
||||
@@ -115,6 +116,7 @@ export type AvatarUpdate = {
|
||||
};
|
||||
export type DownloadUpdate = {
|
||||
archiveSize?: number;
|
||||
includeEmbeddedVideos?: boolean;
|
||||
};
|
||||
export type EmailNotificationsUpdate = {
|
||||
albumInvite?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user