@exulu/backend 1.30.3 → 1.30.5

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 CHANGED
@@ -1,8 +1,6 @@
1
- ## [1.30.3](https://github.com/Qventu/exulu-backend/compare/v1.30.2...v1.30.3) (2025-11-04)
1
+ ## [1.30.5](https://github.com/Qventu/exulu-backend/compare/v1.30.4...v1.30.5) (2025-11-04)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * issue importing default evals ([3b5013d](https://github.com/Qventu/exulu-backend/commit/3b5013dc6357a13e5e35d815ea854cf09ed84440))
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
+ * bug if queue enum is empty ([85ef7bc](https://github.com/Qventu/exulu-backend/commit/85ef7bc8c8ff03e1890cb12cb82d6537ec65588f))
package/dist/index.cjs CHANGED
@@ -4021,7 +4021,7 @@ enum EnumProviderType {
4021
4021
  }
4022
4022
 
4023
4023
  enum QueueEnum {
4024
- ${queues.list.keys().toArray().join("\n")}
4024
+ ${queues.list.keys().toArray().length > 0 ? queues.list.keys().toArray().join("\n") : "NO_QUEUES"}
4025
4025
  }
4026
4026
 
4027
4027
  enum JobStateEnum {
@@ -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
@@ -3969,7 +3969,7 @@ enum EnumProviderType {
3969
3969
  }
3970
3970
 
3971
3971
  enum QueueEnum {
3972
- ${queues.list.keys().toArray().join("\n")}
3972
+ ${queues.list.keys().toArray().length > 0 ? queues.list.keys().toArray().join("\n") : "NO_QUEUES"}
3973
3973
  }
3974
3974
 
3975
3975
  enum JobStateEnum {
@@ -3988,6 +3988,7 @@ type StatisticsResult {
3988
3988
  }
3989
3989
  `;
3990
3990
  const fullSDL = typeDefs + mutationDefs + modelDefs + genericTypes;
3991
+ console.log("[EXULU] Full SDL:", fullSDL);
3991
3992
  const schema = makeExecutableSchema({
3992
3993
  typeDefs: fullSDL,
3993
3994
  resolvers
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.30.3",
4
+ "version": "1.30.5",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {