refactor!: migrate class-validator to zod (#26597)

This commit is contained in:
Timon
2026-04-14 23:39:03 +02:00
committed by GitHub
parent 3753b7a4d1
commit 7d8f843be6
318 changed files with 7830 additions and 8316 deletions
@@ -35,7 +35,7 @@ export class AssetMetadataTable {
key!: AssetMetadataKey | string;
@Column({ type: 'jsonb' })
value!: object;
value!: Record<string, unknown>;
@UpdateIdColumn({ index: true })
updateId!: Generated<string>;
+1 -1
View File
@@ -43,7 +43,7 @@ export class MemoryTable {
type!: MemoryType;
@Column({ type: 'jsonb' })
data!: object;
data!: Record<string, unknown>;
/** unless set to true, will be automatically deleted in the future */
@Column({ type: 'boolean', default: false })