feat(server): add memories statistics resource (#19035)

This commit is contained in:
Jonathan Gilbert
2025-06-10 23:47:46 +10:00
committed by GitHub
parent 16745e77d4
commit e88bd74fd2
12 changed files with 352 additions and 17 deletions
+5
View File
@@ -71,6 +71,11 @@ export class MemoryCreateDto extends MemoryBaseDto {
assetIds?: string[];
}
export class MemoryStatisticsResponseDto {
@ApiProperty({ type: 'integer' })
total!: number;
}
export class MemoryResponseDto {
id!: string;
createdAt!: Date;