fix(api): mark StatsDTO totalPersons + totalDocuments as required

Mirrors what npm run generate:api would emit against the StatsDTO
record (all three @Schema(REQUIRED) annotations). Round-1 fix only
updated totalStories; this brings the other two into line.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-08 12:36:54 +02:00
committed by marcel
parent 9e1754bbb0
commit b4f24f4965

View File

@@ -2138,9 +2138,9 @@ export interface components {
};
StatsDTO: {
/** Format: int64 */
totalPersons?: number;
totalPersons: number;
/** Format: int64 */
totalDocuments?: number;
totalDocuments: number;
/** Format: int64 */
totalStories: number;
};