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
|
@@ -1,685 +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, AlovaMethodCreateConfig, AlovaGenerics, Method } from 'alova';
|
|
18
|
-
import type { $$userConfigMap, alovaInstance } from './index';
|
|
19
|
-
import type apiDefinitions from './apiDefinitions';
|
|
20
|
-
|
|
21
|
-
type CollapsedAlova = typeof alovaInstance;
|
|
22
|
-
type UserMethodConfigMap = typeof $$userConfigMap;
|
|
23
|
-
|
|
24
|
-
type Alova2MethodConfig<Responded> =
|
|
25
|
-
CollapsedAlova extends Alova<
|
|
26
|
-
AlovaGenerics<
|
|
27
|
-
any,
|
|
28
|
-
any,
|
|
29
|
-
infer RequestConfig,
|
|
30
|
-
infer Response,
|
|
31
|
-
infer ResponseHeader,
|
|
32
|
-
infer L1Cache,
|
|
33
|
-
infer L2Cache,
|
|
34
|
-
infer SE
|
|
35
|
-
>
|
|
36
|
-
>
|
|
37
|
-
? Omit<
|
|
38
|
-
AlovaMethodCreateConfig<
|
|
39
|
-
AlovaGenerics<
|
|
40
|
-
Responded,
|
|
41
|
-
any,
|
|
42
|
-
RequestConfig,
|
|
43
|
-
Response,
|
|
44
|
-
ResponseHeader,
|
|
45
|
-
L1Cache,
|
|
46
|
-
L2Cache,
|
|
47
|
-
SE
|
|
48
|
-
>,
|
|
49
|
-
any,
|
|
50
|
-
Responded
|
|
51
|
-
>,
|
|
52
|
-
'params'
|
|
53
|
-
>
|
|
54
|
-
: never;
|
|
55
|
-
|
|
56
|
-
// Extract the return type of transform function that define in $$userConfigMap, if it not exists, use the default type.
|
|
57
|
-
type ExtractUserDefinedTransformed<
|
|
58
|
-
DefinitionKey extends keyof typeof apiDefinitions,
|
|
59
|
-
Default,
|
|
60
|
-
> = DefinitionKey extends keyof UserMethodConfigMap
|
|
61
|
-
? UserMethodConfigMap[DefinitionKey]['transform'] extends (...args: any[]) => any
|
|
62
|
-
? Awaited<ReturnType<UserMethodConfigMap[DefinitionKey]['transform']>>
|
|
63
|
-
: Default
|
|
64
|
-
: Default;
|
|
65
|
-
type Alova2Method<
|
|
66
|
-
Responded,
|
|
67
|
-
DefinitionKey extends keyof typeof apiDefinitions,
|
|
68
|
-
CurrentConfig extends Alova2MethodConfig<any>,
|
|
69
|
-
> =
|
|
70
|
-
CollapsedAlova extends Alova<
|
|
71
|
-
AlovaGenerics<
|
|
72
|
-
any,
|
|
73
|
-
any,
|
|
74
|
-
infer RequestConfig,
|
|
75
|
-
infer Response,
|
|
76
|
-
infer ResponseHeader,
|
|
77
|
-
infer L1Cache,
|
|
78
|
-
infer L2Cache,
|
|
79
|
-
infer SE
|
|
80
|
-
>
|
|
81
|
-
>
|
|
82
|
-
? Method<
|
|
83
|
-
AlovaGenerics<
|
|
84
|
-
CurrentConfig extends undefined
|
|
85
|
-
? ExtractUserDefinedTransformed<DefinitionKey, Responded>
|
|
86
|
-
: CurrentConfig['transform'] extends (...args: any[]) => any
|
|
87
|
-
? Awaited<ReturnType<CurrentConfig['transform']>>
|
|
88
|
-
: ExtractUserDefinedTransformed<DefinitionKey, Responded>,
|
|
89
|
-
any,
|
|
90
|
-
RequestConfig,
|
|
91
|
-
Response,
|
|
92
|
-
ResponseHeader,
|
|
93
|
-
L1Cache,
|
|
94
|
-
L2Cache,
|
|
95
|
-
SE
|
|
96
|
-
>
|
|
97
|
-
>
|
|
98
|
-
: never;
|
|
99
|
-
|
|
100
|
-
export interface AnnotationState {
|
|
101
|
-
value?: string;
|
|
102
|
-
actor?: string;
|
|
103
|
-
timestamp?: string;
|
|
104
|
-
}
|
|
105
|
-
export interface TagState {
|
|
106
|
-
key?: string;
|
|
107
|
-
annotationsState?: AnnotationState[];
|
|
108
|
-
}
|
|
109
|
-
export interface PatientState {
|
|
110
|
-
id?: string;
|
|
111
|
-
doctorId?: string;
|
|
112
|
-
name?: string;
|
|
113
|
-
createdTimestamp?: string;
|
|
114
|
-
updatedTimestamp?: string;
|
|
115
|
-
identity?: string;
|
|
116
|
-
gender?: string;
|
|
117
|
-
phoneNumber?: string;
|
|
118
|
-
birthdate?: string;
|
|
119
|
-
remarks?: string[];
|
|
120
|
-
tagsState?: TagState[];
|
|
121
|
-
mainSymptom?: string;
|
|
122
|
-
}
|
|
123
|
-
export interface DoctorState {
|
|
124
|
-
id?: string;
|
|
125
|
-
name?: string;
|
|
126
|
-
createdTimestamp?: string;
|
|
127
|
-
updatedTimestamp?: string;
|
|
128
|
-
gender?: string;
|
|
129
|
-
identityNumber?: string;
|
|
130
|
-
phoneNumber?: string;
|
|
131
|
-
birthdate?: string;
|
|
132
|
-
}
|
|
133
|
-
export interface QueuerState {
|
|
134
|
-
id?: string;
|
|
135
|
-
patientState?: PatientState;
|
|
136
|
-
doctorState?: DoctorState;
|
|
137
|
-
createdTimestamp?: string;
|
|
138
|
-
updatedTimestamp?: string;
|
|
139
|
-
status?: number;
|
|
140
|
-
}
|
|
141
|
-
export interface DateDistribute {
|
|
142
|
-
date?: string;
|
|
143
|
-
count?: number;
|
|
144
|
-
}
|
|
145
|
-
export interface SortObject {
|
|
146
|
-
empty?: boolean;
|
|
147
|
-
sorted?: boolean;
|
|
148
|
-
unsorted?: boolean;
|
|
149
|
-
}
|
|
150
|
-
export interface PageableObject {
|
|
151
|
-
offset?: number;
|
|
152
|
-
sort?: SortObject;
|
|
153
|
-
pageSize?: number;
|
|
154
|
-
paged?: boolean;
|
|
155
|
-
pageNumber?: number;
|
|
156
|
-
unpaged?: boolean;
|
|
157
|
-
}
|
|
158
|
-
export interface PageQueuerState {
|
|
159
|
-
totalPages?: number;
|
|
160
|
-
totalElements?: number;
|
|
161
|
-
size?: number;
|
|
162
|
-
content?: QueuerState[];
|
|
163
|
-
number?: number;
|
|
164
|
-
sort?: SortObject;
|
|
165
|
-
first?: boolean;
|
|
166
|
-
last?: boolean;
|
|
167
|
-
numberOfElements?: number;
|
|
168
|
-
pageable?: PageableObject;
|
|
169
|
-
empty?: boolean;
|
|
170
|
-
}
|
|
171
|
-
declare global {
|
|
172
|
-
interface outpatientApi {
|
|
173
|
-
queuerRestful: {
|
|
174
|
-
/**
|
|
175
|
-
* ---
|
|
176
|
-
*
|
|
177
|
-
* [GET]
|
|
178
|
-
*
|
|
179
|
-
* **path:** /门诊/服务/排队/{id}
|
|
180
|
-
*
|
|
181
|
-
* ---
|
|
182
|
-
*
|
|
183
|
-
* **Path Parameters**
|
|
184
|
-
* ```ts
|
|
185
|
-
* type PathParameters = {
|
|
186
|
-
* id: string
|
|
187
|
-
* }
|
|
188
|
-
* ```
|
|
189
|
-
*
|
|
190
|
-
* ---
|
|
191
|
-
*
|
|
192
|
-
* **Response**
|
|
193
|
-
* ```ts
|
|
194
|
-
* type Response = {
|
|
195
|
-
* id?: string
|
|
196
|
-
* patientState?: {
|
|
197
|
-
* id?: string
|
|
198
|
-
* doctorId?: string
|
|
199
|
-
* name?: string
|
|
200
|
-
* createdTimestamp?: string
|
|
201
|
-
* updatedTimestamp?: string
|
|
202
|
-
* identity?: string
|
|
203
|
-
* gender?: string
|
|
204
|
-
* phoneNumber?: string
|
|
205
|
-
* birthdate?: string
|
|
206
|
-
* // [items] start
|
|
207
|
-
* // [items] end
|
|
208
|
-
* remarks?: string[]
|
|
209
|
-
* // [items] start
|
|
210
|
-
* // [items] end
|
|
211
|
-
* tagsState?: Array<{
|
|
212
|
-
* key?: string
|
|
213
|
-
* // [items] start
|
|
214
|
-
* // [items] end
|
|
215
|
-
* annotationsState?: Array<{
|
|
216
|
-
* value?: string
|
|
217
|
-
* actor?: string
|
|
218
|
-
* timestamp?: string
|
|
219
|
-
* }>
|
|
220
|
-
* }>
|
|
221
|
-
* mainSymptom?: string
|
|
222
|
-
* }
|
|
223
|
-
* doctorState?: {
|
|
224
|
-
* id?: string
|
|
225
|
-
* name?: string
|
|
226
|
-
* createdTimestamp?: string
|
|
227
|
-
* updatedTimestamp?: string
|
|
228
|
-
* gender?: string
|
|
229
|
-
* identityNumber?: string
|
|
230
|
-
* phoneNumber?: string
|
|
231
|
-
* birthdate?: string
|
|
232
|
-
* }
|
|
233
|
-
* createdTimestamp?: string
|
|
234
|
-
* updatedTimestamp?: string
|
|
235
|
-
* status?: number
|
|
236
|
-
* }
|
|
237
|
-
* ```
|
|
238
|
-
*/
|
|
239
|
-
getQueuerState<
|
|
240
|
-
Config extends Alova2MethodConfig<QueuerState> & {
|
|
241
|
-
pathParams: {
|
|
242
|
-
id: string;
|
|
243
|
-
};
|
|
244
|
-
},
|
|
245
|
-
>(
|
|
246
|
-
config: Config,
|
|
247
|
-
): Alova2Method<QueuerState, 'queuerRestful.getQueuerState', Config>;
|
|
248
|
-
/**
|
|
249
|
-
* ---
|
|
250
|
-
*
|
|
251
|
-
* [PUT]
|
|
252
|
-
*
|
|
253
|
-
* **path:** /门诊/服务/排队/{id}
|
|
254
|
-
*
|
|
255
|
-
* ---
|
|
256
|
-
*
|
|
257
|
-
* **Path Parameters**
|
|
258
|
-
* ```ts
|
|
259
|
-
* type PathParameters = {
|
|
260
|
-
* id: string
|
|
261
|
-
* }
|
|
262
|
-
* ```
|
|
263
|
-
*
|
|
264
|
-
* ---
|
|
265
|
-
*
|
|
266
|
-
* **RequestBody**
|
|
267
|
-
* ```ts
|
|
268
|
-
* type RequestBody = {
|
|
269
|
-
* id?: string
|
|
270
|
-
* patientState?: {
|
|
271
|
-
* id?: string
|
|
272
|
-
* doctorId?: string
|
|
273
|
-
* name?: string
|
|
274
|
-
* createdTimestamp?: string
|
|
275
|
-
* updatedTimestamp?: string
|
|
276
|
-
* identity?: string
|
|
277
|
-
* gender?: string
|
|
278
|
-
* phoneNumber?: string
|
|
279
|
-
* birthdate?: string
|
|
280
|
-
* // [items] start
|
|
281
|
-
* // [items] end
|
|
282
|
-
* remarks?: string[]
|
|
283
|
-
* // [items] start
|
|
284
|
-
* // [items] end
|
|
285
|
-
* tagsState?: Array<{
|
|
286
|
-
* key?: string
|
|
287
|
-
* // [items] start
|
|
288
|
-
* // [items] end
|
|
289
|
-
* annotationsState?: Array<{
|
|
290
|
-
* value?: string
|
|
291
|
-
* actor?: string
|
|
292
|
-
* timestamp?: string
|
|
293
|
-
* }>
|
|
294
|
-
* }>
|
|
295
|
-
* mainSymptom?: string
|
|
296
|
-
* }
|
|
297
|
-
* doctorState?: {
|
|
298
|
-
* id?: string
|
|
299
|
-
* name?: string
|
|
300
|
-
* createdTimestamp?: string
|
|
301
|
-
* updatedTimestamp?: string
|
|
302
|
-
* gender?: string
|
|
303
|
-
* identityNumber?: string
|
|
304
|
-
* phoneNumber?: string
|
|
305
|
-
* birthdate?: string
|
|
306
|
-
* }
|
|
307
|
-
* createdTimestamp?: string
|
|
308
|
-
* updatedTimestamp?: string
|
|
309
|
-
* status?: number
|
|
310
|
-
* }
|
|
311
|
-
* ```
|
|
312
|
-
*
|
|
313
|
-
* ---
|
|
314
|
-
*
|
|
315
|
-
* **Response**
|
|
316
|
-
* ```ts
|
|
317
|
-
* type Response = {
|
|
318
|
-
* id?: string
|
|
319
|
-
* patientState?: {
|
|
320
|
-
* id?: string
|
|
321
|
-
* doctorId?: string
|
|
322
|
-
* name?: string
|
|
323
|
-
* createdTimestamp?: string
|
|
324
|
-
* updatedTimestamp?: string
|
|
325
|
-
* identity?: string
|
|
326
|
-
* gender?: string
|
|
327
|
-
* phoneNumber?: string
|
|
328
|
-
* birthdate?: string
|
|
329
|
-
* // [items] start
|
|
330
|
-
* // [items] end
|
|
331
|
-
* remarks?: string[]
|
|
332
|
-
* // [items] start
|
|
333
|
-
* // [items] end
|
|
334
|
-
* tagsState?: Array<{
|
|
335
|
-
* key?: string
|
|
336
|
-
* // [items] start
|
|
337
|
-
* // [items] end
|
|
338
|
-
* annotationsState?: Array<{
|
|
339
|
-
* value?: string
|
|
340
|
-
* actor?: string
|
|
341
|
-
* timestamp?: string
|
|
342
|
-
* }>
|
|
343
|
-
* }>
|
|
344
|
-
* mainSymptom?: string
|
|
345
|
-
* }
|
|
346
|
-
* doctorState?: {
|
|
347
|
-
* id?: string
|
|
348
|
-
* name?: string
|
|
349
|
-
* createdTimestamp?: string
|
|
350
|
-
* updatedTimestamp?: string
|
|
351
|
-
* gender?: string
|
|
352
|
-
* identityNumber?: string
|
|
353
|
-
* phoneNumber?: string
|
|
354
|
-
* birthdate?: string
|
|
355
|
-
* }
|
|
356
|
-
* createdTimestamp?: string
|
|
357
|
-
* updatedTimestamp?: string
|
|
358
|
-
* status?: number
|
|
359
|
-
* }
|
|
360
|
-
* ```
|
|
361
|
-
*/
|
|
362
|
-
putQueuerState<
|
|
363
|
-
Config extends Alova2MethodConfig<QueuerState> & {
|
|
364
|
-
pathParams: {
|
|
365
|
-
id: string;
|
|
366
|
-
};
|
|
367
|
-
data: QueuerState;
|
|
368
|
-
},
|
|
369
|
-
>(
|
|
370
|
-
config: Config,
|
|
371
|
-
): Alova2Method<QueuerState, 'queuerRestful.putQueuerState', Config>;
|
|
372
|
-
/**
|
|
373
|
-
* ---
|
|
374
|
-
*
|
|
375
|
-
* [DELETE]
|
|
376
|
-
*
|
|
377
|
-
* **path:** /门诊/服务/排队/{id}
|
|
378
|
-
*
|
|
379
|
-
* ---
|
|
380
|
-
*
|
|
381
|
-
* **Path Parameters**
|
|
382
|
-
* ```ts
|
|
383
|
-
* type PathParameters = {
|
|
384
|
-
* id: string
|
|
385
|
-
* }
|
|
386
|
-
* ```
|
|
387
|
-
*
|
|
388
|
-
* ---
|
|
389
|
-
*
|
|
390
|
-
* **Response**
|
|
391
|
-
* ```ts
|
|
392
|
-
* type Response = null
|
|
393
|
-
* ```
|
|
394
|
-
*/
|
|
395
|
-
deleteQueuerState<
|
|
396
|
-
Config extends Alova2MethodConfig<null> & {
|
|
397
|
-
pathParams: {
|
|
398
|
-
id: string;
|
|
399
|
-
};
|
|
400
|
-
},
|
|
401
|
-
>(
|
|
402
|
-
config: Config,
|
|
403
|
-
): Alova2Method<null, 'queuerRestful.deleteQueuerState', Config>;
|
|
404
|
-
/**
|
|
405
|
-
* ---
|
|
406
|
-
*
|
|
407
|
-
* [GET]
|
|
408
|
-
*
|
|
409
|
-
* **path:** /门诊/服务/排队
|
|
410
|
-
*
|
|
411
|
-
* ---
|
|
412
|
-
*
|
|
413
|
-
* **Query Parameters**
|
|
414
|
-
* ```ts
|
|
415
|
-
* type QueryParameters = {
|
|
416
|
-
* doctorId?: string
|
|
417
|
-
* patientId?: string
|
|
418
|
-
* page: number
|
|
419
|
-
* pageSize: number
|
|
420
|
-
* }
|
|
421
|
-
* ```
|
|
422
|
-
*
|
|
423
|
-
* ---
|
|
424
|
-
*
|
|
425
|
-
* **Response**
|
|
426
|
-
* ```ts
|
|
427
|
-
* type Response = {
|
|
428
|
-
* totalPages?: number
|
|
429
|
-
* totalElements?: number
|
|
430
|
-
* size?: number
|
|
431
|
-
* // [items] start
|
|
432
|
-
* // [items] end
|
|
433
|
-
* content?: Array<{
|
|
434
|
-
* id?: string
|
|
435
|
-
* patientState?: {
|
|
436
|
-
* id?: string
|
|
437
|
-
* doctorId?: string
|
|
438
|
-
* name?: string
|
|
439
|
-
* createdTimestamp?: string
|
|
440
|
-
* updatedTimestamp?: string
|
|
441
|
-
* identity?: string
|
|
442
|
-
* gender?: string
|
|
443
|
-
* phoneNumber?: string
|
|
444
|
-
* birthdate?: string
|
|
445
|
-
* // [items] start
|
|
446
|
-
* // [items] end
|
|
447
|
-
* remarks?: string[]
|
|
448
|
-
* // [items] start
|
|
449
|
-
* // [items] end
|
|
450
|
-
* tagsState?: Array<{
|
|
451
|
-
* key?: string
|
|
452
|
-
* // [items] start
|
|
453
|
-
* // [items] end
|
|
454
|
-
* annotationsState?: Array<{
|
|
455
|
-
* value?: string
|
|
456
|
-
* actor?: string
|
|
457
|
-
* timestamp?: string
|
|
458
|
-
* }>
|
|
459
|
-
* }>
|
|
460
|
-
* mainSymptom?: string
|
|
461
|
-
* }
|
|
462
|
-
* doctorState?: {
|
|
463
|
-
* id?: string
|
|
464
|
-
* name?: string
|
|
465
|
-
* createdTimestamp?: string
|
|
466
|
-
* updatedTimestamp?: string
|
|
467
|
-
* gender?: string
|
|
468
|
-
* identityNumber?: string
|
|
469
|
-
* phoneNumber?: string
|
|
470
|
-
* birthdate?: string
|
|
471
|
-
* }
|
|
472
|
-
* createdTimestamp?: string
|
|
473
|
-
* updatedTimestamp?: string
|
|
474
|
-
* status?: number
|
|
475
|
-
* }>
|
|
476
|
-
* number?: number
|
|
477
|
-
* sort?: {
|
|
478
|
-
* empty?: boolean
|
|
479
|
-
* sorted?: boolean
|
|
480
|
-
* unsorted?: boolean
|
|
481
|
-
* }
|
|
482
|
-
* first?: boolean
|
|
483
|
-
* last?: boolean
|
|
484
|
-
* numberOfElements?: number
|
|
485
|
-
* pageable?: {
|
|
486
|
-
* offset?: number
|
|
487
|
-
* sort?: {
|
|
488
|
-
* empty?: boolean
|
|
489
|
-
* sorted?: boolean
|
|
490
|
-
* unsorted?: boolean
|
|
491
|
-
* }
|
|
492
|
-
* pageSize?: number
|
|
493
|
-
* paged?: boolean
|
|
494
|
-
* pageNumber?: number
|
|
495
|
-
* unpaged?: boolean
|
|
496
|
-
* }
|
|
497
|
-
* empty?: boolean
|
|
498
|
-
* }
|
|
499
|
-
* ```
|
|
500
|
-
*/
|
|
501
|
-
queryQueuerState<
|
|
502
|
-
Config extends Alova2MethodConfig<PageQueuerState> & {
|
|
503
|
-
params: {
|
|
504
|
-
doctorId?: string;
|
|
505
|
-
patientId?: string;
|
|
506
|
-
page: number;
|
|
507
|
-
pageSize: number;
|
|
508
|
-
};
|
|
509
|
-
},
|
|
510
|
-
>(
|
|
511
|
-
config: Config,
|
|
512
|
-
): Alova2Method<PageQueuerState, 'queuerRestful.queryQueuerState', Config>;
|
|
513
|
-
/**
|
|
514
|
-
* ---
|
|
515
|
-
*
|
|
516
|
-
* [POST]
|
|
517
|
-
*
|
|
518
|
-
* **path:** /门诊/服务/排队
|
|
519
|
-
*
|
|
520
|
-
* ---
|
|
521
|
-
*
|
|
522
|
-
* **RequestBody**
|
|
523
|
-
* ```ts
|
|
524
|
-
* type RequestBody = {
|
|
525
|
-
* id?: string
|
|
526
|
-
* patientState?: {
|
|
527
|
-
* id?: string
|
|
528
|
-
* doctorId?: string
|
|
529
|
-
* name?: string
|
|
530
|
-
* createdTimestamp?: string
|
|
531
|
-
* updatedTimestamp?: string
|
|
532
|
-
* identity?: string
|
|
533
|
-
* gender?: string
|
|
534
|
-
* phoneNumber?: string
|
|
535
|
-
* birthdate?: string
|
|
536
|
-
* // [items] start
|
|
537
|
-
* // [items] end
|
|
538
|
-
* remarks?: string[]
|
|
539
|
-
* // [items] start
|
|
540
|
-
* // [items] end
|
|
541
|
-
* tagsState?: Array<{
|
|
542
|
-
* key?: string
|
|
543
|
-
* // [items] start
|
|
544
|
-
* // [items] end
|
|
545
|
-
* annotationsState?: Array<{
|
|
546
|
-
* value?: string
|
|
547
|
-
* actor?: string
|
|
548
|
-
* timestamp?: string
|
|
549
|
-
* }>
|
|
550
|
-
* }>
|
|
551
|
-
* mainSymptom?: string
|
|
552
|
-
* }
|
|
553
|
-
* doctorState?: {
|
|
554
|
-
* id?: string
|
|
555
|
-
* name?: string
|
|
556
|
-
* createdTimestamp?: string
|
|
557
|
-
* updatedTimestamp?: string
|
|
558
|
-
* gender?: string
|
|
559
|
-
* identityNumber?: string
|
|
560
|
-
* phoneNumber?: string
|
|
561
|
-
* birthdate?: string
|
|
562
|
-
* }
|
|
563
|
-
* createdTimestamp?: string
|
|
564
|
-
* updatedTimestamp?: string
|
|
565
|
-
* status?: number
|
|
566
|
-
* }
|
|
567
|
-
* ```
|
|
568
|
-
*
|
|
569
|
-
* ---
|
|
570
|
-
*
|
|
571
|
-
* **Response**
|
|
572
|
-
* ```ts
|
|
573
|
-
* type Response = {
|
|
574
|
-
* id?: string
|
|
575
|
-
* patientState?: {
|
|
576
|
-
* id?: string
|
|
577
|
-
* doctorId?: string
|
|
578
|
-
* name?: string
|
|
579
|
-
* createdTimestamp?: string
|
|
580
|
-
* updatedTimestamp?: string
|
|
581
|
-
* identity?: string
|
|
582
|
-
* gender?: string
|
|
583
|
-
* phoneNumber?: string
|
|
584
|
-
* birthdate?: string
|
|
585
|
-
* // [items] start
|
|
586
|
-
* // [items] end
|
|
587
|
-
* remarks?: string[]
|
|
588
|
-
* // [items] start
|
|
589
|
-
* // [items] end
|
|
590
|
-
* tagsState?: Array<{
|
|
591
|
-
* key?: string
|
|
592
|
-
* // [items] start
|
|
593
|
-
* // [items] end
|
|
594
|
-
* annotationsState?: Array<{
|
|
595
|
-
* value?: string
|
|
596
|
-
* actor?: string
|
|
597
|
-
* timestamp?: string
|
|
598
|
-
* }>
|
|
599
|
-
* }>
|
|
600
|
-
* mainSymptom?: string
|
|
601
|
-
* }
|
|
602
|
-
* doctorState?: {
|
|
603
|
-
* id?: string
|
|
604
|
-
* name?: string
|
|
605
|
-
* createdTimestamp?: string
|
|
606
|
-
* updatedTimestamp?: string
|
|
607
|
-
* gender?: string
|
|
608
|
-
* identityNumber?: string
|
|
609
|
-
* phoneNumber?: string
|
|
610
|
-
* birthdate?: string
|
|
611
|
-
* }
|
|
612
|
-
* createdTimestamp?: string
|
|
613
|
-
* updatedTimestamp?: string
|
|
614
|
-
* status?: number
|
|
615
|
-
* }
|
|
616
|
-
* ```
|
|
617
|
-
*/
|
|
618
|
-
postQueuerState<
|
|
619
|
-
Config extends Alova2MethodConfig<QueuerState> & {
|
|
620
|
-
data: QueuerState;
|
|
621
|
-
},
|
|
622
|
-
>(
|
|
623
|
-
config: Config,
|
|
624
|
-
): Alova2Method<QueuerState, 'queuerRestful.postQueuerState', Config>;
|
|
625
|
-
};
|
|
626
|
-
metricRestful: {
|
|
627
|
-
/**
|
|
628
|
-
* ---
|
|
629
|
-
*
|
|
630
|
-
* [GET]
|
|
631
|
-
*
|
|
632
|
-
* **path:** /门诊/服务/统计/排队/日期
|
|
633
|
-
*
|
|
634
|
-
* ---
|
|
635
|
-
*
|
|
636
|
-
* **Response**
|
|
637
|
-
* ```ts
|
|
638
|
-
* type Response = Array<{
|
|
639
|
-
* date?: string
|
|
640
|
-
* count?: number
|
|
641
|
-
* }>
|
|
642
|
-
* ```
|
|
643
|
-
*/
|
|
644
|
-
datesOfQueuerState<Config extends Alova2MethodConfig<DateDistribute[]>>(
|
|
645
|
-
config?: Config,
|
|
646
|
-
): Alova2Method<DateDistribute[], 'metricRestful.datesOfQueuerState', Config>;
|
|
647
|
-
/**
|
|
648
|
-
* ---
|
|
649
|
-
*
|
|
650
|
-
* [GET]
|
|
651
|
-
*
|
|
652
|
-
* **path:** /门诊/服务/统计/排队/总数
|
|
653
|
-
*
|
|
654
|
-
* ---
|
|
655
|
-
*
|
|
656
|
-
* **Response**
|
|
657
|
-
* ```ts
|
|
658
|
-
* type Response = number
|
|
659
|
-
* ```
|
|
660
|
-
*/
|
|
661
|
-
totalOfQueuerState<Config extends Alova2MethodConfig<number>>(
|
|
662
|
-
config?: Config,
|
|
663
|
-
): Alova2Method<number, 'metricRestful.totalOfQueuerState', Config>;
|
|
664
|
-
/**
|
|
665
|
-
* ---
|
|
666
|
-
*
|
|
667
|
-
* [GET]
|
|
668
|
-
*
|
|
669
|
-
* **path:** /门诊/服务/统计/排队/今日
|
|
670
|
-
*
|
|
671
|
-
* ---
|
|
672
|
-
*
|
|
673
|
-
* **Response**
|
|
674
|
-
* ```ts
|
|
675
|
-
* type Response = number
|
|
676
|
-
* ```
|
|
677
|
-
*/
|
|
678
|
-
totalOfQueuerTodayState<Config extends Alova2MethodConfig<number>>(
|
|
679
|
-
config?: Config,
|
|
680
|
-
): Alova2Method<number, 'metricRestful.totalOfQueuerTodayState', Config>;
|
|
681
|
-
};
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
var outpatientApi: outpatientApi;
|
|
685
|
-
}
|