mirror of
https://github.com/immich-app/immich.git
synced 2025-06-16 21:38:28 +02:00
chore: remove old memory lane implementation (#18000)
This commit is contained in:
parent
1fde02ee1e
commit
b845184c80
11 changed files with 3 additions and 362 deletions
open-api/typescript-sdk/src
|
@ -462,10 +462,6 @@ export type AssetJobsDto = {
|
|||
assetIds: string[];
|
||||
name: AssetJobName;
|
||||
};
|
||||
export type MemoryLaneResponseDto = {
|
||||
assets: AssetResponseDto[];
|
||||
yearsAgo: number;
|
||||
};
|
||||
export type AssetStatsResponseDto = {
|
||||
images: number;
|
||||
total: number;
|
||||
|
@ -1866,20 +1862,6 @@ export function runAssetJobs({ assetJobsDto }: {
|
|||
body: assetJobsDto
|
||||
})));
|
||||
}
|
||||
export function getMemoryLane({ day, month }: {
|
||||
day: number;
|
||||
month: number;
|
||||
}, opts?: Oazapfts.RequestOpts) {
|
||||
return oazapfts.ok(oazapfts.fetchJson<{
|
||||
status: 200;
|
||||
data: MemoryLaneResponseDto[];
|
||||
}>(`/assets/memory-lane${QS.query(QS.explode({
|
||||
day,
|
||||
month
|
||||
}))}`, {
|
||||
...opts
|
||||
}));
|
||||
}
|
||||
/**
|
||||
* This property was deprecated in v1.116.0
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue