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
parent 69b0526e2c
commit ca902c3ecf

View File

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