mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
chore: lifecycle metadata (#9103)
feat(server): track endpoint lifecycle
This commit is contained in:
parent
6eb5d2e95e
commit
59caf1fce4
22 changed files with 171 additions and 19 deletions
|
|
@ -6616,7 +6616,7 @@
|
|||
},
|
||||
"sharedUserIds": {
|
||||
"deprecated": true,
|
||||
"description": "Deprecated in favor of albumUsers",
|
||||
"description": "This property was deprecated in v1.102.0",
|
||||
"items": {
|
||||
"format": "uuid",
|
||||
"type": "string"
|
||||
|
|
@ -6721,7 +6721,7 @@
|
|||
},
|
||||
"sharedUsers": {
|
||||
"deprecated": true,
|
||||
"description": "Deprecated in favor of albumUsers",
|
||||
"description": "This property was deprecated in v1.102.0",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/UserResponseDto"
|
||||
},
|
||||
|
|
@ -8433,6 +8433,7 @@
|
|||
},
|
||||
"title": {
|
||||
"deprecated": true,
|
||||
"description": "This property was deprecated in v1.100.0",
|
||||
"type": "string"
|
||||
},
|
||||
"yearsAgo": {
|
||||
|
|
@ -8640,6 +8641,7 @@
|
|||
},
|
||||
"resizePath": {
|
||||
"deprecated": true,
|
||||
"description": "This property was deprecated in v1.100.0",
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
|
|
@ -8682,6 +8684,7 @@
|
|||
},
|
||||
"webpPath": {
|
||||
"deprecated": true,
|
||||
"description": "This property was deprecated in v1.100.0",
|
||||
"type": "string"
|
||||
},
|
||||
"withArchived": {
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@ export type AlbumResponseDto = {
|
|||
owner: UserResponseDto;
|
||||
ownerId: string;
|
||||
shared: boolean;
|
||||
/** Deprecated in favor of albumUsers */
|
||||
/** This property was deprecated in v1.102.0 */
|
||||
sharedUsers: UserResponseDto[];
|
||||
startDate?: string;
|
||||
updatedAt: string;
|
||||
|
|
@ -202,7 +202,7 @@ export type AlbumUserAddDto = {
|
|||
};
|
||||
export type AddUsersDto = {
|
||||
albumUsers: AlbumUserAddDto[];
|
||||
/** Deprecated in favor of albumUsers */
|
||||
/** This property was deprecated in v1.102.0 */
|
||||
sharedUserIds?: string[];
|
||||
};
|
||||
export type ApiKeyResponseDto = {
|
||||
|
|
@ -273,6 +273,7 @@ export type MapMarkerResponseDto = {
|
|||
};
|
||||
export type MemoryLaneResponseDto = {
|
||||
assets: AssetResponseDto[];
|
||||
/** This property was deprecated in v1.100.0 */
|
||||
title: string;
|
||||
yearsAgo: number;
|
||||
};
|
||||
|
|
@ -637,6 +638,7 @@ export type MetadataSearchDto = {
|
|||
page?: number;
|
||||
personIds?: string[];
|
||||
previewPath?: string;
|
||||
/** This property was deprecated in v1.100.0 */
|
||||
resizePath?: string;
|
||||
size?: number;
|
||||
state?: string;
|
||||
|
|
@ -648,6 +650,7 @@ export type MetadataSearchDto = {
|
|||
"type"?: AssetTypeEnum;
|
||||
updatedAfter?: string;
|
||||
updatedBefore?: string;
|
||||
/** This property was deprecated in v1.100.0 */
|
||||
webpPath?: string;
|
||||
withArchived?: boolean;
|
||||
withDeleted?: boolean;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue