view data fixes

This commit is contained in:
2026-01-24 00:52:27 +01:00
parent 62e8b768ce
commit ae59df61eb
321 changed files with 1157 additions and 2234 deletions

View File

@@ -62,7 +62,7 @@ async function generateSpec() {
const schemas: Record<string, OpenAPISchema> = {};
// Find all DTO files (sorted for deterministic output)
const dtoFiles = await glob('apps/api/src/domain/*/dtos/**/*.ts', {
const dtoFiles = await glob('apps/api/src/domain/**/{dto,dtos}/**/*.ts', {
cwd: process.cwd()
});
dtoFiles.sort((a, b) => a.localeCompare(b));