refactor: remove tag entity (#17462)

This commit is contained in:
Jason Rasmussen 2025-04-08 10:52:54 -04:00 committed by GitHub
parent 75bc32b47b
commit b6c5a03533
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 92 additions and 50 deletions

View file

@ -92,6 +92,13 @@ export type Asset = {
type: AssetType;
};
export type SidecarWriteAsset = {
id: string;
sidecarPath: string | null;
originalPath: string;
tags: Array<{ value: string }>;
};
export type AuthSharedLink = {
id: string;
expiresAt: Date | null;