@exulu/backend 1.30.4 → 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,6 +1,6 @@
1
- ## [1.30.4](https://github.com/Qventu/exulu-backend/compare/v1.30.3...v1.30.4) (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
- * log sdl ([30a2d34](https://github.com/Qventu/exulu-backend/commit/30a2d34bedc0e8939e68ba90697bc937e29a9034))
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 {
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 {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.30.4",
4
+ "version": "1.30.5",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {