mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-12-31 22:36:33 +00:00
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
21 lines
534 B
TypeScript
21 lines
534 B
TypeScript
import { PartnerEntity } from '@app/infra/entities';
|
|
|
|
export interface PartnerIds {
|
|
sharedById: string;
|
|
sharedWithId: string;
|
|
}
|
|
|
|
export enum PartnerDirection {
|
|
SharedBy = 'shared-by',
|
|
SharedWith = 'shared-with',
|
|
}
|
|
|
|
export const IPartnerRepository = 'IPartnerRepository';
|
|
|
|
export interface IPartnerRepository {
|
|
getAll(userId: string): Promise<PartnerEntity[]>;
|
|
get(partner: PartnerIds): Promise<PartnerEntity | null>;
|
|
create(partner: PartnerIds): Promise<PartnerEntity>;
|
|
remove(entity: PartnerEntity): Promise<void>;
|
|
}
|