@kosdev-code/kos-nx-plugin 2.1.12 → 2.1.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kosdev-code/kos-nx-plugin",
3
- "version": "2.1.12",
3
+ "version": "2.1.13",
4
4
  "type": "commonjs",
5
5
  "generators": "./generators.json",
6
6
  "publishConfig": {
@@ -19,7 +19,7 @@
19
19
  "main": "./src/index.js",
20
20
  "kos": {
21
21
  "build": {
22
- "gitHash": "85ad27fbbd7f6c01ba3ce9ef06dbf6707d5c4705"
22
+ "gitHash": "b11908d79cb7e6923c43abbe2d9b43b1eb3e05c5"
23
23
  }
24
24
  }
25
25
  }
@@ -62,7 +62,6 @@ export class <%= nameProperCase %>ModelImpl implements IKosDataModel, IKosIdent
62
62
  <% if (isDecoratorCompanion) { %>
63
63
  // Companion decorator automatically provides getCompanionParent() and parent property proxying
64
64
  <% } %>
65
- // Future support is automatically initialized by @kosFutureAware decorator
66
65
  if (options) {
67
66
  // Assign options properties here.
68
67
  }
@@ -1,5 +1,5 @@
1
- // Import implementation class but don't export it directly
2
- export { <%= nameProperCase %>Model } from "./<%= nameDashCase %>-model";
1
+ // Export registration bean
2
+ export { <%= nameProperCase %> } from "./<%= nameDashCase %>-model";
3
3
 
4
4
  // Export types
5
5
  export type { <%= nameProperCase %>Model } from "./<%= nameDashCase %>-model";