cabloy 5.1.140 → 5.1.142
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 +1 -1
- package/.github/workflows/playwright-e2e.yml +2 -2
- package/CHANGELOG.md +32 -0
- package/cabloy-docs/frontend/form-guide.md +47 -0
- package/cabloy-docs/frontend/markdown-guide.md +50 -17
- package/cabloy-docs/frontend/route-alias-guide.md +20 -0
- package/cabloy-docs/frontend/scripts.md +9 -11
- package/cabloy-docs/frontend/zova-form-under-the-hood.md +25 -0
- package/cabloy-docs/fullstack/framework-performance.md +3 -3
- package/cabloy-docs/fullstack/parallel-worktree-environment.md +1 -1
- package/cabloy-docs/fullstack/quickstart.md +5 -4
- package/cabloy-docs/reference/repo-scripts.md +29 -42
- package/e2e/config/playwright.config.ts +34 -0
- package/e2e/scripts/e2e.ts +2 -27
- package/e2e/scripts/runE2e.ts +62 -0
- package/e2e/scripts/runE2eArgs.test.ts +75 -0
- package/e2e/scripts/runE2eArgs.ts +158 -0
- package/e2e/specs/{a-commerce/commerce.spec.ts → a-commerce.spec.ts} +364 -33
- package/e2e/specs/{cabloy-basic/account.spec.ts → account.spec.ts} +1 -2
- package/e2e/specs/{cabloy-basic/basic.spec.ts → cabloy-basic.spec.ts} +6 -8
- package/oxlint.config.ts +3 -0
- package/package.json +3 -9
- package/scripts/upgrade.ts +63 -68
- package/vona/packages-utils/lint/package.json +1 -1
- package/vona/packages-utils/lint/src/oxc/lint.ts +1 -1
- package/vona/packages-utils/lint/src/oxc/lintVue.ts +1 -1
- package/vona/pnpm-lock.yaml +100 -657
- package/vona/src/suite/a-commerce/modules/commerce-trade/src/dto/refundRecoveryView.tsx +7 -2
- package/vona/src/suite/a-commerce/modules/commerce-trade/src/service/order.ts +31 -15
- package/vona/src/suite/a-home/modules/home-user/package.json +1 -0
- package/vona/src/suite/a-home/modules/home-user/src/service/account.ts +15 -2
- package/vona/src/suite/a-home/modules/home-user/test/accountActivation.test.ts +34 -4
- package/vona/src/suite-vendor/a-cabloy/modules/a-markdown/package.json +2 -1
- package/vona/src/suite-vendor/a-cabloy/modules/a-markdown/src/.metadata/index.ts +26 -0
- package/vona/src/suite-vendor/a-cabloy/modules/a-markdown/src/bean/imageScene.markdown.ts +13 -0
- package/vona/src/suite-vendor/a-cabloy/package.json +2 -2
- package/vona/src/suite-vendor/a-pay/modules/a-pay/package.json +1 -1
- package/vona/src/suite-vendor/a-pay/modules/a-pay/src/service/providerOperation.ts +23 -0
- package/vona/src/suite-vendor/a-pay/modules/a-pay/src/service/refundOperation.ts +7 -0
- package/vona/src/suite-vendor/a-pay/modules/pay-mock/package.json +1 -1
- package/vona/src/suite-vendor/a-pay/modules/pay-paypal/package.json +1 -1
- package/vona/src/suite-vendor/a-pay/modules/pay-stripe/package.json +1 -1
- package/vona/src/suite-vendor/a-pay/package.json +5 -5
- package/zova/packages-utils/zova-jsx/package.json +2 -2
- package/zova/packages-zova/zova/package.json +3 -3
- package/zova/packages-zova/zova-core/package.json +1 -1
- package/zova/packages-zova/zova-core/src/bean/resource/locale/type.ts +1 -0
- package/zova/pnpm-lock.yaml +63 -18
- package/zova/src/front/config/config/config.cabloyBasicWeb.ts +3 -1
- package/zova/src/front/config/config/config.cabloyCommerce.ts +4 -2
- package/zova/src/suite/a-commerce/modules/commerce-catalog/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/a-commerce/modules/commerce-catalog/src/api/openapi/types.ts +23 -170
- package/zova/src/suite/a-commerce/modules/commerce-member/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/a-commerce/modules/commerce-member/src/api/openapi/types.ts +23 -170
- package/zova/src/suite/a-commerce/modules/commerce-member/src/page/address/controller.tsx +64 -63
- package/zova/src/suite/a-commerce/modules/commerce-promotion/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/a-commerce/modules/commerce-promotion/src/api/openapi/types.ts +23 -170
- package/zova/src/suite/a-commerce/modules/commerce-siteadmin/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/a-commerce/modules/commerce-siteadmin/src/api/openapi/types.ts +23 -170
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/api/openapi/types.ts +29 -171
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/component/tableCellActionRefund/controller.tsx +413 -134
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/config/locale/en-us.ts +76 -0
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/config/locale/zh-cn.ts +67 -0
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/model/order.ts +1 -0
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/page/cart/controller.tsx +1 -1
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/page/checkout/controller.tsx +7 -7
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/page/order/controller.tsx +46 -9
- package/zova/src/suite/a-commerce/modules/commerce-trade/src/page/payment/controller.tsx +50 -30
- package/zova/src/suite/a-home/modules/home-api/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/a-home/modules/home-api/src/api/openapi/types.ts +23 -170
- package/zova/src/suite/a-training/modules/training-student/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/a-training/modules/training-student/src/api/openapi/types.ts +23 -170
- package/zova/src/suite/cabloy-basic/modules/basic-captcha/src/component/formFieldCaptcha/controller.tsx +6 -2
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/api/openapi/types.ts +23 -170
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/api/openapi/types.ts +23 -170
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/component/formFieldImage/controller.tsx +9 -15
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/package.json +10 -2
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/.metadata/index.ts +11 -2
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/.metadata/locales.ts +7 -0
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/component/formFieldMarkdown/controller.tsx +723 -5
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/component/formFieldMarkdown/render.tsx +461 -2
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/config/locale/en-us.ts +59 -0
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/config/locale/zh-cn.ts +59 -0
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/index.ts +1 -0
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/lib/codeBlockLanguages.ts +42 -0
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/src/lib/richTextContentStyle.ts +20 -0
- package/zova/src/suite/cabloy-basic/modules/basic-markdown/test/lib/codeBlockLanguages.test.ts +25 -0
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/package.json +1 -1
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/src/model/resource.ts +1 -0
- package/zova/src/suite-vendor/a-cabloy/package.json +2 -2
- package/zova/src/suite-vendor/a-pay/modules/a-pay/package.json +1 -1
- package/zova/src/suite-vendor/a-pay/modules/a-pay/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite-vendor/a-pay/modules/a-pay/src/api/openapi/types.ts +23 -170
- package/zova/src/suite-vendor/a-pay/modules/a-pay/src/component/paymentNextAction/controller.tsx +26 -12
- package/zova/src/suite-vendor/a-pay/modules/pay-mock/cli/openapi.config.ts +1 -1
- package/zova/src/suite-vendor/a-pay/modules/pay-mock/package.json +1 -1
- package/zova/src/suite-vendor/a-pay/modules/pay-mock/src/api/openapi/schemas.ts +0 -11
- package/zova/src/suite-vendor/a-pay/modules/pay-mock/src/api/openapi/types.ts +23 -170
- package/zova/src/suite-vendor/a-pay/modules/pay-mock/src/api/payMockMockPayment.ts +26 -0
- package/zova/src/suite-vendor/a-pay/modules/pay-mock/src/apiSchema/payMockMockPayment.ts +8 -1
- package/zova/src/suite-vendor/a-pay/modules/pay-mock/src/model/payMockPayment.ts +13 -1
- package/zova/src/suite-vendor/a-pay/package.json +3 -3
- package/zova/src/suite-vendor/a-zova/modules/a-form/package.json +1 -1
- package/zova/src/suite-vendor/a-zova/modules/a-form/src/component/formField/controller.tsx +2 -0
- package/zova/src/suite-vendor/a-zova/modules/a-form/src/types/formField.ts +7 -6
- package/zova/src/suite-vendor/a-zova/modules/a-ssrserver/package.json +1 -1
- package/zova/src/suite-vendor/a-zova/modules/a-ssrserver/src/service/ssrHandler.ts +1 -1
- package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/package.json +4 -4
- package/e2e/config/playwright.basic.config.ts +0 -3
- package/e2e/config/playwright.commerce.config.ts +0 -3
- package/e2e/config/playwright.shared.config.ts +0 -38
- package/e2e/scripts/testE2eClean.ts +0 -56
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/package.json +0 -56
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/.metadata/index.ts +0 -404
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/.metadata/locales.ts +0 -18
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/.metadata/this.ts +0 -2
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/bean/bean.paypal.ts +0 -99
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/bean/event.paypalCancelOrder.ts +0 -15
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/bean/event.paypalCaptureOrder.ts +0 -22
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/bean/meta.version.ts +0 -24
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/config/config.ts +0 -14
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/config/errors.ts +0 -3
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/config/locale/en-us.ts +0 -3
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/config/locale/zh-cn.ts +0 -3
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/controller/paypal.ts +0 -39
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/dto/paypalOrderRecordOptions.tsx +0 -31
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/dto/paypalOrderRecordPayload.tsx +0 -18
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/entity/paypalRecord.tsx +0 -30
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/index.ts +0 -3
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/model/paypalRecord.ts +0 -10
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/service/paypal.ts +0 -83
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/types/index.ts +0 -1
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/src/types/paypal.ts +0 -18
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/tsconfig.build.json +0 -11
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/tsconfig.json +0 -7
- package/vona/src/suite-vendor/a-paypal/package.json +0 -13
- package/vona/src/suite-vendor/a-paypal/tsconfig.base.json +0 -4
- package/vona/src/suite-vendor/a-paypal/tsconfig.json +0 -10
package/zova/pnpm-lock.yaml
CHANGED
|
@@ -77,7 +77,7 @@ importers:
|
|
|
77
77
|
version: 10.5.2(postcss@8.5.26)
|
|
78
78
|
axios:
|
|
79
79
|
specifier: ^1.18.1
|
|
80
|
-
version: 1.18.1
|
|
80
|
+
version: 1.18.1(supports-color@10.2.2)
|
|
81
81
|
compression:
|
|
82
82
|
specifier: ^1.8.1
|
|
83
83
|
version: 1.8.1
|
|
@@ -363,7 +363,7 @@ importers:
|
|
|
363
363
|
devDependencies:
|
|
364
364
|
'@cabloy/cli':
|
|
365
365
|
specifier: ^3.1.29
|
|
366
|
-
version: 3.1.29(vue@3.5.38(typescript@5.9.3))
|
|
366
|
+
version: 3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
367
367
|
'@cabloy/lint':
|
|
368
368
|
specifier: ^5.1.31
|
|
369
369
|
version: 5.1.31(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(oxfmt@0.62.0)(oxlint@1.77.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)))
|
|
@@ -438,7 +438,7 @@ importers:
|
|
|
438
438
|
dependencies:
|
|
439
439
|
'@cabloy/cli':
|
|
440
440
|
specifier: ^3.1.29
|
|
441
|
-
version: 3.1.29(vue@3.5.38(typescript@5.9.3))
|
|
441
|
+
version: 3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
442
442
|
'@cabloy/process-helper':
|
|
443
443
|
specifier: ^3.1.8
|
|
444
444
|
version: 3.1.8
|
|
@@ -472,7 +472,7 @@ importers:
|
|
|
472
472
|
version: 7.29.7(@babel/core@7.29.7)
|
|
473
473
|
'@cabloy/cli':
|
|
474
474
|
specifier: ^3.1.29
|
|
475
|
-
version: 3.1.29(vue@3.5.38(typescript@5.9.3))
|
|
475
|
+
version: 3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
476
476
|
'@cabloy/extend':
|
|
477
477
|
specifier: ^3.2.8
|
|
478
478
|
version: 3.2.8
|
|
@@ -870,7 +870,7 @@ importers:
|
|
|
870
870
|
specifier: ^5.1.86
|
|
871
871
|
version: link:../zova-core
|
|
872
872
|
zova-suite-a-zova:
|
|
873
|
-
specifier: ^5.1.
|
|
873
|
+
specifier: ^5.1.150
|
|
874
874
|
version: link:../../src/suite-vendor/a-zova
|
|
875
875
|
devDependencies:
|
|
876
876
|
clean-package:
|
|
@@ -1001,10 +1001,10 @@ importers:
|
|
|
1001
1001
|
src/suite-vendor/a-pay:
|
|
1002
1002
|
dependencies:
|
|
1003
1003
|
zova-module-a-pay:
|
|
1004
|
-
specifier: ^5.0.
|
|
1004
|
+
specifier: ^5.0.6
|
|
1005
1005
|
version: link:modules/a-pay
|
|
1006
1006
|
zova-module-pay-mock:
|
|
1007
|
-
specifier: ^5.0.
|
|
1007
|
+
specifier: ^5.0.4
|
|
1008
1008
|
version: link:modules/pay-mock
|
|
1009
1009
|
zova-module-pay-paypal:
|
|
1010
1010
|
specifier: ^5.0.2
|
|
@@ -1112,7 +1112,7 @@ importers:
|
|
|
1112
1112
|
specifier: ^5.1.23
|
|
1113
1113
|
version: link:modules/a-ssrhmr
|
|
1114
1114
|
zova-module-a-ssrserver:
|
|
1115
|
-
specifier: ^5.1.
|
|
1115
|
+
specifier: ^5.1.26
|
|
1116
1116
|
version: link:modules/a-ssrserver
|
|
1117
1117
|
zova-module-a-style:
|
|
1118
1118
|
specifier: ^5.1.35
|
|
@@ -1198,7 +1198,7 @@ importers:
|
|
|
1198
1198
|
dependencies:
|
|
1199
1199
|
axios:
|
|
1200
1200
|
specifier: ^1.18.1
|
|
1201
|
-
version: 1.18.1
|
|
1201
|
+
version: 1.18.1(supports-color@10.2.2)
|
|
1202
1202
|
devDependencies:
|
|
1203
1203
|
clean-package:
|
|
1204
1204
|
specifier: ^2.2.0
|
|
@@ -1471,7 +1471,7 @@ importers:
|
|
|
1471
1471
|
devDependencies:
|
|
1472
1472
|
'@cabloy/cli':
|
|
1473
1473
|
specifier: ^3.1.29
|
|
1474
|
-
version: 3.1.29(vue@3.5.38(typescript@5.9.3))
|
|
1474
|
+
version: 3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
1475
1475
|
'@types/luxon':
|
|
1476
1476
|
specifier: ^3.7.1
|
|
1477
1477
|
version: 3.7.2
|
|
@@ -1999,6 +1999,9 @@ importers:
|
|
|
1999
1999
|
'@tiptap/core':
|
|
2000
2000
|
specifier: ^3.30.0
|
|
2001
2001
|
version: 3.30.0(@tiptap/pm@3.30.0)
|
|
2002
|
+
'@tiptap/extension-code-block-lowlight':
|
|
2003
|
+
specifier: 3.30.0
|
|
2004
|
+
version: 3.30.0(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))(@tiptap/extension-code-block@3.30.0(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))(@tiptap/pm@3.30.0))(@tiptap/pm@3.30.0)(highlight.js@11.11.2)(lowlight@3.3.0)
|
|
2002
2005
|
'@tiptap/extension-highlight':
|
|
2003
2006
|
specifier: ^3.30.0
|
|
2004
2007
|
version: 3.30.0(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))
|
|
@@ -2020,6 +2023,9 @@ importers:
|
|
|
2020
2023
|
'@tiptap/vue-3':
|
|
2021
2024
|
specifier: ^3.30.0
|
|
2022
2025
|
version: 3.30.0(@floating-ui/dom@1.8.0)(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))(@tiptap/pm@3.30.0)(vue@3.5.38(typescript@5.9.3))
|
|
2026
|
+
lowlight:
|
|
2027
|
+
specifier: ^3.3.0
|
|
2028
|
+
version: 3.3.0
|
|
2023
2029
|
devDependencies:
|
|
2024
2030
|
clean-package:
|
|
2025
2031
|
specifier: ^2.2.0
|
|
@@ -4368,6 +4374,15 @@ packages:
|
|
|
4368
4374
|
peerDependencies:
|
|
4369
4375
|
'@tiptap/extension-list': 3.30.0
|
|
4370
4376
|
|
|
4377
|
+
'@tiptap/extension-code-block-lowlight@3.30.0':
|
|
4378
|
+
resolution: {integrity: sha512-SDWMmqBe38o1ORmpx2rEzuxjbmUr50/XqMtwzaE/k6jHQ8tovIcTpAEbXEBj0hSDFdeZaFZnuOGVX85Y6SHQyQ==}
|
|
4379
|
+
peerDependencies:
|
|
4380
|
+
'@tiptap/core': 3.30.0
|
|
4381
|
+
'@tiptap/extension-code-block': 3.30.0
|
|
4382
|
+
'@tiptap/pm': 3.30.0
|
|
4383
|
+
highlight.js: ^11
|
|
4384
|
+
lowlight: ^2 || ^3
|
|
4385
|
+
|
|
4371
4386
|
'@tiptap/extension-code-block@3.30.0':
|
|
4372
4387
|
resolution: {integrity: sha512-m0KcCiUijaHNqTQCw9ydKRAzOrWxL0MogQu2WnTrbSrtCBwSiRvbG3ocqv5L3OfkoqnezeZCSg9JRwN+QBLP4Q==}
|
|
4373
4388
|
peerDependencies:
|
|
@@ -4568,6 +4583,9 @@ packages:
|
|
|
4568
4583
|
'@types/har-format@1.2.16':
|
|
4569
4584
|
resolution: {integrity: sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==}
|
|
4570
4585
|
|
|
4586
|
+
'@types/hast@3.0.5':
|
|
4587
|
+
resolution: {integrity: sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==}
|
|
4588
|
+
|
|
4571
4589
|
'@types/http-errors@2.0.5':
|
|
4572
4590
|
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
|
|
4573
4591
|
|
|
@@ -6106,6 +6124,10 @@ packages:
|
|
|
6106
6124
|
header-case@2.0.4:
|
|
6107
6125
|
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
|
|
6108
6126
|
|
|
6127
|
+
highlight.js@11.11.2:
|
|
6128
|
+
resolution: {integrity: sha512-oaXMACAU0kzOMXBjWpNcX+vlwSBCIAiZ9BHa7gA15NOTtT2L/l8OSZDuqS2XppOhZBPJ7hm4o8ep2kyuip2uEQ==}
|
|
6129
|
+
engines: {node: '>=12.0.0'}
|
|
6130
|
+
|
|
6109
6131
|
hono@4.12.27:
|
|
6110
6132
|
resolution: {integrity: sha512-1yrb/+w6HWQJrUCLkJ2IF5jNIPvvFkblV5RNOYl6bV+OA6p9GLcMpHFFGTosSvHvcAUibuUukRqhlYI4z32C7Q==}
|
|
6111
6133
|
engines: {node: '>=16.9.0'}
|
|
@@ -6639,6 +6661,9 @@ packages:
|
|
|
6639
6661
|
lower-case@2.0.2:
|
|
6640
6662
|
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
|
|
6641
6663
|
|
|
6664
|
+
lowlight@3.3.0:
|
|
6665
|
+
resolution: {integrity: sha512-0JNhgFoPvP6U6lE/UdVsSq99tn6DhjjpAj5MxG49ewd2mOBVtwWYIT8ClyABhq198aXXODMU6Ox8DrGy/CpTZQ==}
|
|
6666
|
+
|
|
6642
6667
|
lru-cache@10.4.3:
|
|
6643
6668
|
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
|
|
6644
6669
|
|
|
@@ -8773,7 +8798,7 @@ snapshots:
|
|
|
8773
8798
|
|
|
8774
8799
|
'@bufbuild/protobuf@2.12.1': {}
|
|
8775
8800
|
|
|
8776
|
-
'@cabloy/cli@3.1.29(vue@3.5.38(typescript@5.9.3))':
|
|
8801
|
+
'@cabloy/cli@3.1.29(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))':
|
|
8777
8802
|
dependencies:
|
|
8778
8803
|
'@babel/parser': 7.29.7
|
|
8779
8804
|
'@cabloy/module-glob': 5.3.18
|
|
@@ -8782,7 +8807,7 @@ snapshots:
|
|
|
8782
8807
|
'@cabloy/utils': 2.1.27
|
|
8783
8808
|
'@cabloy/word-utils': link:packages-utils/word-utils
|
|
8784
8809
|
'@npmcli/config': 10.11.0
|
|
8785
|
-
'@zhennann/common-bin': 4.0.1
|
|
8810
|
+
'@zhennann/common-bin': 4.0.1(supports-color@10.2.2)
|
|
8786
8811
|
'@zhennann/ejs': 3.0.1
|
|
8787
8812
|
boxen: 4.2.0
|
|
8788
8813
|
chalk: 3.0.0
|
|
@@ -10473,6 +10498,14 @@ snapshots:
|
|
|
10473
10498
|
dependencies:
|
|
10474
10499
|
'@tiptap/extension-list': 3.30.0(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))(@tiptap/pm@3.30.0)
|
|
10475
10500
|
|
|
10501
|
+
'@tiptap/extension-code-block-lowlight@3.30.0(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))(@tiptap/extension-code-block@3.30.0(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))(@tiptap/pm@3.30.0))(@tiptap/pm@3.30.0)(highlight.js@11.11.2)(lowlight@3.3.0)':
|
|
10502
|
+
dependencies:
|
|
10503
|
+
'@tiptap/core': 3.30.0(@tiptap/pm@3.30.0)
|
|
10504
|
+
'@tiptap/extension-code-block': 3.30.0(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))(@tiptap/pm@3.30.0)
|
|
10505
|
+
'@tiptap/pm': 3.30.0
|
|
10506
|
+
highlight.js: 11.11.2
|
|
10507
|
+
lowlight: 3.3.0
|
|
10508
|
+
|
|
10476
10509
|
'@tiptap/extension-code-block@3.30.0(@tiptap/core@3.30.0(@tiptap/pm@3.30.0))(@tiptap/pm@3.30.0)':
|
|
10477
10510
|
dependencies:
|
|
10478
10511
|
'@tiptap/core': 3.30.0(@tiptap/pm@3.30.0)
|
|
@@ -10715,6 +10748,10 @@ snapshots:
|
|
|
10715
10748
|
|
|
10716
10749
|
'@types/har-format@1.2.16': {}
|
|
10717
10750
|
|
|
10751
|
+
'@types/hast@3.0.5':
|
|
10752
|
+
dependencies:
|
|
10753
|
+
'@types/unist': 3.0.3
|
|
10754
|
+
|
|
10718
10755
|
'@types/http-errors@2.0.5': {}
|
|
10719
10756
|
|
|
10720
10757
|
'@types/js-cookie@3.0.6': {}
|
|
@@ -11004,7 +11041,7 @@ snapshots:
|
|
|
11004
11041
|
|
|
11005
11042
|
'@vue/shared@3.5.13': {}
|
|
11006
11043
|
|
|
11007
|
-
'@zhennann/common-bin@4.0.1':
|
|
11044
|
+
'@zhennann/common-bin@4.0.1(supports-color@10.2.2)':
|
|
11008
11045
|
dependencies:
|
|
11009
11046
|
chalk: 4.1.2
|
|
11010
11047
|
change-case: 4.1.2
|
|
@@ -11038,7 +11075,7 @@ snapshots:
|
|
|
11038
11075
|
|
|
11039
11076
|
acorn@8.17.0: {}
|
|
11040
11077
|
|
|
11041
|
-
agent-base@6.0.2:
|
|
11078
|
+
agent-base@6.0.2(supports-color@10.2.2):
|
|
11042
11079
|
dependencies:
|
|
11043
11080
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11044
11081
|
transitivePeerDependencies:
|
|
@@ -11150,11 +11187,11 @@ snapshots:
|
|
|
11150
11187
|
dependencies:
|
|
11151
11188
|
possible-typed-array-names: 1.1.0
|
|
11152
11189
|
|
|
11153
|
-
axios@1.18.1:
|
|
11190
|
+
axios@1.18.1(supports-color@10.2.2):
|
|
11154
11191
|
dependencies:
|
|
11155
11192
|
follow-redirects: 1.16.0
|
|
11156
11193
|
form-data: 4.0.6
|
|
11157
|
-
https-proxy-agent: 5.0.1
|
|
11194
|
+
https-proxy-agent: 5.0.1(supports-color@10.2.2)
|
|
11158
11195
|
proxy-from-env: 2.1.0
|
|
11159
11196
|
transitivePeerDependencies:
|
|
11160
11197
|
- debug
|
|
@@ -12529,6 +12566,8 @@ snapshots:
|
|
|
12529
12566
|
capital-case: 1.0.4
|
|
12530
12567
|
tslib: 2.8.1
|
|
12531
12568
|
|
|
12569
|
+
highlight.js@11.11.2: {}
|
|
12570
|
+
|
|
12532
12571
|
hono@4.12.27: {}
|
|
12533
12572
|
|
|
12534
12573
|
hookable@6.1.1: {}
|
|
@@ -12565,9 +12604,9 @@ snapshots:
|
|
|
12565
12604
|
statuses: 2.0.2
|
|
12566
12605
|
toidentifier: 1.0.1
|
|
12567
12606
|
|
|
12568
|
-
https-proxy-agent@5.0.1:
|
|
12607
|
+
https-proxy-agent@5.0.1(supports-color@10.2.2):
|
|
12569
12608
|
dependencies:
|
|
12570
|
-
agent-base: 6.0.2
|
|
12609
|
+
agent-base: 6.0.2(supports-color@10.2.2)
|
|
12571
12610
|
debug: 4.4.3(supports-color@10.2.2)
|
|
12572
12611
|
transitivePeerDependencies:
|
|
12573
12612
|
- supports-color
|
|
@@ -12975,6 +13014,12 @@ snapshots:
|
|
|
12975
13014
|
dependencies:
|
|
12976
13015
|
tslib: 2.8.1
|
|
12977
13016
|
|
|
13017
|
+
lowlight@3.3.0:
|
|
13018
|
+
dependencies:
|
|
13019
|
+
'@types/hast': 3.0.5
|
|
13020
|
+
devlop: 1.1.0
|
|
13021
|
+
highlight.js: 11.11.2
|
|
13022
|
+
|
|
12978
13023
|
lru-cache@10.4.3: {}
|
|
12979
13024
|
|
|
12980
13025
|
lru-cache@11.5.1: {}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { ZovaConfigOptional, ZovaSys } from 'zova';
|
|
2
2
|
|
|
3
|
+
import { LocalePattern } from 'zova';
|
|
4
|
+
|
|
3
5
|
export default function (_sys: ZovaSys) {
|
|
4
6
|
const config: ZovaConfigOptional = {};
|
|
5
7
|
|
|
@@ -9,7 +11,7 @@ export default function (_sys: ZovaSys) {
|
|
|
9
11
|
'/home/indexadmin/dashboard': undefined,
|
|
10
12
|
},
|
|
11
13
|
name: {
|
|
12
|
-
'home-indexweb:home': { alias:
|
|
14
|
+
'home-indexweb:home': { alias: `/:locale(${LocalePattern})?` },
|
|
13
15
|
},
|
|
14
16
|
};
|
|
15
17
|
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { ZovaConfigOptional, ZovaSys } from 'zova';
|
|
2
2
|
|
|
3
|
+
import { LocalePattern } from 'zova';
|
|
4
|
+
|
|
3
5
|
export default function (_sys: ZovaSys) {
|
|
4
6
|
const config: ZovaConfigOptional = {};
|
|
5
7
|
|
|
@@ -8,8 +10,8 @@ export default function (_sys: ZovaSys) {
|
|
|
8
10
|
'/home/indexadmin/dashboard': undefined,
|
|
9
11
|
},
|
|
10
12
|
name: {
|
|
11
|
-
'commerce-catalog:catalogue': { alias:
|
|
12
|
-
'commerce-catalog:product': { alias:
|
|
13
|
+
'commerce-catalog:catalogue': { alias: `/:locale(${LocalePattern})?` },
|
|
14
|
+
'commerce-catalog:product': { alias: `/:locale(${LocalePattern})?/product/:id` },
|
|
13
15
|
'home-indexweb:home': undefined,
|
|
14
16
|
},
|
|
15
17
|
};
|
|
@@ -535,17 +535,6 @@ export type ApiSchemaPayMockDtoMockRefundComplete =
|
|
|
535
535
|
components['schemas']['pay-mock.dto.mockRefundComplete'];
|
|
536
536
|
export type ApiSchemaPayMockDtoMockRefundCompletePartial =
|
|
537
537
|
Partial<ApiSchemaPayMockDtoMockRefundComplete>;
|
|
538
|
-
export type ApiSchemaAPaypalEntityPaypalRecord =
|
|
539
|
-
components['schemas']['a-paypal.entity.paypalRecord'];
|
|
540
|
-
export type ApiSchemaAPaypalEntityPaypalRecordPartial = Partial<ApiSchemaAPaypalEntityPaypalRecord>;
|
|
541
|
-
export type ApiSchemaAPaypalDtoPaypalOrderRecordPayload =
|
|
542
|
-
components['schemas']['a-paypal.dto.paypalOrderRecordPayload'];
|
|
543
|
-
export type ApiSchemaAPaypalDtoPaypalOrderRecordPayloadPartial =
|
|
544
|
-
Partial<ApiSchemaAPaypalDtoPaypalOrderRecordPayload>;
|
|
545
|
-
export type ApiSchemaAPaypalDtoPaypalOrderRecordOptions =
|
|
546
|
-
components['schemas']['a-paypal.dto.paypalOrderRecordOptions'];
|
|
547
|
-
export type ApiSchemaAPaypalDtoPaypalOrderRecordOptionsPartial =
|
|
548
|
-
Partial<ApiSchemaAPaypalDtoPaypalOrderRecordOptions>;
|
|
549
538
|
export type ApiSchemaTestCaptchaDtoSignin = components['schemas']['test-captcha.dto.signin'];
|
|
550
539
|
export type ApiSchemaTestCaptchaDtoSigninPartial = Partial<ApiSchemaTestCaptchaDtoSignin>;
|
|
551
540
|
export type ApiSchemaTestRestDtoProductCreate =
|
|
@@ -1504,54 +1504,6 @@ export interface paths {
|
|
|
1504
1504
|
patch?: never;
|
|
1505
1505
|
trace?: never;
|
|
1506
1506
|
};
|
|
1507
|
-
'/api/paypal/getRecord/{recordId}': {
|
|
1508
|
-
parameters: {
|
|
1509
|
-
query?: never;
|
|
1510
|
-
header?: never;
|
|
1511
|
-
path?: never;
|
|
1512
|
-
cookie?: never;
|
|
1513
|
-
};
|
|
1514
|
-
get: operations['Paypal_getRecord'];
|
|
1515
|
-
put?: never;
|
|
1516
|
-
post?: never;
|
|
1517
|
-
delete?: never;
|
|
1518
|
-
options?: never;
|
|
1519
|
-
head?: never;
|
|
1520
|
-
patch?: never;
|
|
1521
|
-
trace?: never;
|
|
1522
|
-
};
|
|
1523
|
-
'/api/paypal/captureOrder/{recordId}': {
|
|
1524
|
-
parameters: {
|
|
1525
|
-
query?: never;
|
|
1526
|
-
header?: never;
|
|
1527
|
-
path?: never;
|
|
1528
|
-
cookie?: never;
|
|
1529
|
-
};
|
|
1530
|
-
get?: never;
|
|
1531
|
-
put?: never;
|
|
1532
|
-
post: operations['Paypal_captureOrder'];
|
|
1533
|
-
delete?: never;
|
|
1534
|
-
options?: never;
|
|
1535
|
-
head?: never;
|
|
1536
|
-
patch?: never;
|
|
1537
|
-
trace?: never;
|
|
1538
|
-
};
|
|
1539
|
-
'/api/paypal/cancelOrder/{recordId}': {
|
|
1540
|
-
parameters: {
|
|
1541
|
-
query?: never;
|
|
1542
|
-
header?: never;
|
|
1543
|
-
path?: never;
|
|
1544
|
-
cookie?: never;
|
|
1545
|
-
};
|
|
1546
|
-
get?: never;
|
|
1547
|
-
put?: never;
|
|
1548
|
-
post: operations['Paypal_cancelOrder'];
|
|
1549
|
-
delete?: never;
|
|
1550
|
-
options?: never;
|
|
1551
|
-
head?: never;
|
|
1552
|
-
patch?: never;
|
|
1553
|
-
trace?: never;
|
|
1554
|
-
};
|
|
1555
1507
|
'/api/test/auth/passport/isAuthenticated': {
|
|
1556
1508
|
parameters: {
|
|
1557
1509
|
query?: never;
|
|
@@ -3954,7 +3906,29 @@ export interface components {
|
|
|
3954
3906
|
'a-permission.dto.permissions': {
|
|
3955
3907
|
roleIds?: (number | string)[] | undefined;
|
|
3956
3908
|
roleNames?: string[] | undefined;
|
|
3957
|
-
actions?:
|
|
3909
|
+
actions?:
|
|
3910
|
+
| {
|
|
3911
|
+
[key: string]:
|
|
3912
|
+
| boolean
|
|
3913
|
+
| {
|
|
3914
|
+
key: string;
|
|
3915
|
+
allowed: boolean;
|
|
3916
|
+
matcher:
|
|
3917
|
+
| {
|
|
3918
|
+
/** @enum {string} */
|
|
3919
|
+
mode: 'all';
|
|
3920
|
+
}
|
|
3921
|
+
| {
|
|
3922
|
+
/** @enum {string} */
|
|
3923
|
+
mode: 'any';
|
|
3924
|
+
rules: {
|
|
3925
|
+
field: string;
|
|
3926
|
+
values: string[];
|
|
3927
|
+
}[];
|
|
3928
|
+
};
|
|
3929
|
+
};
|
|
3930
|
+
}
|
|
3931
|
+
| undefined;
|
|
3958
3932
|
};
|
|
3959
3933
|
'home-base.dto.siteCatalogSelectRes': {
|
|
3960
3934
|
list: components['schemas']['home-base.dto.siteCatalogSelectResItem'][];
|
|
@@ -4771,49 +4745,6 @@ export interface components {
|
|
|
4771
4745
|
/** @enum {string} */
|
|
4772
4746
|
outcome: 'succeeded' | 'failed' | 'cancelled';
|
|
4773
4747
|
};
|
|
4774
|
-
'a-paypal.entity.paypalRecord': {
|
|
4775
|
-
/**
|
|
4776
|
-
* Format: date-time
|
|
4777
|
-
* @description Created At
|
|
4778
|
-
*/
|
|
4779
|
-
createdAt: Date;
|
|
4780
|
-
/**
|
|
4781
|
-
* Format: date-time
|
|
4782
|
-
* @description Updated At
|
|
4783
|
-
*/
|
|
4784
|
-
updatedAt: Date;
|
|
4785
|
-
/**
|
|
4786
|
-
* @description Deleted
|
|
4787
|
-
* @default false
|
|
4788
|
-
*/
|
|
4789
|
-
deleted?: boolean;
|
|
4790
|
-
/**
|
|
4791
|
-
* @description Instance ID
|
|
4792
|
-
* @default 0
|
|
4793
|
-
*/
|
|
4794
|
-
iid?: number;
|
|
4795
|
-
/** @description ID */
|
|
4796
|
-
id: number | string;
|
|
4797
|
-
userId: number | string;
|
|
4798
|
-
/** @default 0 */
|
|
4799
|
-
status?: number;
|
|
4800
|
-
prepayId: string;
|
|
4801
|
-
payload: components['schemas']['a-paypal.dto.paypalOrderRecordPayload'];
|
|
4802
|
-
options: components['schemas']['a-paypal.dto.paypalOrderRecordOptions'];
|
|
4803
|
-
};
|
|
4804
|
-
'a-paypal.dto.paypalOrderRecordPayload': {
|
|
4805
|
-
remark: string;
|
|
4806
|
-
total: string;
|
|
4807
|
-
currencyCode: string;
|
|
4808
|
-
};
|
|
4809
|
-
'a-paypal.dto.paypalOrderRecordOptions': {
|
|
4810
|
-
brandName: string;
|
|
4811
|
-
returnUrl: string;
|
|
4812
|
-
cancelUrl: string;
|
|
4813
|
-
returnTo: string;
|
|
4814
|
-
scene: string;
|
|
4815
|
-
orderId: number | string;
|
|
4816
|
-
};
|
|
4817
4748
|
'test-captcha.dto.signin': {
|
|
4818
4749
|
username: string;
|
|
4819
4750
|
password: string;
|
|
@@ -8544,84 +8475,6 @@ export interface operations {
|
|
|
8544
8475
|
};
|
|
8545
8476
|
authToken: true;
|
|
8546
8477
|
};
|
|
8547
|
-
Paypal_getRecord: {
|
|
8548
|
-
parameters: {
|
|
8549
|
-
query?: never;
|
|
8550
|
-
header?: never;
|
|
8551
|
-
path: {
|
|
8552
|
-
recordId: number | string;
|
|
8553
|
-
};
|
|
8554
|
-
cookie?: never;
|
|
8555
|
-
};
|
|
8556
|
-
requestBody?: never;
|
|
8557
|
-
responses: {
|
|
8558
|
-
200: {
|
|
8559
|
-
headers: {
|
|
8560
|
-
[name: string]: unknown;
|
|
8561
|
-
};
|
|
8562
|
-
content: {
|
|
8563
|
-
'application/json': {
|
|
8564
|
-
code: string;
|
|
8565
|
-
message: string;
|
|
8566
|
-
data: components['schemas']['a-paypal.entity.paypalRecord'];
|
|
8567
|
-
};
|
|
8568
|
-
};
|
|
8569
|
-
};
|
|
8570
|
-
};
|
|
8571
|
-
authToken: true;
|
|
8572
|
-
};
|
|
8573
|
-
Paypal_captureOrder: {
|
|
8574
|
-
parameters: {
|
|
8575
|
-
query?: never;
|
|
8576
|
-
header?: never;
|
|
8577
|
-
path: {
|
|
8578
|
-
recordId: number | string;
|
|
8579
|
-
};
|
|
8580
|
-
cookie?: never;
|
|
8581
|
-
};
|
|
8582
|
-
requestBody?: never;
|
|
8583
|
-
responses: {
|
|
8584
|
-
200: {
|
|
8585
|
-
headers: {
|
|
8586
|
-
[name: string]: unknown;
|
|
8587
|
-
};
|
|
8588
|
-
content: {
|
|
8589
|
-
'application/json': {
|
|
8590
|
-
code: string;
|
|
8591
|
-
message: string;
|
|
8592
|
-
data?: unknown;
|
|
8593
|
-
};
|
|
8594
|
-
};
|
|
8595
|
-
};
|
|
8596
|
-
};
|
|
8597
|
-
authToken: true;
|
|
8598
|
-
};
|
|
8599
|
-
Paypal_cancelOrder: {
|
|
8600
|
-
parameters: {
|
|
8601
|
-
query?: never;
|
|
8602
|
-
header?: never;
|
|
8603
|
-
path: {
|
|
8604
|
-
recordId: number | string;
|
|
8605
|
-
};
|
|
8606
|
-
cookie?: never;
|
|
8607
|
-
};
|
|
8608
|
-
requestBody?: never;
|
|
8609
|
-
responses: {
|
|
8610
|
-
200: {
|
|
8611
|
-
headers: {
|
|
8612
|
-
[name: string]: unknown;
|
|
8613
|
-
};
|
|
8614
|
-
content: {
|
|
8615
|
-
'application/json': {
|
|
8616
|
-
code: string;
|
|
8617
|
-
message: string;
|
|
8618
|
-
data?: unknown;
|
|
8619
|
-
};
|
|
8620
|
-
};
|
|
8621
|
-
};
|
|
8622
|
-
};
|
|
8623
|
-
authToken: true;
|
|
8624
|
-
};
|
|
8625
8478
|
TestAuthPassport_isAuthenticated: {
|
|
8626
8479
|
parameters: {
|
|
8627
8480
|
query?: never;
|
|
@@ -535,17 +535,6 @@ export type ApiSchemaPayMockDtoMockRefundComplete =
|
|
|
535
535
|
components['schemas']['pay-mock.dto.mockRefundComplete'];
|
|
536
536
|
export type ApiSchemaPayMockDtoMockRefundCompletePartial =
|
|
537
537
|
Partial<ApiSchemaPayMockDtoMockRefundComplete>;
|
|
538
|
-
export type ApiSchemaAPaypalEntityPaypalRecord =
|
|
539
|
-
components['schemas']['a-paypal.entity.paypalRecord'];
|
|
540
|
-
export type ApiSchemaAPaypalEntityPaypalRecordPartial = Partial<ApiSchemaAPaypalEntityPaypalRecord>;
|
|
541
|
-
export type ApiSchemaAPaypalDtoPaypalOrderRecordPayload =
|
|
542
|
-
components['schemas']['a-paypal.dto.paypalOrderRecordPayload'];
|
|
543
|
-
export type ApiSchemaAPaypalDtoPaypalOrderRecordPayloadPartial =
|
|
544
|
-
Partial<ApiSchemaAPaypalDtoPaypalOrderRecordPayload>;
|
|
545
|
-
export type ApiSchemaAPaypalDtoPaypalOrderRecordOptions =
|
|
546
|
-
components['schemas']['a-paypal.dto.paypalOrderRecordOptions'];
|
|
547
|
-
export type ApiSchemaAPaypalDtoPaypalOrderRecordOptionsPartial =
|
|
548
|
-
Partial<ApiSchemaAPaypalDtoPaypalOrderRecordOptions>;
|
|
549
538
|
export type ApiSchemaTestCaptchaDtoSignin = components['schemas']['test-captcha.dto.signin'];
|
|
550
539
|
export type ApiSchemaTestCaptchaDtoSigninPartial = Partial<ApiSchemaTestCaptchaDtoSignin>;
|
|
551
540
|
export type ApiSchemaTestRestDtoProductCreate =
|