mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
refactor: metadata entity (#17492)
This commit is contained in:
parent
3e372500b0
commit
206545356d
14 changed files with 120 additions and 148 deletions
|
|
@ -1,6 +1,5 @@
|
|||
import { UserMetadataEntity } from 'src/entities/user-metadata.entity';
|
||||
import { AssetStatus, AssetType, MemoryType, Permission, UserStatus } from 'src/enum';
|
||||
import { OnThisDayData } from 'src/types';
|
||||
import { OnThisDayData, UserMetadataItem } from 'src/types';
|
||||
|
||||
export type AuthUser = {
|
||||
id: string;
|
||||
|
|
@ -96,7 +95,7 @@ export type UserAdmin = User & {
|
|||
quotaSizeInBytes: number | null;
|
||||
quotaUsageInBytes: number;
|
||||
status: UserStatus;
|
||||
metadata: UserMetadataEntity[];
|
||||
metadata: UserMetadataItem[];
|
||||
};
|
||||
|
||||
export type Asset = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue