mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 04:06:26 -04:00
18 lines
797 B
TypeScript
18 lines
797 B
TypeScript
import { LibraryStatsResponseDto } from 'src/dtos/library.dto';
|
|
import { LibraryEntity } from 'src/entities/library.entity';
|
|
|
|
export const ILibraryRepository = 'ILibraryRepository';
|
|
|
|
export interface ILibraryRepository {
|
|
getCountForUser(ownerId: string): Promise<number>;
|
|
getAll(withDeleted?: boolean): Promise<LibraryEntity[]>;
|
|
getAllDeleted(): Promise<LibraryEntity[]>;
|
|
get(id: string, withDeleted?: boolean): Promise<LibraryEntity | null>;
|
|
create(library: Partial<LibraryEntity>): Promise<LibraryEntity>;
|
|
delete(id: string): Promise<void>;
|
|
softDelete(id: string): Promise<void>;
|
|
update(library: Partial<LibraryEntity>): Promise<LibraryEntity>;
|
|
getStatistics(id: string): Promise<LibraryStatsResponseDto>;
|
|
getAssetIds(id: string, withDeleted?: boolean): Promise<string[]>;
|
|
}
|