fiberx-backend-toolkit 0.0.42 → 0.0.43

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.
@@ -428,7 +428,7 @@ for (const register of associationMethods) {
428
428
  // -------------------------
429
429
  // Create named initialized exports
430
430
  // -------------------------
431
- ${model_names.map(m => `const ${m}Model = initializedModels["${m}"];`).join("\n")}
431
+ ${model_names.map(m => `const ${m}Model: typeof ${m} = initializedModels["${m}"];`).join("\n")}
432
432
 
433
433
  // -------------------------
434
434
  // Export raw + initialized
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fiberx-backend-toolkit",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "A TypeScript backend toolkit providing shared domain logic, infrastructure helpers, and utilities for FiberX server-side applications and services.",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",