vona-cli-set-api 1.1.135 → 1.1.137

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.
@@ -1 +1,6 @@
1
- export const errors = {} as const;
1
+ export const errors = {
2
+ SomeError: {
3
+ code: 1001,
4
+ status: 500,
5
+ },
6
+ } as const;
@@ -27,6 +27,8 @@ export interface IEntityOptions<%=argv.resourceNameCapitalize%> extends IDecorat
27
27
  },
28
28
  })
29
29
  export class Entity<%=argv.resourceNameCapitalize%> extends EntityBase {
30
+ // AI guidance: Ordinary text fields intentionally use the implicit default Input renderer.
31
+ // Add ZovaRender.field(...) only when field semantics need a specialized renderer.
30
32
  @Api.field(
31
33
  v.title($locale('Name')),
32
34
  v.required(),
@@ -27,6 +27,8 @@ export interface IEntityOptions<%=argv.resourceNameCapitalize%> extends IDecorat
27
27
  },
28
28
  })
29
29
  export class Entity<%=argv.resourceNameCapitalize%> extends EntityBase {
30
+ // AI guidance: Ordinary text fields intentionally use the implicit default Input renderer.
31
+ // Add ZovaRender.field(...) only when field semantics need a specialized renderer.
30
32
  @Api.field(
31
33
  v.title($locale('Name')),
32
34
  v.required(),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-cli-set-api",
3
- "version": "1.1.135",
4
- "gitHead": "22b49993eed26ea1065864d7832d46d2215df816",
3
+ "version": "1.1.137",
4
+ "gitHead": "75a09e6a22891e958802ee649ed454db38f90c16",
5
5
  "description": "vona cli-set-api",
6
6
  "keywords": [
7
7
  "framework",
@@ -41,12 +41,12 @@
41
41
  "@babel/plugin-proposal-decorators": "^7.29.0",
42
42
  "@babel/plugin-transform-class-properties": "^7.28.6",
43
43
  "@babel/plugin-transform-typescript": "^7.28.6",
44
- "@cabloy/cli": "^3.1.28",
44
+ "@cabloy/cli": "^3.1.29",
45
45
  "@cabloy/dotenv": "^1.2.8",
46
46
  "@cabloy/extend": "^3.2.8",
47
- "@cabloy/module-glob": "^5.3.17",
47
+ "@cabloy/module-glob": "^5.3.18",
48
48
  "@cabloy/module-info": "^2.0.3",
49
- "@cabloy/utils": "^2.1.26",
49
+ "@cabloy/utils": "^2.1.27",
50
50
  "@cabloy/word-utils": "^2.1.8",
51
51
  "@lcov-viewer/cli": "^1.3.0",
52
52
  "@rollup/plugin-alias": "^5.1.1",
@@ -73,7 +73,7 @@
73
73
  "ts-node-maintained": "^10.9.6",
74
74
  "urllib": "^4.9.0",
75
75
  "uuid": "^11.1.0",
76
- "vona-core": "^5.1.36",
76
+ "vona-core": "^5.1.38",
77
77
  "why-is-node-running": "^3.2.2",
78
78
  "yargs-parser": "^22.0.0"
79
79
  }