mirror of
https://github.com/immich-app/immich.git
synced 2025-11-28 07:49:52 +09:00
feat: sync implementation for the user entity (#16234)
* ci: print out typeorm generation changes * feat: sync implementation for the user entity wip --------- Co-authored-by: Jason Rasmussen <jason@rasm.me>
This commit is contained in:
@@ -4,6 +4,7 @@ import {
|
||||
ImageFormat,
|
||||
JobName,
|
||||
QueueName,
|
||||
SyncEntityType,
|
||||
TranscodeTarget,
|
||||
VideoCodec,
|
||||
} from 'src/enum';
|
||||
@@ -409,3 +410,9 @@ export interface IBulkAsset {
|
||||
addAssetIds: (id: string, assetIds: string[]) => Promise<void>;
|
||||
removeAssetIds: (id: string, assetIds: string[]) => Promise<void>;
|
||||
}
|
||||
|
||||
export type SyncAck = {
|
||||
type: SyncEntityType;
|
||||
ackEpoch: string;
|
||||
ids: string[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user