mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
fix(web): new feature photo (#9443)
* fix: new feature photo * fix: use updatedAt
This commit is contained in:
parent
325aa1d392
commit
37b5d92110
18 changed files with 89 additions and 31 deletions
|
|
@ -9345,6 +9345,11 @@
|
|||
},
|
||||
"thumbnailPath": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"description": "This property was added in v1.107.0",
|
||||
"format": "date-time",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
|
@ -9414,6 +9419,11 @@
|
|||
},
|
||||
"thumbnailPath": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"description": "This property was added in v1.107.0",
|
||||
"format": "date-time",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
|
|
|||
|
|
@ -158,6 +158,8 @@ export type PersonWithFacesResponseDto = {
|
|||
isHidden: boolean;
|
||||
name: string;
|
||||
thumbnailPath: string;
|
||||
/** This property was added in v1.107.0 */
|
||||
updatedAt?: string;
|
||||
};
|
||||
export type SmartInfoResponseDto = {
|
||||
objects?: string[] | null;
|
||||
|
|
@ -432,6 +434,8 @@ export type PersonResponseDto = {
|
|||
isHidden: boolean;
|
||||
name: string;
|
||||
thumbnailPath: string;
|
||||
/** This property was added in v1.107.0 */
|
||||
updatedAt?: string;
|
||||
};
|
||||
export type AssetFaceResponseDto = {
|
||||
boundingBoxX1: number;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue