@palbase/backend 25.0.0 → 25.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/palbase-backend.cjs +2 -0
- package/dist/bin/palbase-backend.cjs.map +1 -1
- package/dist/bin/palbase-backend.js +2 -2
- package/dist/{chunk-43A3KGWL.js → chunk-34I4GB7D.js} +4 -2
- package/dist/{chunk-43A3KGWL.js.map → chunk-34I4GB7D.js.map} +1 -1
- package/dist/{chunk-ZQRWW37O.js → chunk-35PNTIRN.js} +5 -1
- package/dist/chunk-35PNTIRN.js.map +1 -0
- package/dist/{chunk-OEQBHE2Z.js → chunk-HBOJLP2Z.js} +19 -4
- package/dist/chunk-HBOJLP2Z.js.map +1 -0
- package/dist/{chunk-5CMLOAEF.js → chunk-YOY5DFQS.js} +2 -2
- package/dist/db/env.cjs.map +1 -1
- package/dist/db/env.d.cts +2 -1
- package/dist/db/env.d.ts +2 -1
- package/dist/db/index.cjs +17 -3
- package/dist/db/index.cjs.map +1 -1
- package/dist/db/index.d.cts +1 -1
- package/dist/db/index.d.ts +1 -1
- package/dist/db/index.js +1 -1
- package/dist/engine/index.cjs +2 -0
- package/dist/engine/index.cjs.map +1 -1
- package/dist/engine/index.d.cts +2 -2
- package/dist/engine/index.d.ts +2 -2
- package/dist/engine/index.js +2 -2
- package/dist/{index-Ct1iiB4N.d.ts → index-B4CcpqLb.d.ts} +23 -16
- package/dist/{index-BF1f0DfA.d.ts → index-B8v6hVyU.d.ts} +1 -1
- package/dist/{index-CwaWRhyc.d.cts → index-DmVyY6N7.d.cts} +23 -16
- package/dist/{index-CoaDN9dL.d.cts → index-VsjBQ4Kw.d.cts} +1 -1
- package/dist/index.cjs +75 -49
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -7
- package/dist/index.d.ts +8 -7
- package/dist/index.js +58 -49
- package/dist/index.js.map +1 -1
- package/dist/openapi/index.cjs +1 -1
- package/dist/openapi/index.cjs.map +1 -1
- package/dist/openapi/index.js +3 -3
- package/dist/openapi/index.js.map +1 -1
- package/docs/llms-full.txt +36 -5
- package/docs/schema.md +36 -5
- package/package.json +1 -1
- package/dist/chunk-OEQBHE2Z.js.map +0 -1
- package/dist/chunk-ZQRWW37O.js.map +0 -1
- /package/dist/{chunk-5CMLOAEF.js.map → chunk-YOY5DFQS.js.map} +0 -0
package/dist/openapi/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getErrorRegistry
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-YOY5DFQS.js";
|
|
4
4
|
import {
|
|
5
5
|
getRoom,
|
|
6
6
|
getRoutes,
|
|
7
7
|
isController,
|
|
8
8
|
resolveController,
|
|
9
9
|
resolveEffectiveAuth
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-35PNTIRN.js";
|
|
11
11
|
import {
|
|
12
12
|
__commonJS,
|
|
13
13
|
__require,
|
|
@@ -6227,7 +6227,6 @@ async function aggregateOpenAPI(projectRoot, options = {}) {
|
|
|
6227
6227
|
for (const route of controllerRoutes) {
|
|
6228
6228
|
registerControllerRoute(registry, route);
|
|
6229
6229
|
}
|
|
6230
|
-
const generator = new OpenApiGeneratorV312(registry.definitions);
|
|
6231
6230
|
const roomExt = {};
|
|
6232
6231
|
for (const lc of loadedControllers) {
|
|
6233
6232
|
const room = getRoom(lc.controller);
|
|
@@ -6240,6 +6239,7 @@ async function aggregateOpenAPI(projectRoot, options = {}) {
|
|
|
6240
6239
|
return `#/components/schemas/${componentName}`;
|
|
6241
6240
|
});
|
|
6242
6241
|
}
|
|
6242
|
+
const generator = new OpenApiGeneratorV312(registry.definitions);
|
|
6243
6243
|
const document = generator.generateDocument({
|
|
6244
6244
|
openapi: "3.2.0",
|
|
6245
6245
|
info: {
|