refactor: remove smart search entity (#17447)

refactor: smart search entity
This commit is contained in:
Jason Rasmussen 2025-04-08 09:56:45 -04:00 committed by GitHub
parent 2b131fe935
commit fdbe6d649f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 125 additions and 134 deletions

4
server/src/db.d.ts vendored
View file

@ -4,7 +4,7 @@
*/
import type { ColumnType } from 'kysely';
import { AssetType, MemoryType, Permission, SyncEntityType } from 'src/enum';
import { AssetFileType, AssetType, MemoryType, Permission, SyncEntityType } from 'src/enum';
import { UserTable } from 'src/schema/tables/user.table';
import { OnThisDayData } from 'src/types';
@ -106,7 +106,7 @@ export interface AssetFiles {
createdAt: Generated<Timestamp>;
id: Generated<string>;
path: string;
type: string;
type: AssetFileType;
updatedAt: Generated<Timestamp>;
updateId: Generated<string>;
}