@exulu/backend 1.30.3 → 1.30.4
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/CHANGELOG.md +2 -4
- package/dist/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
## [1.30.
|
|
1
|
+
## [1.30.4](https://github.com/Qventu/exulu-backend/compare/v1.30.3...v1.30.4) (2025-11-04)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
* issue importing default evals ([56ae0e0](https://github.com/Qventu/exulu-backend/commit/56ae0e0fab18781c7b3b26c0df4e2744b9385569))
|
|
8
|
-
* issue importing default evals ([3976ced](https://github.com/Qventu/exulu-backend/commit/3976ced27f7180e1121bc1ba57aa01263828577f))
|
|
6
|
+
* log sdl ([30a2d34](https://github.com/Qventu/exulu-backend/commit/30a2d34bedc0e8939e68ba90697bc937e29a9034))
|
package/dist/index.cjs
CHANGED
|
@@ -4040,6 +4040,7 @@ type StatisticsResult {
|
|
|
4040
4040
|
}
|
|
4041
4041
|
`;
|
|
4042
4042
|
const fullSDL = typeDefs + mutationDefs + modelDefs + genericTypes;
|
|
4043
|
+
console.log("[EXULU] Full SDL:", fullSDL);
|
|
4043
4044
|
const schema = (0, import_schema.makeExecutableSchema)({
|
|
4044
4045
|
typeDefs: fullSDL,
|
|
4045
4046
|
resolvers
|
package/dist/index.js
CHANGED