cabloy 5.1.60 → 5.1.62

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.
Files changed (232) hide show
  1. package/.claude/hooks/contract-loop-gate.ts +296 -0
  2. package/.claude/settings.json +16 -0
  3. package/.claude/skills/cabloy-backend-scaffold/SKILL.md +2 -0
  4. package/.claude/skills/cabloy-backend-scaffold/references/follow-up-checklist.md +1 -0
  5. package/.claude/skills/cabloy-contract-loop/SKILL.md +89 -16
  6. package/.claude/skills/cabloy-contract-loop/references/contract-loop-map.md +102 -14
  7. package/.claude/skills/cabloy-contract-loop/references/resource-custom-state-pattern.md +4 -0
  8. package/.claude/skills/cabloy-contract-loop/references/verification-checklist.md +32 -14
  9. package/.claude/skills/cabloy-domain-planning/SKILL.md +212 -0
  10. package/.claude/skills/cabloy-frontend-scaffold/SKILL.md +13 -0
  11. package/.claude/skills/cabloy-frontend-scaffold/references/follow-up-checklist.md +2 -0
  12. package/.claude/skills/cabloy-module-removal/SKILL.md +144 -0
  13. package/.claude/skills/cabloy-resource-field-update/SKILL.md +7 -0
  14. package/.claude/skills/cabloy-zova-source-reading/SKILL.md +221 -0
  15. package/.claude/skills/cabloy-zova-source-reading/references/analysis-modes.md +91 -0
  16. package/.claude/skills/cabloy-zova-source-reading/references/core-reading-paths.md +117 -0
  17. package/CHANGELOG.md +64 -0
  18. package/CLAUDE.md +11 -0
  19. package/cabloy-docs/.vitepress/config.mjs +197 -5
  20. package/cabloy-docs/ai/cli-to-skill-map.md +7 -0
  21. package/cabloy-docs/ai/docs-skills-rules-mapping.md +22 -0
  22. package/cabloy-docs/ai/future-skill-roadmap.md +12 -7
  23. package/cabloy-docs/ai/introduction.md +1 -0
  24. package/cabloy-docs/ai/playbook-backend-module.md +6 -0
  25. package/cabloy-docs/ai/playbook-module-removal.md +164 -0
  26. package/cabloy-docs/ai/skills.md +12 -0
  27. package/cabloy-docs/backend/backend-contract-emission-output-inspection.md +189 -0
  28. package/cabloy-docs/backend/backend-contract-emission-source-reading-map.md +160 -0
  29. package/cabloy-docs/backend/backend-contract-emission-specimen.md +170 -0
  30. package/cabloy-docs/backend/backend-resource-module-contract-chain.md +323 -0
  31. package/cabloy-docs/backend/backend-source-reading-debug-checklist.md +173 -0
  32. package/cabloy-docs/backend/backend-source-reading-roadmap.md +129 -0
  33. package/cabloy-docs/backend/backend-source-reading-verify-playbook.md +166 -0
  34. package/cabloy-docs/backend/bean-scene-authoring.md +4 -4
  35. package/cabloy-docs/backend/broadcast-guide.md +3 -3
  36. package/cabloy-docs/backend/cli.md +20 -11
  37. package/cabloy-docs/backend/config-guide.md +4 -4
  38. package/cabloy-docs/backend/controller-aop-guide.md +10 -10
  39. package/cabloy-docs/backend/controller-guide.md +12 -2
  40. package/cabloy-docs/backend/crud-workflow.md +7 -3
  41. package/cabloy-docs/backend/dto-guide.md +18 -2
  42. package/cabloy-docs/backend/dto-infer-generation.md +201 -25
  43. package/cabloy-docs/backend/election-guide.md +2 -2
  44. package/cabloy-docs/backend/entity-guide.md +30 -3
  45. package/cabloy-docs/backend/error-guide.md +3 -3
  46. package/cabloy-docs/backend/event-guide.md +4 -4
  47. package/cabloy-docs/backend/external-aop-guide.md +2 -2
  48. package/cabloy-docs/backend/field-indexes.md +9 -3
  49. package/cabloy-docs/backend/foundation.md +8 -8
  50. package/cabloy-docs/backend/i18n-guide.md +6 -6
  51. package/cabloy-docs/backend/internal-aop-guide.md +2 -2
  52. package/cabloy-docs/backend/introduction.md +15 -0
  53. package/cabloy-docs/backend/migration-and-changes.md +3 -3
  54. package/cabloy-docs/backend/model-guide.md +16 -6
  55. package/cabloy-docs/backend/openapi-guide.md +3 -0
  56. package/cabloy-docs/backend/queue-guide.md +3 -3
  57. package/cabloy-docs/backend/redlock-guide.md +2 -2
  58. package/cabloy-docs/backend/schedule-guide.md +2 -2
  59. package/cabloy-docs/backend/scripts.md +8 -0
  60. package/cabloy-docs/backend/serialization-guide.md +12 -2
  61. package/cabloy-docs/backend/service-guide.md +18 -9
  62. package/cabloy-docs/backend/startup-guide.md +5 -5
  63. package/cabloy-docs/backend/status-guide.md +271 -0
  64. package/cabloy-docs/backend/unit-testing.md +3 -3
  65. package/cabloy-docs/backend/vona-source-reading-map.md +157 -0
  66. package/cabloy-docs/backend/websocket-protocol-guide.md +5 -5
  67. package/cabloy-docs/backend/websocket-usage-guide.md +15 -8
  68. package/cabloy-docs/frontend/a-model-under-the-hood.md +281 -0
  69. package/cabloy-docs/frontend/a-openapi-under-the-hood.md +248 -0
  70. package/cabloy-docs/frontend/a-router-guide.md +307 -0
  71. package/cabloy-docs/frontend/api-guide.md +6 -4
  72. package/cabloy-docs/frontend/api-schema-guide.md +1 -0
  73. package/cabloy-docs/frontend/app-startup-guide.md +7 -4
  74. package/cabloy-docs/frontend/bean-scene-authoring.md +3 -1
  75. package/cabloy-docs/frontend/behavior-guide.md +16 -16
  76. package/cabloy-docs/frontend/cli.md +14 -2
  77. package/cabloy-docs/frontend/command-scene-authoring.md +504 -0
  78. package/cabloy-docs/frontend/component-guide.md +5 -5
  79. package/cabloy-docs/frontend/component-props-guide.md +1 -1
  80. package/cabloy-docs/frontend/component-v-model-guide.md +2 -2
  81. package/cabloy-docs/frontend/design-principles.md +6 -0
  82. package/cabloy-docs/frontend/fetch-interceptor-guide.md +440 -0
  83. package/cabloy-docs/frontend/filter-query-select-data-flow-guide.md +260 -0
  84. package/cabloy-docs/frontend/form-guide.md +786 -0
  85. package/cabloy-docs/frontend/form-scene-to-page-meta-guide.md +303 -0
  86. package/cabloy-docs/frontend/foundation.md +33 -0
  87. package/cabloy-docs/frontend/frontend-source-reading-roadmap.md +249 -0
  88. package/cabloy-docs/frontend/generated-contract-consumption-debug-checklist.md +190 -0
  89. package/cabloy-docs/frontend/generated-contract-consumption-entry-branch.md +205 -0
  90. package/cabloy-docs/frontend/generated-contract-consumption-list-branch.md +157 -0
  91. package/cabloy-docs/frontend/generated-contract-consumption-specimen.md +203 -0
  92. package/cabloy-docs/frontend/generated-contract-consumption-verify-playbook.md +189 -0
  93. package/cabloy-docs/frontend/generic-component-guide.md +1 -1
  94. package/cabloy-docs/frontend/introduction.md +38 -5
  95. package/cabloy-docs/frontend/ioc-and-beans.md +6 -0
  96. package/cabloy-docs/frontend/mock-guide.md +1 -0
  97. package/cabloy-docs/frontend/model-architecture.md +288 -39
  98. package/cabloy-docs/frontend/model-resource-best-practices.md +379 -0
  99. package/cabloy-docs/frontend/model-resource-cookbook.md +508 -0
  100. package/cabloy-docs/frontend/model-resource-internals-deep-dive.md +238 -0
  101. package/cabloy-docs/frontend/model-resource-owner-pattern.md +402 -0
  102. package/cabloy-docs/frontend/model-resource-usage-guide.md +334 -0
  103. package/cabloy-docs/frontend/model-state-guide.md +371 -15
  104. package/cabloy-docs/frontend/module-scope.md +8 -8
  105. package/cabloy-docs/frontend/modules-and-suites.md +2 -1
  106. package/cabloy-docs/frontend/navigation-guards-guide.md +7 -0
  107. package/cabloy-docs/frontend/openapi-sdk-guide.md +17 -6
  108. package/cabloy-docs/frontend/page-guide.md +15 -9
  109. package/cabloy-docs/frontend/page-meta-guide.md +466 -0
  110. package/cabloy-docs/frontend/page-params-guide.md +3 -3
  111. package/cabloy-docs/frontend/page-query-guide.md +2 -2
  112. package/cabloy-docs/frontend/page-route-guide.md +6 -0
  113. package/cabloy-docs/frontend/permission-formscene-action-visibility-guide.md +263 -0
  114. package/cabloy-docs/frontend/quickstart.md +18 -2
  115. package/cabloy-docs/frontend/reading-zova-for-vue-developers.md +266 -0
  116. package/cabloy-docs/frontend/resource-entry-page-deep-dive.md +271 -0
  117. package/cabloy-docs/frontend/resource-list-page-deep-dive.md +279 -0
  118. package/cabloy-docs/frontend/rest-resource-source-reading-map.md +522 -0
  119. package/cabloy-docs/frontend/rest-resource-under-the-hood.md +622 -0
  120. package/cabloy-docs/frontend/root-behaviors-guide.md +282 -0
  121. package/cabloy-docs/frontend/route-alias-guide.md +6 -0
  122. package/cabloy-docs/frontend/router-stack-guide.md +229 -0
  123. package/cabloy-docs/frontend/router-tabs-introduction.md +26 -3
  124. package/cabloy-docs/frontend/router-tabs-layout-integration.md +367 -0
  125. package/cabloy-docs/frontend/router-tabs-mechanism.md +6 -0
  126. package/cabloy-docs/frontend/router-tabs-route-meta-cookbook.md +7 -0
  127. package/cabloy-docs/frontend/router-tabs-vs-stack.md +167 -0
  128. package/cabloy-docs/frontend/router-view-hosts-guide.md +450 -0
  129. package/cabloy-docs/frontend/server-data.md +4 -1
  130. package/cabloy-docs/frontend/system-startup-guide.md +2 -2
  131. package/cabloy-docs/frontend/table-action-visibility-permission-flow-guide.md +263 -0
  132. package/cabloy-docs/frontend/table-cell-cookbook.md +568 -0
  133. package/cabloy-docs/frontend/table-guide.md +373 -0
  134. package/cabloy-docs/frontend/table-resource-crud-cookbook.md +496 -0
  135. package/cabloy-docs/frontend/zova-app-guide.md +251 -0
  136. package/cabloy-docs/frontend/zova-form-source-reading-map.md +293 -0
  137. package/cabloy-docs/frontend/zova-form-under-the-hood.md +561 -0
  138. package/cabloy-docs/frontend/zova-reactivity-under-the-hood.md +320 -0
  139. package/cabloy-docs/frontend/zova-router-under-the-hood.md +561 -0
  140. package/cabloy-docs/frontend/zova-source-reading-map.md +421 -0
  141. package/cabloy-docs/frontend/zova-table-controller-render-supplement.md +225 -0
  142. package/cabloy-docs/frontend/zova-table-source-reading-map.md +317 -0
  143. package/cabloy-docs/frontend/zova-table-under-the-hood.md +532 -0
  144. package/cabloy-docs/frontend/zova-vs-vue3-comparison.md +308 -0
  145. package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions-debug-checklist.md +245 -0
  146. package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions-source-reading-map.md +139 -0
  147. package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions-verify-playbook.md +248 -0
  148. package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions.md +511 -0
  149. package/cabloy-docs/fullstack/contract-loop-playbook.md +356 -0
  150. package/cabloy-docs/fullstack/edition-collaboration-differences.md +6 -0
  151. package/cabloy-docs/fullstack/frontend-metadata-to-backend.md +199 -23
  152. package/cabloy-docs/fullstack/introduction.md +15 -1
  153. package/cabloy-docs/fullstack/openapi-to-sdk.md +135 -11
  154. package/cabloy-docs/fullstack/suites-and-modules.md +333 -0
  155. package/cabloy-docs/fullstack/tutorial-1-first-module.md +3 -0
  156. package/cabloy-docs/fullstack/tutorial-2-first-crud.md +4 -0
  157. package/cabloy-docs/fullstack/tutorial-3-frontend-metadata-sharing.md +6 -2
  158. package/cabloy-docs/fullstack/tutorial-4-custom-level-renderers.md +60 -23
  159. package/cabloy-docs/fullstack/tutorial-5-backend-contract-sharing.md +14 -7
  160. package/cabloy-docs/fullstack/tutorial-6-one-contract-four-uses.md +6 -0
  161. package/cabloy-docs/fullstack/tutorials-overview.md +17 -4
  162. package/cabloy-docs/reference/bean-scene-boilerplates.md +15 -13
  163. package/cabloy-docs/reference/package-map.md +4 -3
  164. package/package.json +2 -1
  165. package/scripts/init.ts +2 -18
  166. package/scripts/initTestData.ts +25 -0
  167. package/scripts/upgrade.ts +17 -2
  168. package/vona/pnpm-lock.yaml +48 -194
  169. package/vona/src/suite/a-training/modules/training-student/package.json +53 -0
  170. package/vona/src/suite/a-training/modules/training-student/src/.metadata/index.ts +400 -0
  171. package/vona/src/suite/a-training/modules/training-student/src/.metadata/locales.ts +18 -0
  172. package/vona/src/suite/a-training/modules/training-student/src/.metadata/this.ts +2 -0
  173. package/vona/src/suite/a-training/modules/training-student/src/bean/meta.index.ts +12 -0
  174. package/vona/src/suite/a-training/modules/training-student/src/bean/meta.version.ts +21 -0
  175. package/vona/src/suite/a-training/modules/training-student/src/bean/ssrMenu.student.ts +29 -0
  176. package/vona/src/suite/a-training/modules/training-student/src/config/locale/en-us.ts +15 -0
  177. package/vona/src/suite/a-training/modules/training-student/src/config/locale/zh-cn.ts +15 -0
  178. package/vona/src/suite/a-training/modules/training-student/src/controller/student.ts +74 -0
  179. package/vona/src/suite/a-training/modules/training-student/src/dto/studentCreate.tsx +28 -0
  180. package/vona/src/suite/a-training/modules/training-student/src/dto/studentSelectReq.tsx +44 -0
  181. package/vona/src/suite/a-training/modules/training-student/src/dto/studentSelectRes.tsx +11 -0
  182. package/vona/src/suite/a-training/modules/training-student/src/dto/studentSelectResItem.tsx +45 -0
  183. package/vona/src/suite/a-training/modules/training-student/src/dto/studentSummary.tsx +42 -0
  184. package/vona/src/suite/a-training/modules/training-student/src/dto/studentUpdate.tsx +28 -0
  185. package/vona/src/suite/a-training/modules/training-student/src/dto/studentView.tsx +25 -0
  186. package/vona/src/suite/a-training/modules/training-student/src/entity/student.tsx +84 -0
  187. package/vona/src/suite/a-training/modules/training-student/src/index.ts +2 -0
  188. package/vona/src/suite/a-training/modules/training-student/src/model/student.ts +10 -0
  189. package/vona/src/suite/a-training/modules/training-student/src/service/student.ts +57 -0
  190. package/vona/src/suite/a-training/modules/training-student/test/student.test.ts +173 -0
  191. package/vona/src/suite/a-training/modules/training-student/tsconfig.build.json +11 -0
  192. package/vona/src/suite/a-training/modules/training-student/tsconfig.json +7 -0
  193. package/vona/src/suite/a-training/package.json +12 -0
  194. package/vona/src/suite/a-training/tsconfig.base.json +4 -0
  195. package/vona/src/suite/a-training/tsconfig.json +10 -0
  196. package/zova/packages-cli/cli/package.json +2 -2
  197. package/zova/packages-cli/cli-set-front/cli/templates/openapi/config/boilerplate/module/openapi.config.ts +6 -1
  198. package/zova/packages-cli/cli-set-front/package.json +1 -1
  199. package/zova/packages-cli/cli-set-front/src/lib/bean/cli.openapi.generate.ts +34 -4
  200. package/zova/packages-zova/zova/package.json +2 -2
  201. package/zova/pnpm-lock.yaml +416 -690
  202. package/zova/src/suite/a-training/modules/training-student/cli/openapi.config.ts +9 -0
  203. package/zova/src/suite/a-training/modules/training-student/package.json +52 -0
  204. package/zova/src/suite/a-training/modules/training-student/src/.metadata/component/formFieldLevel.ts +31 -0
  205. package/zova/src/suite/a-training/modules/training-student/src/.metadata/index.ts +258 -0
  206. package/zova/src/suite/a-training/modules/training-student/src/.metadata/locales.ts +7 -0
  207. package/zova/src/suite/a-training/modules/training-student/src/.metadata/this.ts +2 -0
  208. package/zova/src/suite/a-training/modules/training-student/src/api/openapi/baseURL.ts +5 -0
  209. package/zova/src/suite/a-training/modules/training-student/src/api/openapi/index.ts +3 -0
  210. package/zova/src/suite/a-training/modules/training-student/src/api/openapi/schemas.ts +196 -0
  211. package/zova/src/suite/a-training/modules/training-student/src/api/openapi/types.ts +4146 -0
  212. package/zova/src/suite/a-training/modules/training-student/src/api/trainingStudent.ts +151 -0
  213. package/zova/src/suite/a-training/modules/training-student/src/apiSchema/trainingStudent.ts +43 -0
  214. package/zova/src/suite/a-training/modules/training-student/src/bean/tableCell.actionDeleteForce.tsx +51 -0
  215. package/zova/src/suite/a-training/modules/training-student/src/bean/tableCell.actionSummary.tsx +56 -0
  216. package/zova/src/suite/a-training/modules/training-student/src/bean/tableCell.level.tsx +63 -0
  217. package/zova/src/suite/a-training/modules/training-student/src/component/formFieldLevel/controller.tsx +117 -0
  218. package/zova/src/suite/a-training/modules/training-student/src/config/locale/en-us.ts +9 -0
  219. package/zova/src/suite/a-training/modules/training-student/src/config/locale/zh-cn.ts +9 -0
  220. package/zova/src/suite/a-training/modules/training-student/src/index.ts +2 -0
  221. package/zova/src/suite/a-training/modules/training-student/src/model/student.ts +42 -0
  222. package/zova/src/suite/a-training/modules/training-student/tsconfig.build.json +13 -0
  223. package/zova/src/suite/a-training/modules/training-student/tsconfig.json +5 -0
  224. package/zova/src/suite/a-training/package.json +12 -0
  225. package/zova/src/suite/a-training/tsconfig.base.json +4 -0
  226. package/zova/src/suite/a-training/tsconfig.json +4 -0
  227. package/zova/src/suite/cabloy-basic/modules/basic-select/src/component/formFieldSelect/controller.tsx +29 -7
  228. package/zova/src/suite/cabloy-basic/modules/basic-select/src/component/select/controller.tsx +34 -11
  229. package/zova/src/suite-vendor/a-zova/modules/a-table/package.json +1 -1
  230. package/zova/src/suite-vendor/a-zova/modules/a-table/src/component/table/controller.tsx +3 -3
  231. package/zova/src/suite-vendor/a-zova/modules/a-table/src/lib/tableCell.ts +1 -1
  232. package/zova/src/suite-vendor/a-zova/package.json +2 -2
@@ -0,0 +1,9 @@
1
+ import type { ZovaOpenapiConfigModule } from 'zova-openapi';
2
+
3
+ export default function (): ZovaOpenapiConfigModule {
4
+ return {
5
+ operations: {
6
+ match: [/^TrainingStudent_*/],
7
+ },
8
+ };
9
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "zova-module-training-student",
3
+ "version": "5.0.0",
4
+ "description": "",
5
+ "keywords": [
6
+ "Zova Module"
7
+ ],
8
+ "author": "",
9
+ "files": [
10
+ "mock",
11
+ "dist",
12
+ "src",
13
+ "icons",
14
+ "assets"
15
+ ],
16
+ "type": "module",
17
+ "exports": {
18
+ ".": {
19
+ "types": [
20
+ "./src/index.ts",
21
+ "./dist/index.d.ts"
22
+ ],
23
+ "import": "./src/index.ts",
24
+ "default": "./dist/index.js"
25
+ },
26
+ "./*": "./*"
27
+ },
28
+ "scripts": {
29
+ "clean": "rimraf dist tsconfig.build.tsbuildinfo",
30
+ "tsc:publish": "npm run clean && node ../../../../../packages-cli/cli/src/bin/zova.ts :bin:buildModule --sourcemap && tsc -p tsconfig.build.json",
31
+ "prepublishOnly": "npm run tsc:publish",
32
+ "prepack": "clean-package",
33
+ "postpack": "clean-package restore && npm run clean"
34
+ },
35
+ "dependencies": {},
36
+ "devDependencies": {
37
+ "clean-package": "^2.2.0",
38
+ "rimraf": "^6.1.3"
39
+ },
40
+ "clean-package": {
41
+ "indent": 2,
42
+ "replace": {
43
+ "exports.\\..types": "./dist/index.d.ts"
44
+ },
45
+ "remove": [
46
+ "clean-package",
47
+ "devDependencies",
48
+ "exports.\\..import"
49
+ ]
50
+ },
51
+ "title": "training-student"
52
+ }
@@ -0,0 +1,31 @@
1
+ import type { TypeControllerInnerProps } from 'zova';
2
+
3
+ import { defineComponent } from 'vue';
4
+ import { prepareComponentOptions, useController } from 'zova';
5
+
6
+ import type { ControllerFormFieldLevelProps } from '../../component/formFieldLevel/controller.jsx';
7
+
8
+ import { ControllerFormFieldLevel } from '../../component/formFieldLevel/controller.jsx';
9
+ export type ZFormFieldLevelProps = {
10
+ controllerRef?: (ref: ControllerFormFieldLevel) => void;
11
+ } & ControllerFormFieldLevelProps;
12
+
13
+ type ControllerInnerProps = TypeControllerInnerProps<
14
+ ControllerFormFieldLevelProps,
15
+ keyof typeof ControllerFormFieldLevel.$propsDefault
16
+ >;
17
+ declare module 'zova-module-training-student' {
18
+ export interface ControllerFormFieldLevel {
19
+ $props: ControllerInnerProps;
20
+ }
21
+ }
22
+
23
+ export const ZFormFieldLevel = defineComponent((_props: ZFormFieldLevelProps) => {
24
+ useController(ControllerFormFieldLevel, undefined, undefined);
25
+ return () => {};
26
+ }, prepareComponentOptions(ControllerFormFieldLevel.$componentOptions));
27
+ declare module 'zova-module-a-bean' {
28
+ export interface IVonaComponentRecord {
29
+ 'training-student:formFieldLevel': ControllerFormFieldLevelProps;
30
+ }
31
+ }
@@ -0,0 +1,258 @@
1
+ // eslint-disable
2
+ /** model: begin */
3
+ export * from '../model/student.js';
4
+ import { IModelOptionsStudent } from '../model/student.js';
5
+ import 'zova-module-a-model';
6
+ declare module 'zova-module-a-model' {
7
+
8
+ export interface IModelRecord {
9
+ 'training-student:student': IModelOptionsStudent;
10
+ }
11
+
12
+
13
+ }
14
+ declare module 'zova-module-training-student' {
15
+
16
+ export interface ModelStudent {
17
+ /** @internal */
18
+ get scope(): ScopeModuleTrainingStudent;
19
+ }
20
+
21
+ export interface ModelStudent {
22
+ get $beanFullName(): 'training-student.model.student';
23
+ get $onionName(): 'training-student:student';
24
+ get $onionOptions(): IModelOptionsStudent;
25
+ }
26
+ }
27
+ /** model: end */
28
+ /** model: begin */
29
+ import { ModelStudent } from '../model/student.js';
30
+ import 'zova';
31
+ declare module 'zova' {
32
+ export interface IBeanRecordGeneral {
33
+ 'training-student.model.student': ModelStudent;
34
+ }
35
+ }
36
+ /** model: end */
37
+ /** api: begin */
38
+ export * from '../api/trainingStudent.js';
39
+
40
+ import 'zova';
41
+ declare module 'zova' {
42
+
43
+
44
+ }
45
+ declare module 'zova-module-training-student' {
46
+
47
+ export interface ApiTrainingStudent {
48
+ /** @internal */
49
+ get scope(): ScopeModuleTrainingStudent;
50
+ }
51
+
52
+ export interface ApiTrainingStudent {
53
+ get $beanFullName(): 'training-student.api.trainingStudent';
54
+ get $onionName(): 'training-student:trainingStudent';
55
+
56
+ }
57
+ }
58
+ /** api: end */
59
+ /** api: begin */
60
+ import { ApiTrainingStudent } from '../api/trainingStudent.js';
61
+ export interface IModuleApi {
62
+ 'trainingStudent': ApiTrainingStudent;
63
+ }
64
+ /** api: end */
65
+ /** api: begin */
66
+
67
+ import 'zova';
68
+ declare module 'zova' {
69
+ export interface IBeanRecordGeneral {
70
+ 'training-student.api.trainingStudent': ApiTrainingStudent;
71
+ }
72
+ }
73
+ /** api: end */
74
+ /** openapi: begin */
75
+ export * from '../api/openapi/index.js';
76
+ /** openapi: end */
77
+ /** apiSchema: begin */
78
+ export * from '../apiSchema/trainingStudent.js';
79
+
80
+ import 'zova';
81
+ declare module 'zova' {
82
+
83
+
84
+ }
85
+ declare module 'zova-module-training-student' {
86
+
87
+ export interface ApiSchemaTrainingStudent {
88
+ /** @internal */
89
+ get scope(): ScopeModuleTrainingStudent;
90
+ }
91
+
92
+ export interface ApiSchemaTrainingStudent {
93
+ get $beanFullName(): 'training-student.apiSchema.trainingStudent';
94
+ get $onionName(): 'training-student:trainingStudent';
95
+
96
+ }
97
+ }
98
+ /** apiSchema: end */
99
+ /** apiSchema: begin */
100
+ import { ApiSchemaTrainingStudent } from '../apiSchema/trainingStudent.js';
101
+ export interface IModuleApiSchema {
102
+ 'trainingStudent': ApiSchemaTrainingStudent;
103
+ }
104
+ /** apiSchema: end */
105
+ /** apiSchema: begin */
106
+
107
+ import 'zova';
108
+ declare module 'zova' {
109
+ export interface IBeanRecordGeneral {
110
+ 'training-student.apiSchema.trainingStudent': ApiSchemaTrainingStudent;
111
+ }
112
+ }
113
+ /** apiSchema: end */
114
+ /** controller: begin */
115
+ export * from '../component/formFieldLevel/controller.jsx';
116
+
117
+ import 'zova';
118
+ declare module 'zova' {
119
+
120
+
121
+ }
122
+ declare module 'zova-module-training-student' {
123
+
124
+ export interface ControllerFormFieldLevel {
125
+ /** @internal */
126
+ get scope(): ScopeModuleTrainingStudent;
127
+ }
128
+ }
129
+ /** controller: end */
130
+ /** controller: begin */
131
+ import { ControllerFormFieldLevel } from '../component/formFieldLevel/controller.jsx';
132
+ import 'zova';
133
+ declare module 'zova' {
134
+ export interface IBeanRecordLocal {
135
+ 'training-student.controller.formFieldLevel': ControllerFormFieldLevel;
136
+ }
137
+ }
138
+ /** controller: end */
139
+
140
+ /** components: begin */
141
+ export * from './component/formFieldLevel.js';
142
+ import { ZFormFieldLevel } from './component/formFieldLevel.js';
143
+ export const components = {
144
+ 'formFieldLevel': ZFormFieldLevel,
145
+ };
146
+ import 'zova';
147
+ declare module 'zova' {
148
+ export interface IComponentRecord {
149
+ 'training-student:formFieldLevel': ControllerFormFieldLevel;
150
+ }
151
+ export interface IZovaComponentRecord {
152
+ 'training-student:formFieldLevel': typeof ZFormFieldLevel;
153
+ }
154
+ }
155
+ /** components: end */
156
+ /** tableCell: begin */
157
+ export * from '../bean/tableCell.actionDeleteForce.jsx';
158
+ export * from '../bean/tableCell.actionSummary.jsx';
159
+ export * from '../bean/tableCell.level.jsx';
160
+ import { ITableCellOptionsActionDeleteForce } from '../bean/tableCell.actionDeleteForce.jsx';
161
+ import { ITableCellOptionsActionSummary } from '../bean/tableCell.actionSummary.jsx';
162
+ import { ITableCellOptionsLevel } from '../bean/tableCell.level.jsx';
163
+ import 'zova-module-a-table';
164
+ declare module 'zova-module-a-table' {
165
+
166
+ export interface ITableCellRecord {
167
+ 'training-student:actionDeleteForce': ITableCellOptionsActionDeleteForce;
168
+ 'training-student:actionSummary': ITableCellOptionsActionSummary;
169
+ 'training-student:level': ITableCellOptionsLevel;
170
+ }
171
+
172
+
173
+ }
174
+ declare module 'zova-module-training-student' {
175
+
176
+ export interface TableCellActionDeleteForce {
177
+ /** @internal */
178
+ get scope(): ScopeModuleTrainingStudent;
179
+ }
180
+
181
+ export interface TableCellActionDeleteForce {
182
+ get $beanFullName(): 'training-student.tableCell.actionDeleteForce';
183
+ get $onionName(): 'training-student:actionDeleteForce';
184
+ get $onionOptions(): ITableCellOptionsActionDeleteForce;
185
+ }
186
+
187
+ export interface TableCellActionSummary {
188
+ /** @internal */
189
+ get scope(): ScopeModuleTrainingStudent;
190
+ }
191
+
192
+ export interface TableCellActionSummary {
193
+ get $beanFullName(): 'training-student.tableCell.actionSummary';
194
+ get $onionName(): 'training-student:actionSummary';
195
+ get $onionOptions(): ITableCellOptionsActionSummary;
196
+ }
197
+
198
+ export interface TableCellLevel {
199
+ /** @internal */
200
+ get scope(): ScopeModuleTrainingStudent;
201
+ }
202
+
203
+ export interface TableCellLevel {
204
+ get $beanFullName(): 'training-student.tableCell.level';
205
+ get $onionName(): 'training-student:level';
206
+ get $onionOptions(): ITableCellOptionsLevel;
207
+ }
208
+ }
209
+ /** tableCell: end */
210
+ /** tableCell: begin */
211
+ import { TableCellActionDeleteForce } from '../bean/tableCell.actionDeleteForce.jsx';
212
+ import { TableCellActionSummary } from '../bean/tableCell.actionSummary.jsx';
213
+ import { TableCellLevel } from '../bean/tableCell.level.jsx';
214
+ import 'zova';
215
+ declare module 'zova' {
216
+ export interface IBeanRecordGeneral {
217
+ 'training-student.tableCell.actionDeleteForce': TableCellActionDeleteForce;
218
+ 'training-student.tableCell.actionSummary': TableCellActionSummary;
219
+ 'training-student.tableCell.level': TableCellLevel;
220
+ }
221
+ }
222
+ /** tableCell: end */
223
+ /** locale: begin */
224
+ import { locales } from './locales.js';
225
+ /** locale: end */
226
+ /** scope: begin */
227
+ import { BeanScopeBase, type BeanScopeUtil, TypeModuleLocales, TypeLocaleBase } from 'zova';
228
+ import { Scope } from 'zova-module-a-bean';
229
+
230
+ @Scope()
231
+ export class ScopeModuleTrainingStudent extends BeanScopeBase {}
232
+
233
+ export interface ScopeModuleTrainingStudent {
234
+ util: BeanScopeUtil;
235
+ locale: TypeModuleLocales<(typeof locales)[TypeLocaleBase]>;
236
+ api: IModuleApi;
237
+ apiSchema: IModuleApiSchema;
238
+ }
239
+
240
+ import 'zova';
241
+ declare module 'zova' {
242
+ export interface IBeanScopeRecord {
243
+ 'training-student': ScopeModuleTrainingStudent;
244
+ }
245
+
246
+
247
+
248
+ export interface IBeanScopeLocale {
249
+ 'training-student': (typeof locales)[TypeLocaleBase];
250
+ }
251
+
252
+
253
+ }
254
+
255
+ export function locale<K extends keyof (typeof locales)[TypeLocaleBase]>(key: K): `training-student::${K}` {
256
+ return `training-student::${key}`;
257
+ }
258
+ /** scope: end */
@@ -0,0 +1,7 @@
1
+ import locale_en_us from '../config/locale/en-us.js';
2
+ import locale_zh_cn from '../config/locale/zh-cn.js';
3
+
4
+ export const locales = {
5
+ 'en-us': locale_en_us,
6
+ 'zh-cn': locale_zh_cn,
7
+ };
@@ -0,0 +1,2 @@
1
+ export const __ThisModule__ = 'training-student';
2
+ export { ScopeModuleTrainingStudent as ScopeModule } from './index.js';
@@ -0,0 +1,5 @@
1
+ import type { ZovaSys } from 'zova';
2
+
3
+ export const OpenApiBaseURL = (sys: ZovaSys) => {
4
+ return sys.util.getOpenApiBaseURL('OPENAPI_BASE_URL_TRAINING_STUDENT');
5
+ };
@@ -0,0 +1,3 @@
1
+ export * from './baseURL.js';
2
+ export * from './schemas.js';
3
+ export * from './types.js';
@@ -0,0 +1,196 @@
1
+ // eslint-disable
2
+ import type { components } from './types.js';
3
+ export type ApiSchemaTestVonaDtoPostCreate = components['schemas']['test-vona.dto.postCreate'];
4
+ export type ApiSchemaTestVonaDtoPostCreatePartial = Partial<ApiSchemaTestVonaDtoPostCreate>;
5
+ export type ApiSchemaTestVonaDtoUserCreate = components['schemas']['test-vona.dto.userCreate'];
6
+ export type ApiSchemaTestVonaDtoUserCreatePartial = Partial<ApiSchemaTestVonaDtoUserCreate>;
7
+ export type ApiSchemaTestVonaEntityProduct = components['schemas']['test-vona.entity.product'];
8
+ export type ApiSchemaTestVonaEntityProductPartial = Partial<ApiSchemaTestVonaEntityProduct>;
9
+ export type ApiSchemaACaptchaDtoCaptchaData = components['schemas']['a-captcha.dto.captchaData'];
10
+ export type ApiSchemaACaptchaDtoCaptchaDataPartial = Partial<ApiSchemaACaptchaDtoCaptchaData>;
11
+ export type ApiSchemaTrainingStudentDtoStudentCreate =
12
+ components['schemas']['training-student.dto.studentCreate'];
13
+ export type ApiSchemaTrainingStudentDtoStudentCreatePartial =
14
+ Partial<ApiSchemaTrainingStudentDtoStudentCreate>;
15
+ export type ApiSchemaTrainingStudentDtoStudentSelectRes =
16
+ components['schemas']['training-student.dto.studentSelectRes'];
17
+ export type ApiSchemaTrainingStudentDtoStudentSelectResPartial =
18
+ Partial<ApiSchemaTrainingStudentDtoStudentSelectRes>;
19
+ export type ApiSchemaTrainingStudentDtoStudentSelectResItem =
20
+ components['schemas']['training-student.dto.studentSelectResItem'];
21
+ export type ApiSchemaTrainingStudentDtoStudentSelectResItemPartial =
22
+ Partial<ApiSchemaTrainingStudentDtoStudentSelectResItem>;
23
+ export type ApiSchemaTrainingStudentDtoStudentView_2d063d28bc7243bed02ebd8bddf1212a93c6305b =
24
+ components['schemas']['training-student.dto.studentView_2d063d28bc7243bed02ebd8bddf1212a93c6305b'];
25
+ export type ApiSchemaTrainingStudentDtoStudentView_2d063d28bc7243bed02ebd8bddf1212a93c6305bPartial =
26
+ Partial<ApiSchemaTrainingStudentDtoStudentView_2d063d28bc7243bed02ebd8bddf1212a93c6305b>;
27
+ export type ApiSchemaTrainingStudentDtoStudentUpdate =
28
+ components['schemas']['training-student.dto.studentUpdate'];
29
+ export type ApiSchemaTrainingStudentDtoStudentUpdatePartial =
30
+ Partial<ApiSchemaTrainingStudentDtoStudentUpdate>;
31
+ export type ApiSchemaTrainingStudentDtoStudentSummary_2d063d28bc7243bed02ebd8bddf1212a93c6305b =
32
+ components['schemas']['training-student.dto.studentSummary_2d063d28bc7243bed02ebd8bddf1212a93c6305b'];
33
+ export type ApiSchemaTrainingStudentDtoStudentSummary_2d063d28bc7243bed02ebd8bddf1212a93c6305bPartial =
34
+ Partial<ApiSchemaTrainingStudentDtoStudentSummary_2d063d28bc7243bed02ebd8bddf1212a93c6305b>;
35
+ export type ApiSchemaAMenuDtoMenus = components['schemas']['a-menu.dto.menus'];
36
+ export type ApiSchemaAMenuDtoMenusPartial = Partial<ApiSchemaAMenuDtoMenus>;
37
+ export type ApiSchemaAMenuDtoMenuItem = components['schemas']['a-menu.dto.menuItem'];
38
+ export type ApiSchemaAMenuDtoMenuItemPartial = Partial<ApiSchemaAMenuDtoMenuItem>;
39
+ export type ApiSchemaAMenuDtoMenuItemMeta_2d063d28bc7243bed02ebd8bddf1212a93c6305b =
40
+ components['schemas']['a-menu.dto.menuItemMeta_2d063d28bc7243bed02ebd8bddf1212a93c6305b'];
41
+ export type ApiSchemaAMenuDtoMenuItemMeta_2d063d28bc7243bed02ebd8bddf1212a93c6305bPartial =
42
+ Partial<ApiSchemaAMenuDtoMenuItemMeta_2d063d28bc7243bed02ebd8bddf1212a93c6305b>;
43
+ export type ApiSchemaAMenuDtoMenuGroup = components['schemas']['a-menu.dto.menuGroup'];
44
+ export type ApiSchemaAMenuDtoMenuGroupPartial = Partial<ApiSchemaAMenuDtoMenuGroup>;
45
+ export type ApiSchemaAPermissionDtoPermissions =
46
+ components['schemas']['a-permission.dto.permissions'];
47
+ export type ApiSchemaAPermissionDtoPermissionsPartial = Partial<ApiSchemaAPermissionDtoPermissions>;
48
+ export type ApiSchemaHomeUserDtoPassport_2d063d28bc7243bed02ebd8bddf1212a93c6305b =
49
+ components['schemas']['home-user.dto.passport_2d063d28bc7243bed02ebd8bddf1212a93c6305b'];
50
+ export type ApiSchemaHomeUserDtoPassport_2d063d28bc7243bed02ebd8bddf1212a93c6305bPartial =
51
+ Partial<ApiSchemaHomeUserDtoPassport_2d063d28bc7243bed02ebd8bddf1212a93c6305b>;
52
+ export type ApiSchemaHomeUserEntityUser = components['schemas']['home-user.entity.user'];
53
+ export type ApiSchemaHomeUserEntityUserPartial = Partial<ApiSchemaHomeUserEntityUser>;
54
+ export type ApiSchemaAAuthDtoAuth = components['schemas']['a-auth.dto.auth'];
55
+ export type ApiSchemaAAuthDtoAuthPartial = Partial<ApiSchemaAAuthDtoAuth>;
56
+ export type ApiSchemaHomeUserEntityRole = components['schemas']['home-user.entity.role'];
57
+ export type ApiSchemaHomeUserEntityRolePartial = Partial<ApiSchemaHomeUserEntityRole>;
58
+ export type ApiSchemaHomeUserDtoPassportJwt = components['schemas']['home-user.dto.passportJwt'];
59
+ export type ApiSchemaHomeUserDtoPassportJwtPartial = Partial<ApiSchemaHomeUserDtoPassportJwt>;
60
+ export type ApiSchemaHomeUserDtoPassport = components['schemas']['home-user.dto.passport'];
61
+ export type ApiSchemaHomeUserDtoPassportPartial = Partial<ApiSchemaHomeUserDtoPassport>;
62
+ export type ApiSchemaAJwtDtoJwtToken = components['schemas']['a-jwt.dto.jwtToken'];
63
+ export type ApiSchemaAJwtDtoJwtTokenPartial = Partial<ApiSchemaAJwtDtoJwtToken>;
64
+ export type ApiSchemaHomeUserDtoRegister = components['schemas']['home-user.dto.register'];
65
+ export type ApiSchemaHomeUserDtoRegisterPartial = Partial<ApiSchemaHomeUserDtoRegister>;
66
+ export type ApiSchemaACaptchaDtoCaptchaVerify_67c39cad0735f2460ecc6bef838440b07c4dcfa9 =
67
+ components['schemas']['a-captcha.dto.captchaVerify_67c39cad0735f2460ecc6bef838440b07c4dcfa9'];
68
+ export type ApiSchemaACaptchaDtoCaptchaVerify_67c39cad0735f2460ecc6bef838440b07c4dcfa9Partial =
69
+ Partial<ApiSchemaACaptchaDtoCaptchaVerify_67c39cad0735f2460ecc6bef838440b07c4dcfa9>;
70
+ export type ApiSchemaHomeUserDtoLogin = components['schemas']['home-user.dto.login'];
71
+ export type ApiSchemaHomeUserDtoLoginPartial = Partial<ApiSchemaHomeUserDtoLogin>;
72
+ export type ApiSchemaACaptchaDtoCaptchaVerify_67c39cad0735f2460ecc6bef838440b07c4dcfa9_f73253d699f0fd90b98fded80a123a0a180dbca2_626802c24df1498cec99aab0854fedf90c9b6dd3 =
73
+ components['schemas']['a-captcha.dto.captchaVerify_67c39cad0735f2460ecc6bef838440b07c4dcfa9_f73253d699f0fd90b98fded80a123a0a180dbca2_626802c24df1498cec99aab0854fedf90c9b6dd3'];
74
+ export type ApiSchemaACaptchaDtoCaptchaVerify_67c39cad0735f2460ecc6bef838440b07c4dcfa9_f73253d699f0fd90b98fded80a123a0a180dbca2_626802c24df1498cec99aab0854fedf90c9b6dd3Partial =
75
+ Partial<ApiSchemaACaptchaDtoCaptchaVerify_67c39cad0735f2460ecc6bef838440b07c4dcfa9_f73253d699f0fd90b98fded80a123a0a180dbca2_626802c24df1498cec99aab0854fedf90c9b6dd3>;
76
+ export type ApiSchemaAPaypalEntityPaypalRecord =
77
+ components['schemas']['a-paypal.entity.paypalRecord'];
78
+ export type ApiSchemaAPaypalEntityPaypalRecordPartial = Partial<ApiSchemaAPaypalEntityPaypalRecord>;
79
+ export type ApiSchemaAPaypalDtoPaypalOrderRecordPayload =
80
+ components['schemas']['a-paypal.dto.paypalOrderRecordPayload'];
81
+ export type ApiSchemaAPaypalDtoPaypalOrderRecordPayloadPartial =
82
+ Partial<ApiSchemaAPaypalDtoPaypalOrderRecordPayload>;
83
+ export type ApiSchemaAPaypalDtoPaypalOrderRecordOptions =
84
+ components['schemas']['a-paypal.dto.paypalOrderRecordOptions'];
85
+ export type ApiSchemaAPaypalDtoPaypalOrderRecordOptionsPartial =
86
+ Partial<ApiSchemaAPaypalDtoPaypalOrderRecordOptions>;
87
+ export type ApiSchemaTestCaptchaDtoSignin = components['schemas']['test-captcha.dto.signin'];
88
+ export type ApiSchemaTestCaptchaDtoSigninPartial = Partial<ApiSchemaTestCaptchaDtoSignin>;
89
+ export type ApiSchemaTestRestDtoProductCreate =
90
+ components['schemas']['test-rest.dto.productCreate'];
91
+ export type ApiSchemaTestRestDtoProductCreatePartial = Partial<ApiSchemaTestRestDtoProductCreate>;
92
+ export type ApiSchemaTestRestDtoProductSelectRes =
93
+ components['schemas']['test-rest.dto.productSelectRes'];
94
+ export type ApiSchemaTestRestDtoProductSelectResPartial =
95
+ Partial<ApiSchemaTestRestDtoProductSelectRes>;
96
+ export type ApiSchemaTestRestDtoProductSelectResItem =
97
+ components['schemas']['test-rest.dto.productSelectResItem'];
98
+ export type ApiSchemaTestRestDtoProductSelectResItemPartial =
99
+ Partial<ApiSchemaTestRestDtoProductSelectResItem>;
100
+ export type ApiSchemaTestRestDtoProductView_2d063d28bc7243bed02ebd8bddf1212a93c6305b =
101
+ components['schemas']['test-rest.dto.productView_2d063d28bc7243bed02ebd8bddf1212a93c6305b'];
102
+ export type ApiSchemaTestRestDtoProductView_2d063d28bc7243bed02ebd8bddf1212a93c6305bPartial =
103
+ Partial<ApiSchemaTestRestDtoProductView_2d063d28bc7243bed02ebd8bddf1212a93c6305b>;
104
+ export type ApiSchemaTestRestDtoProductUpdate =
105
+ components['schemas']['test-rest.dto.productUpdate'];
106
+ export type ApiSchemaTestRestDtoProductUpdatePartial = Partial<ApiSchemaTestRestDtoProductUpdate>;
107
+ export type ApiSchemaTestSsrDtoTestResult = components['schemas']['test-ssr.dto.testResult'];
108
+ export type ApiSchemaTestSsrDtoTestResultPartial = Partial<ApiSchemaTestSsrDtoTestResult>;
109
+ export type ApiSchemaTestSsrDtoTestDetail = components['schemas']['test-ssr.dto.testDetail'];
110
+ export type ApiSchemaTestSsrDtoTestDetailPartial = Partial<ApiSchemaTestSsrDtoTestDetail>;
111
+ export type ApiSchemaTestSsrDtoTestBody = components['schemas']['test-ssr.dto.testBody'];
112
+ export type ApiSchemaTestSsrDtoTestBodyPartial = Partial<ApiSchemaTestSsrDtoTestBody>;
113
+ export type ApiSchemaTestVonaDtoUserLazy = components['schemas']['test-vona.dto.userLazy'];
114
+ export type ApiSchemaTestVonaDtoUserLazyPartial = Partial<ApiSchemaTestVonaDtoUserLazy>;
115
+ export type ApiSchemaTestVonaDtoUserLazy_2d063d28bc7243bed02ebd8bddf1212a93c6305b =
116
+ components['schemas']['test-vona.dto.userLazy_2d063d28bc7243bed02ebd8bddf1212a93c6305b'];
117
+ export type ApiSchemaTestVonaDtoUserLazy_2d063d28bc7243bed02ebd8bddf1212a93c6305bPartial =
118
+ Partial<ApiSchemaTestVonaDtoUserLazy_2d063d28bc7243bed02ebd8bddf1212a93c6305b>;
119
+ export type ApiSchemaTestVonaDtoRoleLazy = components['schemas']['test-vona.dto.roleLazy'];
120
+ export type ApiSchemaTestVonaDtoRoleLazyPartial = Partial<ApiSchemaTestVonaDtoRoleLazy>;
121
+ export type ApiSchemaTestVonaEntityUser_2c7d642ee581efa300341e343180fbb0ecdc785d_1816ff740d81c738ec055c7038bbd93beb9405a7_2d063d28bc7243bed02ebd8bddf1212a93c6305b =
122
+ components['schemas']['test-vona.entity.user_2c7d642ee581efa300341e343180fbb0ecdc785d_1816ff740d81c738ec055c7038bbd93beb9405a7_2d063d28bc7243bed02ebd8bddf1212a93c6305b'];
123
+ export type ApiSchemaTestVonaEntityUser_2c7d642ee581efa300341e343180fbb0ecdc785d_1816ff740d81c738ec055c7038bbd93beb9405a7_2d063d28bc7243bed02ebd8bddf1212a93c6305bPartial =
124
+ Partial<ApiSchemaTestVonaEntityUser_2c7d642ee581efa300341e343180fbb0ecdc785d_1816ff740d81c738ec055c7038bbd93beb9405a7_2d063d28bc7243bed02ebd8bddf1212a93c6305b>;
125
+ export type ApiSchemaTestVonaEntityPost_a6ba2076b5b70a3c098374cc82d418bd1ab226c3_2d063d28bc7243bed02ebd8bddf1212a93c6305b =
126
+ components['schemas']['test-vona.entity.post_a6ba2076b5b70a3c098374cc82d418bd1ab226c3_2d063d28bc7243bed02ebd8bddf1212a93c6305b'];
127
+ export type ApiSchemaTestVonaEntityPost_a6ba2076b5b70a3c098374cc82d418bd1ab226c3_2d063d28bc7243bed02ebd8bddf1212a93c6305bPartial =
128
+ Partial<ApiSchemaTestVonaEntityPost_a6ba2076b5b70a3c098374cc82d418bd1ab226c3_2d063d28bc7243bed02ebd8bddf1212a93c6305b>;
129
+ export type ApiSchemaTestVonaEntityPost_729883d7de16ce4401b26f75bebe618c8948ff64 =
130
+ components['schemas']['test-vona.entity.post_729883d7de16ce4401b26f75bebe618c8948ff64'];
131
+ export type ApiSchemaTestVonaEntityPost_729883d7de16ce4401b26f75bebe618c8948ff64Partial =
132
+ Partial<ApiSchemaTestVonaEntityPost_729883d7de16ce4401b26f75bebe618c8948ff64>;
133
+ export type ApiSchemaTestVonaDtoUserUpdate = components['schemas']['test-vona.dto.userUpdate'];
134
+ export type ApiSchemaTestVonaDtoUserUpdatePartial = Partial<ApiSchemaTestVonaDtoUserUpdate>;
135
+ export type ApiSchemaTestVonaEntityCategory_2c7d642ee581efa300341e343180fbb0ecdc785d =
136
+ components['schemas']['test-vona.entity.category_2c7d642ee581efa300341e343180fbb0ecdc785d'];
137
+ export type ApiSchemaTestVonaEntityCategory_2c7d642ee581efa300341e343180fbb0ecdc785dPartial =
138
+ Partial<ApiSchemaTestVonaEntityCategory_2c7d642ee581efa300341e343180fbb0ecdc785d>;
139
+ export type ApiSchemaTestVonaDtoCategoryTree = components['schemas']['test-vona.dto.categoryTree'];
140
+ export type ApiSchemaTestVonaDtoCategoryTreePartial = Partial<ApiSchemaTestVonaDtoCategoryTree>;
141
+ export type ApiSchemaTestVonaDtoUser = components['schemas']['test-vona.dto.user'];
142
+ export type ApiSchemaTestVonaDtoUserPartial = Partial<ApiSchemaTestVonaDtoUser>;
143
+ export type ApiSchemaTestVonaDtoOrderCreate = components['schemas']['test-vona.dto.orderCreate'];
144
+ export type ApiSchemaTestVonaDtoOrderCreatePartial = Partial<ApiSchemaTestVonaDtoOrderCreate>;
145
+ export type ApiSchemaTestVonaEntityProduct_29731960f3f38d3572bc2f8a01a7498bfe927055 =
146
+ components['schemas']['test-vona.entity.product_29731960f3f38d3572bc2f8a01a7498bfe927055'];
147
+ export type ApiSchemaTestVonaEntityProduct_29731960f3f38d3572bc2f8a01a7498bfe927055Partial =
148
+ Partial<ApiSchemaTestVonaEntityProduct_29731960f3f38d3572bc2f8a01a7498bfe927055>;
149
+ export type ApiSchemaTestVonaDtoOrderUpdate = components['schemas']['test-vona.dto.orderUpdate'];
150
+ export type ApiSchemaTestVonaDtoOrderUpdatePartial = Partial<ApiSchemaTestVonaDtoOrderUpdate>;
151
+ export type ApiSchemaTestVonaEntityProduct_9cf2c6bcd41713270c34bcfce21b7b4942e3fbc6 =
152
+ components['schemas']['test-vona.entity.product_9cf2c6bcd41713270c34bcfce21b7b4942e3fbc6'];
153
+ export type ApiSchemaTestVonaEntityProduct_9cf2c6bcd41713270c34bcfce21b7b4942e3fbc6Partial =
154
+ Partial<ApiSchemaTestVonaEntityProduct_9cf2c6bcd41713270c34bcfce21b7b4942e3fbc6>;
155
+ export type ApiSchemaTestVonaDtoOrderSelectResItem =
156
+ components['schemas']['test-vona.dto.orderSelectResItem'];
157
+ export type ApiSchemaTestVonaDtoOrderSelectResItemPartial =
158
+ Partial<ApiSchemaTestVonaDtoOrderSelectResItem>;
159
+ export type ApiSchemaTestVonaEntityProduct_bce173590aaef19772f1ae3a82196493c2633e2e =
160
+ components['schemas']['test-vona.entity.product_bce173590aaef19772f1ae3a82196493c2633e2e'];
161
+ export type ApiSchemaTestVonaEntityProduct_bce173590aaef19772f1ae3a82196493c2633e2ePartial =
162
+ Partial<ApiSchemaTestVonaEntityProduct_bce173590aaef19772f1ae3a82196493c2633e2e>;
163
+ export type ApiSchemaTestVonaDtoOrderSelectRes =
164
+ components['schemas']['test-vona.dto.orderSelectRes'];
165
+ export type ApiSchemaTestVonaDtoOrderSelectResPartial = Partial<ApiSchemaTestVonaDtoOrderSelectRes>;
166
+ export type ApiSchemaTestVonaDtoPostGroup = components['schemas']['test-vona.dto.postGroup'];
167
+ export type ApiSchemaTestVonaDtoPostGroupPartial = Partial<ApiSchemaTestVonaDtoPostGroup>;
168
+ export type ApiSchemaTestVonaDtoPostAggregate =
169
+ components['schemas']['test-vona.dto.postAggregate'];
170
+ export type ApiSchemaTestVonaDtoPostAggregatePartial = Partial<ApiSchemaTestVonaDtoPostAggregate>;
171
+ export type ApiSchemaTestVonaDtoPostSelectRes =
172
+ components['schemas']['test-vona.dto.postSelectRes'];
173
+ export type ApiSchemaTestVonaDtoPostSelectResPartial = Partial<ApiSchemaTestVonaDtoPostSelectRes>;
174
+ export type ApiSchemaTestVonaDtoPostSelectResItem =
175
+ components['schemas']['test-vona.dto.postSelectResItem'];
176
+ export type ApiSchemaTestVonaDtoPostSelectResItemPartial =
177
+ Partial<ApiSchemaTestVonaDtoPostSelectResItem>;
178
+ export type ApiSchemaTestVonaDtoSerializerSimple =
179
+ components['schemas']['test-vona.dto.serializerSimple'];
180
+ export type ApiSchemaTestVonaDtoSerializerSimplePartial =
181
+ Partial<ApiSchemaTestVonaDtoSerializerSimple>;
182
+ export type ApiSchemaTestVonaDtoSerializerArray =
183
+ components['schemas']['test-vona.dto.serializerArray'];
184
+ export type ApiSchemaTestVonaDtoSerializerArrayPartial =
185
+ Partial<ApiSchemaTestVonaDtoSerializerArray>;
186
+ export type ApiSchemaTestVonaDtoSerializerLazy =
187
+ components['schemas']['test-vona.dto.serializerLazy'];
188
+ export type ApiSchemaTestVonaDtoSerializerLazyPartial = Partial<ApiSchemaTestVonaDtoSerializerLazy>;
189
+ export type ApiSchemaTestVonaDtoSerializerSimple_1c4b95bcfe8fe28a56dbcc7028097cf11836b4fc =
190
+ components['schemas']['test-vona.dto.serializerSimple_1c4b95bcfe8fe28a56dbcc7028097cf11836b4fc'];
191
+ export type ApiSchemaTestVonaDtoSerializerSimple_1c4b95bcfe8fe28a56dbcc7028097cf11836b4fcPartial =
192
+ Partial<ApiSchemaTestVonaDtoSerializerSimple_1c4b95bcfe8fe28a56dbcc7028097cf11836b4fc>;
193
+ export type ApiSchemaTestVonaDtoSerializerSimple_542f7be0da9b85a67248a6a1a3629e72de5fdb33_0544b269faee0bd5cd6c610dee78c5be0d490831 =
194
+ components['schemas']['test-vona.dto.serializerSimple_542f7be0da9b85a67248a6a1a3629e72de5fdb33_0544b269faee0bd5cd6c610dee78c5be0d490831'];
195
+ export type ApiSchemaTestVonaDtoSerializerSimple_542f7be0da9b85a67248a6a1a3629e72de5fdb33_0544b269faee0bd5cd6c610dee78c5be0d490831Partial =
196
+ Partial<ApiSchemaTestVonaDtoSerializerSimple_542f7be0da9b85a67248a6a1a3629e72de5fdb33_0544b269faee0bd5cd6c610dee78c5be0d490831>;