@kosdev-code/kos-codegen-core 0.1.0-next.820 → 0.1.0-next.823
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-codegen-core",
|
|
3
|
-
"version": "0.1.0-next.
|
|
3
|
+
"version": "0.1.0-next.823",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"module": "./index.mjs",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"kos": {
|
|
27
27
|
"build": {
|
|
28
|
-
"gitHash": "
|
|
28
|
+
"gitHash": "cee7c79782c53b9374f9ea76021a985c6849f707"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -68,9 +68,10 @@ export class <%= nameProperCase %>ModelImpl implements IKosDataModel, IKosIdent
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
updateModel(
|
|
72
|
-
//
|
|
73
|
-
//
|
|
71
|
+
updateModel(_options: <%= nameProperCase %>Options): void {
|
|
72
|
+
// Rename _options to options when implementing. Copy fields in place
|
|
73
|
+
// (same verbatim rule as the constructor). Cross-model reads =
|
|
74
|
+
// @kosDependency + computed getters over container indexes.
|
|
74
75
|
}
|
|
75
76
|
|
|
76
77
|
<% if (hasFutureSupport) { %>
|