web-core-tcm 0.0.25 → 0.0.27
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/dist/node_modules/@alova/shared/dist/alova-shared.esm.js +134 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/boot.js +70 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/file.js +14 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/message.js +6 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/restore-json-names.js +10 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/create.js +136 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js +7 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js +164 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/is-message.js +6 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js +75 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js +8 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js +35 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js +42 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js +17 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect-check.js +156 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js +349 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js +39 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js +72 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/registry.js +551 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/to-binary.js +159 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js +58 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js +350 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js +25 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/text-format.js +145 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/varint.js +110 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js +107 -0
- package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/wrappers.js +24 -0
- package/dist/node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js +556 -0
- package/dist/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js +36 -0
- package/dist/node_modules/@vue/shared/dist/shared.esm-bundler.js +26 -0
- package/dist/node_modules/alova/dist/adapter/fetch.esm.js +55 -0
- package/dist/node_modules/alova/dist/alova.esm.js +414 -0
- package/dist/node_modules/alova/dist/clienthook/index.esm.js +89 -0
- package/dist/node_modules/builder-pattern/dist/index.js +22 -0
- package/dist/node_modules/jwt-decode/build/esm/index.js +52 -0
- package/dist/node_modules/pinyin/lib/esm/pinyin.js +242260 -0
- package/dist/node_modules/punycode/punycode.es6.js +139 -0
- package/dist/node_modules/quasar/src/composables/use-quasar/use-quasar.js +8 -0
- package/dist/node_modules/quasar/src/utils/private.symbols/symbols.js +4 -0
- package/dist/src/api/algorithm/comprehensiveAlgorithm.d.ts +4 -0
- package/dist/src/api/algorithm/comprehensiveAlgorithm.js +16 -0
- package/dist/src/api/algorithm/index.d.ts +10 -0
- package/dist/src/api/algorithm/index.js +62 -0
- package/dist/src/api/algorithm/inquiriesAlgorithm.d.ts +13 -0
- package/dist/src/api/algorithm/inquiriesAlgorithm.js +9 -0
- package/dist/src/api/algorithm/inspectionsAlgorithm.d.ts +2 -0
- package/dist/src/api/algorithm/inspectionsAlgorithm.js +10 -0
- package/dist/src/api/algorithm/lisemsAlgorithm.d.ts +2 -0
- package/dist/src/api/algorithm/lisemsAlgorithm.js +15 -0
- package/dist/src/api/algorithm/pulsationsAlgorithm.d.ts +4 -0
- package/dist/src/api/algorithm/pulsationsAlgorithm.js +8 -0
- package/dist/src/api/authorization/alova/apiDefinitions.d.ts +21 -0
- package/dist/src/api/authorization/alova/apiDefinitions.js +9 -0
- package/dist/src/api/authorization/alova/createApis.d.ts +10 -0
- package/dist/src/api/authorization/alova/createApis.js +51 -0
- package/dist/src/api/authorization/alova/implement/authorization.d.ts +4 -0
- package/dist/src/api/authorization/alova/implement/authorization.js +15 -0
- package/dist/src/api/authorization/alova/index.d.ts +5 -0
- package/dist/src/api/authorization/alova/index.js +18 -0
- package/dist/src/api/authorization/authorization.d.ts +8 -0
- package/dist/src/api/authorization/authorization.js +16 -0
- package/dist/src/api/authorization/index.js +9 -0
- package/dist/src/api/check/alova/apiDefinitions.d.ts +28 -0
- package/dist/src/api/check/alova/apiDefinitions.js +16 -0
- package/dist/src/api/check/alova/createApis.d.ts +10 -0
- package/dist/src/api/check/alova/createApis.js +51 -0
- package/dist/src/api/check/alova/implement/check.d.ts +27 -0
- package/dist/src/api/check/alova/implement/check.js +119 -0
- package/dist/src/api/check/alova/index.d.ts +5 -0
- package/dist/src/api/check/alova/index.js +21 -0
- package/dist/src/api/check/check.d.ts +54 -0
- package/dist/src/api/check/check.js +131 -0
- package/dist/src/api/check/index.js +11 -0
- package/dist/src/api/config/alova/index.d.ts +5 -0
- package/dist/src/api/config/alova/index.js +55 -0
- package/dist/src/api/config/index.d.ts +23 -0
- package/dist/src/api/config/index.js +106 -0
- package/dist/src/api/device/device.d.ts +5 -0
- package/dist/src/api/device/device.js +46 -0
- package/dist/src/api/doctor/alova/apiDefinitions.d.ts +26 -0
- package/dist/src/api/doctor/alova/apiDefinitions.js +14 -0
- package/dist/src/api/doctor/alova/createApis.d.ts +10 -0
- package/dist/src/api/doctor/alova/createApis.js +51 -0
- package/dist/src/api/doctor/alova/implement/doctor.d.ts +7 -0
- package/dist/src/api/doctor/alova/implement/doctor.js +42 -0
- package/dist/src/api/doctor/alova/index.d.ts +5 -0
- package/dist/src/api/doctor/alova/index.js +20 -0
- package/dist/src/api/doctor/doctor.d.ts +22 -0
- package/dist/src/api/doctor/doctor.js +29 -0
- package/dist/src/api/doctor/index.js +9 -0
- package/dist/src/api/metric/implement/metric.d.ts +24 -0
- package/dist/src/api/metric/implement/metric.js +80 -0
- package/dist/src/api/metric/index.js +6 -0
- package/dist/src/api/metric/metric.d.ts +28 -0
- package/dist/src/api/metric/metric.js +75 -0
- package/dist/src/api/oauth/alova/apiDefinitions.d.ts +24 -0
- package/dist/src/api/oauth/alova/apiDefinitions.js +12 -0
- package/dist/src/api/oauth/alova/createApis.d.ts +10 -0
- package/dist/src/api/oauth/alova/createApis.js +51 -0
- package/dist/src/api/oauth/alova/implement/oauth.d.ts +4 -0
- package/dist/src/api/oauth/alova/implement/oauth.js +15 -0
- package/dist/src/api/oauth/alova/index.d.ts +5 -0
- package/dist/src/api/oauth/alova/index.js +17 -0
- package/dist/src/api/oauth/index.js +9 -0
- package/dist/src/api/oauth/oauth.d.ts +7 -0
- package/dist/src/api/oauth/oauth.js +16 -0
- package/dist/src/api/outpatient/alova/apiDefinitions.d.ts +25 -0
- package/dist/src/api/outpatient/alova/apiDefinitions.js +13 -0
- package/dist/src/api/outpatient/alova/createApis.d.ts +10 -0
- package/dist/src/api/outpatient/alova/createApis.js +51 -0
- package/dist/src/api/outpatient/alova/implement/outpatient.d.ts +10 -0
- package/dist/src/api/outpatient/alova/implement/outpatient.js +71 -0
- package/dist/src/api/outpatient/alova/index.d.ts +5 -0
- package/dist/src/api/outpatient/alova/index.js +21 -0
- package/dist/src/api/outpatient/index.js +11 -0
- package/dist/src/api/outpatient/outpatient.d.ts +39 -0
- package/dist/src/api/outpatient/outpatient.js +45 -0
- package/dist/src/api/patient/alova/apiDefinitions.d.ts +39 -0
- package/dist/src/api/patient/alova/apiDefinitions.js +27 -0
- package/dist/src/api/patient/alova/createApis.d.ts +10 -0
- package/dist/src/api/patient/alova/createApis.js +51 -0
- package/dist/src/api/patient/alova/implement/meta.d.ts +113 -0
- package/dist/src/api/patient/alova/implement/meta.js +404 -0
- package/dist/src/api/patient/alova/implement/patient.d.ts +22 -0
- package/dist/src/api/patient/alova/implement/patient.js +72 -0
- package/dist/src/api/patient/alova/index.d.ts +5 -0
- package/dist/src/api/patient/alova/index.js +22 -0
- package/dist/src/api/patient/core.d.ts +50 -0
- package/dist/src/api/patient/core.js +109 -0
- package/dist/src/api/patient/index.js +46 -0
- package/dist/src/api/patient/meta.d.ts +238 -0
- package/dist/src/api/patient/meta.js +454 -0
- package/dist/src/api/patient/patient.d.ts +43 -0
- package/dist/src/api/patient/patient.js +42 -0
- package/dist/src/api/prescription/alova/apiDefinitions.d.ts +27 -0
- package/dist/src/api/prescription/alova/apiDefinitions.js +15 -0
- package/dist/src/api/prescription/alova/createApis.d.ts +10 -0
- package/dist/src/api/prescription/alova/createApis.js +51 -0
- package/dist/src/api/prescription/alova/implement/herbal.d.ts +15 -0
- package/dist/src/api/prescription/alova/implement/herbal.js +54 -0
- package/dist/src/api/prescription/alova/implement/prescription.d.ts +15 -0
- package/dist/src/api/prescription/alova/implement/prescription.js +49 -0
- package/dist/src/api/prescription/alova/index.d.ts +5 -0
- package/dist/src/api/prescription/alova/index.js +20 -0
- package/dist/src/api/prescription/herbal.d.ts +19 -0
- package/dist/src/api/prescription/herbal.js +34 -0
- package/dist/src/api/prescription/index.js +13 -0
- package/dist/src/api/prescription/prescription.d.ts +26 -0
- package/dist/src/api/prescription/prescription.js +49 -0
- package/dist/src/api/scientist/alova/apiDefinitions.d.ts +25 -0
- package/dist/src/api/scientist/alova/apiDefinitions.js +13 -0
- package/dist/src/api/scientist/alova/createApis.d.ts +10 -0
- package/dist/src/api/scientist/alova/createApis.js +51 -0
- package/dist/src/api/scientist/alova/implement/scientist.d.ts +6 -0
- package/dist/src/api/scientist/alova/implement/scientist.js +35 -0
- package/dist/src/api/scientist/alova/index.d.ts +6 -0
- package/dist/src/api/scientist/alova/index.js +21 -0
- package/dist/src/api/scientist/index.js +9 -0
- package/dist/src/api/scientist/scientist.d.ts +20 -0
- package/dist/src/api/scientist/scientist.js +37 -0
- package/dist/src/components/models.d.ts +7 -0
- package/dist/src/index.js +36 -0
- package/dist/src/pages/LoginPage.vue.d.ts +2 -0
- package/dist/src/proto/types/Images_pb.d.ts +34 -0
- package/dist/src/proto/types/Images_pb.js +10 -0
- package/dist/src/proto/types/WaveMap_pb.d.ts +48 -0
- package/dist/src/proto/types/WaveMap_pb.js +10 -0
- package/dist/src/router/index.d.ts +2 -0
- package/dist/src/router/routes.d.ts +3 -0
- package/dist/src/util/RichTextUtil.d.ts +1 -0
- package/dist/src/util/RichTextUtil.js +6 -0
- package/dist/src/util/datetime.d.ts +5 -0
- package/dist/src/util/export.d.ts +4 -0
- package/dist/src/util/helper.d.ts +65 -0
- package/dist/src/util/helper.js +46 -0
- package/dist/src/util/image.d.ts +2 -0
- package/dist/src/util/image.js +17 -0
- package/dist/src/util/number.d.ts +12 -0
- package/dist/src/util/s256.d.ts +2 -0
- package/dist/src/util/secret.d.ts +10 -0
- package/dist/src/util/string.d.ts +21 -0
- package/dist/src/util/string.js +10 -0
- package/package.json +5 -2
- package/.editorconfig +0 -7
- package/.github/workflows/test.yml +0 -29
- package/.prettierrc.json +0 -5
- package/.vscode/extensions.json +0 -15
- package/.vscode/settings.json +0 -9
- package/eslint.config.js +0 -83
- package/index.html +0 -24
- package/postcss.config.js +0 -29
- package/quasar.config.ts +0 -233
- package/src/App.vue +0 -7
- package/src/api/algorithm/comprehensiveAlgorithm.ts +0 -20
- package/src/api/algorithm/index.ts +0 -50
- package/src/api/algorithm/inquiriesAlgorithm.ts +0 -16
- package/src/api/algorithm/inspectionsAlgorithm.ts +0 -11
- package/src/api/algorithm/lisemsAlgorithm.ts +0 -16
- package/src/api/algorithm/pulsationsAlgorithm.ts +0 -8
- package/src/api/authorization/alova/apiDefinitions.ts +0 -23
- package/src/api/authorization/alova/createApis.ts +0 -114
- package/src/api/authorization/alova/globals.d.ts +0 -394
- package/src/api/authorization/alova/implement/authorization.ts +0 -14
- package/src/api/authorization/alova/index.ts +0 -22
- package/src/api/authorization/authorization.ts +0 -16
- package/src/api/check/alova/apiDefinitions.ts +0 -30
- package/src/api/check/alova/createApis.ts +0 -114
- package/src/api/check/alova/globals.d.ts +0 -1257
- package/src/api/check/alova/implement/check.ts +0 -165
- package/src/api/check/alova/index.ts +0 -22
- package/src/api/check/check.ts +0 -217
- package/src/api/config/alova/index.ts +0 -71
- package/src/api/config/index.ts +0 -132
- package/src/api/device/device.js +0 -58
- package/src/api/doctor/alova/apiDefinitions.ts +0 -28
- package/src/api/doctor/alova/createApis.ts +0 -114
- package/src/api/doctor/alova/globals.d.ts +0 -559
- package/src/api/doctor/alova/implement/doctor.ts +0 -51
- package/src/api/doctor/alova/index.ts +0 -23
- package/src/api/doctor/doctor.ts +0 -53
- package/src/api/metric/implement/metric.ts +0 -108
- package/src/api/metric/metric.ts +0 -114
- package/src/api/oauth/alova/apiDefinitions.ts +0 -26
- package/src/api/oauth/alova/createApis.ts +0 -114
- package/src/api/oauth/alova/globals.d.ts +0 -460
- package/src/api/oauth/alova/implement/oauth.ts +0 -24
- package/src/api/oauth/alova/index.ts +0 -21
- package/src/api/oauth/oauth.ts +0 -19
- package/src/api/outpatient/alova/apiDefinitions.ts +0 -27
- package/src/api/outpatient/alova/createApis.ts +0 -114
- package/src/api/outpatient/alova/globals.d.ts +0 -685
- package/src/api/outpatient/alova/implement/outpatient.ts +0 -91
- package/src/api/outpatient/alova/index.ts +0 -22
- package/src/api/outpatient/outpatient.ts +0 -67
- package/src/api/patient/alova/apiDefinitions.ts +0 -41
- package/src/api/patient/alova/createApis.ts +0 -114
- package/src/api/patient/alova/globals.d.ts +0 -1690
- package/src/api/patient/alova/implement/meta.ts +0 -517
- package/src/api/patient/alova/implement/patient.ts +0 -99
- package/src/api/patient/alova/index.ts +0 -22
- package/src/api/patient/core.ts +0 -133
- package/src/api/patient/meta.ts +0 -570
- package/src/api/patient/patient.ts +0 -98
- package/src/api/prescription/alova/apiDefinitions.ts +0 -29
- package/src/api/prescription/alova/createApis.ts +0 -114
- package/src/api/prescription/alova/globals.d.ts +0 -968
- package/src/api/prescription/alova/implement/herbal.ts +0 -68
- package/src/api/prescription/alova/implement/prescription.ts +0 -62
- package/src/api/prescription/alova/index.ts +0 -22
- package/src/api/prescription/herbal.ts +0 -51
- package/src/api/prescription/prescription.ts +0 -76
- package/src/api/scientist/alova/apiDefinitions.ts +0 -27
- package/src/api/scientist/alova/createApis.ts +0 -114
- package/src/api/scientist/alova/globals.d.ts +0 -447
- package/src/api/scientist/alova/implement/scientist.ts +0 -40
- package/src/api/scientist/alova/index.ts +0 -24
- package/src/api/scientist/scientist.ts +0 -49
- package/src/assets/quasar-logo-vertical.svg +0 -15
- package/src/boot/.gitkeep +0 -0
- package/src/components/ExampleComponent.vue +0 -37
- package/src/components/models.ts +0 -8
- package/src/css/app.scss +0 -1
- package/src/css/quasar.variables.scss +0 -25
- package/src/env.d.ts +0 -7
- package/src/layouts/UserLayout.vue +0 -108
- package/src/pages/LoginPage.vue +0 -29
- package/src/proto/Images.proto +0 -7
- package/src/proto/WaveMap.proto +0 -10
- package/src/proto/types/Images_pb.ts +0 -48
- package/src/proto/types/WaveMap_pb.ts +0 -59
- package/src/router/index.ts +0 -37
- package/src/router/routes.ts +0 -14
- package/src/util/RichTextUtil.ts +0 -5
- package/src/util/datetime.ts +0 -43
- package/src/util/export.ts +0 -46
- package/src/util/helper.ts +0 -159
- package/src/util/image.ts +0 -28
- package/src/util/number.ts +0 -146
- package/src/util/s256.js +0 -27
- package/src/util/secret.ts +0 -60
- package/src/util/string.ts +0 -121
- package/tsconfig.json +0 -7
- /package/{public → dist}/favicon.ico +0 -0
- /package/{public → dist}/icons/favicon-128x128.png +0 -0
- /package/{public → dist}/icons/favicon-16x16.png +0 -0
- /package/{public → dist}/icons/favicon-32x32.png +0 -0
- /package/{public → dist}/icons/favicon-96x96.png +0 -0
- /package/{src/api/authorization/alova/implement/index.ts → dist/src/api/authorization/alova/implement/index.d.ts} +0 -0
- /package/{src/api/authorization/index.ts → dist/src/api/authorization/index.d.ts} +0 -0
- /package/{src/api/check/alova/implement/index.ts → dist/src/api/check/alova/implement/index.d.ts} +0 -0
- /package/{src/api/check/index.ts → dist/src/api/check/index.d.ts} +0 -0
- /package/{src/api/doctor/alova/implement/index.ts → dist/src/api/doctor/alova/implement/index.d.ts} +0 -0
- /package/{src/api/doctor/index.ts → dist/src/api/doctor/index.d.ts} +0 -0
- /package/{src/api/index.ts → dist/src/api/index.d.ts} +0 -0
- /package/{src/api/metric/implement/index.ts → dist/src/api/metric/implement/index.d.ts} +0 -0
- /package/{src/api/metric/index.ts → dist/src/api/metric/index.d.ts} +0 -0
- /package/{src/api/oauth/alova/implement/index.ts → dist/src/api/oauth/alova/implement/index.d.ts} +0 -0
- /package/{src/api/oauth/index.ts → dist/src/api/oauth/index.d.ts} +0 -0
- /package/{src/api/outpatient/alova/implement/index.ts → dist/src/api/outpatient/alova/implement/index.d.ts} +0 -0
- /package/{src/api/outpatient/index.ts → dist/src/api/outpatient/index.d.ts} +0 -0
- /package/{src/api/patient/alova/implement/index.ts → dist/src/api/patient/alova/implement/index.d.ts} +0 -0
- /package/{src/api/patient/index.ts → dist/src/api/patient/index.d.ts} +0 -0
- /package/{src/api/prescription/alova/implement/index.ts → dist/src/api/prescription/alova/implement/index.d.ts} +0 -0
- /package/{src/api/prescription/index.ts → dist/src/api/prescription/index.d.ts} +0 -0
- /package/{src/api/scientist/alova/implement/index.ts → dist/src/api/scientist/alova/implement/index.d.ts} +0 -0
- /package/{src/api/scientist/index.ts → dist/src/api/scientist/index.d.ts} +0 -0
- /package/{src/index.ts → dist/src/index.d.ts} +0 -0
- /package/{src/proto/index.ts → dist/src/proto/index.d.ts} +0 -0
package/quasar.config.ts
DELETED
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
// Configuration for your app
|
|
2
|
-
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file
|
|
3
|
-
|
|
4
|
-
import { defineConfig } from '#q-app/wrappers';
|
|
5
|
-
import dts from 'vite-plugin-dts';
|
|
6
|
-
import { resolve } from 'path';
|
|
7
|
-
|
|
8
|
-
export default defineConfig((/* ctx */) => {
|
|
9
|
-
return {
|
|
10
|
-
// https://v2.quasar.dev/quasar-cli-vite/prefetch-feature
|
|
11
|
-
// preFetch: true,
|
|
12
|
-
|
|
13
|
-
// app boot file (/src/boot)
|
|
14
|
-
// --> boot files are part of "main.js"
|
|
15
|
-
// https://v2.quasar.dev/quasar-cli-vite/boot-files
|
|
16
|
-
boot: [],
|
|
17
|
-
|
|
18
|
-
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#css
|
|
19
|
-
css: ['app.scss'],
|
|
20
|
-
|
|
21
|
-
// https://github.com/quasarframework/quasar/tree/dev/extras
|
|
22
|
-
extras: [
|
|
23
|
-
// 'ionicons-v4',
|
|
24
|
-
// 'mdi-v7',
|
|
25
|
-
// 'fontawesome-v6',
|
|
26
|
-
// 'eva-icons',
|
|
27
|
-
// 'themify',
|
|
28
|
-
// 'line-awesome',
|
|
29
|
-
// 'roboto-font-latin-ext', // this or either 'roboto-font', NEVER both!
|
|
30
|
-
|
|
31
|
-
'roboto-font', // optional, you are not bound to it
|
|
32
|
-
'material-icons', // optional, you are not bound to it
|
|
33
|
-
],
|
|
34
|
-
|
|
35
|
-
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#build
|
|
36
|
-
build: {
|
|
37
|
-
target: {
|
|
38
|
-
browser: ['es2022', 'firefox115', 'chrome115', 'safari14'],
|
|
39
|
-
node: 'node20',
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
vueRouterMode: 'hash', // available values: 'hash', 'history'
|
|
43
|
-
// vueRouterBase,
|
|
44
|
-
// vueDevtools,
|
|
45
|
-
// vueOptionsAPI: false,
|
|
46
|
-
|
|
47
|
-
// rebuildCache: true, // rebuilds Vite/linter/etc cache on startup
|
|
48
|
-
|
|
49
|
-
// publicPath: '/',
|
|
50
|
-
// analyze: true,
|
|
51
|
-
// env: {},
|
|
52
|
-
// rawDefine: {}
|
|
53
|
-
// ignorePublicFolder: true,
|
|
54
|
-
// minify: false,
|
|
55
|
-
// polyfillModulePreload: true,
|
|
56
|
-
// distDir
|
|
57
|
-
// viteVuePluginOptions: {},
|
|
58
|
-
|
|
59
|
-
extendViteConf(config) {
|
|
60
|
-
config.build = {
|
|
61
|
-
outDir: 'dist',
|
|
62
|
-
lib: {
|
|
63
|
-
entry: 'src/index.ts',
|
|
64
|
-
formats: ['es'],
|
|
65
|
-
},
|
|
66
|
-
|
|
67
|
-
rollupOptions: {
|
|
68
|
-
external: [], // 可选:这里写不想被打包进来的依赖
|
|
69
|
-
output: {
|
|
70
|
-
preserveModules: true, // ✅ 保留文件结构
|
|
71
|
-
entryFileNames: '[name].js', // ✅ 输出文件名规则
|
|
72
|
-
dir: 'dist',
|
|
73
|
-
},
|
|
74
|
-
},
|
|
75
|
-
};
|
|
76
|
-
},
|
|
77
|
-
vitePlugins: [
|
|
78
|
-
[
|
|
79
|
-
'vite-plugin-checker',
|
|
80
|
-
{
|
|
81
|
-
vueTsc: true,
|
|
82
|
-
eslint: {
|
|
83
|
-
lintCommand: 'eslint -c ./eslint.config.js "./src*/**/*.{ts,js,mjs,cjs,vue}"',
|
|
84
|
-
useFlatConfig: true,
|
|
85
|
-
},
|
|
86
|
-
},
|
|
87
|
-
{ server: false },
|
|
88
|
-
],
|
|
89
|
-
dts({
|
|
90
|
-
entryRoot: 'src',
|
|
91
|
-
outDir: 'dist/src',
|
|
92
|
-
tsconfigPath: './tsconfig.json',
|
|
93
|
-
}),
|
|
94
|
-
],
|
|
95
|
-
},
|
|
96
|
-
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#devserver
|
|
97
|
-
devServer: {
|
|
98
|
-
// https: true,
|
|
99
|
-
open: true, // opens browser window automatically
|
|
100
|
-
},
|
|
101
|
-
|
|
102
|
-
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#framework
|
|
103
|
-
framework: {
|
|
104
|
-
config: {},
|
|
105
|
-
|
|
106
|
-
// iconSet: 'material-icons', // Quasar icon set
|
|
107
|
-
// lang: 'en-US', // Quasar language pack
|
|
108
|
-
|
|
109
|
-
// For special cases outside of where the auto-import strategy can have an impact
|
|
110
|
-
// (like functional components as one of the examples),
|
|
111
|
-
// you can manually specify Quasar components/directives to be available everywhere:
|
|
112
|
-
//
|
|
113
|
-
// components: [],
|
|
114
|
-
// directives: [],
|
|
115
|
-
|
|
116
|
-
// Quasar plugins
|
|
117
|
-
plugins: [],
|
|
118
|
-
},
|
|
119
|
-
|
|
120
|
-
// animations: 'all', // --- includes all animations
|
|
121
|
-
// https://v2.quasar.dev/options/animations
|
|
122
|
-
animations: [],
|
|
123
|
-
|
|
124
|
-
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#sourcefiles
|
|
125
|
-
// sourceFiles: {
|
|
126
|
-
// rootComponent: 'src/App.vue',
|
|
127
|
-
// router: 'src/router/index',
|
|
128
|
-
// store: 'src/store/index',
|
|
129
|
-
// pwaRegisterServiceWorker: 'src-pwa/register-service-worker',
|
|
130
|
-
// pwaServiceWorker: 'src-pwa/custom-service-worker',
|
|
131
|
-
// pwaManifestFile: 'src-pwa/manifest.json',
|
|
132
|
-
// electronMain: 'src-electron/electron-main',
|
|
133
|
-
// electronPreload: 'src-electron/electron-preload'
|
|
134
|
-
// bexManifestFile: 'src-bex/manifest.json
|
|
135
|
-
// },
|
|
136
|
-
|
|
137
|
-
// https://v2.quasar.dev/quasar-cli-vite/developing-ssr/configuring-ssr
|
|
138
|
-
ssr: {
|
|
139
|
-
prodPort: 3000, // The default port that the production server should use
|
|
140
|
-
// (gets superseded if process.env.PORT is specified at runtime)
|
|
141
|
-
|
|
142
|
-
middlewares: [
|
|
143
|
-
'render', // keep this as last one
|
|
144
|
-
],
|
|
145
|
-
|
|
146
|
-
// extendPackageJson (json) {},
|
|
147
|
-
// extendSSRWebserverConf (esbuildConf) {},
|
|
148
|
-
|
|
149
|
-
// manualStoreSerialization: true,
|
|
150
|
-
// manualStoreSsrContextInjection: true,
|
|
151
|
-
// manualStoreHydration: true,
|
|
152
|
-
// manualPostHydrationTrigger: true,
|
|
153
|
-
|
|
154
|
-
pwa: false,
|
|
155
|
-
// pwaOfflineHtmlFilename: 'offline.html', // do NOT use index.html as name!
|
|
156
|
-
|
|
157
|
-
// pwaExtendGenerateSWOptions (cfg) {},
|
|
158
|
-
// pwaExtendInjectManifestOptions (cfg) {}
|
|
159
|
-
},
|
|
160
|
-
|
|
161
|
-
// https://v2.quasar.dev/quasar-cli-vite/developing-pwa/configuring-pwa
|
|
162
|
-
pwa: {
|
|
163
|
-
workboxMode: 'GenerateSW', // 'GenerateSW' or 'InjectManifest'
|
|
164
|
-
// swFilename: 'sw.js',
|
|
165
|
-
// manifestFilename: 'manifest.json',
|
|
166
|
-
// extendManifestJson (json) {},
|
|
167
|
-
// useCredentialsForManifestTag: true,
|
|
168
|
-
// injectPwaMetaTags: false,
|
|
169
|
-
// extendPWACustomSWConf (esbuildConf) {},
|
|
170
|
-
// extendGenerateSWOptions (cfg) {},
|
|
171
|
-
// extendInjectManifestOptions (cfg) {}
|
|
172
|
-
},
|
|
173
|
-
|
|
174
|
-
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-cordova-apps/configuring-cordova
|
|
175
|
-
cordova: {
|
|
176
|
-
// noIosLegacyBuildFlag: true, // uncomment only if you know what you are doing
|
|
177
|
-
},
|
|
178
|
-
|
|
179
|
-
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-capacitor-apps/configuring-capacitor
|
|
180
|
-
capacitor: {
|
|
181
|
-
hideSplashscreen: true,
|
|
182
|
-
},
|
|
183
|
-
|
|
184
|
-
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-electron-apps/configuring-electron
|
|
185
|
-
electron: {
|
|
186
|
-
// extendElectronMainConf (esbuildConf) {},
|
|
187
|
-
// extendElectronPreloadConf (esbuildConf) {},
|
|
188
|
-
|
|
189
|
-
// extendPackageJson (json) {},
|
|
190
|
-
|
|
191
|
-
// Electron preload scripts (if any) from /src-electron, WITHOUT file extension
|
|
192
|
-
preloadScripts: ['electron-preload'],
|
|
193
|
-
|
|
194
|
-
// specify the debugging port to use for the Electron app when running in development mode
|
|
195
|
-
inspectPort: 5858,
|
|
196
|
-
|
|
197
|
-
bundler: 'packager', // 'packager' or 'builder'
|
|
198
|
-
|
|
199
|
-
packager: {
|
|
200
|
-
// https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options
|
|
201
|
-
// OS X / Mac App Store
|
|
202
|
-
// appBundleId: '',
|
|
203
|
-
// appCategoryType: '',
|
|
204
|
-
// osxSign: '',
|
|
205
|
-
// protocol: 'myapp://path',
|
|
206
|
-
// Windows only
|
|
207
|
-
// win32metadata: { ... }
|
|
208
|
-
},
|
|
209
|
-
|
|
210
|
-
builder: {
|
|
211
|
-
// https://www.electron.build/configuration/configuration
|
|
212
|
-
|
|
213
|
-
appId: 'web-core-tcm',
|
|
214
|
-
},
|
|
215
|
-
},
|
|
216
|
-
|
|
217
|
-
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-browser-extensions/configuring-bex
|
|
218
|
-
bex: {
|
|
219
|
-
// extendBexScriptsConf (esbuildConf) {},
|
|
220
|
-
// extendBexManifestJson (json) {},
|
|
221
|
-
|
|
222
|
-
/**
|
|
223
|
-
* The list of extra scripts (js/ts) not in your bex manifest that you want to
|
|
224
|
-
* compile and use in your browser extension. Maybe dynamic use them?
|
|
225
|
-
*
|
|
226
|
-
* Each entry in the list should be a relative filename to /src-bex/
|
|
227
|
-
*
|
|
228
|
-
* @example [ 'my-script.ts', 'sub-folder/my-other-script.js' ]
|
|
229
|
-
*/
|
|
230
|
-
extraScripts: [],
|
|
231
|
-
},
|
|
232
|
-
};
|
|
233
|
-
});
|
package/src/App.vue
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
// src/api/comprehensiveAlgorithm.ts
|
|
2
|
-
import { comprehensiveAlgorithmService } from 'src/api/algorithm';
|
|
3
|
-
|
|
4
|
-
export const comprehensiveQwenAlgorithm = (data: object) =>
|
|
5
|
-
comprehensiveAlgorithmService.Post<Response>('/千问大模型分析', data, {
|
|
6
|
-
timeout: 30000,
|
|
7
|
-
});
|
|
8
|
-
|
|
9
|
-
export const comprehensiveDeepSeekV3Algorithm = (data: object) =>
|
|
10
|
-
comprehensiveAlgorithmService.Post<Response>('/DeepSeekV3大模型分析', data, {
|
|
11
|
-
timeout: 30000,
|
|
12
|
-
});
|
|
13
|
-
export const comprehensiveDeepSeekR1Algorithm = (data: object) =>
|
|
14
|
-
comprehensiveAlgorithmService.Post<Response>('/DeepSeekR1大模型分析', data, {
|
|
15
|
-
timeout: 300000,
|
|
16
|
-
});
|
|
17
|
-
export const doctorSceneTextAnalysis = (data: object) =>
|
|
18
|
-
comprehensiveAlgorithmService.Post<Response>('/医生场景文本', data, {
|
|
19
|
-
timeout: 300000,
|
|
20
|
-
});
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { createAlova } from 'alova';
|
|
2
|
-
import adapterFetch from 'alova/fetch';
|
|
3
|
-
import { responded } from 'src/api/config/alova';
|
|
4
|
-
import { getServiceEndpoint, ServiceType } from 'src/api/config';
|
|
5
|
-
|
|
6
|
-
export const inspectionAlgorithmService = createAlova({
|
|
7
|
-
baseURL: getServiceEndpoint(ServiceType.InspectionsAlgorithm),
|
|
8
|
-
timeout: 30000,
|
|
9
|
-
cacheFor: null,
|
|
10
|
-
requestAdapter: adapterFetch(),
|
|
11
|
-
responded: responded,
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
export const inquiriesAlgorithmService = createAlova({
|
|
15
|
-
baseURL: getServiceEndpoint(ServiceType.InquiriesAlgorithm),
|
|
16
|
-
timeout: 30000,
|
|
17
|
-
cacheFor: null,
|
|
18
|
-
requestAdapter: adapterFetch(),
|
|
19
|
-
responded: responded,
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
export const lisemsAlgorithmService = createAlova({
|
|
23
|
-
baseURL: getServiceEndpoint(ServiceType.LisemsAlgorithm),
|
|
24
|
-
timeout: 30000,
|
|
25
|
-
cacheFor: null,
|
|
26
|
-
requestAdapter: adapterFetch(),
|
|
27
|
-
responded: responded,
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
export const pulsationsAlgorithmService = createAlova({
|
|
31
|
-
baseURL: getServiceEndpoint(ServiceType.PulsationsAlgorithm),
|
|
32
|
-
timeout: 30000,
|
|
33
|
-
cacheFor: null,
|
|
34
|
-
requestAdapter: adapterFetch(),
|
|
35
|
-
responded: responded,
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
export const comprehensiveAlgorithmService = createAlova({
|
|
39
|
-
baseURL: getServiceEndpoint(ServiceType.ComprehensiveAlgorithm),
|
|
40
|
-
timeout: 30000,
|
|
41
|
-
cacheFor: null,
|
|
42
|
-
requestAdapter: adapterFetch(),
|
|
43
|
-
responded: responded,
|
|
44
|
-
});
|
|
45
|
-
|
|
46
|
-
export * from './comprehensiveAlgorithm';
|
|
47
|
-
export * from './inquiriesAlgorithm';
|
|
48
|
-
export * from './inspectionsAlgorithm';
|
|
49
|
-
export * from './lisemsAlgorithm';
|
|
50
|
-
export * from './pulsationsAlgorithm';
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { inquiriesAlgorithmService } from 'src/api/algorithm';
|
|
2
|
-
|
|
3
|
-
export const complaintsRecognition = (symptomDescription: string) =>
|
|
4
|
-
inquiriesAlgorithmService.Post<string[]>('/主诉/识别', { symptomDescription });
|
|
5
|
-
|
|
6
|
-
export const complaintsDialog = (body: object) =>
|
|
7
|
-
inquiriesAlgorithmService.Post<{ reply: string; positive_symptom: string[] }>('/主诉/对话', body);
|
|
8
|
-
|
|
9
|
-
export const complaintsView = (params: string) =>
|
|
10
|
-
inquiriesAlgorithmService.Post<{ symptoms: string[] }>('/主诉/视图', { params });
|
|
11
|
-
|
|
12
|
-
export const complaintsSearch = (data: string) =>
|
|
13
|
-
inquiriesAlgorithmService.Post<string[]>('/主诉/搜索', { data });
|
|
14
|
-
|
|
15
|
-
export const complaintsChoose = (body: object) =>
|
|
16
|
-
inquiriesAlgorithmService.Post<{ status: string; data: [] }>('/主诉/选择', body);
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { inspectionAlgorithmService } from 'src/api/algorithm';
|
|
2
|
-
|
|
3
|
-
export const tongueAnalyze = (images: FormData) =>
|
|
4
|
-
inspectionAlgorithmService.Post<JSON>('/舌象', images, {
|
|
5
|
-
timeout: 30000,
|
|
6
|
-
});
|
|
7
|
-
|
|
8
|
-
export const faceAnalyze = (images: FormData) =>
|
|
9
|
-
inspectionAlgorithmService.Post<JSON>('/面象', images, {
|
|
10
|
-
timeout: 30000,
|
|
11
|
-
});
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { lisemsAlgorithmService } from 'src/api/algorithm';
|
|
2
|
-
|
|
3
|
-
export const analysisLisems = (body: object) =>
|
|
4
|
-
lisemsAlgorithmService.Post<JSON, Response>('/特征参数', body, {
|
|
5
|
-
transform(data) {
|
|
6
|
-
return data.json() as Promise<JSON>;
|
|
7
|
-
},
|
|
8
|
-
});
|
|
9
|
-
|
|
10
|
-
export const getFrequencyDomainDiagram = (body: number[]) =>
|
|
11
|
-
lisemsAlgorithmService.Post<string, Response>('/频域图', JSON.stringify(body), {
|
|
12
|
-
async transform(res) {
|
|
13
|
-
const blob = await res.blob();
|
|
14
|
-
return URL.createObjectURL(blob);
|
|
15
|
-
},
|
|
16
|
-
});
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { pulsationsAlgorithmService } from 'src/api/algorithm';
|
|
2
|
-
|
|
3
|
-
export const pulsationPreprocessing = (pulsation: object) =>
|
|
4
|
-
pulsationsAlgorithmService.Post<{ [key: string]: number[] }>('/预处理', pulsation, {});
|
|
5
|
-
export const pulsationAnalysis = (pulsation: object) =>
|
|
6
|
-
pulsationsAlgorithmService.Post<JSON>('/特征参数', pulsation, {
|
|
7
|
-
timeout: 30000,
|
|
8
|
-
});
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/// <reference types='./globals.d.ts' />
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* OpenAPI definition - version v0
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* OpenAPI version: 3.1.0
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
* NOTE: This file is auto generated by the alova's vscode plugin.
|
|
13
|
-
*
|
|
14
|
-
* https://alova.js.org/devtools/vscode
|
|
15
|
-
*
|
|
16
|
-
* **Do not edit the file manually.**
|
|
17
|
-
*/
|
|
18
|
-
export default {
|
|
19
|
-
'oAuthRestful.getToken': ['POST', '/授权/服务/令牌'],
|
|
20
|
-
'resourceAuthorizationRestful.getResourceAuthorizationState': ['GET', '/授权/服务/资源/{id}'],
|
|
21
|
-
'roleAuthorizationRestful.getRoleAuthorizationState': ['GET', '/授权/服务/角色/{role}'],
|
|
22
|
-
'userAuthorizationRestful.getUserAuthorizationState': ['GET', '/授权/服务/用户/{userId}'],
|
|
23
|
-
};
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* OpenAPI definition - version v0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* OpenAPI version: 3.1.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This file is auto generated by the alova's vscode plugin.
|
|
12
|
-
*
|
|
13
|
-
* https://alova.js.org/devtools/vscode
|
|
14
|
-
*
|
|
15
|
-
* **Do not edit the file manually.**
|
|
16
|
-
*/
|
|
17
|
-
import type { Alova, MethodType, AlovaGenerics, AlovaMethodCreateConfig } from 'alova';
|
|
18
|
-
import { Method } from 'alova';
|
|
19
|
-
import apiDefinitions from './apiDefinitions';
|
|
20
|
-
|
|
21
|
-
const cache = Object.create(null);
|
|
22
|
-
const createFunctionalProxy = (
|
|
23
|
-
array: (string | symbol)[],
|
|
24
|
-
alovaInstance: Alova<AlovaGenerics>,
|
|
25
|
-
configMap: any,
|
|
26
|
-
) => {
|
|
27
|
-
const apiPathKey = array.join('.') as keyof typeof apiDefinitions;
|
|
28
|
-
if (cache[apiPathKey]) {
|
|
29
|
-
return cache[apiPathKey];
|
|
30
|
-
}
|
|
31
|
-
// create a new proxy instance
|
|
32
|
-
const proxy = new Proxy(function () {}, {
|
|
33
|
-
get(_, property) {
|
|
34
|
-
// record the target property, so that it can get the completed accessing paths
|
|
35
|
-
const newArray = [...array, property];
|
|
36
|
-
// always return a new proxy to continue recording accessing paths.
|
|
37
|
-
return createFunctionalProxy(newArray, alovaInstance, configMap);
|
|
38
|
-
},
|
|
39
|
-
apply(_, __, [config]) {
|
|
40
|
-
const apiItem = apiDefinitions[apiPathKey];
|
|
41
|
-
if (!apiItem) {
|
|
42
|
-
throw new Error(`the api path of \`${apiPathKey}\` is not found`);
|
|
43
|
-
}
|
|
44
|
-
const mergedConfig = {
|
|
45
|
-
...configMap[apiPathKey],
|
|
46
|
-
...config,
|
|
47
|
-
};
|
|
48
|
-
const [method, url] = apiItem;
|
|
49
|
-
const pathParams = mergedConfig.pathParams;
|
|
50
|
-
const urlReplaced = url!.replace(/\{([^}]+)\}/g, (_, key) => {
|
|
51
|
-
const pathParam = pathParams[key];
|
|
52
|
-
return pathParam;
|
|
53
|
-
});
|
|
54
|
-
delete mergedConfig.pathParams;
|
|
55
|
-
let data = mergedConfig.data;
|
|
56
|
-
if (
|
|
57
|
-
Object.prototype.toString.call(data) === '[object Object]' &&
|
|
58
|
-
typeof FormData !== 'undefined'
|
|
59
|
-
) {
|
|
60
|
-
let hasBlobData = false;
|
|
61
|
-
const formData = new FormData();
|
|
62
|
-
for (const key in data) {
|
|
63
|
-
formData.append(key, data[key]);
|
|
64
|
-
if (data[key] instanceof Blob) {
|
|
65
|
-
hasBlobData = true;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
data = hasBlobData ? formData : data;
|
|
69
|
-
}
|
|
70
|
-
return new Method(
|
|
71
|
-
method!.toUpperCase() as MethodType,
|
|
72
|
-
alovaInstance,
|
|
73
|
-
urlReplaced,
|
|
74
|
-
mergedConfig,
|
|
75
|
-
data,
|
|
76
|
-
);
|
|
77
|
-
},
|
|
78
|
-
});
|
|
79
|
-
cache[apiPathKey] = proxy;
|
|
80
|
-
return proxy;
|
|
81
|
-
};
|
|
82
|
-
|
|
83
|
-
export const createApis = (alovaInstance: Alova<AlovaGenerics>, configMap: any) => {
|
|
84
|
-
const Apis = new Proxy({} as authorizeApi, {
|
|
85
|
-
get(_, property) {
|
|
86
|
-
return createFunctionalProxy([property], alovaInstance, configMap);
|
|
87
|
-
},
|
|
88
|
-
});
|
|
89
|
-
return Apis;
|
|
90
|
-
};
|
|
91
|
-
export const mountApis = (Apis: authorizeApi) => {
|
|
92
|
-
// define global variable `Apis`
|
|
93
|
-
(globalThis as any).authorizeApi = Apis;
|
|
94
|
-
};
|
|
95
|
-
type MethodConfig<T> = AlovaMethodCreateConfig<
|
|
96
|
-
(typeof import('./index'))['alovaInstance'] extends Alova<infer AG> ? AG : any,
|
|
97
|
-
any,
|
|
98
|
-
T
|
|
99
|
-
>;
|
|
100
|
-
type APISofParameters<Tag extends string, Url extends string> = Tag extends keyof authorizeApi
|
|
101
|
-
? Url extends keyof authorizeApi[Tag]
|
|
102
|
-
? authorizeApi[Tag][Url] extends (...args: any) => any
|
|
103
|
-
? Parameters<authorizeApi[Tag][Url]>
|
|
104
|
-
: any
|
|
105
|
-
: any
|
|
106
|
-
: any;
|
|
107
|
-
type MethodsConfigMap = {
|
|
108
|
-
[P in keyof typeof import('./apiDefinitions').default]?: MethodConfig<
|
|
109
|
-
P extends `${infer Tag}.${infer Url}`
|
|
110
|
-
? Parameters<NonNullable<APISofParameters<Tag, Url>[0]>['transform']>[0]
|
|
111
|
-
: any
|
|
112
|
-
>;
|
|
113
|
-
};
|
|
114
|
-
export const withConfigType = <Config extends MethodsConfigMap>(config: Config) => config;
|