mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
chore(server): openapi generation for Duplicate controller (#9560)
This commit is contained in:
parent
d61418886f
commit
2689178a35
9 changed files with 203 additions and 0 deletions
|
|
@ -1695,6 +1695,14 @@ export function getDownloadInfo({ key, downloadInfoDto }: {
|
|||
body: downloadInfoDto
|
||||
})));
|
||||
}
|
||||
export function getAssetDuplicates(opts?: Oazapfts.RequestOpts) {
|
||||
return oazapfts.ok(oazapfts.fetchJson<{
|
||||
status: 200;
|
||||
data: AssetResponseDto[];
|
||||
}>("/duplicates", {
|
||||
...opts
|
||||
}));
|
||||
}
|
||||
export function getFaces({ id }: {
|
||||
id: string;
|
||||
}, opts?: Oazapfts.RequestOpts) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue