mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
feat: batch change date and time relatively (#17717)
Co-authored-by: marcel.kuehne <> Co-authored-by: Zack Pollard <zackpollard@ymail.com>
This commit is contained in:
parent
df2525ee08
commit
011a667314
19 changed files with 574 additions and 52 deletions
|
|
@ -9979,6 +9979,9 @@
|
|||
"dateTimeOriginal": {
|
||||
"type": "string"
|
||||
},
|
||||
"dateTimeRelative": {
|
||||
"type": "number"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
@ -10007,6 +10010,9 @@
|
|||
"minimum": -1,
|
||||
"type": "number"
|
||||
},
|
||||
"timeZone": {
|
||||
"type": "string"
|
||||
},
|
||||
"visibility": {
|
||||
"allOf": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -456,6 +456,7 @@ export type AssetMediaResponseDto = {
|
|||
};
|
||||
export type AssetBulkUpdateDto = {
|
||||
dateTimeOriginal?: string;
|
||||
dateTimeRelative?: number;
|
||||
description?: string;
|
||||
duplicateId?: string | null;
|
||||
ids: string[];
|
||||
|
|
@ -463,6 +464,7 @@ export type AssetBulkUpdateDto = {
|
|||
latitude?: number;
|
||||
longitude?: number;
|
||||
rating?: number;
|
||||
timeZone?: string;
|
||||
visibility?: AssetVisibility;
|
||||
};
|
||||
export type AssetBulkUploadCheckItem = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue