cabloy 5.1.123 → 5.1.125

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/.cabloy-version CHANGED
@@ -1 +1 @@
1
- 5.1.123
1
+ 5.1.125
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.1.125
4
+
5
+ ### Features
6
+
7
+ - Update payment functionality.
8
+
9
+ ## 5.1.124
10
+
11
+ ### Improvements
12
+
13
+ - Refresh the Zova lockfile and core patch dependencies.
14
+
3
15
  ## 5.1.123
4
16
 
5
17
  ### Features
@@ -25,6 +25,7 @@ const aiItems = [
25
25
  { text: 'Playbook: Contract Regeneration', link: '/ai/playbook-contract-regeneration' },
26
26
  { text: 'Playbook: Module Removal', link: '/ai/playbook-module-removal' },
27
27
  { text: 'Playbook: Metadata Refresh', link: '/ai/playbook-metadata-refresh' },
28
+ { text: 'Playbook: Technical Blog Authoring', link: '/ai/playbook-technical-blog-authoring' },
28
29
  { text: 'CLI for Agents', link: '/ai/cli-for-agents' },
29
30
  { text: 'Rules and Config', link: '/ai/rules-and-config' },
30
31
  { text: 'Edition Detection', link: '/ai/edition-detection' },
@@ -0,0 +1,158 @@
1
+ # Playbook: Technical Blog Authoring
2
+
3
+ Use this playbook when writing a technical blog about Cabloy, Vona, Zova, or an adjacent engineering problem. Its purpose is to help authors and agents turn a real reader concern into an accurate, approachable, and useful article.
4
+
5
+ A blog post is not a replacement for reference documentation. Use the post to establish a mental model, explain why a design choice matters, and help readers choose a next step. Link to the relevant documentation for the complete contract and implementation detail.
6
+
7
+ ## Start with the reader's problem
8
+
9
+ Open with a problem that readers can recognize in their existing practice, not with framework terminology or a product claim.
10
+
11
+ For example, a Vue-oriented article can begin with a reader encountering growing composables, fragmented state ownership, or unclear cache invalidation. It should acknowledge that the familiar tools are useful before explaining the architectural tradeoff they do not settle by themselves.
12
+
13
+ Then state one narrow thesis. A useful thesis does all of the following:
14
+
15
+ - names the change in perspective;
16
+ - limits what the article claims;
17
+ - avoids declaring one ecosystem universally superior.
18
+
19
+ For example:
20
+
21
+ > Zova retains Vue 3 as its reactive foundation while giving complex application code explicit owners for state, behavior, dependencies, and lifecycle.
22
+
23
+ Do not begin with claims such as “Framework X is obsolete,” “this is the only correct architecture,” or broad adoption and performance claims that the article cannot prove.
24
+
25
+ ## Research before drafting
26
+
27
+ Use this authority order for technical claims:
28
+
29
+ 1. Current Cabloy documentation, source code, and tests for Cabloy, Vona, and Zova behavior.
30
+ 2. First-party upstream documentation for Vue, TypeScript, TanStack Query, React, Angular, or another external ecosystem.
31
+ 3. Carefully labelled experience, interpretation, and recommendations when a fact cannot be established from the sources above.
32
+
33
+ Treat legacy documentation as input material, not unquestioned truth. If it conflicts with current source, prefer the source.
34
+
35
+ Classify each meaningful statement while drafting:
36
+
37
+ | Statement type | How to write it |
38
+ | ---------------------------- | -------------------------------------------------------------------------------------------------------------------- |
39
+ | Verified framework fact | State it precisely and link to current public docs or an authoritative upstream source. |
40
+ | Comparison or interpretation | Explain the authoring-model difference with qualified wording such as “typically,” “can,” or “is designed to.” |
41
+ | Experience or recommendation | Make its situational nature visible: “consider this when…”, “can be a good fit for…”, or “in this kind of project…”. |
42
+
43
+ Do not turn a representative example, a personal observation, or a framework goal into a universal ecosystem claim.
44
+
45
+ ## Use a problem-to-practice narrative
46
+
47
+ For beginner-oriented technical posts, use this progression:
48
+
49
+ 1. **Reader problem** — establish empathy with a concrete, familiar situation.
50
+ 2. **Mental-model shift** — introduce one focused thesis that reframes the problem.
51
+ 3. **Progressive examples** — teach one concept and one ownership boundary at a time.
52
+ 4. **Decision aid** — use a role table or comparison table only when it helps readers choose where something belongs.
53
+ 5. **Tradeoffs** — state the learning cost, non-fit cases, and assumptions directly.
54
+ 6. **Next step** — give readers a small experiment to try and a short list of authoritative further reading.
55
+
56
+ The article should answer both “what changes?” and “why should I care?” before adding advanced implementation detail.
57
+
58
+ When explaining architecture, prefer ownership questions over tool-name questions:
59
+
60
+ - Who owns this state or behavior?
61
+ - Who may depend on it?
62
+ - How long should it live?
63
+ - Which boundary owns caching, invalidation, persistence, or rendering?
64
+
65
+ This lets the article explain an architecture without becoming an API inventory.
66
+
67
+ ## Explain Zova in its own model first
68
+
69
+ For Zova articles, begin with the controller / bean / IoC model before translating it into generic Vue terms. Vue comparisons are useful orientation aids, but they should not replace Zova's own concepts.
70
+
71
+ Keep these accuracy rules in view:
72
+
73
+ - Vue 3 provides Zova's reactive foundation.
74
+ - A controller field is not reactive merely because it is a TypeScript class field; it is reactive because Zova creates the controller as a framework-managed reactive bean.
75
+ - Controllers, beans, models, services, scopes, and TSX have distinct roles. Do not flatten them into synonyms for a composable or store.
76
+ - A Model is not simply “Zova's Pinia.” It can own query, mutation, cache, persistence, invalidation, and SSR-related state concerns.
77
+ - Discuss Cabloy Basic and Cabloy Start separately only when the UI layer, available suites, project assets, generated outputs, or edition-specific workflow affects the article.
78
+
79
+ For factual background, start from these guides:
80
+
81
+ - [Frontend Foundation](/frontend/foundation)
82
+ - [Reading Zova for Vue Developers](/frontend/reading-zova-for-vue-developers)
83
+ - [Zova vs Vue 3 Comparison](/frontend/zova-vs-vue3-comparison)
84
+ - [IoC and Beans](/frontend/ioc-and-beans)
85
+ - [Model Architecture](/frontend/model-architecture)
86
+
87
+ ## Make examples earn their place
88
+
89
+ Use short examples that demonstrate one idea each. A helpful progression is:
90
+
91
+ 1. page-local controller state and behavior;
92
+ 2. a controller collaborating with an injected model or service;
93
+ 3. an extraction that becomes justified as responsibility or reuse grows.
94
+
95
+ Every example should make the ownership boundary easier to see. If an example requires advanced lifecycle details, data contracts, or several framework concepts to understand, defer it or split it into smaller examples.
96
+
97
+ When a snippet has been simplified, say so. Do not present illustrative pseudocode as a copy-ready framework contract. Verify code, APIs, commands, and links against current sources before publishing.
98
+
99
+ Comparison tables should name the dimension being compared and describe a typical or default authoring model, not imply that every project in either ecosystem has identical structure.
100
+
101
+ ## Keep the article balanced
102
+
103
+ Strong technical writing makes the boundary of its own recommendation clear.
104
+
105
+ Include the cost of the proposed approach. For example, a more structured controller/bean/model architecture may require authors to learn ownership, scope, and lifecycle rules; it may not be the most economical choice for a throwaway page or very small application.
106
+
107
+ Avoid framing flexible tools as defective. Explain the problem that emerges when complexity grows and the conditions under which a more explicit structure becomes valuable.
108
+
109
+ A practical article earns trust by telling readers both when to use an approach and when not to.
110
+
111
+ ## Package articles consistently
112
+
113
+ Use a kebab-case topic directory under the local blog workspace:
114
+
115
+ ```text
116
+ .assets/blogs/<topic-slug>/
117
+ ```
118
+
119
+ The canonical article should begin with frontmatter that makes its purpose and distribution metadata explicit. Use the fields relevant to the publishing target:
120
+
121
+ ```yaml
122
+ title:
123
+ titleEn:
124
+ subtitle:
125
+ summary:
126
+ tags:
127
+ slug:
128
+ date:
129
+ ```
130
+
131
+ When a bilingual release is in scope, create semantic sibling articles such as `article-zh.md` and `article-en.md`. Translate the thesis, caveats, examples, and linked evidence faithfully, but adapt titles, idioms, reader framing, and platform copy to the language rather than translating word-for-word.
132
+
133
+ When distribution is requested, keep publishing material separate from the canonical article. A publishing kit can contain:
134
+
135
+ - recommended and alternate titles;
136
+ - subtitle, short summary, long summary, and platform abstract;
137
+ - tags and selected cover;
138
+ - social or platform-specific copy;
139
+ - editorial and accuracy notes.
140
+
141
+ Treat cover copy and images as publishing deliverables, not evidence for technical claims. Use a readable 1600 × 900 cover when a social-preview image is needed.
142
+
143
+ ## Pre-publication checklist
144
+
145
+ Before publishing, verify all of the following:
146
+
147
+ - [ ] The opening names a real reader problem and does not begin as framework promotion.
148
+ - [ ] The thesis is narrow, accurate, and non-adversarial.
149
+ - [ ] Each factual claim has current source or first-party documentation support.
150
+ - [ ] Interpretations and recommendations are written as interpretations and recommendations.
151
+ - [ ] Examples are concise, current, and explicit about simplification where applicable.
152
+ - [ ] Comparison tables describe dimensions and typical models, not universal truths.
153
+ - [ ] Tradeoffs and non-fit situations are stated plainly.
154
+ - [ ] Terminology, edition notes, commands, URLs, and documentation links are current.
155
+ - [ ] Bilingual siblings and publishing assets are aligned when they are part of the requested deliverable.
156
+ - [ ] Further reading directs readers to authoritative documentation, including [Verification](/ai/verification) when the article describes a development workflow.
157
+
158
+ The goal is not merely a polished argument. It is to leave the reader with a trustworthy mental model and a safe, concrete next step.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cabloy",
3
- "version": "5.1.123",
3
+ "version": "5.1.125",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A Node.js fullstack framework",
6
6
  "keywords": [
@@ -16,7 +16,7 @@ overrides:
16
16
  zod: npm:@cabloy/zod@4.3.8
17
17
 
18
18
  patchedDependencies:
19
- zova-core@5.1.79: ff659aa5f659be32501f56841b72f148c24acf1546f79cce551586e27fcde2ce
19
+ zova-core@5.1.81: ff659aa5f659be32501f56841b72f148c24acf1546f79cce551586e27fcde2ce
20
20
 
21
21
  importers:
22
22
 
@@ -418,6 +418,9 @@ importers:
418
418
  vona-module-test-image:
419
419
  specifier: workspace:^
420
420
  version: link:src/suite-vendor/a-test/modules/test-image
421
+ vona-module-test-pay:
422
+ specifier: workspace:^
423
+ version: link:src/suite-vendor/a-test/modules/test-pay
421
424
  vona-module-test-rest:
422
425
  specifier: workspace:^
423
426
  version: link:src/suite-vendor/a-test/modules/test-rest
@@ -558,11 +561,11 @@ importers:
558
561
  specifier: npm:@cabloy/zod@4.3.8
559
562
  version: '@cabloy/zod@4.3.8'
560
563
  zova:
561
- specifier: ^5.1.142
562
- version: 5.1.142(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
564
+ specifier: ^5.1.144
565
+ version: 5.1.144(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
563
566
  zova-jsx:
564
- specifier: ^1.1.79
565
- version: 1.1.79(typescript@5.9.3)
567
+ specifier: ^1.1.81
568
+ version: 1.1.81(typescript@5.9.3)
566
569
  zova-module-a-api:
567
570
  specifier: ^5.1.21
568
571
  version: 5.1.21
@@ -590,6 +593,9 @@ importers:
590
593
  zova-module-a-openapi:
591
594
  specifier: ^5.1.47
592
595
  version: 5.1.47
596
+ zova-module-a-pay:
597
+ specifier: ^5.0.2
598
+ version: 5.0.2
593
599
  zova-module-a-router:
594
600
  specifier: ^5.1.31
595
601
  version: 5.1.31
@@ -605,6 +611,9 @@ importers:
605
611
  zova-module-a-table:
606
612
  specifier: ^5.1.37
607
613
  version: 5.1.37(vue@3.5.39(typescript@5.9.3))
614
+ zova-module-pay-mock:
615
+ specifier: ^5.0.2
616
+ version: 5.0.2
608
617
  zova-module-rest-resource:
609
618
  specifier: ^5.1.42
610
619
  version: 5.1.42
@@ -630,11 +639,11 @@ importers:
630
639
  specifier: npm:@cabloy/zod@4.3.8
631
640
  version: '@cabloy/zod@4.3.8'
632
641
  zova:
633
- specifier: ^5.1.142
634
- version: 5.1.142(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
642
+ specifier: ^5.1.144
643
+ version: 5.1.144(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
635
644
  zova-jsx:
636
- specifier: ^1.1.79
637
- version: 1.1.79(typescript@5.9.3)
645
+ specifier: ^1.1.81
646
+ version: 1.1.81(typescript@5.9.3)
638
647
  zova-module-a-api:
639
648
  specifier: ^5.1.21
640
649
  version: 5.1.21
@@ -662,6 +671,9 @@ importers:
662
671
  zova-module-a-openapi:
663
672
  specifier: ^5.1.47
664
673
  version: 5.1.47
674
+ zova-module-a-pay:
675
+ specifier: ^5.0.2
676
+ version: 5.0.2
665
677
  zova-module-a-router:
666
678
  specifier: ^5.1.31
667
679
  version: 5.1.31
@@ -677,6 +689,9 @@ importers:
677
689
  zova-module-a-table:
678
690
  specifier: ^5.1.37
679
691
  version: 5.1.37(vue@3.5.39(typescript@5.9.3))
692
+ zova-module-pay-mock:
693
+ specifier: ^5.0.2
694
+ version: 5.0.2
680
695
  zova-module-rest-resource:
681
696
  specifier: ^5.1.42
682
697
  version: 5.1.42
@@ -1819,16 +1834,16 @@ importers:
1819
1834
  src/suite-vendor/a-pay:
1820
1835
  dependencies:
1821
1836
  vona-module-a-pay:
1822
- specifier: ^5.0.0
1837
+ specifier: ^5.0.1
1823
1838
  version: link:modules/a-pay
1824
1839
  vona-module-pay-mock:
1825
- specifier: ^5.0.0
1840
+ specifier: ^5.0.1
1826
1841
  version: link:modules/pay-mock
1827
1842
  vona-module-pay-paypal:
1828
- specifier: ^5.0.0
1843
+ specifier: ^5.0.1
1829
1844
  version: link:modules/pay-paypal
1830
1845
  vona-module-pay-stripe:
1831
- specifier: ^5.0.0
1846
+ specifier: ^5.0.1
1832
1847
  version: link:modules/pay-stripe
1833
1848
 
1834
1849
  src/suite-vendor/a-pay/modules/a-pay:
@@ -1903,6 +1918,9 @@ importers:
1903
1918
  vona-module-test-file:
1904
1919
  specifier: ^5.0.8
1905
1920
  version: link:modules/test-file
1921
+ vona-module-test-pay:
1922
+ specifier: ^5.0.0
1923
+ version: link:modules/test-pay
1906
1924
 
1907
1925
  src/suite-vendor/a-test/modules/test-auth:
1908
1926
  devDependencies:
@@ -1949,6 +1967,22 @@ importers:
1949
1967
  specifier: ^6.1.3
1950
1968
  version: 6.1.3
1951
1969
 
1970
+ src/suite-vendor/a-test/modules/test-pay:
1971
+ dependencies:
1972
+ vona-module-a-pay:
1973
+ specifier: workspace:*
1974
+ version: link:../../../a-pay/modules/a-pay
1975
+ vona-module-pay-mock:
1976
+ specifier: workspace:*
1977
+ version: link:../../../a-pay/modules/pay-mock
1978
+ devDependencies:
1979
+ clean-package:
1980
+ specifier: ^2.2.0
1981
+ version: 2.2.0
1982
+ rimraf:
1983
+ specifier: ^6.1.3
1984
+ version: 6.1.3
1985
+
1952
1986
  src/suite-vendor/a-test/modules/test-rest:
1953
1987
  dependencies:
1954
1988
  '@faker-js/faker':
@@ -8525,9 +8559,15 @@ packages:
8525
8559
  zova-core@5.1.79:
8526
8560
  resolution: {integrity: sha512-q04JWAjwa5x0py9/FCFPX9I8cNA4zzZ/Z+8mm2mVsRBMqDFcafwVqNumOAkZ+DuA10b4YIoncyQKYz5PhhmBUw==}
8527
8561
 
8562
+ zova-core@5.1.81:
8563
+ resolution: {integrity: sha512-gLmLWXpd9xNmc+fXx33QEgRZ2ZsNjRlVWDC1HEQLLnq3ZCakDf87qXhfdk+JH5csS2BjGAdckfmbiLqGL15o1Q==}
8564
+
8528
8565
  zova-jsx@1.1.79:
8529
8566
  resolution: {integrity: sha512-iFp9UpW/3Cbaq0H25xyR04LYyaqB2wlAGOL1dEL7OyuIzHI0IHcBwfZRbRGy7ewgDVHit2ULG03kO1sSjjPuWQ==}
8530
8567
 
8568
+ zova-jsx@1.1.81:
8569
+ resolution: {integrity: sha512-WVUc4DYsVcjPfcfWgFY2vQbiK8ARIwv2K6o6Auyqvts/vSfJ7BCzD4XqCVHANVY5yJ8povdJUzpiCIAhioWRkg==}
8570
+
8531
8571
  zova-module-a-api@5.1.21:
8532
8572
  resolution: {integrity: sha512-qjm/hfjC4/+7Ap/uzJfBzV0PwRlp2idEmEKwCZYxquaXq6QtJBbTWTznw1iukT4lkJZip2KFkjOvXTzdvZA2UA==}
8533
8573
 
@@ -8576,6 +8616,9 @@ packages:
8576
8616
  zova-module-a-pay@5.0.0:
8577
8617
  resolution: {integrity: sha512-jt9acZZPKnkJs8t4qOBOmqO7gyOGnByujCyNsuohAYLQSXkjdTKOJqXDe6dj0KcdayHry0ZvJiaErzQJsiNbWA==}
8578
8618
 
8619
+ zova-module-a-pay@5.0.2:
8620
+ resolution: {integrity: sha512-BOKkM7R//Kju54PhZxnyJ0O8gHnyKrwxXpAAr85wJurHQAl3NIsdRwINj+i+hIe3Btc+UJmi/H1kpg0d3YuoZQ==}
8621
+
8579
8622
  zova-module-a-router@5.1.31:
8580
8623
  resolution: {integrity: sha512-bTtj3JmJKGZwUYwWpsuhigXYseYab/gOmT18WyNw0KetZGY03Y+JnU74oidrK1KtIY384+my1ZQefBlbIZjNeg==}
8581
8624
 
@@ -8606,18 +8649,30 @@ packages:
8606
8649
  zova-module-a-zova@5.1.94:
8607
8650
  resolution: {integrity: sha512-c2qbu3YiNYRSMpprPkBbZ9RaQ9KKF4Y/cEumDJaCpPoZEbJClI/WBZMrY/ZpG9Rsp/87DJ63Vkbu+iSTOh7csg==}
8608
8651
 
8652
+ zova-module-a-zova@5.1.96:
8653
+ resolution: {integrity: sha512-lP6LgzbrSlHBqyA1QhMZ66B0DQBLcXcEcWBh3zESFnhFzbomlfABjG+cnju5ki771YhT2CuPeo3m9v01WYc3Bg==}
8654
+
8609
8655
  zova-module-pay-mock@5.0.0:
8610
8656
  resolution: {integrity: sha512-WORyFqRNkrcGZCzLaesu4BDziQ2iOUIeRMVbwXx/Wzp2W0EpwMvqqAPqO8U3PKjvWtAw3YwTJFsXs1Qh66l4zQ==}
8611
8657
 
8658
+ zova-module-pay-mock@5.0.2:
8659
+ resolution: {integrity: sha512-G6ld4ZZJ3crSUQ1fH+Tn2p9/05ngfJYtDtTtq7K1Xo9ei2fjbp13Jrbjh3cKR+dhWuK9Q1gwAs7xwhu7NIiTKA==}
8660
+
8612
8661
  zova-module-rest-resource@5.1.42:
8613
8662
  resolution: {integrity: sha512-eMWhc4428U5Hs4BHqFJoF7yaH+bK8t71scIrCnpLbQS7M80lNkoHxY9s/Kl4i8Uo3+lVWbSbuaXWtR+zVLNqpA==}
8614
8663
 
8615
8664
  zova-suite-a-zova@5.1.141:
8616
8665
  resolution: {integrity: sha512-fqeynyYUL12PTZMQ1ZxryHEFcCfaQL2hLTs8MxxdbHCKDhOjNEaOTW5MGR5DzSRM7uMXNCq1crPvbYvDmmeUdg==}
8617
8666
 
8667
+ zova-suite-a-zova@5.1.143:
8668
+ resolution: {integrity: sha512-DMaYtWO1HVu0BIeNguAYqlcOGa9MVfejDLvLqw6mOqmPSSLrvGSSC+lzYGhI/J9xQBbGRFaWbIdMhetCpuZdwg==}
8669
+
8618
8670
  zova@5.1.142:
8619
8671
  resolution: {integrity: sha512-qvrKhrS9y4BVI2Nszre3TSvDJu5BjTo2adzAXP2qC3TeoW4IZ8njvV2ROoAPe//X6SiJ1Il60oTNSc1PnkXvWg==}
8620
8672
 
8673
+ zova@5.1.144:
8674
+ resolution: {integrity: sha512-YEgsYl7hL635nK9134oH8GMUqHp41IAp0I+rWz27f2QCkp8QGLqvQIbrvXoFnYwJyuYmaCz/eBMMrl1y+mzs0w==}
8675
+
8621
8676
  zwitch@1.0.5:
8622
8677
  resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
8623
8678
 
@@ -14536,7 +14591,36 @@ snapshots:
14536
14591
  dependencies:
14537
14592
  zod: '@cabloy/zod@4.3.8'
14538
14593
 
14539
- zova-core@5.1.79(patch_hash=ff659aa5f659be32501f56841b72f148c24acf1546f79cce551586e27fcde2ce)(typescript@5.9.3):
14594
+ zova-core@5.1.79(typescript@5.9.3):
14595
+ dependencies:
14596
+ '@cabloy/compose': link:packages-utils/compose
14597
+ '@cabloy/extend': link:packages-utils/extend
14598
+ '@cabloy/json5': link:packages-utils/json5
14599
+ '@cabloy/localeutil': link:packages-utils/localeutil
14600
+ '@cabloy/logger': 1.1.24
14601
+ '@cabloy/module-info': 2.0.3
14602
+ '@cabloy/utils': link:packages-utils/utils
14603
+ '@cabloy/vue-compiler-sfc': 3.5.14
14604
+ '@cabloy/vue-reactivity': 3.5.16
14605
+ '@cabloy/vue-router': 4.4.16(vue@3.5.39(typescript@5.9.3))
14606
+ '@cabloy/vue-runtime-core': 3.5.57
14607
+ '@cabloy/vue-runtime-dom': 3.5.13
14608
+ '@cabloy/vue-server-renderer': 3.5.18(vue@3.5.39(typescript@5.9.3))
14609
+ '@cabloy/word-utils': 2.1.14
14610
+ '@cabloy/zod-errors-custom': link:packages-utils/zod-errors-custom
14611
+ '@cabloy/zod-openapi': link:packages-utils/zod-openapi
14612
+ '@cabloy/zod-query': link:packages-utils/zod-query
14613
+ '@types/js-cookie': 3.0.6
14614
+ '@vue/shared': 3.5.36
14615
+ deep-equal: 2.2.3
14616
+ reflect-metadata: 0.2.2
14617
+ vue: 3.5.39(typescript@5.9.3)
14618
+ vue-plugin-render-freeze: 2.0.4(vue@3.5.39(typescript@5.9.3))
14619
+ zod: '@cabloy/zod@4.3.8'
14620
+ transitivePeerDependencies:
14621
+ - typescript
14622
+
14623
+ zova-core@5.1.81(patch_hash=ff659aa5f659be32501f56841b72f148c24acf1546f79cce551586e27fcde2ce)(typescript@5.9.3):
14540
14624
  dependencies:
14541
14625
  '@cabloy/compose': link:packages-utils/compose
14542
14626
  '@cabloy/extend': link:packages-utils/extend
@@ -14572,7 +14656,18 @@ snapshots:
14572
14656
  '@cabloy/word-utils': 2.1.14
14573
14657
  typestyle: 2.4.0
14574
14658
  vue: 3.5.39(typescript@5.9.3)
14575
- zova-core: 5.1.79(patch_hash=ff659aa5f659be32501f56841b72f148c24acf1546f79cce551586e27fcde2ce)(typescript@5.9.3)
14659
+ zova-core: 5.1.79(typescript@5.9.3)
14660
+ transitivePeerDependencies:
14661
+ - typescript
14662
+
14663
+ zova-jsx@1.1.81(typescript@5.9.3):
14664
+ dependencies:
14665
+ '@cabloy/compose': link:packages-utils/compose
14666
+ '@cabloy/utils': link:packages-utils/utils
14667
+ '@cabloy/word-utils': 2.1.14
14668
+ typestyle: 2.4.0
14669
+ vue: 3.5.39(typescript@5.9.3)
14670
+ zova-core: 5.1.81(patch_hash=ff659aa5f659be32501f56841b72f148c24acf1546f79cce551586e27fcde2ce)(typescript@5.9.3)
14576
14671
  transitivePeerDependencies:
14577
14672
  - typescript
14578
14673
 
@@ -14637,6 +14732,8 @@ snapshots:
14637
14732
 
14638
14733
  zova-module-a-pay@5.0.0: {}
14639
14734
 
14735
+ zova-module-a-pay@5.0.2: {}
14736
+
14640
14737
  zova-module-a-router@5.1.31: {}
14641
14738
 
14642
14739
  zova-module-a-routerstack@5.1.26: {}
@@ -14692,8 +14789,26 @@ snapshots:
14692
14789
  - typescript
14693
14790
  - vue
14694
14791
 
14792
+ zova-module-a-zova@5.1.96(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
14793
+ dependencies:
14794
+ '@cabloy/compose': link:packages-utils/compose
14795
+ '@cabloy/deps': link:packages-utils/deps
14796
+ '@cabloy/json5': link:packages-utils/json5
14797
+ '@cabloy/module-info': 2.0.3
14798
+ '@cabloy/utils': link:packages-utils/utils
14799
+ '@cabloy/vue-router': 4.4.16(vue@3.5.39(typescript@5.9.3))
14800
+ '@cabloy/word-utils': 2.1.14
14801
+ defu: 6.1.7
14802
+ luxon: 3.7.2
14803
+ zova-jsx: 1.1.81(typescript@5.9.3)
14804
+ transitivePeerDependencies:
14805
+ - typescript
14806
+ - vue
14807
+
14695
14808
  zova-module-pay-mock@5.0.0: {}
14696
14809
 
14810
+ zova-module-pay-mock@5.0.2: {}
14811
+
14697
14812
  zova-module-rest-resource@5.1.42: {}
14698
14813
 
14699
14814
  zova-suite-a-zova@5.1.141(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
@@ -14730,9 +14845,43 @@ snapshots:
14730
14845
  - typescript
14731
14846
  - vue
14732
14847
 
14848
+ zova-suite-a-zova@5.1.143(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
14849
+ dependencies:
14850
+ zova-module-a-api: 5.1.21
14851
+ zova-module-a-app: 5.1.25
14852
+ zova-module-a-bean: 5.1.32
14853
+ zova-module-a-behavior: 5.1.25
14854
+ zova-module-a-behaviors: 5.1.21
14855
+ zova-module-a-boundary: 5.1.21
14856
+ zova-module-a-command: 5.1.33
14857
+ zova-module-a-fetch: 5.1.24
14858
+ zova-module-a-form: 5.1.46(vue@3.5.39(typescript@5.9.3))
14859
+ zova-module-a-icon: 5.1.26
14860
+ zova-module-a-interceptor: 5.1.29
14861
+ zova-module-a-logger: 5.1.26
14862
+ zova-module-a-meta: 5.1.21
14863
+ zova-module-a-model: 5.1.33(vue@3.5.39(typescript@5.9.3))
14864
+ zova-module-a-openapi: 5.1.47
14865
+ zova-module-a-router: 5.1.31
14866
+ zova-module-a-routerstack: 5.1.26
14867
+ zova-module-a-routertabs: 5.1.33
14868
+ zova-module-a-ssr: 5.1.32
14869
+ zova-module-a-ssrhmr: 5.1.22
14870
+ zova-module-a-ssrserver: 5.1.23
14871
+ zova-module-a-style: 5.1.32
14872
+ zova-module-a-table: 5.1.37(vue@3.5.39(typescript@5.9.3))
14873
+ zova-module-a-zod: 5.1.36
14874
+ zova-module-a-zova: 5.1.96(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
14875
+ transitivePeerDependencies:
14876
+ - '@vue/composition-api'
14877
+ - debug
14878
+ - supports-color
14879
+ - typescript
14880
+ - vue
14881
+
14733
14882
  zova@5.1.142(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
14734
14883
  dependencies:
14735
- zova-core: 5.1.79(patch_hash=ff659aa5f659be32501f56841b72f148c24acf1546f79cce551586e27fcde2ce)(typescript@5.9.3)
14884
+ zova-core: 5.1.79(typescript@5.9.3)
14736
14885
  zova-suite-a-zova: 5.1.141(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
14737
14886
  transitivePeerDependencies:
14738
14887
  - '@vue/composition-api'
@@ -14741,6 +14890,17 @@ snapshots:
14741
14890
  - typescript
14742
14891
  - vue
14743
14892
 
14893
+ zova@5.1.144(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
14894
+ dependencies:
14895
+ zova-core: 5.1.81(patch_hash=ff659aa5f659be32501f56841b72f148c24acf1546f79cce551586e27fcde2ce)(typescript@5.9.3)
14896
+ zova-suite-a-zova: 5.1.143(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
14897
+ transitivePeerDependencies:
14898
+ - '@vue/composition-api'
14899
+ - debug
14900
+ - supports-color
14901
+ - typescript
14902
+ - vue
14903
+
14744
14904
  zwitch@1.0.5: {}
14745
14905
 
14746
14906
  zwitch@2.0.4: {}
@@ -53,4 +53,4 @@ allowBuilds:
53
53
  vue-demi: true
54
54
 
55
55
  patchedDependencies:
56
- zova-core@5.1.79: patches/zova-core@5.1.79.patch
56
+ zova-core@5.1.81: patches/zova-core@5.1.81.patch
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vona-module-a-pay",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "Vona Module"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vona-module-pay-mock",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "Vona Module"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vona-module-pay-paypal",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "Vona Module"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vona-module-pay-stripe",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "Vona Module"
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "vona-suite-a-pay",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "files": [],
7
7
  "type": "module",
8
8
  "dependencies": {
9
- "vona-module-a-pay": "^5.0.1",
10
- "vona-module-pay-mock": "^5.0.1",
11
- "vona-module-pay-paypal": "^5.0.1",
12
- "vona-module-pay-stripe": "^5.0.1"
9
+ "vona-module-a-pay": "^5.0.2",
10
+ "vona-module-pay-mock": "^5.0.2",
11
+ "vona-module-pay-paypal": "^5.0.2",
12
+ "vona-module-pay-stripe": "^5.0.2"
13
13
  },
14
14
  "title": "a-pay"
15
15
  }