web-core-tcm 0.0.25 → 0.0.26
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 +4 -1
- 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
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Annotation as t, NetworkObject as o, Page as M, Sequence as n, Tag as l } from "./core.js";
|
|
2
|
+
import { AppendixMeta as A, ComplaintMeta as r, ECGMeta as v, FaceMeta as i, ImageMeta as P, ImagesMeta as m, Meta as x, MetaSequence as c, MetaType as f, MetaTypeConfig as g, Metas as s, PCGMeta as C, PPGMeta as u, PulsationMeta as G, SceneMeta as T, TextMeta as S, TongueMeta as I, WavesMeta as d } from "./meta.js";
|
|
3
|
+
import { Patient as y } from "./patient.js";
|
|
4
|
+
import { $$userConfigMap as F, alovaInstance as $ } from "./alova/index.js";
|
|
5
|
+
import { AlovaAppendixMeta as j, AlovaComplaintMeta as k, AlovaECGMeta as w, AlovaFaceMeta as N, AlovaMeta as O, AlovaMetas as W, AlovaPCGMeta as h, AlovaPPGMeta as z, AlovaPulsationMeta as B, AlovaSceneMeta as D, AlovaTongueMeta as H } from "./alova/implement/meta.js";
|
|
6
|
+
import { AlovaPatient as K } from "./alova/implement/patient.js";
|
|
7
|
+
export {
|
|
8
|
+
F as $$userConfigMap,
|
|
9
|
+
j as AlovaAppendixMeta,
|
|
10
|
+
k as AlovaComplaintMeta,
|
|
11
|
+
w as AlovaECGMeta,
|
|
12
|
+
N as AlovaFaceMeta,
|
|
13
|
+
O as AlovaMeta,
|
|
14
|
+
W as AlovaMetas,
|
|
15
|
+
h as AlovaPCGMeta,
|
|
16
|
+
z as AlovaPPGMeta,
|
|
17
|
+
K as AlovaPatient,
|
|
18
|
+
B as AlovaPulsationMeta,
|
|
19
|
+
D as AlovaSceneMeta,
|
|
20
|
+
H as AlovaTongueMeta,
|
|
21
|
+
t as Annotation,
|
|
22
|
+
A as AppendixMeta,
|
|
23
|
+
r as ComplaintMeta,
|
|
24
|
+
v as ECGMeta,
|
|
25
|
+
i as FaceMeta,
|
|
26
|
+
P as ImageMeta,
|
|
27
|
+
m as ImagesMeta,
|
|
28
|
+
x as Meta,
|
|
29
|
+
c as MetaSequence,
|
|
30
|
+
f as MetaType,
|
|
31
|
+
g as MetaTypeConfig,
|
|
32
|
+
s as Metas,
|
|
33
|
+
o as NetworkObject,
|
|
34
|
+
C as PCGMeta,
|
|
35
|
+
u as PPGMeta,
|
|
36
|
+
M as Page,
|
|
37
|
+
y as Patient,
|
|
38
|
+
G as PulsationMeta,
|
|
39
|
+
T as SceneMeta,
|
|
40
|
+
n as Sequence,
|
|
41
|
+
l as Tag,
|
|
42
|
+
S as TextMeta,
|
|
43
|
+
I as TongueMeta,
|
|
44
|
+
d as WavesMeta,
|
|
45
|
+
$ as alovaInstance
|
|
46
|
+
};
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
import { Page, Sequence, Tag, NetworkObject } from './core';
|
|
2
|
+
import { WaveMap } from '../../proto/types/WaveMap_pb';
|
|
3
|
+
import { MetaState } from './alova/globals';
|
|
4
|
+
import { Image, Images } from '../../proto/types/Images_pb';
|
|
5
|
+
import { Patient } from './patient';
|
|
6
|
+
import { IBuilder } from 'builder-pattern';
|
|
7
|
+
export declare enum MetaType {
|
|
8
|
+
Pulsation = "pulsation",
|
|
9
|
+
Tongue = "tongue",
|
|
10
|
+
Appendix = "appendix",
|
|
11
|
+
PPG = "ppg",
|
|
12
|
+
PCG = "pcg",
|
|
13
|
+
ECG = "ecg",
|
|
14
|
+
Scene = "scene",
|
|
15
|
+
Face = "face",
|
|
16
|
+
Complaint = "complaint",
|
|
17
|
+
Meta = "meta"
|
|
18
|
+
}
|
|
19
|
+
export declare abstract class Meta extends NetworkObject {
|
|
20
|
+
static builder(): IBuilder<unknown>;
|
|
21
|
+
static default(): typeof Meta;
|
|
22
|
+
id: string;
|
|
23
|
+
owner: Patient;
|
|
24
|
+
type: MetaType;
|
|
25
|
+
tags: Tag[];
|
|
26
|
+
createdTimestamp: string;
|
|
27
|
+
updatedTimestamp: string;
|
|
28
|
+
isSelected: boolean;
|
|
29
|
+
of(json: MetaState): Promise<this>;
|
|
30
|
+
state(): MetaState;
|
|
31
|
+
getTagValue(key: string): string | undefined;
|
|
32
|
+
putTags(): import('alova').Method<import('alova').AlovaGenerics<MetaState, any, import('alova/fetch').FetchRequestInit, Response, Headers, any, any, any>>;
|
|
33
|
+
addTag(tag: Tag): import('alova').Method<import('alova').AlovaGenerics<MetaState, any, import('alova/fetch').FetchRequestInit, Response, Headers, any, any, any>>;
|
|
34
|
+
removeTag(tag: Tag): import('alova').Method<import('alova').AlovaGenerics<MetaState, any, import('alova/fetch').FetchRequestInit, Response, Headers, any, any, any>>;
|
|
35
|
+
abstract analyze(): Promise<this>;
|
|
36
|
+
abstract getObject(): Promise<unknown>;
|
|
37
|
+
abstract get(): Promise<this>;
|
|
38
|
+
abstract put(): Promise<this>;
|
|
39
|
+
abstract post(): Promise<this>;
|
|
40
|
+
abstract delete(): Promise<this>;
|
|
41
|
+
abstract serialize(object: unknown): ArrayBuffer;
|
|
42
|
+
abstract deserialize(buffer: ArrayBuffer): unknown;
|
|
43
|
+
abstract inject(object: unknown): Promise<this>;
|
|
44
|
+
static queryMetaWithPatient(page: number, pageSize: number, owner?: Patient, type?: string, startTime?: string, endTime?: string, sort?: string, patientName?: string, patientPhoneNumber?: string, patientStartBirthdate?: string, patientEndBirthdate?: string, patientGender?: string, tags?: Tag[]): Promise<Page<Meta>>;
|
|
45
|
+
static query(page: number, pageSize: number, owner?: Patient, type?: string, startTime?: string, endTime?: string, sort?: string): Promise<Page<Meta>>;
|
|
46
|
+
static queryMetaStateByExactMatch(id?: string[], owner?: Patient[], type?: string[], pageSize?: number, page?: number, startTime?: string, endTime?: string, sort?: string): Promise<Page<Meta>>;
|
|
47
|
+
}
|
|
48
|
+
export declare abstract class ImageMeta extends Meta {
|
|
49
|
+
image?: Image;
|
|
50
|
+
base64Image: string;
|
|
51
|
+
serialize(): ArrayBuffer;
|
|
52
|
+
deserialize(buffer: ArrayBuffer): string;
|
|
53
|
+
inject(buffer: ArrayBuffer): Promise<this>;
|
|
54
|
+
abstract getObject(): Promise<string>;
|
|
55
|
+
}
|
|
56
|
+
export declare abstract class ImagesMeta extends Meta {
|
|
57
|
+
images?: Images;
|
|
58
|
+
base64Images: string[];
|
|
59
|
+
serialize(): ArrayBuffer;
|
|
60
|
+
deserialize(buffer: ArrayBuffer): string[];
|
|
61
|
+
inject(buffers?: ArrayBuffer[]): Promise<this>;
|
|
62
|
+
abstract getObject(): Promise<string[]>;
|
|
63
|
+
}
|
|
64
|
+
export declare abstract class TextMeta extends Meta {
|
|
65
|
+
text: string;
|
|
66
|
+
constructor();
|
|
67
|
+
serialize(): ArrayBuffer;
|
|
68
|
+
deserialize(buffer: ArrayBuffer): string;
|
|
69
|
+
inject(text?: string): Promise<this>;
|
|
70
|
+
abstract getObject(): Promise<string>;
|
|
71
|
+
}
|
|
72
|
+
export declare abstract class WavesMeta extends Meta {
|
|
73
|
+
waves: WaveMap | undefined;
|
|
74
|
+
serialize(): ArrayBuffer;
|
|
75
|
+
deserialize(buffer: ArrayBuffer): WaveMap;
|
|
76
|
+
abstract preprocess(origins: {
|
|
77
|
+
[key: string]: number[];
|
|
78
|
+
}): Promise<{
|
|
79
|
+
[key: string]: number[];
|
|
80
|
+
}>;
|
|
81
|
+
inject(origins?: {
|
|
82
|
+
[key: string]: number[];
|
|
83
|
+
}, smooths?: {
|
|
84
|
+
[key: string]: number[];
|
|
85
|
+
}): Promise<this>;
|
|
86
|
+
abstract getObject(): Promise<WaveMap>;
|
|
87
|
+
}
|
|
88
|
+
export declare abstract class TongueMeta extends ImageMeta {
|
|
89
|
+
static builder(): IBuilder<TongueMeta>;
|
|
90
|
+
static default(): typeof TongueMeta;
|
|
91
|
+
constructor();
|
|
92
|
+
}
|
|
93
|
+
export declare abstract class FaceMeta extends ImageMeta {
|
|
94
|
+
static builder(): IBuilder<FaceMeta>;
|
|
95
|
+
static default(): typeof FaceMeta;
|
|
96
|
+
constructor();
|
|
97
|
+
}
|
|
98
|
+
export declare abstract class SceneMeta extends ImageMeta {
|
|
99
|
+
static builder(): IBuilder<SceneMeta>;
|
|
100
|
+
static default(): typeof SceneMeta;
|
|
101
|
+
constructor();
|
|
102
|
+
}
|
|
103
|
+
export declare abstract class PulsationMeta extends WavesMeta {
|
|
104
|
+
static builder(): IBuilder<PulsationMeta>;
|
|
105
|
+
static default(): typeof PulsationMeta;
|
|
106
|
+
constructor();
|
|
107
|
+
}
|
|
108
|
+
export declare abstract class PPGMeta extends WavesMeta {
|
|
109
|
+
static builder(): IBuilder<PPGMeta>;
|
|
110
|
+
static default(): typeof PPGMeta;
|
|
111
|
+
constructor();
|
|
112
|
+
}
|
|
113
|
+
export declare abstract class PCGMeta extends WavesMeta {
|
|
114
|
+
static builder(): IBuilder<PCGMeta>;
|
|
115
|
+
static default(): typeof PCGMeta;
|
|
116
|
+
constructor();
|
|
117
|
+
}
|
|
118
|
+
export declare abstract class ECGMeta extends WavesMeta {
|
|
119
|
+
static builder(): IBuilder<ECGMeta>;
|
|
120
|
+
static default(): typeof ECGMeta;
|
|
121
|
+
constructor();
|
|
122
|
+
}
|
|
123
|
+
export declare abstract class AppendixMeta extends ImagesMeta {
|
|
124
|
+
static builder(): IBuilder<AppendixMeta>;
|
|
125
|
+
static default(): typeof AppendixMeta;
|
|
126
|
+
constructor();
|
|
127
|
+
}
|
|
128
|
+
export declare abstract class ComplaintMeta extends TextMeta {
|
|
129
|
+
static builder(): IBuilder<ComplaintMeta>;
|
|
130
|
+
static default(): typeof ComplaintMeta;
|
|
131
|
+
constructor();
|
|
132
|
+
}
|
|
133
|
+
export declare class MetaSequence<T extends Meta> extends Sequence<T> {
|
|
134
|
+
type: MetaType;
|
|
135
|
+
owner?: Patient;
|
|
136
|
+
expand: boolean;
|
|
137
|
+
constructor(type: MetaType, owner?: Patient);
|
|
138
|
+
init(owner: Patient): void;
|
|
139
|
+
query(page: number, pageSize: number, startTime?: string, endTime?: string, sort?: string): Promise<Page<Meta>>;
|
|
140
|
+
append(page: number, pageSize: number, startTime?: string, endTime?: string, sort?: string): Promise<Page<Meta>>;
|
|
141
|
+
appendMetaWithPatient(page: number, pageSize: number, type?: string, startTime?: string, endTime?: string, sort?: string, name?: string, phoneNumber?: string, startBirthdate?: string, endBirthdate?: string, gender?: string, tags?: Tag[]): Promise<Page<Meta>>;
|
|
142
|
+
}
|
|
143
|
+
export declare const MetaTypeConfig: {
|
|
144
|
+
face: {
|
|
145
|
+
type: typeof FaceMeta;
|
|
146
|
+
name: string;
|
|
147
|
+
icon: string;
|
|
148
|
+
color: string;
|
|
149
|
+
};
|
|
150
|
+
tongue: {
|
|
151
|
+
type: typeof TongueMeta;
|
|
152
|
+
name: string;
|
|
153
|
+
icon: string;
|
|
154
|
+
color: string;
|
|
155
|
+
};
|
|
156
|
+
complaint: {
|
|
157
|
+
type: typeof ComplaintMeta;
|
|
158
|
+
name: string;
|
|
159
|
+
icon: string;
|
|
160
|
+
color: string;
|
|
161
|
+
};
|
|
162
|
+
pulsation: {
|
|
163
|
+
type: typeof PulsationMeta;
|
|
164
|
+
name: string;
|
|
165
|
+
icon: string;
|
|
166
|
+
color: string;
|
|
167
|
+
};
|
|
168
|
+
ecg: {
|
|
169
|
+
type: typeof ECGMeta;
|
|
170
|
+
name: string;
|
|
171
|
+
icon: string;
|
|
172
|
+
color: string;
|
|
173
|
+
};
|
|
174
|
+
pcg: {
|
|
175
|
+
type: typeof PCGMeta;
|
|
176
|
+
name: string;
|
|
177
|
+
icon: string;
|
|
178
|
+
color: string;
|
|
179
|
+
};
|
|
180
|
+
ppg: {
|
|
181
|
+
type: typeof PPGMeta;
|
|
182
|
+
name: string;
|
|
183
|
+
icon: string;
|
|
184
|
+
color: string;
|
|
185
|
+
};
|
|
186
|
+
scene: {
|
|
187
|
+
type: typeof SceneMeta;
|
|
188
|
+
name: string;
|
|
189
|
+
icon: string;
|
|
190
|
+
color: string;
|
|
191
|
+
};
|
|
192
|
+
appendix: {
|
|
193
|
+
type: typeof AppendixMeta;
|
|
194
|
+
name: string;
|
|
195
|
+
icon: string;
|
|
196
|
+
color: string;
|
|
197
|
+
};
|
|
198
|
+
meta: {
|
|
199
|
+
type: typeof Meta;
|
|
200
|
+
name: string;
|
|
201
|
+
icon: string;
|
|
202
|
+
color: string;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
export declare abstract class Metas {
|
|
206
|
+
static _default: typeof Metas;
|
|
207
|
+
static builder(): IBuilder<Metas>;
|
|
208
|
+
static default(): typeof Metas;
|
|
209
|
+
[MetaType.Face]: MetaSequence<FaceMeta>;
|
|
210
|
+
[MetaType.Tongue]: MetaSequence<TongueMeta>;
|
|
211
|
+
[MetaType.Complaint]: MetaSequence<ComplaintMeta>;
|
|
212
|
+
[MetaType.Pulsation]: MetaSequence<PulsationMeta>;
|
|
213
|
+
[MetaType.ECG]: MetaSequence<ECGMeta>;
|
|
214
|
+
[MetaType.PCG]: MetaSequence<PCGMeta>;
|
|
215
|
+
[MetaType.PPG]: MetaSequence<PPGMeta>;
|
|
216
|
+
[MetaType.Scene]: MetaSequence<SceneMeta>;
|
|
217
|
+
[MetaType.Appendix]: MetaSequence<AppendixMeta>;
|
|
218
|
+
[MetaType.Meta]: MetaSequence<Meta>;
|
|
219
|
+
faces: MetaSequence<FaceMeta>;
|
|
220
|
+
tongues: MetaSequence<TongueMeta>;
|
|
221
|
+
complaints: MetaSequence<ComplaintMeta>;
|
|
222
|
+
pulsations: MetaSequence<PulsationMeta>;
|
|
223
|
+
ecgs: MetaSequence<ECGMeta>;
|
|
224
|
+
pcgs: MetaSequence<PCGMeta>;
|
|
225
|
+
ppgs: MetaSequence<PPGMeta>;
|
|
226
|
+
scenes: MetaSequence<SceneMeta>;
|
|
227
|
+
appendixes: MetaSequence<AppendixMeta>;
|
|
228
|
+
metas: MetaSequence<Meta>;
|
|
229
|
+
constructor(metas?: Meta[]);
|
|
230
|
+
init(owner: Patient): this;
|
|
231
|
+
query(page: number, pageSize: number, startTime?: string, endTime?: string, sort?: string): Promise<this>;
|
|
232
|
+
addMetas(metas: Meta[]): this;
|
|
233
|
+
addMeta(meta: Meta): this;
|
|
234
|
+
clear(): void;
|
|
235
|
+
static map(meta: MetaState): Promise<Meta>;
|
|
236
|
+
static mapText(type: MetaType): string;
|
|
237
|
+
static standards(): MetaType[];
|
|
238
|
+
}
|