refactor: dedicated query for asset migration job (#17631)

This commit is contained in:
Daniel Dietzler
2025-04-15 21:49:15 +02:00
committed by GitHub
parent 26f0ea4cb5
commit 21becbf1b0
6 changed files with 54 additions and 9 deletions

View File

@@ -121,6 +121,13 @@ export type UserAdmin = User & {
metadata: UserMetadataItem[];
};
export type StorageAsset = {
id: string;
ownerId: string;
files: AssetFile[];
encodedVideoPath: string | null;
};
export type Asset = {
createdAt: Date;
updatedAt: Date;