mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 05:46:46 +01:00
17 lines
584 B
TypeScript
17 lines
584 B
TypeScript
|
import { APIKeyEntity } from '@app/infra';
|
||
|
|
||
|
export const IKeyRepository = 'IKeyRepository';
|
||
|
|
||
|
export interface IKeyRepository {
|
||
|
create(dto: Partial<APIKeyEntity>): Promise<APIKeyEntity>;
|
||
|
update(userId: string, id: number, dto: Partial<APIKeyEntity>): Promise<APIKeyEntity>;
|
||
|
delete(userId: string, id: number): Promise<void>;
|
||
|
/**
|
||
|
* Includes the hashed `key` for verification
|
||
|
* @param id
|
||
|
*/
|
||
|
getKey(id: number): Promise<APIKeyEntity | null>;
|
||
|
getById(userId: string, id: number): Promise<APIKeyEntity | null>;
|
||
|
getByUserId(userId: string): Promise<APIKeyEntity[]>;
|
||
|
}
|