chore(build-docs): relocate OpenAPI location

This commit is contained in:
Elian Doran
2025-11-02 18:14:03 +02:00
parent 85bfd49d1c
commit 68c6260e45
3 changed files with 2 additions and 2 deletions

View File

@@ -13,11 +13,11 @@ const DIR_PREFIX = "rest-api"
const buildInfos: BuildInfo[] = [ const buildInfos: BuildInfo[] = [
{ {
// Paths are relative to Git root. // Paths are relative to Git root.
specPath: "apps/server/src/assets/api-openapi.yaml", specPath: "apps/server/internal.openapi.yaml",
outDir: `${DIR_PREFIX}/internal` outDir: `${DIR_PREFIX}/internal`
}, },
{ {
specPath: "apps/server/src/assets/etapi.openapi.yaml", specPath: "apps/server/etapi.openapi.yaml",
outDir: `${DIR_PREFIX}/etapi` outDir: `${DIR_PREFIX}/etapi`
} }
]; ];