cabloy 5.1.75 → 5.1.76

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.
@@ -234,7 +234,7 @@ function buildMessages(filePath: string, result: AnalysisResult): string {
234
234
 
235
235
  if (result.reverseReason) {
236
236
  messages.push(
237
- `Reverse chain: ${result.reverseReason} If backend tooling or backend metadata will consume this handoff, refresh generated metadata when applicable, then run \`npm run build:zova:admin\` and \`npm run deps:vona\` for the Cabloy Basic Admin path.`,
237
+ `Reverse chain: ${result.reverseReason} If backend tooling or backend metadata will consume this handoff, refresh generated metadata when applicable, run the relevant Zova build first, and then run \`npm run deps:vona\` for the Cabloy Basic path. Use \`npm run build:zova:admin\` for Admin changes, and also run \`npm run build:zova:web\` when the Web flavor is affected.`,
238
238
  );
239
239
  if (isHighConfidenceReverseSource(filePath)) {
240
240
  if (shouldSkipAutoSync(filePath)) {
@@ -11,17 +11,19 @@ Read the public [Contract Loop Playbook](../../../cabloy-docs/fullstack/contract
11
11
 
12
12
  ## Important recovery note for stale local file consumers
13
13
 
14
- When generated `.zova-rest` output or other generated consumer artifacts already contain the expected new keys or types but Vona still behaves as if old consumer types are installed, treat that first as a local file-dependency installation problem rather than a source-editing problem.
14
+ When the generated `.zova-rest` artifacts or other generated consumer artifacts already contain the expected new keys or types but Vona still sees stale consumer types, treat that first as a local dependency drift problem rather than a source-editing problem.
15
15
 
16
16
  This includes the reverse fullstack direction where newly added frontend resources such as custom renderers are later consumed by backend metadata.
17
17
 
18
18
  In that situation:
19
19
 
20
20
  1. run the normal sync or regeneration flow first
21
- 2. if Vona consumes newly added or changed Zova Admin render/action/metadata in Cabloy Basic, run `npm run build:zova:admin` from the repo root before anything else
22
- 3. otherwise, if the change only affects flavor-built REST/type output, rebuild the relevant Zova flavor output first
23
- 4. run `deps:vona`
24
- 5. if stale behavior remains, rebuild `vona/node_modules` and reinstall dependencies
21
+ 2. run the relevant Zova build from the repo root before `npm run deps:vona`
22
+ - use `npm run build:zova:admin` for Admin-facing render/action/metadata changes
23
+ - also run `npm run build:zova:web` when the Web flavor is affected
24
+ 3. do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together
25
+ 4. run `npm run deps:vona`
26
+ 5. if the generated `.zova-rest` artifacts already contain the expected changes but Vona still sees stale types, delete `vona/node_modules` and reinstall dependencies
25
27
 
26
28
  Do not keep debugging source-level contract or renderer changes until the local file-package installation state is known to be healthy.
27
29
 
@@ -123,8 +123,9 @@ Practical check after generation:
123
123
  - module metadata
124
124
  2. generated handoff
125
125
  - metadata output
126
- - flavor build output
126
+ - the relevant flavor build output
127
127
  3. sync surface
128
+ - run the relevant Zova build first
128
129
  - `deps:vona`
129
130
  4. consumer layers
130
131
  - backend `ZovaRender.*(...)` references
@@ -50,10 +50,10 @@ If all of these are true:
50
50
  - generated `.zova-rest` or related generated consumer artifacts already contain the expected new keys or types
51
51
  - the normal regeneration or sync flow already ran
52
52
  - when relevant, the affected Zova flavor build already ran
53
- - `deps:vona` already ran
54
- - Vona still behaves as if old consumer types are installed
53
+ - `npm run deps:vona` already ran
54
+ - Vona still sees stale types
55
55
 
56
- Then suspect a stale or unhealthy local installation state in `vona/node_modules`.
56
+ Then treat it as local dependency drift and suspect a stale or unhealthy local installation state in `vona/node_modules`.
57
57
 
58
58
  Recovery action:
59
59
 
@@ -185,7 +185,7 @@ Stay frontend-first, but if the frontend task clearly depends on backend contrac
185
185
  - backend OpenAPI output may need refresh or inspection
186
186
  - backend DTO/controller response shape may be the real source of truth
187
187
  - frontend SDK or schema-driven layers should be regenerated from contract output rather than hand-patched
188
- - newly added frontend resources that backend metadata will consume may require a reverse handoff through frontend build output and `deps:vona`
188
+ - newly added frontend resources that backend metadata will consume may require a reverse handoff through the relevant Zova build first and then `npm run deps:vona`
189
189
 
190
190
  Do not turn the skill into a backend workflow. Only surface the reminder when the contract boundary is clearly involved.
191
191
 
@@ -15,8 +15,9 @@ After generating or extending a frontend thread, check which follow-up layers ap
15
15
  - SSR init-data needs
16
16
  - OpenAPI SDK or schema-driven layer impact
17
17
  - backend contract reminder if frontend depends on generated backend contract output
18
- - if backend metadata will consume newly added frontend render resources, run the relevant Zova build and then `deps:vona`
19
- - if generated `.zova-rest` output is updated but backend still sees stale shared types, rebuild `vona/node_modules` and reinstall
18
+ - if backend metadata will consume newly added frontend render resources, run the relevant Zova build first and then `npm run deps:vona`
19
+ - do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together
20
+ - if the generated `.zova-rest` artifacts are updated but backend still sees stale shared types after `npm run deps:vona`, treat it as local dependency drift and rebuild `vona/node_modules` and reinstall
20
21
 
21
22
  ## Interaction and UI follow-up
22
23
 
@@ -9,12 +9,12 @@ Use this skill when the user wants to change a field on an existing Vona backend
9
9
 
10
10
  ## Important recovery note for stale generated consumers
11
11
 
12
- When generated `.zova-rest` output already contains the expected new keys or types but Vona still behaves as if old consumer types are installed, treat that first as a local file-dependency installation problem rather than a source-editing problem.
12
+ When the generated `.zova-rest` artifacts already contain the expected new keys or types but Vona still sees stale consumer types, treat that first as a local dependency drift problem rather than a source-editing problem.
13
13
 
14
14
  In that situation:
15
15
 
16
- 1. run the normal sync flow such as `deps:vona`
17
- 2. if the stale behavior remains, rebuild `vona/node_modules` and reinstall dependencies
16
+ 1. run the normal sync flow, including the relevant Zova build first and then `npm run deps:vona`
17
+ 2. if the generated `.zova-rest` artifacts already contain the expected changes but the stale behavior remains, rebuild `vona/node_modules` and reinstall dependencies
18
18
 
19
19
  Keep this recovery rule visible during renderer-aware or contract-loop follow-up work. Do not keep debugging source-level renderer registrations until the local file-package installation state is known to be healthy.
20
20
 
@@ -94,9 +94,9 @@ cd vona && npm test -- <resource-test>.test.ts
94
94
 
95
95
  ## 6. Recovery rule when generated keys still look stale
96
96
 
97
- If the generated `.zova-rest` files already contain the new renderer keys but Vona still behaves as if old types are installed:
97
+ If the generated `.zova-rest` artifacts already contain the new renderer keys but Vona still sees stale types after the normal sync flow:
98
98
 
99
- - suspect a stale or unhealthy `vona/node_modules` installation state
100
- - after normal `deps:vona`, rebuild `vona/node_modules` and reinstall dependencies if needed
99
+ - treat it as local dependency drift
100
+ - after the relevant Zova build and `npm run deps:vona`, rebuild `vona/node_modules` and reinstall dependencies if needed
101
101
 
102
102
  This is an installation-state recovery step, not the normal first move.
@@ -67,14 +67,16 @@ Apply when the user explicitly wants to demonstrate custom renderer development:
67
67
  ### If custom frontend renderers were introduced
68
68
 
69
69
  - `npm run zova :tools:metadata <module-name>`
70
- - `npm run build:zova:admin`
70
+ - run the relevant Zova build first:
71
+ - `npm run build:zova:admin` for Admin-facing render/action/metadata changes
72
+ - also `npm run build:zova:web` when the Web flavor is affected
71
73
  - `npm run deps:vona`
72
74
  - `cd vona && npm run tsc`
73
75
  - `cd vona && npm test -- <resource-test>.test.ts`
74
76
 
75
77
  ## Common recovery rule
76
78
 
77
- If generated `.zova-rest` output already contains the new renderer keys but Vona still behaves as if old types are installed:
79
+ If the generated `.zova-rest` artifacts already contain the new renderer keys but Vona still sees stale types after the normal sync flow:
78
80
 
79
- - suspect a stale `vona/node_modules` installation state
81
+ - treat it as local dependency drift
80
82
  - rebuild `vona/node_modules` and reinstall dependencies if normal `deps:vona` sync did not recover the local file-package installation state
@@ -58,7 +58,14 @@ cd vona && npm run tsc
58
58
  cd vona && npm test -- <resource-test>.test.ts
59
59
  ```
60
60
 
61
- If web SSR also matters, add the web build and then repeat dependency sync as needed.
61
+ If the same handoff must also be available to Web, also run:
62
+
63
+ ```bash
64
+ npm run build:zova:web
65
+ npm run deps:vona
66
+ ```
67
+
68
+ Do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together.
62
69
 
63
70
  ## 4. What to verify in the result
64
71
 
@@ -82,11 +89,11 @@ Confirm:
82
89
 
83
90
  If all of these are true:
84
91
 
85
- - generated `.zova-rest` files already contain the new renderer keys
86
- - `deps:vona` was run
87
- - Vona still behaves as if old renderer types are installed
92
+ - the generated `.zova-rest` artifacts already contain the new renderer keys
93
+ - `npm run deps:vona` was run after the relevant Zova build
94
+ - Vona still sees stale renderer types
88
95
 
89
- Then suspect a stale or unhealthy local installation state in `vona/node_modules`.
96
+ Then treat it as local dependency drift and suspect a stale or unhealthy local installation state in `vona/node_modules`.
90
97
 
91
98
  Recovery action:
92
99
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.1.76
4
+
5
+ ### Improvements
6
+
7
+ - Unify wording around reverse-chain dependency drift.
8
+ - Finish cleanup of reverse-chain documentation wording.
9
+
3
10
  ## 5.1.75
4
11
 
5
12
  ### Improvements
package/CLAUDE.md CHANGED
@@ -46,9 +46,8 @@ Before inventing a custom implementation path:
46
46
  - Treat contract-loop work as one of four branches: forward chain, reverse chain, consumer drift, or local dependency drift.
47
47
  - For the forward chain, change backend contract truth first and regenerate frontend consumers rather than hand-patching them.
48
48
  - After forward regeneration, keep frontend follow-up thin: prefer semantic model facades and reuse the existing resource-owner when the custom API still belongs to the same resource.
49
- - For the reverse chain, when Vona consumes newly added or changed Zova Admin render/action/metadata, always run `npm run build:zova:admin` before `npm run deps:vona`. Do not treat `build:rest:cabloyBasicAdmin` alone as sufficient, because the Admin JS bundle and rest output must move together.
50
- - If generated artifacts already contain the expected changes but consumers still behave stale, suspect local dependency drift before making more source edits.
51
- - For Vona consumption drift after Zova-generated type/rest output changes, if `npm run deps:vona` still leaves stale consumer types, delete `vona/node_modules` and reinstall dependencies before further debugging or hand-patching dependency links.
49
+ - For the reverse chain, always run the relevant Zova build first, then run `npm run deps:vona`: use `npm run build:zova:admin` for Admin changes, and also run `npm run build:zova:web` when the Web flavor is affected. Do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together.
50
+ - If the generated `.zova-rest` artifacts already contain the expected changes but Vona consumers still see stale types after `npm run deps:vona`, treat it as local dependency drift: delete `vona/node_modules` and reinstall dependencies before further debugging or hand-patching dependency links.
52
51
  - For Cabloy Start, apply the same reverse-chain logic but resolve the Start-specific flavor names and generated-output paths from the active Start repo before recommending commands.
53
52
  - Treat legacy docs as input material, not as unquestioned truth. When docs conflict with source code, prefer current source code.
54
53
  - For frontend work, assume Cabloy Basic and Cabloy Start share a frontend engineering layer but may diverge in UI layer, frontend flavors, suite/module availability, SSR site baselines, project assets, and generated outputs.
@@ -162,9 +162,9 @@ Then diagnose **generated-output drift**:
162
162
 
163
163
  Examples:
164
164
 
165
- - generated `.zova-rest` output already contains the new keys or types
166
- - generated SDK already contains the new method
167
- - backend or frontend still behaves as if old local file packages are installed
165
+ - the generated `.zova-rest` artifacts already contain the new keys or types
166
+ - the generated SDK already contains the new method
167
+ - backend or frontend still sees stale consumers after the normal sync flow
168
168
 
169
169
  Then suspect **local dependency drift**:
170
170
 
@@ -272,7 +272,7 @@ and then the relevant build path for the active edition and flavor.
272
272
 
273
273
  ### Stage 3: Vona sync handoff
274
274
 
275
- After the frontend-generated handoff is ready, re-sync Vona’s local file dependencies.
275
+ After the frontend-generated handoff is ready, run the relevant Zova build first and then re-sync Vona’s local dependency state with `npm run deps:vona`.
276
276
 
277
277
  For the current **Cabloy Basic Admin** branch, the representative sequence is:
278
278
 
@@ -281,7 +281,14 @@ npm run build:zova:admin
281
281
  npm run deps:vona
282
282
  ```
283
283
 
284
- If the same resource path must also be available to Web, also refresh the Web branch.
284
+ If the same resource path must also be available to Web, also run:
285
+
286
+ ```bash
287
+ npm run build:zova:web
288
+ npm run deps:vona
289
+ ```
290
+
291
+ Do not treat `build:rest:*` alone as sufficient. The SSR bundle and the generated rest output should move together.
285
292
 
286
293
  For **Cabloy Start**, use the same reverse-chain logic, but resolve the Start-specific flavor names and output paths from the active Start repo before recommending commands.
287
294
 
@@ -300,7 +307,7 @@ Typical checks:
300
307
  Use this branch only when all of these are already true:
301
308
 
302
309
  - source truth was edited in the right place
303
- - generation or build output already contains the intended change
310
+ - the generated `.zova-rest` artifacts or other build output already contain the intended change
304
311
  - the normal sync flow already ran
305
312
  - consumers still behave stale
306
313
 
@@ -125,7 +125,7 @@ For Cabloy Basic, the representative reverse-chain path is:
125
125
 
126
126
  1. change the frontend-owned truth
127
127
  2. regenerate frontend metadata when applicable
128
- 3. build the relevant frontend flavor output so the shared handoff is refreshed
128
+ 3. run the relevant Zova build so the shared handoff is refreshed
129
129
  4. run `npm run deps:vona`
130
130
  5. verify backend-side consumers can now see the refreshed handoff
131
131
 
@@ -137,7 +137,7 @@ npm run build:zova:admin
137
137
  npm run deps:vona
138
138
  ```
139
139
 
140
- If the same resource path must also be available for Web, add:
140
+ If the same resource path must also be available for Web, also run:
141
141
 
142
142
  ```bash
143
143
  npm run build:zova:web
@@ -146,7 +146,8 @@ npm run deps:vona
146
146
 
147
147
  A practical rule is:
148
148
 
149
- - treat metadata generation, flavor build, and `deps:vona` as one reverse-chain handoff
149
+ - treat metadata generation, the relevant flavor build, and `deps:vona` as one reverse-chain handoff
150
+ - do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output should move together
150
151
  - do not stop after the frontend source edit alone
151
152
 
152
153
  ## `training-student` as a compact reverse-chain specimen
@@ -194,8 +195,8 @@ This is the problem when:
194
195
  Typical fix:
195
196
 
196
197
  1. stop editing source files
197
- 2. run the normal sync flow with `npm run deps:vona`
198
- 3. if needed, rebuild `vona/node_modules` and reinstall dependencies
198
+ 2. run the normal sync flow with the relevant Zova build first and then `npm run deps:vona`
199
+ 3. if the generated `.zova-rest` artifacts already contain the expected changes but Vona still sees stale types, rebuild `vona/node_modules` and reinstall dependencies
199
200
 
200
201
  Representative recovery path:
201
202
 
@@ -103,7 +103,7 @@ Use the playbook to distinguish four cases clearly:
103
103
 
104
104
  The contract-loop model is shared across Cabloy Basic and Cabloy Start. Detect the edition to choose concrete flavor commands and generated-output paths, not to redefine the workflow model.
105
105
 
106
- When the reverse direction involves newly added frontend resources that backend tooling or backend metadata will consume, treat that as an operational handoff rather than a conceptual one: refresh generated frontend output, run the relevant flavor build, run `npm run deps:vona`, and if Vona still sees stale shared types, rebuild `vona/node_modules` and reinstall dependencies.
106
+ When the reverse direction involves newly added frontend resources that backend tooling or backend metadata will consume, treat that as an operational handoff rather than a conceptual one: refresh generated frontend output, run the relevant flavor build, then run `npm run deps:vona`, and if the generated `.zova-rest` artifacts already contain the expected changes but Vona still sees stale shared types, rebuild `vona/node_modules` and reinstall dependencies.
107
107
 
108
108
  ## How the fullstack system stays connected
109
109
 
@@ -126,7 +126,7 @@ npm run build:zova:web
126
126
  npm run deps:vona
127
127
  ```
128
128
 
129
- If backend-side type consumers still cannot see the new shared renderer types even though generated `.zova-rest` output is already correct, rebuild `vona/node_modules` and reinstall dependencies:
129
+ If backend-side type consumers still cannot see the new shared renderer types even though the generated `.zova-rest` artifacts are already correct after the normal sync flow, treat it as local dependency drift and rebuild `vona/node_modules` and reinstall dependencies:
130
130
 
131
131
  ```bash
132
132
  cd vona && rm -rf node_modules && pnpm install
@@ -73,7 +73,8 @@ Important handoff note for this phase:
73
73
  - Tutorial 4 uses the custom resource handoff branch
74
74
  - once a frontend resource created in these tutorials is later consumed by backend metadata, do not stop at frontend source edits alone
75
75
  - refresh the generated frontend output, run the relevant flavor build, then run `npm run deps:vona`
76
- - if backend-side shared types still look stale after that normal sync flow, rebuild `vona/node_modules` and reinstall dependencies
76
+ - do not treat `build:rest:*` alone as sufficient, because the SSR bundle and rest output must move together
77
+ - if the generated `.zova-rest` artifacts already contain the expected changes but backend-side shared types still look stale after that normal sync flow, treat it as local dependency drift and rebuild `vona/node_modules` and reinstall dependencies
77
78
 
78
79
  See [Contract Loop Playbook](/fullstack/contract-loop-playbook) and [Frontend Metadata Back to Backend](/fullstack/frontend-metadata-to-backend) for the full reverse-chain explanation.
79
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cabloy",
3
- "version": "5.1.75",
3
+ "version": "5.1.76",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A Node.js fullstack framework",
6
6
  "keywords": [
@@ -474,8 +474,8 @@ importers:
474
474
  specifier: npm:@cabloy/zod@4.3.8
475
475
  version: '@cabloy/zod@4.3.8'
476
476
  zova:
477
- specifier: ^5.1.118
478
- version: 5.1.118(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
477
+ specifier: ^5.1.119
478
+ version: 5.1.119(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
479
479
  zova-jsx:
480
480
  specifier: ^1.1.67
481
481
  version: 1.1.67(typescript@5.9.3)
@@ -7613,15 +7613,24 @@ packages:
7613
7613
  zova-module-a-zova@5.1.81:
7614
7614
  resolution: {integrity: sha512-H5D3TwmGVi7C4syp6EZJSy0JZB8pk92gh4zWOelj8l/WT2Xqfc/98RtL/o21lsrOobSjJC8hfplSdJWuTUO60w==}
7615
7615
 
7616
+ zova-module-a-zova@5.1.82:
7617
+ resolution: {integrity: sha512-JDgLmu/7+oPrFLb7/zhHtl739+dhuBL/J508ObWuahiVymU7wzJEPPSmi/XaCnKB58FXpfcaoe0rMoxNsT0gmA==}
7618
+
7616
7619
  zova-module-rest-resource@5.1.40:
7617
7620
  resolution: {integrity: sha512-rMqZaXSK6nJ4LW2O1yO/jZqxI7joCiWylzjutMTKpx7EfNmtK1t1nVoWFd+gCTxqgbbv9uXh0vfFaSFA7GKYFg==}
7618
7621
 
7619
7622
  zova-suite-a-zova@5.1.117:
7620
7623
  resolution: {integrity: sha512-Ceo7CqXmmDHCGKvwQ9cb90DLbF5P0s2qT/jYyBeTf8BllpSjIqYqxUPE0Eh88XYWHlTWgH28wP6SD7DeGfPaCA==}
7621
7624
 
7625
+ zova-suite-a-zova@5.1.118:
7626
+ resolution: {integrity: sha512-DhnlKOT6VG0+v60TjQNN/Qaa9v1UEsGU8jo/layFlLociG5AHUuoiCABSN4dklYcBnAVwu1EvCVQhcgnWwrPfA==}
7627
+
7622
7628
  zova@5.1.118:
7623
7629
  resolution: {integrity: sha512-hgj4FKy68B2Mve47NrhqhQEaESbdZUci/7WtlGagaZgyFzfBn19CHkWDRkJNToeBVb/LD1Zwt0HY7TDEe7WPDw==}
7624
7630
 
7631
+ zova@5.1.119:
7632
+ resolution: {integrity: sha512-st8Wwh4NvoNcZUvNb67XsG7GVhaMyFIK/EZ6Zfc0uqwdKtUShC6IBGHMc3u/28cIXRcpsH5REi9HL6SB8WQj/Q==}
7633
+
7625
7634
  zwitch@1.0.5:
7626
7635
  resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
7627
7636
 
@@ -13242,6 +13251,22 @@ snapshots:
13242
13251
  - typescript
13243
13252
  - vue
13244
13253
 
13254
+ zova-module-a-zova@5.1.82(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13255
+ dependencies:
13256
+ '@cabloy/compose': link:packages-utils/compose
13257
+ '@cabloy/deps': link:packages-utils/deps
13258
+ '@cabloy/json5': link:packages-utils/json5
13259
+ '@cabloy/module-info': 2.0.0
13260
+ '@cabloy/utils': link:packages-utils/utils
13261
+ '@cabloy/vue-router': 4.4.16(vue@3.5.39(typescript@5.9.3))
13262
+ '@cabloy/word-utils': 2.1.14
13263
+ defu: 6.1.7
13264
+ luxon: 3.7.2
13265
+ zova-jsx: 1.1.67(typescript@5.9.3)
13266
+ transitivePeerDependencies:
13267
+ - typescript
13268
+ - vue
13269
+
13245
13270
  zova-module-rest-resource@5.1.40: {}
13246
13271
 
13247
13272
  zova-suite-a-zova@5.1.117(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
@@ -13278,6 +13303,40 @@ snapshots:
13278
13303
  - typescript
13279
13304
  - vue
13280
13305
 
13306
+ zova-suite-a-zova@5.1.118(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13307
+ dependencies:
13308
+ zova-module-a-api: 5.1.21
13309
+ zova-module-a-app: 5.1.24
13310
+ zova-module-a-bean: 5.1.31
13311
+ zova-module-a-behavior: 5.1.25
13312
+ zova-module-a-behaviors: 5.1.21
13313
+ zova-module-a-boundary: 5.1.21
13314
+ zova-module-a-command: 5.1.33
13315
+ zova-module-a-fetch: 5.1.23
13316
+ zova-module-a-form: 5.1.43(vue@3.5.39(typescript@5.9.3))
13317
+ zova-module-a-icon: 5.1.26
13318
+ zova-module-a-interceptor: 5.1.29
13319
+ zova-module-a-logger: 5.1.26
13320
+ zova-module-a-meta: 5.1.21
13321
+ zova-module-a-model: 5.1.30(vue@3.5.39(typescript@5.9.3))
13322
+ zova-module-a-openapi: 5.1.41
13323
+ zova-module-a-router: 5.1.29
13324
+ zova-module-a-routerstack: 5.1.26
13325
+ zova-module-a-routertabs: 5.1.32
13326
+ zova-module-a-ssr: 5.1.26
13327
+ zova-module-a-ssrhmr: 5.1.22
13328
+ zova-module-a-ssrserver: 5.1.22
13329
+ zova-module-a-style: 5.1.32
13330
+ zova-module-a-table: 5.1.37(vue@3.5.39(typescript@5.9.3))
13331
+ zova-module-a-zod: 5.1.34
13332
+ zova-module-a-zova: 5.1.82(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
13333
+ transitivePeerDependencies:
13334
+ - '@vue/composition-api'
13335
+ - debug
13336
+ - supports-color
13337
+ - typescript
13338
+ - vue
13339
+
13281
13340
  zova@5.1.118(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13282
13341
  dependencies:
13283
13342
  zova-core: 5.1.61(patch_hash=0f4164c4d2bbb16d671beb5c26759dff37769be0709df941bc7b90b94261ac54)(typescript@5.9.3)
@@ -13289,6 +13348,17 @@ snapshots:
13289
13348
  - typescript
13290
13349
  - vue
13291
13350
 
13351
+ zova@5.1.119(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13352
+ dependencies:
13353
+ zova-core: 5.1.61(patch_hash=0f4164c4d2bbb16d671beb5c26759dff37769be0709df941bc7b90b94261ac54)(typescript@5.9.3)
13354
+ zova-suite-a-zova: 5.1.118(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
13355
+ transitivePeerDependencies:
13356
+ - '@vue/composition-api'
13357
+ - debug
13358
+ - supports-color
13359
+ - typescript
13360
+ - vue
13361
+
13292
13362
  zwitch@1.0.5: {}
13293
13363
 
13294
13364
  zwitch@2.0.4: {}
@@ -74,7 +74,7 @@ importers:
74
74
  version: 10.5.1(postcss@8.5.15)
75
75
  axios:
76
76
  specifier: ^1.16.1
77
- version: 1.18.1
77
+ version: 1.18.1(supports-color@10.2.2)
78
78
  compression:
79
79
  specifier: ^1.8.1
80
80
  version: 1.8.1
@@ -308,8 +308,8 @@ importers:
308
308
  version: link:src/suite/a-training/modules/training-student
309
309
  devDependencies:
310
310
  '@cabloy/cli':
311
- specifier: ^3.1.26
312
- version: 3.1.26(vue@3.5.38(typescript@5.9.3))
311
+ specifier: ^3.1.27
312
+ version: 3.1.27(vue@3.5.38(typescript@5.9.3))
313
313
  '@cabloy/lint':
314
314
  specifier: ^5.1.27
315
315
  version: 5.1.30(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3))(@typescript-eslint/utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.71.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
@@ -383,8 +383,8 @@ importers:
383
383
  packages-cli/cli:
384
384
  dependencies:
385
385
  '@cabloy/cli':
386
- specifier: ^3.1.26
387
- version: 3.1.26(vue@3.5.38(typescript@5.9.3))
386
+ specifier: ^3.1.27
387
+ version: 3.1.27(vue@3.5.38(typescript@5.9.3))
388
388
  '@cabloy/process-helper':
389
389
  specifier: ^3.1.8
390
390
  version: 3.1.8
@@ -395,7 +395,7 @@ importers:
395
395
  specifier: ^7.6.2
396
396
  version: 7.8.5
397
397
  zova-cli-set-front:
398
- specifier: ^1.2.91
398
+ specifier: ^1.2.92
399
399
  version: link:../cli-set-front
400
400
  devDependencies:
401
401
  clean-package:
@@ -417,8 +417,8 @@ importers:
417
417
  specifier: ^7.28.6
418
418
  version: 7.29.7(@babel/core@7.29.7)
419
419
  '@cabloy/cli':
420
- specifier: ^3.1.26
421
- version: 3.1.26(vue@3.5.38(typescript@5.9.3))
420
+ specifier: ^3.1.27
421
+ version: 3.1.27(vue@3.5.38(typescript@5.9.3))
422
422
  '@cabloy/extend':
423
423
  specifier: ^3.2.8
424
424
  version: 3.2.8
@@ -816,7 +816,7 @@ importers:
816
816
  specifier: ^5.1.61
817
817
  version: link:../zova-core
818
818
  zova-suite-a-zova:
819
- specifier: ^5.1.117
819
+ specifier: ^5.1.118
820
820
  version: link:../../src/suite-vendor/a-zova
821
821
  devDependencies:
822
822
  clean-package:
@@ -1001,7 +1001,7 @@ importers:
1001
1001
  specifier: ^5.1.34
1002
1002
  version: link:modules/a-zod
1003
1003
  zova-module-a-zova:
1004
- specifier: ^5.1.81
1004
+ specifier: ^5.1.82
1005
1005
  version: link:modules/a-zova
1006
1006
 
1007
1007
  src/suite-vendor/a-zova/modules/a-api:
@@ -1075,7 +1075,7 @@ importers:
1075
1075
  dependencies:
1076
1076
  axios:
1077
1077
  specifier: ^1.16.1
1078
- version: 1.18.1
1078
+ version: 1.18.1(supports-color@10.2.2)
1079
1079
  devDependencies:
1080
1080
  clean-package:
1081
1081
  specifier: ^2.2.0
@@ -1344,8 +1344,8 @@ importers:
1344
1344
  version: link:../../../../../packages-utils/zova-jsx
1345
1345
  devDependencies:
1346
1346
  '@cabloy/cli':
1347
- specifier: ^3.1.26
1348
- version: 3.1.26(vue@3.5.38(typescript@5.9.3))
1347
+ specifier: ^3.1.27
1348
+ version: 3.1.27(vue@3.5.38(typescript@5.9.3))
1349
1349
  '@types/luxon':
1350
1350
  specifier: ^3.7.1
1351
1351
  version: 3.7.2
@@ -1961,8 +1961,8 @@ packages:
1961
1961
  '@bufbuild/protobuf@2.12.1':
1962
1962
  resolution: {integrity: sha512-BvAMfS6LrgZiryOAZ4pBYucu4wG/Ei/9o9DZ9akbREnMLbPJiom2i8b9C8IsKErQoiKqVhrerzt3kOT/RrzLHg==}
1963
1963
 
1964
- '@cabloy/cli@3.1.26':
1965
- resolution: {integrity: sha512-EPE7N3GDbPiimWPO/pdZ06ZWFlZm2gdtgb7mZ5my2Jgakw0Zp9Zt1aDyHx8il/nO6sHzzsESfbHC2/lXXpENTw==}
1964
+ '@cabloy/cli@3.1.27':
1965
+ resolution: {integrity: sha512-KMNKh6AbkxfgWx4+HL5ufDEInVdx11k8mIXLL55LMChA4h0dkwQ4z7CReSr4sDXs0jW2nGxgAdi7xjVzn8yZnw==}
1966
1966
 
1967
1967
  '@cabloy/compose@2.1.8':
1968
1968
  resolution: {integrity: sha512-TdEr9BY54BYoIlTjkrOKkzK8yJWmP07OrRTh4punJMnWzM+oDExQ2EGCGAHXnEHjLWqdhyMGm/ejmxnVgBmraQ==}
@@ -8189,7 +8189,7 @@ snapshots:
8189
8189
 
8190
8190
  '@bufbuild/protobuf@2.12.1': {}
8191
8191
 
8192
- '@cabloy/cli@3.1.26(vue@3.5.38(typescript@5.9.3))':
8192
+ '@cabloy/cli@3.1.27(vue@3.5.38(typescript@5.9.3))':
8193
8193
  dependencies:
8194
8194
  '@babel/parser': 7.29.7
8195
8195
  '@cabloy/module-glob': 5.3.16
@@ -10252,7 +10252,7 @@ snapshots:
10252
10252
 
10253
10253
  acorn@8.17.0: {}
10254
10254
 
10255
- agent-base@6.0.2:
10255
+ agent-base@6.0.2(supports-color@10.2.2):
10256
10256
  dependencies:
10257
10257
  debug: 4.4.3(supports-color@10.2.2)
10258
10258
  transitivePeerDependencies:
@@ -10364,11 +10364,11 @@ snapshots:
10364
10364
  dependencies:
10365
10365
  possible-typed-array-names: 1.1.0
10366
10366
 
10367
- axios@1.18.1:
10367
+ axios@1.18.1(supports-color@10.2.2):
10368
10368
  dependencies:
10369
10369
  follow-redirects: 1.16.0
10370
10370
  form-data: 4.0.6
10371
- https-proxy-agent: 5.0.1
10371
+ https-proxy-agent: 5.0.1(supports-color@10.2.2)
10372
10372
  proxy-from-env: 2.1.0
10373
10373
  transitivePeerDependencies:
10374
10374
  - debug
@@ -11784,9 +11784,9 @@ snapshots:
11784
11784
  statuses: 2.0.2
11785
11785
  toidentifier: 1.0.1
11786
11786
 
11787
- https-proxy-agent@5.0.1:
11787
+ https-proxy-agent@5.0.1(supports-color@10.2.2):
11788
11788
  dependencies:
11789
- agent-base: 6.0.2
11789
+ agent-base: 6.0.2(supports-color@10.2.2)
11790
11790
  debug: 4.4.3(supports-color@10.2.2)
11791
11791
  transitivePeerDependencies:
11792
11792
  - supports-color