mirror of
https://github.com/immich-app/immich.git
synced 2025-11-15 02:53:21 -05:00
22 lines
608 B
TypeScript
22 lines
608 B
TypeScript
import { PartnerEntity } from 'src/entities/partner.entity';
|
|
|
|
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>;
|
|
update(entity: Partial<PartnerEntity>): Promise<PartnerEntity>;
|
|
}
|