You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-01 05:35:03 +02:00
feat(server): Merge Faces sorted by Similarity (#14635)
* Merge Faces sorted by Similarity * Adds face sorting to the side panel face merger * run make open-api * Make it one query * Only have the single order by when sorting by closest face
This commit is contained in:
@ -2362,7 +2362,9 @@ export function updatePartner({ id, updatePartnerDto }: {
|
||||
body: updatePartnerDto
|
||||
})));
|
||||
}
|
||||
export function getAllPeople({ page, size, withHidden }: {
|
||||
export function getAllPeople({ closestAssetId, closestPersonId, page, size, withHidden }: {
|
||||
closestAssetId?: string;
|
||||
closestPersonId?: string;
|
||||
page?: number;
|
||||
size?: number;
|
||||
withHidden?: boolean;
|
||||
@ -2371,6 +2373,8 @@ export function getAllPeople({ page, size, withHidden }: {
|
||||
status: 200;
|
||||
data: PeopleResponseDto;
|
||||
}>(`/people${QS.query(QS.explode({
|
||||
closestAssetId,
|
||||
closestPersonId,
|
||||
page,
|
||||
size,
|
||||
withHidden
|
||||
|
Reference in New Issue
Block a user