web-core-tcm 0.0.62 → 0.0.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (470) hide show
  1. package/dist/node_modules/@alova/shared/dist/alova-shared.esm.js +229 -92
  2. package/dist/node_modules/@bufbuild/protobuf/dist/esm/clone.js +35 -0
  3. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/embed.js +109 -0
  4. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/enum.js +16 -0
  5. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/extension.js +9 -0
  6. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/file.js +9 -10
  7. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/index.js +28 -0
  8. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/scalar.js +48 -0
  9. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/service.js +8 -0
  10. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/symbols.js +49 -0
  11. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/types.js +1 -0
  12. package/dist/node_modules/@bufbuild/protobuf/dist/esm/create.js +1 -1
  13. package/dist/node_modules/@bufbuild/protobuf/dist/esm/equals.js +127 -0
  14. package/dist/node_modules/@bufbuild/protobuf/dist/esm/extensions.js +86 -0
  15. package/dist/node_modules/@bufbuild/protobuf/dist/esm/fields.js +11 -0
  16. package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js +60 -56
  17. package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-json.js +434 -0
  18. package/dist/node_modules/@bufbuild/protobuf/dist/esm/index.js +49 -0
  19. package/dist/node_modules/@bufbuild/protobuf/dist/esm/merge.js +33 -0
  20. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js +12 -3
  21. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js +14 -10
  22. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js +32 -12
  23. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js +42 -6
  24. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js +58 -50
  25. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js +26 -4
  26. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js +1 -1
  27. package/dist/node_modules/@bufbuild/protobuf/dist/esm/registry.js +130 -99
  28. package/dist/node_modules/@bufbuild/protobuf/dist/esm/to-json.js +279 -0
  29. package/dist/node_modules/@bufbuild/protobuf/dist/esm/types.js +1 -0
  30. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js +48 -27
  31. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/index.js +24 -0
  32. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/size-delimited.js +123 -0
  33. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js +10 -6
  34. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/any.js +40 -0
  35. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/duration.js +18 -0
  36. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/any_pb.js +7 -0
  37. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/api_pb.js +11 -0
  38. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/compiler/plugin_pb.js +19 -0
  39. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/cpp_features_pb.js +18 -0
  40. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js +137 -63
  41. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/duration_pb.js +7 -0
  42. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/empty_pb.js +7 -0
  43. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/field_mask_pb.js +7 -0
  44. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/go_features_pb.js +25 -0
  45. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/java_features_pb.js +26 -0
  46. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/source_context_pb.js +7 -0
  47. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/struct_pb.js +17 -0
  48. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/timestamp_pb.js +7 -0
  49. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/type_pb.js +35 -0
  50. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/wrappers_pb.js +15 -0
  51. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/index.js +180 -0
  52. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/timestamp.js +29 -0
  53. package/dist/node_modules/@vue/devtools-api/lib/esm/api/api.js +1 -0
  54. package/dist/node_modules/@vue/devtools-api/lib/esm/api/app.js +1 -0
  55. package/dist/node_modules/@vue/devtools-api/lib/esm/api/component.js +1 -0
  56. package/dist/node_modules/@vue/devtools-api/lib/esm/api/context.js +1 -0
  57. package/dist/node_modules/@vue/devtools-api/lib/esm/api/hooks.js +1 -0
  58. package/dist/node_modules/@vue/devtools-api/lib/esm/api/index.js +6 -0
  59. package/dist/node_modules/@vue/devtools-api/lib/esm/api/util.js +1 -0
  60. package/dist/node_modules/@vue/devtools-api/lib/esm/const.js +5 -0
  61. package/dist/node_modules/@vue/devtools-api/lib/esm/env.js +12 -0
  62. package/dist/node_modules/@vue/devtools-api/lib/esm/index.js +24 -0
  63. package/dist/node_modules/@vue/devtools-api/lib/esm/plugin.js +1 -0
  64. package/dist/node_modules/@vue/devtools-api/lib/esm/proxy.js +67 -0
  65. package/dist/node_modules/@vue/devtools-api/lib/esm/time.js +12 -0
  66. package/dist/node_modules/@vueuse/core/index.js +5189 -199
  67. package/dist/node_modules/@vueuse/core/node_modules/vue-demi/lib/index.js +24 -0
  68. package/dist/node_modules/@vueuse/shared/index.js +1172 -23
  69. package/dist/node_modules/@vueuse/shared/node_modules/vue-demi/lib/index.js +24 -0
  70. package/dist/node_modules/alova/dist/adapter/fetch.esm.js +30 -34
  71. package/dist/node_modules/alova/dist/alova.esm.js +266 -220
  72. package/dist/node_modules/alova/dist/clienthook/index.esm.js +2110 -70
  73. package/dist/node_modules/builder-pattern/dist/index.js +25 -13
  74. package/dist/node_modules/echarts/index.js +5 -0
  75. package/dist/node_modules/echarts/lib/animation/basicTransition.js +1 -1
  76. package/dist/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js +40 -39
  77. package/dist/node_modules/echarts/lib/animation/customGraphicTransition.js +146 -148
  78. package/dist/node_modules/echarts/lib/animation/universalTransition.js +208 -203
  79. package/dist/node_modules/echarts/lib/chart/bar/BarView.js +77 -76
  80. package/dist/node_modules/echarts/lib/chart/bar/PictorialBarView.js +6 -6
  81. package/dist/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js +8 -8
  82. package/dist/node_modules/echarts/lib/chart/candlestick/CandlestickView.js +8 -8
  83. package/dist/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js +34 -34
  84. package/dist/node_modules/echarts/lib/chart/custom/CustomView.js +157 -157
  85. package/dist/node_modules/echarts/lib/chart/funnel/FunnelView.js +7 -6
  86. package/dist/node_modules/echarts/lib/chart/funnel/funnelLayout.js +52 -52
  87. package/dist/node_modules/echarts/lib/chart/gauge/GaugeView.js +45 -44
  88. package/dist/node_modules/echarts/lib/chart/graph/GraphView.js +4 -2
  89. package/dist/node_modules/echarts/lib/chart/graph/adjustEdge.js +5 -5
  90. package/dist/node_modules/echarts/lib/chart/graph/forceHelper.js +4 -4
  91. package/dist/node_modules/echarts/lib/chart/heatmap/HeatmapView.js +54 -54
  92. package/dist/node_modules/echarts/lib/chart/helper/EffectLine.js +26 -25
  93. package/dist/node_modules/echarts/lib/chart/helper/LargeLineDraw.js +42 -41
  94. package/dist/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js +9 -8
  95. package/dist/node_modules/echarts/lib/chart/helper/Line.js +8 -7
  96. package/dist/node_modules/echarts/lib/chart/helper/LinePath.js +18 -15
  97. package/dist/node_modules/echarts/lib/chart/helper/Polyline.js +13 -12
  98. package/dist/node_modules/echarts/lib/chart/helper/Symbol.js +3 -2
  99. package/dist/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js +4 -3
  100. package/dist/node_modules/echarts/lib/chart/helper/createSeriesData.js +4 -4
  101. package/dist/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js +1 -1
  102. package/dist/node_modules/echarts/lib/chart/line/LineSeries.js +17 -15
  103. package/dist/node_modules/echarts/lib/chart/line/LineView.js +201 -200
  104. package/dist/node_modules/echarts/lib/chart/lines/LinesSeries.js +64 -61
  105. package/dist/node_modules/echarts/lib/chart/lines/LinesView.js +36 -36
  106. package/dist/node_modules/echarts/lib/chart/lines/linesLayout.js +21 -20
  107. package/dist/node_modules/echarts/lib/chart/map/MapView.js +13 -12
  108. package/dist/node_modules/echarts/lib/chart/parallel/ParallelView.js +7 -6
  109. package/dist/node_modules/echarts/lib/chart/pie/PieView.js +19 -18
  110. package/dist/node_modules/echarts/lib/chart/pie/pieLayout.js +1 -1
  111. package/dist/node_modules/echarts/lib/chart/radar/RadarView.js +5 -5
  112. package/dist/node_modules/echarts/lib/chart/sankey/SankeySeries.js +27 -27
  113. package/dist/node_modules/echarts/lib/chart/sankey/SankeyView.js +6 -5
  114. package/dist/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js +3 -2
  115. package/dist/node_modules/echarts/lib/chart/sunburst/sunburstAction.js +22 -21
  116. package/dist/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js +3 -3
  117. package/dist/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js +3 -2
  118. package/dist/node_modules/echarts/lib/chart/tree/TreeView.js +13 -12
  119. package/dist/node_modules/echarts/lib/chart/tree/treeLayout.js +1 -1
  120. package/dist/node_modules/echarts/lib/chart/treemap/Breadcrumb.js +3 -2
  121. package/dist/node_modules/echarts/lib/chart/treemap/TreemapView.js +131 -130
  122. package/dist/node_modules/echarts/lib/component/axis/AxisBuilder.js +4 -4
  123. package/dist/node_modules/echarts/lib/component/axis/AxisView.js +3 -3
  124. package/dist/node_modules/echarts/lib/component/axis/axisSplitHelper.js +11 -10
  125. package/dist/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js +3 -3
  126. package/dist/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js +3 -3
  127. package/dist/node_modules/echarts/lib/component/axisPointer/globalListener.js +1 -1
  128. package/dist/node_modules/echarts/lib/component/axisPointer/viewHelper.js +3 -3
  129. package/dist/node_modules/echarts/lib/component/brush/BrushModel.js +29 -29
  130. package/dist/node_modules/echarts/lib/component/calendar/CalendarView.js +3 -2
  131. package/dist/node_modules/echarts/lib/component/dataZoom/AxisProxy.js +4 -4
  132. package/dist/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js +12 -12
  133. package/dist/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js +22 -21
  134. package/dist/node_modules/echarts/lib/component/dataZoom/helper.js +49 -41
  135. package/dist/node_modules/echarts/lib/component/dataZoom/roams.js +5 -5
  136. package/dist/node_modules/echarts/lib/component/graphic/GraphicModel.js +66 -59
  137. package/dist/node_modules/echarts/lib/component/graphic/GraphicView.js +93 -93
  138. package/dist/node_modules/echarts/lib/component/helper/BrushController.js +168 -168
  139. package/dist/node_modules/echarts/lib/component/helper/BrushTargetManager.js +95 -95
  140. package/dist/node_modules/echarts/lib/component/helper/MapDraw.js +8 -8
  141. package/dist/node_modules/echarts/lib/component/helper/listComponent.js +3 -2
  142. package/dist/node_modules/echarts/lib/component/legend/LegendModel.js +1 -1
  143. package/dist/node_modules/echarts/lib/component/legend/LegendView.js +46 -45
  144. package/dist/node_modules/echarts/lib/component/legend/legendAction.js +1 -1
  145. package/dist/node_modules/echarts/lib/component/marker/MarkAreaView.js +84 -83
  146. package/dist/node_modules/echarts/lib/component/marker/MarkLineView.js +47 -47
  147. package/dist/node_modules/echarts/lib/component/marker/MarkerModel.js +32 -32
  148. package/dist/node_modules/echarts/lib/component/marker/markerHelper.js +1 -1
  149. package/dist/node_modules/echarts/lib/component/radar/RadarView.js +24 -24
  150. package/dist/node_modules/echarts/lib/component/timeline/SliderTimelineView.js +1 -1
  151. package/dist/node_modules/echarts/lib/component/title/install.js +8 -7
  152. package/dist/node_modules/echarts/lib/component/toolbox/feature/DataView.js +80 -79
  153. package/dist/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js +10 -9
  154. package/dist/node_modules/echarts/lib/component/toolbox/feature/MagicType.js +24 -23
  155. package/dist/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js +10 -10
  156. package/dist/node_modules/echarts/lib/component/tooltip/TooltipView.js +7 -7
  157. package/dist/node_modules/echarts/lib/component/tooltip/helper.js +1 -1
  158. package/dist/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js +13 -13
  159. package/dist/node_modules/echarts/lib/component/transform/filterTransform.js +17 -17
  160. package/dist/node_modules/echarts/lib/component/transform/sortTransform.js +34 -34
  161. package/dist/node_modules/echarts/lib/component/visualMap/ContinuousView.js +3 -3
  162. package/dist/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js +4 -4
  163. package/dist/node_modules/echarts/lib/component/visualMap/PiecewiseView.js +7 -6
  164. package/dist/node_modules/echarts/lib/component/visualMap/VisualMapModel.js +4 -4
  165. package/dist/node_modules/echarts/lib/component/visualMap/preprocessor.js +1 -1
  166. package/dist/node_modules/echarts/lib/coord/axisAlignTicks.js +29 -27
  167. package/dist/node_modules/echarts/lib/coord/axisDefault.js +1 -1
  168. package/dist/node_modules/echarts/lib/coord/axisHelper.js +4 -4
  169. package/dist/node_modules/echarts/lib/coord/axisTickLabelBuilder.js +1 -1
  170. package/dist/node_modules/echarts/lib/coord/calendar/Calendar.js +7 -7
  171. package/dist/node_modules/echarts/lib/coord/cartesian/Grid.js +91 -91
  172. package/dist/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js +21 -21
  173. package/dist/node_modules/echarts/lib/coord/cartesian/prepareCustom.js +3 -3
  174. package/dist/node_modules/echarts/lib/coord/geo/Geo.js +22 -23
  175. package/dist/node_modules/echarts/lib/coord/geo/GeoJSONResource.js +3 -3
  176. package/dist/node_modules/echarts/lib/coord/geo/geoCreator.js +38 -38
  177. package/dist/node_modules/echarts/lib/coord/geo/geoSourceManager.js +2 -2
  178. package/dist/node_modules/echarts/lib/coord/geo/parseGeoJson.js +1 -1
  179. package/dist/node_modules/echarts/lib/coord/geo/prepareCustom.js +3 -3
  180. package/dist/node_modules/echarts/lib/coord/parallel/Parallel.js +4 -4
  181. package/dist/node_modules/echarts/lib/coord/polar/polarCreator.js +11 -11
  182. package/dist/node_modules/echarts/lib/coord/polar/prepareCustom.js +3 -3
  183. package/dist/node_modules/echarts/lib/coord/radar/Radar.js +1 -1
  184. package/dist/node_modules/echarts/lib/coord/radar/RadarModel.js +1 -1
  185. package/dist/node_modules/echarts/lib/coord/scaleRawExtentInfo.js +37 -37
  186. package/dist/node_modules/echarts/lib/core/Scheduler.js +22 -22
  187. package/dist/node_modules/echarts/lib/core/echarts.js +615 -559
  188. package/dist/node_modules/echarts/lib/core/impl.js +8 -7
  189. package/dist/node_modules/echarts/lib/core/task.js +19 -19
  190. package/dist/node_modules/echarts/lib/data/DataStore.js +193 -191
  191. package/dist/node_modules/echarts/lib/data/Graph.js +69 -69
  192. package/dist/node_modules/echarts/lib/data/SeriesData.js +73 -68
  193. package/dist/node_modules/echarts/lib/data/Source.js +58 -58
  194. package/dist/node_modules/echarts/lib/data/Tree.js +3 -3
  195. package/dist/node_modules/echarts/lib/data/helper/SeriesDataSchema.js +4 -4
  196. package/dist/node_modules/echarts/lib/data/helper/createDimensions.js +40 -36
  197. package/dist/node_modules/echarts/lib/data/helper/dataProvider.js +103 -92
  198. package/dist/node_modules/echarts/lib/data/helper/dataValueHelper.js +17 -17
  199. package/dist/node_modules/echarts/lib/data/helper/dimensionHelper.js +15 -15
  200. package/dist/node_modules/echarts/lib/data/helper/sourceHelper.js +3 -3
  201. package/dist/node_modules/echarts/lib/data/helper/sourceManager.js +58 -58
  202. package/dist/node_modules/echarts/lib/data/helper/transform.js +97 -95
  203. package/dist/node_modules/echarts/lib/export/api/format.js +16 -0
  204. package/dist/node_modules/echarts/lib/export/api/graphic.js +54 -0
  205. package/dist/node_modules/echarts/lib/export/api/helper.js +44 -0
  206. package/dist/node_modules/echarts/lib/export/api/number.js +21 -0
  207. package/dist/node_modules/echarts/lib/export/api/time.js +6 -0
  208. package/dist/node_modules/echarts/lib/export/api/util.js +19 -0
  209. package/dist/node_modules/echarts/lib/export/api.js +71 -0
  210. package/dist/node_modules/echarts/lib/export/charts.js +46 -0
  211. package/dist/node_modules/echarts/lib/export/components.js +62 -0
  212. package/dist/node_modules/echarts/lib/export/core.js +39 -0
  213. package/dist/node_modules/echarts/lib/export/features.js +6 -0
  214. package/dist/node_modules/echarts/lib/export/renderers.js +6 -0
  215. package/dist/node_modules/echarts/lib/label/LabelManager.js +1 -1
  216. package/dist/node_modules/echarts/lib/label/labelGuideHelper.js +4 -4
  217. package/dist/node_modules/echarts/lib/label/labelLayoutHelper.js +87 -84
  218. package/dist/node_modules/echarts/lib/label/labelStyle.js +116 -115
  219. package/dist/node_modules/echarts/lib/layout/barGrid.js +84 -84
  220. package/dist/node_modules/echarts/lib/legacy/dataSelectAction.js +27 -26
  221. package/dist/node_modules/echarts/lib/legacy/getTextRect.js +20 -0
  222. package/dist/node_modules/echarts/lib/loading/default.js +3 -2
  223. package/dist/node_modules/echarts/lib/model/Global.js +162 -157
  224. package/dist/node_modules/echarts/lib/model/Model.js +14 -12
  225. package/dist/node_modules/echarts/lib/model/OptionManager.js +36 -35
  226. package/dist/node_modules/echarts/lib/model/Series.js +52 -52
  227. package/dist/node_modules/echarts/lib/model/internalComponentCreator.js +17 -11
  228. package/dist/node_modules/echarts/lib/model/mixin/dataFormat.js +38 -37
  229. package/dist/node_modules/echarts/lib/model/referHelper.js +13 -13
  230. package/dist/node_modules/echarts/lib/preprocessor/backwardCompat.js +60 -59
  231. package/dist/node_modules/echarts/lib/preprocessor/helper/compatStyle.js +82 -81
  232. package/dist/node_modules/echarts/lib/scale/Time.js +35 -34
  233. package/dist/node_modules/echarts/lib/scale/helper.js +25 -20
  234. package/dist/node_modules/echarts/lib/util/clazz.js +62 -62
  235. package/dist/node_modules/echarts/lib/util/component.js +40 -39
  236. package/dist/node_modules/echarts/lib/util/conditionalExpression.js +73 -73
  237. package/dist/node_modules/echarts/lib/util/decal.js +54 -52
  238. package/dist/node_modules/echarts/lib/util/format.js +81 -65
  239. package/dist/node_modules/echarts/lib/util/graphic.js +22 -22
  240. package/dist/node_modules/echarts/lib/util/layout.js +29 -29
  241. package/dist/node_modules/echarts/lib/util/log.js +41 -2
  242. package/dist/node_modules/echarts/lib/util/model.js +171 -170
  243. package/dist/node_modules/echarts/lib/util/number.js +97 -90
  244. package/dist/node_modules/echarts/lib/util/states.js +170 -164
  245. package/dist/node_modules/echarts/lib/util/styleCompat.js +27 -22
  246. package/dist/node_modules/echarts/lib/util/symbol.js +3 -3
  247. package/dist/node_modules/echarts/lib/util/time.js +2 -2
  248. package/dist/node_modules/echarts/lib/view/Chart.js +22 -21
  249. package/dist/node_modules/echarts/lib/visual/VisualMapping.js +45 -44
  250. package/dist/node_modules/echarts/lib/visual/helper.js +20 -17
  251. package/dist/node_modules/echarts/lib/visual/symbol.js +4 -4
  252. package/dist/node_modules/echarts/lib/visual/visualSolution.js +64 -64
  253. package/dist/node_modules/pinyin/lib/esm/pinyin.js +2 -2
  254. package/dist/node_modules/punycode/punycode.es6.js +17 -17
  255. package/dist/node_modules/quasar/src/components/btn-toggle/QBtnToggle.js +3 -3
  256. package/dist/node_modules/quasar/src/components/chip/QChip.js +3 -3
  257. package/dist/node_modules/quasar/src/components/dialog/QDialog.js +71 -73
  258. package/dist/node_modules/quasar/src/components/field/QField.js +4 -4
  259. package/dist/node_modules/quasar/src/components/infinite-scroll/QInfiniteScroll.js +8 -8
  260. package/dist/node_modules/quasar/src/components/input/QInput.js +28 -26
  261. package/dist/node_modules/quasar/src/components/menu/QMenu.js +13 -13
  262. package/dist/node_modules/quasar/src/components/radio/QRadio.js +4 -4
  263. package/dist/node_modules/quasar/src/components/resize-observer/QResizeObserver.js +14 -14
  264. package/dist/node_modules/quasar/src/components/scroll-area/QScrollArea.js +1 -1
  265. package/dist/node_modules/quasar/src/components/scroll-observer/QScrollObserver.js +4 -4
  266. package/dist/node_modules/quasar/src/components/select/QSelect.js +22 -22
  267. package/dist/node_modules/quasar/src/components/virtual-scroll/use-virtual-scroll.js +73 -72
  268. package/dist/node_modules/quasar/src/composables/private.use-anchor/use-anchor.js +10 -10
  269. package/dist/node_modules/quasar/src/composables/private.use-field/use-field.js +6 -6
  270. package/dist/node_modules/quasar/src/composables/private.use-file/use-file-dom-props.js +6 -6
  271. package/dist/node_modules/quasar/src/composables/private.use-history/use-history.js +13 -8
  272. package/dist/node_modules/quasar/src/composables/private.use-model-toggle/use-model-toggle.js +16 -16
  273. package/dist/node_modules/quasar/src/composables/private.use-portal/use-portal.js +28 -28
  274. package/dist/node_modules/quasar/src/composables/use-form/private.use-form.js +20 -12
  275. package/dist/node_modules/quasar/src/composables/use-render-cache/use-render-cache.js +8 -8
  276. package/dist/node_modules/quasar/src/directives/close-popup/ClosePopup.js +6 -5
  277. package/dist/node_modules/quasar/src/directives/ripple/Ripple.js +17 -16
  278. package/dist/node_modules/quasar/src/directives/touch-pan/TouchPan.js +23 -22
  279. package/dist/node_modules/quasar/src/plugins/lang/Lang.js +14 -16
  280. package/dist/node_modules/quasar/src/plugins/platform/Platform.js +6 -6
  281. package/dist/node_modules/quasar/src/plugins/private.history/History.js +55 -0
  282. package/dist/node_modules/quasar/src/utils/date/date.js +70 -69
  283. package/dist/node_modules/quasar/src/utils/date/private.persian.js +107 -0
  284. package/dist/node_modules/quasar/src/utils/debounce/debounce.js +8 -8
  285. package/dist/node_modules/quasar/src/utils/dom/dom.js +50 -13
  286. package/dist/node_modules/quasar/src/utils/event/event.js +83 -51
  287. package/dist/node_modules/quasar/src/utils/format/format.js +22 -6
  288. package/dist/node_modules/quasar/src/utils/is/is.js +17 -1
  289. package/dist/node_modules/quasar/src/utils/patterns/patterns.js +8 -5
  290. package/dist/node_modules/quasar/src/utils/private.click-outside/click-outside.js +11 -9
  291. package/dist/node_modules/quasar/src/utils/private.config/instance-config.js +8 -2
  292. package/dist/node_modules/quasar/src/utils/private.config/nodes.js +26 -9
  293. package/dist/node_modules/quasar/src/utils/private.create/create.js +18 -18
  294. package/dist/node_modules/quasar/src/utils/private.inject-obj-prop/inject-obj-prop.js +10 -4
  295. package/dist/node_modules/quasar/src/utils/private.keyboard/key-composition.js +11 -6
  296. package/dist/node_modules/quasar/src/utils/private.noop-ssr-directive-transform/noop-ssr-directive-transform.js +4 -0
  297. package/dist/node_modules/quasar/src/utils/private.symbols/symbols.js +13 -3
  298. package/dist/node_modules/quasar/src/utils/private.vm/vm.js +23 -11
  299. package/dist/node_modules/quasar/src/utils/scroll/prevent-scroll.js +4 -4
  300. package/dist/node_modules/quasar/src/utils/scroll/scroll.js +52 -34
  301. package/dist/node_modules/tslib/tslib.es6.js +305 -14
  302. package/dist/node_modules/vue-router/dist/devtools-BLCumUwL.js +659 -0
  303. package/dist/node_modules/vue-router/dist/vue-router.js +919 -9
  304. package/dist/node_modules/zrender/lib/Element.js +126 -122
  305. package/dist/node_modules/zrender/lib/animation/Animator.js +7 -7
  306. package/dist/node_modules/zrender/lib/animation/requestAnimationFrame.js +6 -5
  307. package/dist/node_modules/zrender/lib/canvas/Layer.js +4 -4
  308. package/dist/node_modules/zrender/lib/canvas/Painter.js +19 -19
  309. package/dist/node_modules/zrender/lib/canvas/dashStyle.js +3 -3
  310. package/dist/node_modules/zrender/lib/canvas/graphic.js +4 -4
  311. package/dist/node_modules/zrender/lib/config.js +7 -6
  312. package/dist/node_modules/zrender/lib/contain/path.js +8 -8
  313. package/dist/node_modules/zrender/lib/contain/text.js +50 -46
  314. package/dist/node_modules/zrender/lib/core/BoundingRect.js +3 -3
  315. package/dist/node_modules/zrender/lib/core/PathProxy.js +1 -1
  316. package/dist/node_modules/zrender/lib/core/bbox.js +4 -4
  317. package/dist/node_modules/zrender/lib/core/curve.js +1 -1
  318. package/dist/node_modules/zrender/lib/core/event.js +12 -10
  319. package/dist/node_modules/zrender/lib/core/platform.js +29 -24
  320. package/dist/node_modules/zrender/lib/core/util.js +94 -91
  321. package/dist/node_modules/zrender/lib/core/vector.js +54 -34
  322. package/dist/node_modules/zrender/lib/dom/HandlerProxy.js +4 -4
  323. package/dist/node_modules/zrender/lib/graphic/Group.js +4 -4
  324. package/dist/node_modules/zrender/lib/graphic/Image.js +4 -4
  325. package/dist/node_modules/zrender/lib/graphic/Path.js +4 -4
  326. package/dist/node_modules/zrender/lib/graphic/TSpan.js +3 -3
  327. package/dist/node_modules/zrender/lib/graphic/Text.js +5 -5
  328. package/dist/node_modules/zrender/lib/graphic/helper/parseText.js +92 -87
  329. package/dist/node_modules/zrender/lib/graphic/shape/BezierCurve.js +6 -6
  330. package/dist/node_modules/zrender/lib/svg/Painter.js +43 -43
  331. package/dist/node_modules/zrender/lib/svg/cssAnimation.js +12 -12
  332. package/dist/node_modules/zrender/lib/svg/cssEmphasis.js +16 -16
  333. package/dist/node_modules/zrender/lib/svg/domapi.js +34 -10
  334. package/dist/node_modules/zrender/lib/svg/graphic.js +67 -67
  335. package/dist/node_modules/zrender/lib/svg/helper.js +57 -43
  336. package/dist/node_modules/zrender/lib/svg/mapStyleToAttrs.js +39 -39
  337. package/dist/node_modules/zrender/lib/svg/patch.js +26 -26
  338. package/dist/node_modules/zrender/lib/tool/color.js +87 -69
  339. package/dist/node_modules/zrender/lib/tool/morphPath.js +136 -129
  340. package/dist/node_modules/zrender/lib/tool/parseSVG.js +12 -12
  341. package/dist/node_modules/zrender/lib/zrender.js +106 -90
  342. package/dist/src/api/algorithm/alova/implement/comprehensiveAlgorithm.js +12 -16
  343. package/dist/src/api/algorithm/alova/implement/index.js +13 -0
  344. package/dist/src/api/algorithm/alova/implement/inquiriesAlgorithm.js +4 -7
  345. package/dist/src/api/algorithm/alova/implement/inspectionsAlgorithm.js +7 -10
  346. package/dist/src/api/algorithm/alova/implement/lisemsAlgorithm.js +6 -9
  347. package/dist/src/api/algorithm/alova/implement/pulsationsAlgorithm.js +7 -10
  348. package/dist/src/api/algorithm/alova/index.js +14 -21
  349. package/dist/src/api/algorithm/comprehensiveAlgorithm.js +5 -6
  350. package/dist/src/api/authorization/alova/createApis.js +1 -7
  351. package/dist/src/api/authorization/alova/globals.d.ts +331 -250
  352. package/dist/src/api/authorization/alova/implement/index.js +4 -0
  353. package/dist/src/api/authorization/alova/index.d.ts +1 -1
  354. package/dist/src/api/authorization/alova/index.js +7 -6
  355. package/dist/src/api/check/alova/createApis.js +1 -7
  356. package/dist/src/api/check/alova/globals.d.ts +1227 -1126
  357. package/dist/src/api/check/alova/implement/index.js +5 -0
  358. package/dist/src/api/check/alova/index.d.ts +1 -1
  359. package/dist/src/api/check/alova/index.js +9 -11
  360. package/dist/src/api/check/check.js +2 -2
  361. package/dist/src/api/config/index.d.ts +1 -0
  362. package/dist/src/api/config/index.js +3 -1
  363. package/dist/src/api/doctor/alova/createApis.js +1 -7
  364. package/dist/src/api/doctor/alova/globals.d.ts +510 -419
  365. package/dist/src/api/doctor/alova/implement/index.js +4 -0
  366. package/dist/src/api/doctor/alova/index.d.ts +1 -1
  367. package/dist/src/api/doctor/alova/index.js +4 -4
  368. package/dist/src/api/index.d.ts +1 -0
  369. package/dist/src/api/index.js +30 -0
  370. package/dist/src/api/manager/alova/apiDefinitions.d.ts +62 -0
  371. package/dist/src/api/manager/alova/apiDefinitions.js +50 -0
  372. package/dist/src/api/manager/alova/createApis.d.ts +10 -0
  373. package/dist/src/api/manager/alova/createApis.js +49 -0
  374. package/dist/src/api/manager/alova/globals.d.ts +4890 -0
  375. package/dist/src/api/manager/alova/implement/department.d.ts +7 -0
  376. package/dist/src/api/manager/alova/implement/department.js +44 -0
  377. package/dist/src/api/manager/alova/implement/division.d.ts +7 -0
  378. package/dist/src/api/manager/alova/implement/division.js +44 -0
  379. package/dist/src/api/manager/alova/implement/hospital.d.ts +7 -0
  380. package/dist/src/api/manager/alova/implement/hospital.js +44 -0
  381. package/dist/src/api/manager/alova/implement/index.d.ts +3 -0
  382. package/dist/src/api/manager/alova/implement/index.js +8 -0
  383. package/dist/src/api/manager/alova/index.d.ts +6 -0
  384. package/dist/src/api/manager/alova/index.js +19 -0
  385. package/dist/src/api/manager/department.d.ts +30 -0
  386. package/dist/src/api/manager/department.js +35 -0
  387. package/dist/src/api/manager/division.d.ts +30 -0
  388. package/dist/src/api/manager/division.js +34 -0
  389. package/dist/src/api/manager/hospital.d.ts +32 -0
  390. package/dist/src/api/manager/hospital.js +36 -0
  391. package/dist/src/api/manager/index.d.ts +4 -0
  392. package/dist/src/api/manager/index.js +17 -0
  393. package/dist/src/api/metric/alova/implement/index.js +4 -0
  394. package/dist/src/api/metric/alova/index.js +1 -0
  395. package/dist/src/api/metric/index.js +5 -4
  396. package/dist/src/api/oauth/alova/createApis.js +1 -7
  397. package/dist/src/api/oauth/alova/globals.d.ts +403 -312
  398. package/dist/src/api/oauth/alova/implement/index.js +4 -0
  399. package/dist/src/api/oauth/alova/index.d.ts +1 -1
  400. package/dist/src/api/oauth/alova/index.js +12 -11
  401. package/dist/src/api/outpatient/alova/createApis.js +1 -7
  402. package/dist/src/api/outpatient/alova/globals.d.ts +634 -543
  403. package/dist/src/api/outpatient/alova/implement/index.js +4 -0
  404. package/dist/src/api/outpatient/alova/index.d.ts +1 -1
  405. package/dist/src/api/outpatient/alova/index.js +8 -9
  406. package/dist/src/api/patient/alova/createApis.js +1 -7
  407. package/dist/src/api/patient/alova/globals.d.ts +1627 -1480
  408. package/dist/src/api/patient/alova/implement/index.js +16 -0
  409. package/dist/src/api/patient/alova/implement/meta.js +44 -44
  410. package/dist/src/api/patient/alova/index.d.ts +1 -1
  411. package/dist/src/api/patient/alova/index.js +10 -14
  412. package/dist/src/api/patient/index.js +23 -22
  413. package/dist/src/api/patient/meta.d.ts +12 -0
  414. package/dist/src/api/patient/meta.js +100 -98
  415. package/dist/src/api/prescription/alova/apiDefinitions.d.ts +1 -0
  416. package/dist/src/api/prescription/alova/apiDefinitions.js +1 -0
  417. package/dist/src/api/prescription/alova/createApis.js +1 -7
  418. package/dist/src/api/prescription/alova/globals.d.ts +959 -812
  419. package/dist/src/api/prescription/alova/implement/index.js +6 -0
  420. package/dist/src/api/prescription/alova/index.d.ts +1 -1
  421. package/dist/src/api/prescription/alova/index.js +4 -4
  422. package/dist/src/api/scientist/alova/createApis.js +1 -7
  423. package/dist/src/api/scientist/alova/globals.d.ts +406 -315
  424. package/dist/src/api/scientist/alova/implement/index.js +4 -0
  425. package/dist/src/api/scientist/alova/index.d.ts +1 -1
  426. package/dist/src/api/scientist/alova/index.js +7 -8
  427. package/dist/src/components/core/TakeImageCollected.vue.js +2 -2
  428. package/dist/src/components/core/TakeImageCollected.vue2.js +82 -74
  429. package/dist/src/components/tcm/index.d.ts +1 -0
  430. package/dist/src/components/tcm/index.js +28 -0
  431. package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue.js +1 -1
  432. package/dist/src/components/tcm/inquirise/ComplaintViewCollected.vue2.js +42 -46
  433. package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue.js +1 -1
  434. package/dist/src/components/tcm/inquirise/ComplaintsRecognitionCollected.vue2.js +19 -23
  435. package/dist/src/components/tcm/inquirise/symptoms.js +33 -9
  436. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue.d.ts +7 -0
  437. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue.js +7 -0
  438. package/dist/src/components/tcm/inspections/AppendixMetaCollected.vue2.js +26 -0
  439. package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue.js +2 -2
  440. package/dist/src/components/tcm/inspections/CheckSceneMetaCollected.vue2.js +13 -11
  441. package/dist/src/components/tcm/inspections/FaceMetaCollected.vue.js +2 -2
  442. package/dist/src/components/tcm/inspections/FaceMetaCollected.vue2.js +14 -16
  443. package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue.js +1 -1
  444. package/dist/src/components/tcm/inspections/InspectionDeviceTakeImageCollected.vue2.js +141 -95
  445. package/dist/src/components/tcm/inspections/SceneMetaCollected.vue.js +4 -4
  446. package/dist/src/components/tcm/inspections/SceneMetaCollected.vue2.js +19 -19
  447. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue.d.ts +3 -3
  448. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue.js +2 -2
  449. package/dist/src/components/tcm/inspections/TongueMetaCollected.vue2.js +30 -13
  450. package/dist/src/components/tcm/inspections/index.d.ts +1 -0
  451. package/dist/src/components/tcm/lisems/EPPCollected.vue.js +1 -1
  452. package/dist/src/components/tcm/lisems/EPPCollected.vue2.js +3 -2
  453. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue.d.ts +1 -1
  454. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue.js +5 -833
  455. package/dist/src/components/tcm/lisems/EcgAndPcgCollect.vue2.js +816 -2
  456. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue.d.ts +1 -1
  457. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue.js +5 -148
  458. package/dist/src/components/tcm/palpations/OnePulsationCollect.vue2.js +147 -2
  459. package/dist/src/components/tcm/palpations/PulsationCollect.vue.js +2 -2
  460. package/dist/src/components/tcm/palpations/PulsationCollect.vue2.js +30 -32
  461. package/dist/src/index.js +65 -58
  462. package/dist/src/proto/index.js +10 -0
  463. package/dist/src/proto/types/Images_pb.js +7 -6
  464. package/dist/src/proto/types/WaveMap_pb.js +4 -3
  465. package/dist/src/util/helper.js +38 -2
  466. package/dist/src/util/number.js +64 -25
  467. package/dist/src/util/string.js +51 -5
  468. package/dist/web-core-tcm.css +1 -1
  469. package/package.json +5 -3
  470. package/dist/node_modules/vue-router/dist/devtools-EWN81iOl.js +0 -19
@@ -3,1515 +3,1662 @@ import { $$userConfigMap, alovaInstance } from './index';
3
3
  import { default as apiDefinitions } from './apiDefinitions';
4
4
  type CollapsedAlova = typeof alovaInstance;
5
5
  type UserMethodConfigMap = typeof $$userConfigMap;
6
- type Alova2MethodConfig<Responded> = CollapsedAlova extends Alova<AlovaGenerics<any, any, infer RequestConfig, infer Response, infer ResponseHeader, infer L1Cache, infer L2Cache, infer SE>> ? Omit<AlovaMethodCreateConfig<AlovaGenerics<Responded, any, RequestConfig, Response, ResponseHeader, L1Cache, L2Cache, SE>, any, Responded>, 'params'> : never;
7
- type ExtractUserDefinedTransformed<DefinitionKey extends keyof typeof apiDefinitions, Default> = DefinitionKey extends keyof UserMethodConfigMap ? UserMethodConfigMap[DefinitionKey]['transform'] extends (...args: any[]) => any ? Awaited<ReturnType<UserMethodConfigMap[DefinitionKey]['transform']>> : Default : Default;
8
- type Alova2Method<Responded, DefinitionKey extends keyof typeof apiDefinitions, CurrentConfig extends Alova2MethodConfig<any>> = CollapsedAlova extends Alova<AlovaGenerics<any, any, infer RequestConfig, infer Response, infer ResponseHeader, infer L1Cache, infer L2Cache, infer SE>> ? Method<AlovaGenerics<CurrentConfig extends undefined ? ExtractUserDefinedTransformed<DefinitionKey, Responded> : CurrentConfig['transform'] extends (...args: any[]) => any ? Awaited<ReturnType<CurrentConfig['transform']>> : ExtractUserDefinedTransformed<DefinitionKey, Responded>, any, RequestConfig, Response, ResponseHeader, L1Cache, L2Cache, SE>> : never;
6
+
7
+ type Alova2MethodConfig<Responded> =
8
+ CollapsedAlova extends Alova<
9
+ AlovaGenerics<
10
+ any,
11
+ any,
12
+ infer RequestConfig,
13
+ infer Response,
14
+ infer ResponseHeader,
15
+ infer L1Cache,
16
+ infer L2Cache,
17
+ infer SE
18
+ >
19
+ >
20
+ ? Omit<
21
+ AlovaMethodCreateConfig<
22
+ AlovaGenerics<Responded, any, RequestConfig, Response, ResponseHeader, L1Cache, L2Cache, SE>,
23
+ any,
24
+ Responded
25
+ >,
26
+ 'params'
27
+ >
28
+ : never;
29
+
30
+ // Extract the return type of transform function that define in $$userConfigMap, if it not exists, use the default type.
31
+ type ExtractUserDefinedTransformed<
32
+ DefinitionKey extends keyof typeof apiDefinitions,
33
+ Default
34
+ > = DefinitionKey extends keyof UserMethodConfigMap
35
+ ? UserMethodConfigMap[DefinitionKey]['transform'] extends (...args: any[]) => any
36
+ ? Awaited<ReturnType<UserMethodConfigMap[DefinitionKey]['transform']>>
37
+ : Default
38
+ : Default;
39
+ type Alova2Method<
40
+ Responded,
41
+ DefinitionKey extends keyof typeof apiDefinitions,
42
+ CurrentConfig extends Alova2MethodConfig<any>
43
+ > =
44
+ CollapsedAlova extends Alova<
45
+ AlovaGenerics<
46
+ any,
47
+ any,
48
+ infer RequestConfig,
49
+ infer Response,
50
+ infer ResponseHeader,
51
+ infer L1Cache,
52
+ infer L2Cache,
53
+ infer SE
54
+ >
55
+ >
56
+ ? Method<
57
+ AlovaGenerics<
58
+ CurrentConfig extends undefined
59
+ ? ExtractUserDefinedTransformed<DefinitionKey, Responded>
60
+ : CurrentConfig['transform'] extends (...args: any[]) => any
61
+ ? Awaited<ReturnType<CurrentConfig['transform']>>
62
+ : ExtractUserDefinedTransformed<DefinitionKey, Responded>,
63
+ any,
64
+ RequestConfig,
65
+ Response,
66
+ ResponseHeader,
67
+ L1Cache,
68
+ L2Cache,
69
+ SE
70
+ >
71
+ >
72
+ : never;
73
+
9
74
  export interface AnnotationState {
10
- value?: string;
11
- actor?: string;
12
- timestamp?: string;
75
+ value?: string;
76
+ actor?: string;
77
+ timestamp?: string;
13
78
  }
14
79
  export interface TagState {
15
- key?: string;
16
- annotationsState?: AnnotationState[];
80
+ key?: string;
81
+ annotationsState?: AnnotationState[];
17
82
  }
18
83
  export interface PatientState {
19
- id?: string;
20
- doctorId?: string;
21
- name?: string;
22
- createdTimestamp?: string;
23
- updatedTimestamp?: string;
24
- identity?: string;
25
- gender?: string;
26
- phoneNumber?: string;
27
- birthdate?: string;
28
- remarks?: string[];
29
- tagsState?: TagState[];
30
- mainSymptom?: string;
84
+ id?: string;
85
+ doctorId?: string;
86
+ name?: string;
87
+ createdTimestamp?: string;
88
+ updatedTimestamp?: string;
89
+ identity?: string;
90
+ gender?: string;
91
+ phoneNumber?: string;
92
+ birthdate?: string;
93
+ remarks?: string[];
94
+ tagsState?: TagState[];
95
+ mainSymptom?: string;
31
96
  }
32
97
  export interface QueryPatientStateByExactMatchRequest {
33
- id?: string[];
34
- doctorId?: string[];
35
- name?: string[];
36
- phoneNumber?: string[];
37
- gender?: string[];
38
- identityNumber?: string[];
39
- pageSize?: number;
40
- page?: number;
41
- startTime?: number;
42
- endTime?: number;
43
- sort?: string;
98
+ ids?: string[];
99
+ doctorIds?: string[];
100
+ names?: string[];
101
+ phoneNumbers?: string[];
102
+ genders?: string[];
103
+ identityNumbers?: string[];
104
+ mainSymptoms?: string[];
105
+ pageSize?: number;
106
+ page?: number;
107
+ startTime?: number;
108
+ endTime?: number;
109
+ sort?: string;
44
110
  }
45
111
  export interface QueryMetaWithPatientStateRequest {
46
- ownerState?: PatientState;
47
- type?: string;
48
- pageSize?: number;
49
- page?: number;
50
- startTime?: string;
51
- endTime?: string;
52
- sort?: string;
53
- patientStartBirthdate?: string;
54
- patientEndBirthdate?: string;
55
- tagsState?: TagState[];
112
+ ownerState?: PatientState;
113
+ type?: string;
114
+ pageSize?: number;
115
+ page?: number;
116
+ startTime?: string;
117
+ endTime?: string;
118
+ sort?: string;
119
+ patientStartBirthdate?: string;
120
+ patientEndBirthdate?: string;
121
+ tagsState?: TagState[];
56
122
  }
57
123
  export interface QueryMetaStateByExactMatchRequest {
58
- id?: string[];
59
- ownerState?: PatientState[];
60
- type?: string[];
61
- pageSize?: number;
62
- page?: number;
63
- startTime?: string;
64
- endTime?: string;
65
- sort?: string;
124
+ ids?: string[];
125
+ ownerStates?: PatientState[];
126
+ types?: string[];
127
+ pageSize?: number;
128
+ page?: number;
129
+ startTime?: string;
130
+ endTime?: string;
131
+ sort?: string;
66
132
  }
67
133
  export interface QueryMetaStateRequest {
68
- ownerState?: PatientState;
69
- type?: string;
70
- pageSize?: number;
71
- page?: number;
72
- startTime?: string;
73
- endTime?: string;
74
- sort?: string;
134
+ ownerState?: PatientState;
135
+ type?: string;
136
+ pageSize?: number;
137
+ page?: number;
138
+ startTime?: string;
139
+ endTime?: string;
140
+ sort?: string;
75
141
  }
76
142
  export interface AgeDistribute {
77
- age?: number;
78
- count?: number;
143
+ age?: number;
144
+ count?: number;
79
145
  }
80
146
  export interface GenderDistribute {
81
- gender?: string;
82
- count?: number;
147
+ gender?: string;
148
+ count?: number;
83
149
  }
84
150
  export interface DateDistribute {
85
- date?: string;
86
- count?: number;
151
+ date?: string;
152
+ count?: number;
87
153
  }
88
154
  export interface MetaState {
89
- id?: string;
90
- ownerState?: PatientState;
91
- type?: string;
92
- tagsState?: TagState[];
93
- createdTimestamp?: string;
94
- updatedTimestamp?: string;
155
+ id?: string;
156
+ ownerState?: PatientState;
157
+ type?: string;
158
+ tagsState?: TagState[];
159
+ createdTimestamp?: string;
160
+ updatedTimestamp?: string;
95
161
  }
96
162
  export interface SortObject {
97
- empty?: boolean;
98
- sorted?: boolean;
99
- unsorted?: boolean;
163
+ empty?: boolean;
164
+ sorted?: boolean;
165
+ unsorted?: boolean;
100
166
  }
101
167
  export interface PageableObject {
102
- offset?: number;
103
- sort?: SortObject;
104
- pageSize?: number;
105
- paged?: boolean;
106
- pageNumber?: number;
107
- unpaged?: boolean;
168
+ offset?: number;
169
+ sort?: SortObject;
170
+ pageSize?: number;
171
+ paged?: boolean;
172
+ pageNumber?: number;
173
+ unpaged?: boolean;
108
174
  }
109
175
  export interface PagePatientState {
110
- totalPages?: number;
111
- totalElements?: number;
112
- size?: number;
113
- content?: PatientState[];
114
- number?: number;
115
- sort?: SortObject;
116
- first?: boolean;
117
- last?: boolean;
118
- numberOfElements?: number;
119
- pageable?: PageableObject;
120
- empty?: boolean;
176
+ totalPages?: number;
177
+ totalElements?: number;
178
+ size?: number;
179
+ content?: PatientState[];
180
+ number?: number;
181
+ sort?: SortObject;
182
+ numberOfElements?: number;
183
+ pageable?: PageableObject;
184
+ first?: boolean;
185
+ last?: boolean;
186
+ empty?: boolean;
121
187
  }
122
188
  export interface PageMetaState {
123
- totalPages?: number;
124
- totalElements?: number;
125
- size?: number;
126
- content?: MetaState[];
127
- number?: number;
128
- sort?: SortObject;
129
- first?: boolean;
130
- last?: boolean;
131
- numberOfElements?: number;
132
- pageable?: PageableObject;
133
- empty?: boolean;
189
+ totalPages?: number;
190
+ totalElements?: number;
191
+ size?: number;
192
+ content?: MetaState[];
193
+ number?: number;
194
+ sort?: SortObject;
195
+ numberOfElements?: number;
196
+ pageable?: PageableObject;
197
+ first?: boolean;
198
+ last?: boolean;
199
+ empty?: boolean;
134
200
  }
135
201
  declare global {
136
- interface patientApi {
137
- metaStateRestful: {
138
- /**
139
- * ---
140
- *
141
- * [GET]
142
- *
143
- * **path:** /患者/服务/元/{id}
144
- *
145
- * ---
146
- *
147
- * **Path Parameters**
148
- * ```ts
149
- * type PathParameters = {
150
- * id: string
151
- * }
152
- * ```
153
- *
154
- * ---
155
- *
156
- * **Response**
157
- * ```ts
158
- * type Response = {
159
- * id?: string
160
- * ownerState?: {
161
- * id?: string
162
- * doctorId?: string
163
- * name?: string
164
- * createdTimestamp?: string
165
- * updatedTimestamp?: string
166
- * identity?: string
167
- * gender?: string
168
- * phoneNumber?: string
169
- * birthdate?: string
170
- * // [items] start
171
- * // [items] end
172
- * remarks?: string[]
173
- * // [items] start
174
- * // [items] end
175
- * tagsState?: Array<{
176
- * key?: string
177
- * // [items] start
178
- * // [items] end
179
- * annotationsState?: Array<{
180
- * value?: string
181
- * actor?: string
182
- * timestamp?: string
183
- * }>
184
- * }>
185
- * mainSymptom?: string
186
- * }
187
- * type?: string
188
- * // [items] start
189
- * // [items] end
190
- * tagsState?: Array<{
191
- * key?: string
192
- * // [items] start
193
- * // [items] end
194
- * annotationsState?: Array<{
195
- * value?: string
196
- * actor?: string
197
- * timestamp?: string
198
- * }>
199
- * }>
200
- * createdTimestamp?: string
201
- * updatedTimestamp?: string
202
- * }
203
- * ```
204
- */
205
- getMetaState<Config extends Alova2MethodConfig<MetaState> & {
206
- pathParams: {
207
- id: string;
208
- };
209
- }>(config: Config): Alova2Method<MetaState, 'metaStateRestful.getMetaState', Config>;
210
- /**
211
- * ---
212
- *
213
- * [PUT]
214
- *
215
- * **path:** /患者/服务/元/{id}
216
- *
217
- * ---
218
- *
219
- * **Path Parameters**
220
- * ```ts
221
- * type PathParameters = {
222
- * id: string
223
- * }
224
- * ```
225
- *
226
- * ---
227
- *
228
- * **RequestBody**
229
- * ```ts
230
- * type RequestBody = {
231
- * id?: string
232
- * ownerState?: {
233
- * id?: string
234
- * doctorId?: string
235
- * name?: string
236
- * createdTimestamp?: string
237
- * updatedTimestamp?: string
238
- * identity?: string
239
- * gender?: string
240
- * phoneNumber?: string
241
- * birthdate?: string
242
- * // [items] start
243
- * // [items] end
244
- * remarks?: string[]
245
- * // [items] start
246
- * // [items] end
247
- * tagsState?: Array<{
248
- * key?: string
249
- * // [items] start
250
- * // [items] end
251
- * annotationsState?: Array<{
252
- * value?: string
253
- * actor?: string
254
- * timestamp?: string
255
- * }>
256
- * }>
257
- * mainSymptom?: string
258
- * }
259
- * type?: string
260
- * // [items] start
261
- * // [items] end
262
- * tagsState?: Array<{
263
- * key?: string
264
- * // [items] start
265
- * // [items] end
266
- * annotationsState?: Array<{
267
- * value?: string
268
- * actor?: string
269
- * timestamp?: string
270
- * }>
271
- * }>
272
- * createdTimestamp?: string
273
- * updatedTimestamp?: string
274
- * }
275
- * ```
276
- *
277
- * ---
278
- *
279
- * **Response**
280
- * ```ts
281
- * type Response = {
282
- * id?: string
283
- * ownerState?: {
284
- * id?: string
285
- * doctorId?: string
286
- * name?: string
287
- * createdTimestamp?: string
288
- * updatedTimestamp?: string
289
- * identity?: string
290
- * gender?: string
291
- * phoneNumber?: string
292
- * birthdate?: string
293
- * // [items] start
294
- * // [items] end
295
- * remarks?: string[]
296
- * // [items] start
297
- * // [items] end
298
- * tagsState?: Array<{
299
- * key?: string
300
- * // [items] start
301
- * // [items] end
302
- * annotationsState?: Array<{
303
- * value?: string
304
- * actor?: string
305
- * timestamp?: string
306
- * }>
307
- * }>
308
- * mainSymptom?: string
309
- * }
310
- * type?: string
311
- * // [items] start
312
- * // [items] end
313
- * tagsState?: Array<{
314
- * key?: string
315
- * // [items] start
316
- * // [items] end
317
- * annotationsState?: Array<{
318
- * value?: string
319
- * actor?: string
320
- * timestamp?: string
321
- * }>
322
- * }>
323
- * createdTimestamp?: string
324
- * updatedTimestamp?: string
325
- * }
326
- * ```
327
- */
328
- putMetaState<Config extends Alova2MethodConfig<MetaState> & {
329
- pathParams: {
330
- id: string;
331
- };
332
- data: MetaState;
333
- }>(config: Config): Alova2Method<MetaState, 'metaStateRestful.putMetaState', Config>;
334
- /**
335
- * ---
336
- *
337
- * [DELETE]
338
- *
339
- * **path:** /患者/服务/元/{id}
340
- *
341
- * ---
342
- *
343
- * **Path Parameters**
344
- * ```ts
345
- * type PathParameters = {
346
- * id: string
347
- * }
348
- * ```
349
- *
350
- * ---
351
- *
352
- * **Response**
353
- * ```ts
354
- * type Response = null
355
- * ```
356
- */
357
- deleteMetaState<Config extends Alova2MethodConfig<null> & {
358
- pathParams: {
359
- id: string;
360
- };
361
- }>(config: Config): Alova2Method<null, 'metaStateRestful.deleteMetaState', Config>;
362
- /**
363
- * ---
364
- *
365
- * [POST] 创建元状态记录
366
- *
367
- * **path:** /患者/服务/元
368
- *
369
- * ---
370
- *
371
- * **Query Parameters**
372
- * ```ts
373
- * type QueryParameters = {
374
- * ownerId: string
375
- * type: string
376
- * }
377
- * ```
378
- *
379
- * ---
380
- *
381
- * **RequestBody**
382
- * ```ts
383
- * type RequestBody = Blob
384
- * ```
385
- *
386
- * ---
387
- *
388
- * **Response**
389
- * ```ts
390
- * type Response = {
391
- * id?: string
392
- * ownerState?: {
393
- * id?: string
394
- * doctorId?: string
395
- * name?: string
396
- * createdTimestamp?: string
397
- * updatedTimestamp?: string
398
- * identity?: string
399
- * gender?: string
400
- * phoneNumber?: string
401
- * birthdate?: string
402
- * // [items] start
403
- * // [items] end
404
- * remarks?: string[]
405
- * // [items] start
406
- * // [items] end
407
- * tagsState?: Array<{
408
- * key?: string
409
- * // [items] start
410
- * // [items] end
411
- * annotationsState?: Array<{
412
- * value?: string
413
- * actor?: string
414
- * timestamp?: string
415
- * }>
416
- * }>
417
- * mainSymptom?: string
418
- * }
419
- * type?: string
420
- * // [items] start
421
- * // [items] end
422
- * tagsState?: Array<{
423
- * key?: string
424
- * // [items] start
425
- * // [items] end
426
- * annotationsState?: Array<{
427
- * value?: string
428
- * actor?: string
429
- * timestamp?: string
430
- * }>
431
- * }>
432
- * createdTimestamp?: string
433
- * updatedTimestamp?: string
434
- * }
435
- * ```
436
- */
437
- postMetaState<Config extends Alova2MethodConfig<MetaState> & {
438
- params: {
439
- ownerId: string;
440
- type: string;
441
- };
442
- data: Blob;
443
- }>(config: Config): Alova2Method<MetaState, 'metaStateRestful.postMetaState', Config>;
444
- /**
445
- * ---
446
- *
447
- * [POST]
448
- *
449
- * **path:** /患者/服务/元/级联查询
450
- *
451
- * ---
452
- *
453
- * **RequestBody**
454
- * ```ts
455
- * type RequestBody = {
456
- * ownerState?: {
457
- * id?: string
458
- * doctorId?: string
459
- * name?: string
460
- * createdTimestamp?: string
461
- * updatedTimestamp?: string
462
- * identity?: string
463
- * gender?: string
464
- * phoneNumber?: string
465
- * birthdate?: string
466
- * // [items] start
467
- * // [items] end
468
- * remarks?: string[]
469
- * // [items] start
470
- * // [items] end
471
- * tagsState?: Array<{
472
- * key?: string
473
- * // [items] start
474
- * // [items] end
475
- * annotationsState?: Array<{
476
- * value?: string
477
- * actor?: string
478
- * timestamp?: string
479
- * }>
480
- * }>
481
- * mainSymptom?: string
482
- * }
483
- * type?: string
484
- * pageSize?: number
485
- * page?: number
486
- * startTime?: string
487
- * endTime?: string
488
- * sort?: string
489
- * patientStartBirthdate?: string
490
- * patientEndBirthdate?: string
491
- * // [items] start
492
- * // [items] end
493
- * tagsState?: Array<{
494
- * key?: string
495
- * // [items] start
496
- * // [items] end
497
- * annotationsState?: Array<{
498
- * value?: string
499
- * actor?: string
500
- * timestamp?: string
501
- * }>
502
- * }>
503
- * }
504
- * ```
505
- *
506
- * ---
507
- *
508
- * **Response**
509
- * ```ts
510
- * type Response = {
511
- * totalPages?: number
512
- * totalElements?: number
513
- * size?: number
514
- * // [items] start
515
- * // [items] end
516
- * content?: Array<{
517
- * id?: string
518
- * ownerState?: {
519
- * id?: string
520
- * doctorId?: string
521
- * name?: string
522
- * createdTimestamp?: string
523
- * updatedTimestamp?: string
524
- * identity?: string
525
- * gender?: string
526
- * phoneNumber?: string
527
- * birthdate?: string
528
- * // [items] start
529
- * // [items] end
530
- * remarks?: string[]
531
- * // [items] start
532
- * // [items] end
533
- * tagsState?: Array<{
534
- * key?: string
535
- * // [items] start
536
- * // [items] end
537
- * annotationsState?: Array<{
538
- * value?: string
539
- * actor?: string
540
- * timestamp?: string
541
- * }>
542
- * }>
543
- * mainSymptom?: string
544
- * }
545
- * type?: string
546
- * // [items] start
547
- * // [items] end
548
- * tagsState?: Array<{
549
- * key?: string
550
- * // [items] start
551
- * // [items] end
552
- * annotationsState?: Array<{
553
- * value?: string
554
- * actor?: string
555
- * timestamp?: string
556
- * }>
557
- * }>
558
- * createdTimestamp?: string
559
- * updatedTimestamp?: string
560
- * }>
561
- * number?: number
562
- * sort?: {
563
- * empty?: boolean
564
- * sorted?: boolean
565
- * unsorted?: boolean
566
- * }
567
- * first?: boolean
568
- * last?: boolean
569
- * numberOfElements?: number
570
- * pageable?: {
571
- * offset?: number
572
- * sort?: {
573
- * empty?: boolean
574
- * sorted?: boolean
575
- * unsorted?: boolean
576
- * }
577
- * pageSize?: number
578
- * paged?: boolean
579
- * pageNumber?: number
580
- * unpaged?: boolean
581
- * }
582
- * empty?: boolean
583
- * }
584
- * ```
585
- */
586
- queryMetaAndPatientState<Config extends Alova2MethodConfig<PageMetaState> & {
587
- data: QueryMetaWithPatientStateRequest;
588
- }>(config: Config): Alova2Method<PageMetaState, 'metaStateRestful.queryMetaAndPatientState', Config>;
589
- /**
590
- * ---
591
- *
592
- * [POST]
593
- *
594
- * **path:** /患者/服务/元/精确匹配
595
- *
596
- * ---
597
- *
598
- * **RequestBody**
599
- * ```ts
600
- * type RequestBody = {
601
- * // [items] start
602
- * // [items] end
603
- * id?: string[]
604
- * // [items] start
605
- * // [items] end
606
- * ownerState?: Array<{
607
- * id?: string
608
- * doctorId?: string
609
- * name?: string
610
- * createdTimestamp?: string
611
- * updatedTimestamp?: string
612
- * identity?: string
613
- * gender?: string
614
- * phoneNumber?: string
615
- * birthdate?: string
616
- * // [items] start
617
- * // [items] end
618
- * remarks?: string[]
619
- * // [items] start
620
- * // [items] end
621
- * tagsState?: Array<{
622
- * key?: string
623
- * // [items] start
624
- * // [items] end
625
- * annotationsState?: Array<{
626
- * value?: string
627
- * actor?: string
628
- * timestamp?: string
629
- * }>
630
- * }>
631
- * mainSymptom?: string
632
- * }>
633
- * // [items] start
634
- * // [items] end
635
- * type?: string[]
636
- * pageSize?: number
637
- * page?: number
638
- * startTime?: string
639
- * endTime?: string
640
- * sort?: string
641
- * }
642
- * ```
643
- *
644
- * ---
645
- *
646
- * **Response**
647
- * ```ts
648
- * type Response = {
649
- * totalPages?: number
650
- * totalElements?: number
651
- * size?: number
652
- * // [items] start
653
- * // [items] end
654
- * content?: Array<{
655
- * id?: string
656
- * ownerState?: {
657
- * id?: string
658
- * doctorId?: string
659
- * name?: string
660
- * createdTimestamp?: string
661
- * updatedTimestamp?: string
662
- * identity?: string
663
- * gender?: string
664
- * phoneNumber?: string
665
- * birthdate?: string
666
- * // [items] start
667
- * // [items] end
668
- * remarks?: string[]
669
- * // [items] start
670
- * // [items] end
671
- * tagsState?: Array<{
672
- * key?: string
673
- * // [items] start
674
- * // [items] end
675
- * annotationsState?: Array<{
676
- * value?: string
677
- * actor?: string
678
- * timestamp?: string
679
- * }>
680
- * }>
681
- * mainSymptom?: string
682
- * }
683
- * type?: string
684
- * // [items] start
685
- * // [items] end
686
- * tagsState?: Array<{
687
- * key?: string
688
- * // [items] start
689
- * // [items] end
690
- * annotationsState?: Array<{
691
- * value?: string
692
- * actor?: string
693
- * timestamp?: string
694
- * }>
695
- * }>
696
- * createdTimestamp?: string
697
- * updatedTimestamp?: string
698
- * }>
699
- * number?: number
700
- * sort?: {
701
- * empty?: boolean
702
- * sorted?: boolean
703
- * unsorted?: boolean
704
- * }
705
- * first?: boolean
706
- * last?: boolean
707
- * numberOfElements?: number
708
- * pageable?: {
709
- * offset?: number
710
- * sort?: {
711
- * empty?: boolean
712
- * sorted?: boolean
713
- * unsorted?: boolean
714
- * }
715
- * pageSize?: number
716
- * paged?: boolean
717
- * pageNumber?: number
718
- * unpaged?: boolean
719
- * }
720
- * empty?: boolean
721
- * }
722
- * ```
723
- */
724
- queryMetaStateByExactMatch<Config extends Alova2MethodConfig<PageMetaState> & {
725
- data: QueryMetaStateByExactMatchRequest;
726
- }>(config: Config): Alova2Method<PageMetaState, 'metaStateRestful.queryMetaStateByExactMatch', Config>;
727
- /**
728
- * ---
729
- *
730
- * [POST]
731
- *
732
- * **path:** /患者/服务/元/条件查询
733
- *
734
- * ---
735
- *
736
- * **RequestBody**
737
- * ```ts
738
- * type RequestBody = {
739
- * ownerState?: {
740
- * id?: string
741
- * doctorId?: string
742
- * name?: string
743
- * createdTimestamp?: string
744
- * updatedTimestamp?: string
745
- * identity?: string
746
- * gender?: string
747
- * phoneNumber?: string
748
- * birthdate?: string
749
- * // [items] start
750
- * // [items] end
751
- * remarks?: string[]
752
- * // [items] start
753
- * // [items] end
754
- * tagsState?: Array<{
755
- * key?: string
756
- * // [items] start
757
- * // [items] end
758
- * annotationsState?: Array<{
759
- * value?: string
760
- * actor?: string
761
- * timestamp?: string
762
- * }>
763
- * }>
764
- * mainSymptom?: string
765
- * }
766
- * type?: string
767
- * pageSize?: number
768
- * page?: number
769
- * startTime?: string
770
- * endTime?: string
771
- * sort?: string
772
- * }
773
- * ```
774
- *
775
- * ---
776
- *
777
- * **Response**
778
- * ```ts
779
- * type Response = {
780
- * totalPages?: number
781
- * totalElements?: number
782
- * size?: number
783
- * // [items] start
784
- * // [items] end
785
- * content?: Array<{
786
- * id?: string
787
- * ownerState?: {
788
- * id?: string
789
- * doctorId?: string
790
- * name?: string
791
- * createdTimestamp?: string
792
- * updatedTimestamp?: string
793
- * identity?: string
794
- * gender?: string
795
- * phoneNumber?: string
796
- * birthdate?: string
797
- * // [items] start
798
- * // [items] end
799
- * remarks?: string[]
800
- * // [items] start
801
- * // [items] end
802
- * tagsState?: Array<{
803
- * key?: string
804
- * // [items] start
805
- * // [items] end
806
- * annotationsState?: Array<{
807
- * value?: string
808
- * actor?: string
809
- * timestamp?: string
810
- * }>
811
- * }>
812
- * mainSymptom?: string
813
- * }
814
- * type?: string
815
- * // [items] start
816
- * // [items] end
817
- * tagsState?: Array<{
818
- * key?: string
819
- * // [items] start
820
- * // [items] end
821
- * annotationsState?: Array<{
822
- * value?: string
823
- * actor?: string
824
- * timestamp?: string
825
- * }>
826
- * }>
827
- * createdTimestamp?: string
828
- * updatedTimestamp?: string
829
- * }>
830
- * number?: number
831
- * sort?: {
832
- * empty?: boolean
833
- * sorted?: boolean
834
- * unsorted?: boolean
835
- * }
836
- * first?: boolean
837
- * last?: boolean
838
- * numberOfElements?: number
839
- * pageable?: {
840
- * offset?: number
841
- * sort?: {
842
- * empty?: boolean
843
- * sorted?: boolean
844
- * unsorted?: boolean
845
- * }
846
- * pageSize?: number
847
- * paged?: boolean
848
- * pageNumber?: number
849
- * unpaged?: boolean
850
- * }
851
- * empty?: boolean
852
- * }
853
- * ```
854
- */
855
- queryMetaState<Config extends Alova2MethodConfig<PageMetaState> & {
856
- data: QueryMetaStateRequest;
857
- }>(config: Config): Alova2Method<PageMetaState, 'metaStateRestful.queryMetaState', Config>;
858
- /**
859
- * ---
860
- *
861
- * [GET]
862
- *
863
- * **path:** /患者/服务/元/{id}/元象
864
- *
865
- * ---
866
- *
867
- * **Path Parameters**
868
- * ```ts
869
- * type PathParameters = {
870
- * id: string
871
- * }
872
- * ```
873
- *
874
- * ---
875
- *
876
- * **Response**
877
- * ```ts
878
- * type Response = null
879
- * ```
880
- */
881
- getMetaObject<Config extends Alova2MethodConfig<null> & {
882
- pathParams: {
883
- id: string;
884
- };
885
- }>(config: Config): Alova2Method<null, 'metaStateRestful.getMetaObject', Config>;
886
- };
887
- patientStateRestful: {
888
- /**
889
- * ---
890
- *
891
- * [GET]
892
- *
893
- * **path:** /患者/服务/{id}
894
- *
895
- * ---
896
- *
897
- * **Path Parameters**
898
- * ```ts
899
- * type PathParameters = {
900
- * id: string
901
- * }
902
- * ```
903
- *
904
- * ---
905
- *
906
- * **Response**
907
- * ```ts
908
- * type Response = {
909
- * id?: string
910
- * doctorId?: string
911
- * name?: string
912
- * createdTimestamp?: string
913
- * updatedTimestamp?: string
914
- * identity?: string
915
- * gender?: string
916
- * phoneNumber?: string
917
- * birthdate?: string
918
- * // [items] start
919
- * // [items] end
920
- * remarks?: string[]
921
- * // [items] start
922
- * // [items] end
923
- * tagsState?: Array<{
924
- * key?: string
925
- * // [items] start
926
- * // [items] end
927
- * annotationsState?: Array<{
928
- * value?: string
929
- * actor?: string
930
- * timestamp?: string
931
- * }>
932
- * }>
933
- * mainSymptom?: string
934
- * }
935
- * ```
936
- */
937
- getPatientState<Config extends Alova2MethodConfig<PatientState> & {
938
- pathParams: {
939
- id: string;
940
- };
941
- }>(config: Config): Alova2Method<PatientState, 'patientStateRestful.getPatientState', Config>;
942
- /**
943
- * ---
944
- *
945
- * [PUT]
946
- *
947
- * **path:** /患者/服务/{id}
948
- *
949
- * ---
950
- *
951
- * **Path Parameters**
952
- * ```ts
953
- * type PathParameters = {
954
- * id: string
955
- * }
956
- * ```
957
- *
958
- * ---
959
- *
960
- * **RequestBody**
961
- * ```ts
962
- * type RequestBody = {
963
- * id?: string
964
- * doctorId?: string
965
- * name?: string
966
- * createdTimestamp?: string
967
- * updatedTimestamp?: string
968
- * identity?: string
969
- * gender?: string
970
- * phoneNumber?: string
971
- * birthdate?: string
972
- * // [items] start
973
- * // [items] end
974
- * remarks?: string[]
975
- * // [items] start
976
- * // [items] end
977
- * tagsState?: Array<{
978
- * key?: string
979
- * // [items] start
980
- * // [items] end
981
- * annotationsState?: Array<{
982
- * value?: string
983
- * actor?: string
984
- * timestamp?: string
985
- * }>
986
- * }>
987
- * mainSymptom?: string
988
- * }
989
- * ```
990
- *
991
- * ---
992
- *
993
- * **Response**
994
- * ```ts
995
- * type Response = {
996
- * id?: string
997
- * doctorId?: string
998
- * name?: string
999
- * createdTimestamp?: string
1000
- * updatedTimestamp?: string
1001
- * identity?: string
1002
- * gender?: string
1003
- * phoneNumber?: string
1004
- * birthdate?: string
1005
- * // [items] start
1006
- * // [items] end
1007
- * remarks?: string[]
1008
- * // [items] start
1009
- * // [items] end
1010
- * tagsState?: Array<{
1011
- * key?: string
1012
- * // [items] start
1013
- * // [items] end
1014
- * annotationsState?: Array<{
1015
- * value?: string
1016
- * actor?: string
1017
- * timestamp?: string
1018
- * }>
1019
- * }>
1020
- * mainSymptom?: string
1021
- * }
1022
- * ```
1023
- */
1024
- putPatientState<Config extends Alova2MethodConfig<PatientState> & {
1025
- pathParams: {
1026
- id: string;
1027
- };
1028
- data: PatientState;
1029
- }>(config: Config): Alova2Method<PatientState, 'patientStateRestful.putPatientState', Config>;
1030
- /**
1031
- * ---
1032
- *
1033
- * [DELETE]
1034
- *
1035
- * **path:** /患者/服务/{id}
1036
- *
1037
- * ---
1038
- *
1039
- * **Path Parameters**
1040
- * ```ts
1041
- * type PathParameters = {
1042
- * id: string
1043
- * }
1044
- * ```
1045
- *
1046
- * ---
1047
- *
1048
- * **Response**
1049
- * ```ts
1050
- * type Response = null
1051
- * ```
1052
- */
1053
- deletePatientState<Config extends Alova2MethodConfig<null> & {
1054
- pathParams: {
1055
- id: string;
1056
- };
1057
- }>(config: Config): Alova2Method<null, 'patientStateRestful.deletePatientState', Config>;
1058
- /**
1059
- * ---
1060
- *
1061
- * [GET]
1062
- *
1063
- * **path:** /患者/服务
1064
- *
1065
- * ---
1066
- *
1067
- * **Query Parameters**
1068
- * ```ts
1069
- * type QueryParameters = {
1070
- * id?: string
1071
- * doctorId?: string
1072
- * name?: string
1073
- * gender?: string
1074
- * identity?: string
1075
- * pageSize: number
1076
- * page: number
1077
- * phoneNumber?: string
1078
- * startTime?: string
1079
- * endTime?: string
1080
- * sort?: string
1081
- * }
1082
- * ```
1083
- *
1084
- * ---
1085
- *
1086
- * **Response**
1087
- * ```ts
1088
- * type Response = {
1089
- * totalPages?: number
1090
- * totalElements?: number
1091
- * size?: number
1092
- * // [items] start
1093
- * // [items] end
1094
- * content?: Array<{
1095
- * id?: string
1096
- * doctorId?: string
1097
- * name?: string
1098
- * createdTimestamp?: string
1099
- * updatedTimestamp?: string
1100
- * identity?: string
1101
- * gender?: string
1102
- * phoneNumber?: string
1103
- * birthdate?: string
1104
- * // [items] start
1105
- * // [items] end
1106
- * remarks?: string[]
1107
- * // [items] start
1108
- * // [items] end
1109
- * tagsState?: Array<{
1110
- * key?: string
1111
- * // [items] start
1112
- * // [items] end
1113
- * annotationsState?: Array<{
1114
- * value?: string
1115
- * actor?: string
1116
- * timestamp?: string
1117
- * }>
1118
- * }>
1119
- * mainSymptom?: string
1120
- * }>
1121
- * number?: number
1122
- * sort?: {
1123
- * empty?: boolean
1124
- * sorted?: boolean
1125
- * unsorted?: boolean
1126
- * }
1127
- * first?: boolean
1128
- * last?: boolean
1129
- * numberOfElements?: number
1130
- * pageable?: {
1131
- * offset?: number
1132
- * sort?: {
1133
- * empty?: boolean
1134
- * sorted?: boolean
1135
- * unsorted?: boolean
1136
- * }
1137
- * pageSize?: number
1138
- * paged?: boolean
1139
- * pageNumber?: number
1140
- * unpaged?: boolean
1141
- * }
1142
- * empty?: boolean
1143
- * }
1144
- * ```
1145
- */
1146
- queryPatientState<Config extends Alova2MethodConfig<PagePatientState> & {
1147
- params: {
1148
- id?: string;
1149
- doctorId?: string;
1150
- name?: string;
1151
- gender?: string;
1152
- identity?: string;
1153
- pageSize: number;
1154
- page: number;
1155
- phoneNumber?: string;
1156
- startTime?: string;
1157
- endTime?: string;
1158
- sort?: string;
1159
- };
1160
- }>(config: Config): Alova2Method<PagePatientState, 'patientStateRestful.queryPatientState', Config>;
1161
- /**
1162
- * ---
1163
- *
1164
- * [POST]
1165
- *
1166
- * **path:** /患者/服务
1167
- *
1168
- * ---
1169
- *
1170
- * **RequestBody**
1171
- * ```ts
1172
- * type RequestBody = {
1173
- * id?: string
1174
- * doctorId?: string
1175
- * name?: string
1176
- * createdTimestamp?: string
1177
- * updatedTimestamp?: string
1178
- * identity?: string
1179
- * gender?: string
1180
- * phoneNumber?: string
1181
- * birthdate?: string
1182
- * // [items] start
1183
- * // [items] end
1184
- * remarks?: string[]
1185
- * // [items] start
1186
- * // [items] end
1187
- * tagsState?: Array<{
1188
- * key?: string
1189
- * // [items] start
1190
- * // [items] end
1191
- * annotationsState?: Array<{
1192
- * value?: string
1193
- * actor?: string
1194
- * timestamp?: string
1195
- * }>
1196
- * }>
1197
- * mainSymptom?: string
1198
- * }
1199
- * ```
1200
- *
1201
- * ---
1202
- *
1203
- * **Response**
1204
- * ```ts
1205
- * type Response = {
1206
- * id?: string
1207
- * doctorId?: string
1208
- * name?: string
1209
- * createdTimestamp?: string
1210
- * updatedTimestamp?: string
1211
- * identity?: string
1212
- * gender?: string
1213
- * phoneNumber?: string
1214
- * birthdate?: string
1215
- * // [items] start
1216
- * // [items] end
1217
- * remarks?: string[]
1218
- * // [items] start
1219
- * // [items] end
1220
- * tagsState?: Array<{
1221
- * key?: string
1222
- * // [items] start
1223
- * // [items] end
1224
- * annotationsState?: Array<{
1225
- * value?: string
1226
- * actor?: string
1227
- * timestamp?: string
1228
- * }>
1229
- * }>
1230
- * mainSymptom?: string
1231
- * }
1232
- * ```
1233
- */
1234
- postPatientState<Config extends Alova2MethodConfig<PatientState> & {
1235
- data: PatientState;
1236
- }>(config: Config): Alova2Method<PatientState, 'patientStateRestful.postPatientState', Config>;
1237
- /**
1238
- * ---
1239
- *
1240
- * [POST]
1241
- *
1242
- * **path:** /患者/服务/精确匹配
1243
- *
1244
- * ---
1245
- *
1246
- * **RequestBody**
1247
- * ```ts
1248
- * type RequestBody = {
1249
- * // [items] start
1250
- * // [items] end
1251
- * id?: string[]
1252
- * // [items] start
1253
- * // [items] end
1254
- * doctorId?: string[]
1255
- * // [items] start
1256
- * // [items] end
1257
- * name?: string[]
1258
- * // [items] start
1259
- * // [items] end
1260
- * phoneNumber?: string[]
1261
- * // [items] start
1262
- * // [items] end
1263
- * gender?: string[]
1264
- * // [items] start
1265
- * // [items] end
1266
- * identityNumber?: string[]
1267
- * pageSize?: number
1268
- * page?: number
1269
- * startTime?: number
1270
- * endTime?: number
1271
- * sort?: string
1272
- * }
1273
- * ```
1274
- *
1275
- * ---
1276
- *
1277
- * **Response**
1278
- * ```ts
1279
- * type Response = {
1280
- * totalPages?: number
1281
- * totalElements?: number
1282
- * size?: number
1283
- * // [items] start
1284
- * // [items] end
1285
- * content?: Array<{
1286
- * id?: string
1287
- * doctorId?: string
1288
- * name?: string
1289
- * createdTimestamp?: string
1290
- * updatedTimestamp?: string
1291
- * identity?: string
1292
- * gender?: string
1293
- * phoneNumber?: string
1294
- * birthdate?: string
1295
- * // [items] start
1296
- * // [items] end
1297
- * remarks?: string[]
1298
- * // [items] start
1299
- * // [items] end
1300
- * tagsState?: Array<{
1301
- * key?: string
1302
- * // [items] start
1303
- * // [items] end
1304
- * annotationsState?: Array<{
1305
- * value?: string
1306
- * actor?: string
1307
- * timestamp?: string
1308
- * }>
1309
- * }>
1310
- * mainSymptom?: string
1311
- * }>
1312
- * number?: number
1313
- * sort?: {
1314
- * empty?: boolean
1315
- * sorted?: boolean
1316
- * unsorted?: boolean
1317
- * }
1318
- * first?: boolean
1319
- * last?: boolean
1320
- * numberOfElements?: number
1321
- * pageable?: {
1322
- * offset?: number
1323
- * sort?: {
1324
- * empty?: boolean
1325
- * sorted?: boolean
1326
- * unsorted?: boolean
1327
- * }
1328
- * pageSize?: number
1329
- * paged?: boolean
1330
- * pageNumber?: number
1331
- * unpaged?: boolean
1332
- * }
1333
- * empty?: boolean
1334
- * }
1335
- * ```
1336
- */
1337
- queryPatientStateByExactMatch<Config extends Alova2MethodConfig<PagePatientState> & {
1338
- data: QueryPatientStateByExactMatchRequest;
1339
- }>(config: Config): Alova2Method<PagePatientState, 'patientStateRestful.queryPatientStateByExactMatch', Config>;
1340
- };
1341
- metricRestful: {
1342
- /**
1343
- * ---
1344
- *
1345
- * [GET]
1346
- *
1347
- * **path:** /患者/服务/统计/患者/总数
1348
- *
1349
- * ---
1350
- *
1351
- * **Response**
1352
- * ```ts
1353
- * type Response = number
1354
- * ```
1355
- */
1356
- totalOfPatient<Config extends Alova2MethodConfig<number>>(config?: Config): Alova2Method<number, 'metricRestful.totalOfPatient', Config>;
1357
- /**
1358
- * ---
1359
- *
1360
- * [GET]
1361
- *
1362
- * **path:** /患者/服务/统计/患者/性别/分布
1363
- *
1364
- * ---
1365
- *
1366
- * **Response**
1367
- * ```ts
1368
- * type Response = Array<{
1369
- * age?: number
1370
- * count?: number
1371
- * }>
1372
- * ```
1373
- */
1374
- ageDistributeOfPatient<Config extends Alova2MethodConfig<AgeDistribute[]>>(config?: Config): Alova2Method<AgeDistribute[], 'metricRestful.ageDistributeOfPatient', Config>;
1375
- /**
1376
- * ---
1377
- *
1378
- * [GET]
1379
- *
1380
- * **path:** /患者/服务/统计/患者/年龄/分布
1381
- *
1382
- * ---
1383
- *
1384
- * **Response**
1385
- * ```ts
1386
- * type Response = Array<{
1387
- * gender?: string
1388
- * count?: number
1389
- * }>
1390
- * ```
1391
- */
1392
- genderDistributeOfPatient<Config extends Alova2MethodConfig<GenderDistribute[]>>(config?: Config): Alova2Method<GenderDistribute[], 'metricRestful.genderDistributeOfPatient', Config>;
1393
- /**
1394
- * ---
1395
- *
1396
- * [GET]
1397
- *
1398
- * **path:** /患者/服务/统计/患者/分布
1399
- *
1400
- * ---
1401
- *
1402
- * **Response**
1403
- * ```ts
1404
- * type Response = Array<{
1405
- * date?: string
1406
- * count?: number
1407
- * }>
1408
- * ```
1409
- */
1410
- dateDistributeOfPatient<Config extends Alova2MethodConfig<DateDistribute[]>>(config?: Config): Alova2Method<DateDistribute[], 'metricRestful.dateDistributeOfPatient', Config>;
1411
- /**
1412
- * ---
1413
- *
1414
- * [GET]
1415
- *
1416
- * **path:** /患者/服务/统计/患者/今日
1417
- *
1418
- * ---
1419
- *
1420
- * **Response**
1421
- * ```ts
1422
- * type Response = number
1423
- * ```
1424
- */
1425
- totalOfPatientByToday<Config extends Alova2MethodConfig<number>>(config?: Config): Alova2Method<number, 'metricRestful.totalOfPatientByToday', Config>;
1426
- /**
1427
- * ---
1428
- *
1429
- * [GET]
1430
- *
1431
- * **path:** /患者/服务/统计/元/日期
1432
- *
1433
- * ---
1434
- *
1435
- * **Query Parameters**
1436
- * ```ts
1437
- * type QueryParameters = {
1438
- * type: string
1439
- * }
1440
- * ```
1441
- *
1442
- * ---
1443
- *
1444
- * **Response**
1445
- * ```ts
1446
- * type Response = Array<{
1447
- * date?: string
1448
- * count?: number
1449
- * }>
1450
- * ```
1451
- */
1452
- datesOfMeta<Config extends Alova2MethodConfig<DateDistribute[]> & {
1453
- params: {
1454
- type: string;
1455
- };
1456
- }>(config: Config): Alova2Method<DateDistribute[], 'metricRestful.datesOfMeta', Config>;
1457
- /**
1458
- * ---
1459
- *
1460
- * [GET]
1461
- *
1462
- * **path:** /患者/服务/统计/元/总数
1463
- *
1464
- * ---
1465
- *
1466
- * **Query Parameters**
1467
- * ```ts
1468
- * type QueryParameters = {
1469
- * type: string
1470
- * }
1471
- * ```
1472
- *
1473
- * ---
1474
- *
1475
- * **Response**
1476
- * ```ts
1477
- * type Response = number
1478
- * ```
1479
- */
1480
- totalOfMeta<Config extends Alova2MethodConfig<number> & {
1481
- params: {
1482
- type: string;
1483
- };
1484
- }>(config: Config): Alova2Method<number, 'metricRestful.totalOfMeta', Config>;
1485
- /**
1486
- * ---
1487
- *
1488
- * [GET]
1489
- *
1490
- * **path:** /患者/服务/统计/元/今日
1491
- *
1492
- * ---
1493
- *
1494
- * **Query Parameters**
1495
- * ```ts
1496
- * type QueryParameters = {
1497
- * type: string
1498
- * }
1499
- * ```
1500
- *
1501
- * ---
1502
- *
1503
- * **Response**
1504
- * ```ts
1505
- * type Response = number
1506
- * ```
1507
- */
1508
- totalOfMetaByToday<Config extends Alova2MethodConfig<number> & {
1509
- params: {
1510
- type: string;
1511
- };
1512
- }>(config: Config): Alova2Method<number, 'metricRestful.totalOfMetaByToday', Config>;
1513
- };
1514
- }
1515
- var patientApi: patientApi;
202
+ interface patientApi {
203
+ metaStateRestful: {
204
+ /**
205
+ * ---
206
+ *
207
+ * [GET]
208
+ *
209
+ * **path:** /患者/服务/元/{id}
210
+ *
211
+ * ---
212
+ *
213
+ * **Path Parameters**
214
+ * ```ts
215
+ * type PathParameters = {
216
+ * id: string
217
+ * }
218
+ * ```
219
+ *
220
+ * ---
221
+ *
222
+ * **Response**
223
+ * ```ts
224
+ * type Response = {
225
+ * id?: string
226
+ * ownerState?: {
227
+ * id?: string
228
+ * doctorId?: string
229
+ * name?: string
230
+ * createdTimestamp?: string
231
+ * updatedTimestamp?: string
232
+ * identity?: string
233
+ * gender?: string
234
+ * phoneNumber?: string
235
+ * birthdate?: string
236
+ * // [items] start
237
+ * // [items] end
238
+ * remarks?: string[]
239
+ * // [items] start
240
+ * // [items] end
241
+ * tagsState?: Array<{
242
+ * key?: string
243
+ * // [items] start
244
+ * // [items] end
245
+ * annotationsState?: Array<{
246
+ * value?: string
247
+ * actor?: string
248
+ * timestamp?: string
249
+ * }>
250
+ * }>
251
+ * mainSymptom?: string
252
+ * }
253
+ * type?: string
254
+ * // [items] start
255
+ * // [items] end
256
+ * tagsState?: Array<{
257
+ * key?: string
258
+ * // [items] start
259
+ * // [items] end
260
+ * annotationsState?: Array<{
261
+ * value?: string
262
+ * actor?: string
263
+ * timestamp?: string
264
+ * }>
265
+ * }>
266
+ * createdTimestamp?: string
267
+ * updatedTimestamp?: string
268
+ * }
269
+ * ```
270
+ */
271
+ getMetaState<
272
+ Config extends Alova2MethodConfig<MetaState> & {
273
+ pathParams: {
274
+ id: string;
275
+ };
276
+ }
277
+ >(
278
+ config: Config
279
+ ): Alova2Method<MetaState, 'metaStateRestful.getMetaState', Config>;
280
+ /**
281
+ * ---
282
+ *
283
+ * [PUT]
284
+ *
285
+ * **path:** /患者/服务/元/{id}
286
+ *
287
+ * ---
288
+ *
289
+ * **Path Parameters**
290
+ * ```ts
291
+ * type PathParameters = {
292
+ * id: string
293
+ * }
294
+ * ```
295
+ *
296
+ * ---
297
+ *
298
+ * **RequestBody**
299
+ * ```ts
300
+ * type RequestBody = {
301
+ * id?: string
302
+ * ownerState?: {
303
+ * id?: string
304
+ * doctorId?: string
305
+ * name?: string
306
+ * createdTimestamp?: string
307
+ * updatedTimestamp?: string
308
+ * identity?: string
309
+ * gender?: string
310
+ * phoneNumber?: string
311
+ * birthdate?: string
312
+ * // [items] start
313
+ * // [items] end
314
+ * remarks?: string[]
315
+ * // [items] start
316
+ * // [items] end
317
+ * tagsState?: Array<{
318
+ * key?: string
319
+ * // [items] start
320
+ * // [items] end
321
+ * annotationsState?: Array<{
322
+ * value?: string
323
+ * actor?: string
324
+ * timestamp?: string
325
+ * }>
326
+ * }>
327
+ * mainSymptom?: string
328
+ * }
329
+ * type?: string
330
+ * // [items] start
331
+ * // [items] end
332
+ * tagsState?: Array<{
333
+ * key?: string
334
+ * // [items] start
335
+ * // [items] end
336
+ * annotationsState?: Array<{
337
+ * value?: string
338
+ * actor?: string
339
+ * timestamp?: string
340
+ * }>
341
+ * }>
342
+ * createdTimestamp?: string
343
+ * updatedTimestamp?: string
344
+ * }
345
+ * ```
346
+ *
347
+ * ---
348
+ *
349
+ * **Response**
350
+ * ```ts
351
+ * type Response = {
352
+ * id?: string
353
+ * ownerState?: {
354
+ * id?: string
355
+ * doctorId?: string
356
+ * name?: string
357
+ * createdTimestamp?: string
358
+ * updatedTimestamp?: string
359
+ * identity?: string
360
+ * gender?: string
361
+ * phoneNumber?: string
362
+ * birthdate?: string
363
+ * // [items] start
364
+ * // [items] end
365
+ * remarks?: string[]
366
+ * // [items] start
367
+ * // [items] end
368
+ * tagsState?: Array<{
369
+ * key?: string
370
+ * // [items] start
371
+ * // [items] end
372
+ * annotationsState?: Array<{
373
+ * value?: string
374
+ * actor?: string
375
+ * timestamp?: string
376
+ * }>
377
+ * }>
378
+ * mainSymptom?: string
379
+ * }
380
+ * type?: string
381
+ * // [items] start
382
+ * // [items] end
383
+ * tagsState?: Array<{
384
+ * key?: string
385
+ * // [items] start
386
+ * // [items] end
387
+ * annotationsState?: Array<{
388
+ * value?: string
389
+ * actor?: string
390
+ * timestamp?: string
391
+ * }>
392
+ * }>
393
+ * createdTimestamp?: string
394
+ * updatedTimestamp?: string
395
+ * }
396
+ * ```
397
+ */
398
+ putMetaState<
399
+ Config extends Alova2MethodConfig<MetaState> & {
400
+ pathParams: {
401
+ id: string;
402
+ };
403
+ data: MetaState;
404
+ }
405
+ >(
406
+ config: Config
407
+ ): Alova2Method<MetaState, 'metaStateRestful.putMetaState', Config>;
408
+ /**
409
+ * ---
410
+ *
411
+ * [DELETE]
412
+ *
413
+ * **path:** /患者/服务/元/{id}
414
+ *
415
+ * ---
416
+ *
417
+ * **Path Parameters**
418
+ * ```ts
419
+ * type PathParameters = {
420
+ * id: string
421
+ * }
422
+ * ```
423
+ *
424
+ * ---
425
+ *
426
+ * **Response**
427
+ * ```ts
428
+ * type Response = null
429
+ * ```
430
+ */
431
+ deleteMetaState<
432
+ Config extends Alova2MethodConfig<null> & {
433
+ pathParams: {
434
+ id: string;
435
+ };
436
+ }
437
+ >(
438
+ config: Config
439
+ ): Alova2Method<null, 'metaStateRestful.deleteMetaState', Config>;
440
+ /**
441
+ * ---
442
+ *
443
+ * [POST] 创建元状态记录
444
+ *
445
+ * **path:** /患者/服务/元
446
+ *
447
+ * ---
448
+ *
449
+ * **Query Parameters**
450
+ * ```ts
451
+ * type QueryParameters = {
452
+ * ownerId: string
453
+ * type: string
454
+ * }
455
+ * ```
456
+ *
457
+ * ---
458
+ *
459
+ * **RequestBody**
460
+ * ```ts
461
+ * type RequestBody = Blob
462
+ * ```
463
+ *
464
+ * ---
465
+ *
466
+ * **Response**
467
+ * ```ts
468
+ * type Response = {
469
+ * id?: string
470
+ * ownerState?: {
471
+ * id?: string
472
+ * doctorId?: string
473
+ * name?: string
474
+ * createdTimestamp?: string
475
+ * updatedTimestamp?: string
476
+ * identity?: string
477
+ * gender?: string
478
+ * phoneNumber?: string
479
+ * birthdate?: string
480
+ * // [items] start
481
+ * // [items] end
482
+ * remarks?: string[]
483
+ * // [items] start
484
+ * // [items] end
485
+ * tagsState?: Array<{
486
+ * key?: string
487
+ * // [items] start
488
+ * // [items] end
489
+ * annotationsState?: Array<{
490
+ * value?: string
491
+ * actor?: string
492
+ * timestamp?: string
493
+ * }>
494
+ * }>
495
+ * mainSymptom?: string
496
+ * }
497
+ * type?: string
498
+ * // [items] start
499
+ * // [items] end
500
+ * tagsState?: Array<{
501
+ * key?: string
502
+ * // [items] start
503
+ * // [items] end
504
+ * annotationsState?: Array<{
505
+ * value?: string
506
+ * actor?: string
507
+ * timestamp?: string
508
+ * }>
509
+ * }>
510
+ * createdTimestamp?: string
511
+ * updatedTimestamp?: string
512
+ * }
513
+ * ```
514
+ */
515
+ postMetaState<
516
+ Config extends Alova2MethodConfig<MetaState> & {
517
+ params: {
518
+ ownerId: string;
519
+ type: string;
520
+ };
521
+ data: Blob;
522
+ }
523
+ >(
524
+ config: Config
525
+ ): Alova2Method<MetaState, 'metaStateRestful.postMetaState', Config>;
526
+ /**
527
+ * ---
528
+ *
529
+ * [POST]
530
+ *
531
+ * **path:** /患者/服务/元/级联查询
532
+ *
533
+ * ---
534
+ *
535
+ * **RequestBody**
536
+ * ```ts
537
+ * type RequestBody = {
538
+ * ownerState?: {
539
+ * id?: string
540
+ * doctorId?: string
541
+ * name?: string
542
+ * createdTimestamp?: string
543
+ * updatedTimestamp?: string
544
+ * identity?: string
545
+ * gender?: string
546
+ * phoneNumber?: string
547
+ * birthdate?: string
548
+ * // [items] start
549
+ * // [items] end
550
+ * remarks?: string[]
551
+ * // [items] start
552
+ * // [items] end
553
+ * tagsState?: Array<{
554
+ * key?: string
555
+ * // [items] start
556
+ * // [items] end
557
+ * annotationsState?: Array<{
558
+ * value?: string
559
+ * actor?: string
560
+ * timestamp?: string
561
+ * }>
562
+ * }>
563
+ * mainSymptom?: string
564
+ * }
565
+ * type?: string
566
+ * pageSize?: number
567
+ * page?: number
568
+ * startTime?: string
569
+ * endTime?: string
570
+ * sort?: string
571
+ * patientStartBirthdate?: string
572
+ * patientEndBirthdate?: string
573
+ * // [items] start
574
+ * // [items] end
575
+ * tagsState?: Array<{
576
+ * key?: string
577
+ * // [items] start
578
+ * // [items] end
579
+ * annotationsState?: Array<{
580
+ * value?: string
581
+ * actor?: string
582
+ * timestamp?: string
583
+ * }>
584
+ * }>
585
+ * }
586
+ * ```
587
+ *
588
+ * ---
589
+ *
590
+ * **Response**
591
+ * ```ts
592
+ * type Response = {
593
+ * totalPages?: number
594
+ * totalElements?: number
595
+ * size?: number
596
+ * // [items] start
597
+ * // [items] end
598
+ * content?: Array<{
599
+ * id?: string
600
+ * ownerState?: {
601
+ * id?: string
602
+ * doctorId?: string
603
+ * name?: string
604
+ * createdTimestamp?: string
605
+ * updatedTimestamp?: string
606
+ * identity?: string
607
+ * gender?: string
608
+ * phoneNumber?: string
609
+ * birthdate?: string
610
+ * // [items] start
611
+ * // [items] end
612
+ * remarks?: string[]
613
+ * // [items] start
614
+ * // [items] end
615
+ * tagsState?: Array<{
616
+ * key?: string
617
+ * // [items] start
618
+ * // [items] end
619
+ * annotationsState?: Array<{
620
+ * value?: string
621
+ * actor?: string
622
+ * timestamp?: string
623
+ * }>
624
+ * }>
625
+ * mainSymptom?: string
626
+ * }
627
+ * type?: string
628
+ * // [items] start
629
+ * // [items] end
630
+ * tagsState?: Array<{
631
+ * key?: string
632
+ * // [items] start
633
+ * // [items] end
634
+ * annotationsState?: Array<{
635
+ * value?: string
636
+ * actor?: string
637
+ * timestamp?: string
638
+ * }>
639
+ * }>
640
+ * createdTimestamp?: string
641
+ * updatedTimestamp?: string
642
+ * }>
643
+ * number?: number
644
+ * sort?: {
645
+ * empty?: boolean
646
+ * sorted?: boolean
647
+ * unsorted?: boolean
648
+ * }
649
+ * numberOfElements?: number
650
+ * pageable?: {
651
+ * offset?: number
652
+ * sort?: {
653
+ * empty?: boolean
654
+ * sorted?: boolean
655
+ * unsorted?: boolean
656
+ * }
657
+ * pageSize?: number
658
+ * paged?: boolean
659
+ * pageNumber?: number
660
+ * unpaged?: boolean
661
+ * }
662
+ * first?: boolean
663
+ * last?: boolean
664
+ * empty?: boolean
665
+ * }
666
+ * ```
667
+ */
668
+ queryMetaAndPatientState<
669
+ Config extends Alova2MethodConfig<PageMetaState> & {
670
+ data: QueryMetaWithPatientStateRequest;
671
+ }
672
+ >(
673
+ config: Config
674
+ ): Alova2Method<PageMetaState, 'metaStateRestful.queryMetaAndPatientState', Config>;
675
+ /**
676
+ * ---
677
+ *
678
+ * [POST]
679
+ *
680
+ * **path:** /患者/服务/元/精确匹配
681
+ *
682
+ * ---
683
+ *
684
+ * **RequestBody**
685
+ * ```ts
686
+ * type RequestBody = {
687
+ * // [items] start
688
+ * // [items] end
689
+ * ids?: string[]
690
+ * // [items] start
691
+ * // [items] end
692
+ * ownerStates?: Array<{
693
+ * id?: string
694
+ * doctorId?: string
695
+ * name?: string
696
+ * createdTimestamp?: string
697
+ * updatedTimestamp?: string
698
+ * identity?: string
699
+ * gender?: string
700
+ * phoneNumber?: string
701
+ * birthdate?: string
702
+ * // [items] start
703
+ * // [items] end
704
+ * remarks?: string[]
705
+ * // [items] start
706
+ * // [items] end
707
+ * tagsState?: Array<{
708
+ * key?: string
709
+ * // [items] start
710
+ * // [items] end
711
+ * annotationsState?: Array<{
712
+ * value?: string
713
+ * actor?: string
714
+ * timestamp?: string
715
+ * }>
716
+ * }>
717
+ * mainSymptom?: string
718
+ * }>
719
+ * // [items] start
720
+ * // [items] end
721
+ * types?: string[]
722
+ * pageSize?: number
723
+ * page?: number
724
+ * startTime?: string
725
+ * endTime?: string
726
+ * sort?: string
727
+ * }
728
+ * ```
729
+ *
730
+ * ---
731
+ *
732
+ * **Response**
733
+ * ```ts
734
+ * type Response = {
735
+ * totalPages?: number
736
+ * totalElements?: number
737
+ * size?: number
738
+ * // [items] start
739
+ * // [items] end
740
+ * content?: Array<{
741
+ * id?: string
742
+ * ownerState?: {
743
+ * id?: string
744
+ * doctorId?: string
745
+ * name?: string
746
+ * createdTimestamp?: string
747
+ * updatedTimestamp?: string
748
+ * identity?: string
749
+ * gender?: string
750
+ * phoneNumber?: string
751
+ * birthdate?: string
752
+ * // [items] start
753
+ * // [items] end
754
+ * remarks?: string[]
755
+ * // [items] start
756
+ * // [items] end
757
+ * tagsState?: Array<{
758
+ * key?: string
759
+ * // [items] start
760
+ * // [items] end
761
+ * annotationsState?: Array<{
762
+ * value?: string
763
+ * actor?: string
764
+ * timestamp?: string
765
+ * }>
766
+ * }>
767
+ * mainSymptom?: string
768
+ * }
769
+ * type?: string
770
+ * // [items] start
771
+ * // [items] end
772
+ * tagsState?: Array<{
773
+ * key?: string
774
+ * // [items] start
775
+ * // [items] end
776
+ * annotationsState?: Array<{
777
+ * value?: string
778
+ * actor?: string
779
+ * timestamp?: string
780
+ * }>
781
+ * }>
782
+ * createdTimestamp?: string
783
+ * updatedTimestamp?: string
784
+ * }>
785
+ * number?: number
786
+ * sort?: {
787
+ * empty?: boolean
788
+ * sorted?: boolean
789
+ * unsorted?: boolean
790
+ * }
791
+ * numberOfElements?: number
792
+ * pageable?: {
793
+ * offset?: number
794
+ * sort?: {
795
+ * empty?: boolean
796
+ * sorted?: boolean
797
+ * unsorted?: boolean
798
+ * }
799
+ * pageSize?: number
800
+ * paged?: boolean
801
+ * pageNumber?: number
802
+ * unpaged?: boolean
803
+ * }
804
+ * first?: boolean
805
+ * last?: boolean
806
+ * empty?: boolean
807
+ * }
808
+ * ```
809
+ */
810
+ queryMetaStateByExactMatch<
811
+ Config extends Alova2MethodConfig<PageMetaState> & {
812
+ data: QueryMetaStateByExactMatchRequest;
813
+ }
814
+ >(
815
+ config: Config
816
+ ): Alova2Method<PageMetaState, 'metaStateRestful.queryMetaStateByExactMatch', Config>;
817
+ /**
818
+ * ---
819
+ *
820
+ * [POST]
821
+ *
822
+ * **path:** /患者/服务/元/条件查询
823
+ *
824
+ * ---
825
+ *
826
+ * **RequestBody**
827
+ * ```ts
828
+ * type RequestBody = {
829
+ * ownerState?: {
830
+ * id?: string
831
+ * doctorId?: string
832
+ * name?: string
833
+ * createdTimestamp?: string
834
+ * updatedTimestamp?: string
835
+ * identity?: string
836
+ * gender?: string
837
+ * phoneNumber?: string
838
+ * birthdate?: string
839
+ * // [items] start
840
+ * // [items] end
841
+ * remarks?: string[]
842
+ * // [items] start
843
+ * // [items] end
844
+ * tagsState?: Array<{
845
+ * key?: string
846
+ * // [items] start
847
+ * // [items] end
848
+ * annotationsState?: Array<{
849
+ * value?: string
850
+ * actor?: string
851
+ * timestamp?: string
852
+ * }>
853
+ * }>
854
+ * mainSymptom?: string
855
+ * }
856
+ * type?: string
857
+ * pageSize?: number
858
+ * page?: number
859
+ * startTime?: string
860
+ * endTime?: string
861
+ * sort?: string
862
+ * }
863
+ * ```
864
+ *
865
+ * ---
866
+ *
867
+ * **Response**
868
+ * ```ts
869
+ * type Response = {
870
+ * totalPages?: number
871
+ * totalElements?: number
872
+ * size?: number
873
+ * // [items] start
874
+ * // [items] end
875
+ * content?: Array<{
876
+ * id?: string
877
+ * ownerState?: {
878
+ * id?: string
879
+ * doctorId?: string
880
+ * name?: string
881
+ * createdTimestamp?: string
882
+ * updatedTimestamp?: string
883
+ * identity?: string
884
+ * gender?: string
885
+ * phoneNumber?: string
886
+ * birthdate?: string
887
+ * // [items] start
888
+ * // [items] end
889
+ * remarks?: string[]
890
+ * // [items] start
891
+ * // [items] end
892
+ * tagsState?: Array<{
893
+ * key?: string
894
+ * // [items] start
895
+ * // [items] end
896
+ * annotationsState?: Array<{
897
+ * value?: string
898
+ * actor?: string
899
+ * timestamp?: string
900
+ * }>
901
+ * }>
902
+ * mainSymptom?: string
903
+ * }
904
+ * type?: string
905
+ * // [items] start
906
+ * // [items] end
907
+ * tagsState?: Array<{
908
+ * key?: string
909
+ * // [items] start
910
+ * // [items] end
911
+ * annotationsState?: Array<{
912
+ * value?: string
913
+ * actor?: string
914
+ * timestamp?: string
915
+ * }>
916
+ * }>
917
+ * createdTimestamp?: string
918
+ * updatedTimestamp?: string
919
+ * }>
920
+ * number?: number
921
+ * sort?: {
922
+ * empty?: boolean
923
+ * sorted?: boolean
924
+ * unsorted?: boolean
925
+ * }
926
+ * numberOfElements?: number
927
+ * pageable?: {
928
+ * offset?: number
929
+ * sort?: {
930
+ * empty?: boolean
931
+ * sorted?: boolean
932
+ * unsorted?: boolean
933
+ * }
934
+ * pageSize?: number
935
+ * paged?: boolean
936
+ * pageNumber?: number
937
+ * unpaged?: boolean
938
+ * }
939
+ * first?: boolean
940
+ * last?: boolean
941
+ * empty?: boolean
942
+ * }
943
+ * ```
944
+ */
945
+ queryMetaState<
946
+ Config extends Alova2MethodConfig<PageMetaState> & {
947
+ data: QueryMetaStateRequest;
948
+ }
949
+ >(
950
+ config: Config
951
+ ): Alova2Method<PageMetaState, 'metaStateRestful.queryMetaState', Config>;
952
+ /**
953
+ * ---
954
+ *
955
+ * [GET]
956
+ *
957
+ * **path:** /患者/服务/元/{id}/元象
958
+ *
959
+ * ---
960
+ *
961
+ * **Path Parameters**
962
+ * ```ts
963
+ * type PathParameters = {
964
+ * id: string
965
+ * }
966
+ * ```
967
+ *
968
+ * ---
969
+ *
970
+ * **Response**
971
+ * ```ts
972
+ * type Response = null
973
+ * ```
974
+ */
975
+ getMetaObject<
976
+ Config extends Alova2MethodConfig<null> & {
977
+ pathParams: {
978
+ id: string;
979
+ };
980
+ }
981
+ >(
982
+ config: Config
983
+ ): Alova2Method<null, 'metaStateRestful.getMetaObject', Config>;
984
+ };
985
+ patientStateRestful: {
986
+ /**
987
+ * ---
988
+ *
989
+ * [GET]
990
+ *
991
+ * **path:** /患者/服务/{id}
992
+ *
993
+ * ---
994
+ *
995
+ * **Path Parameters**
996
+ * ```ts
997
+ * type PathParameters = {
998
+ * id: string
999
+ * }
1000
+ * ```
1001
+ *
1002
+ * ---
1003
+ *
1004
+ * **Response**
1005
+ * ```ts
1006
+ * type Response = {
1007
+ * id?: string
1008
+ * doctorId?: string
1009
+ * name?: string
1010
+ * createdTimestamp?: string
1011
+ * updatedTimestamp?: string
1012
+ * identity?: string
1013
+ * gender?: string
1014
+ * phoneNumber?: string
1015
+ * birthdate?: string
1016
+ * // [items] start
1017
+ * // [items] end
1018
+ * remarks?: string[]
1019
+ * // [items] start
1020
+ * // [items] end
1021
+ * tagsState?: Array<{
1022
+ * key?: string
1023
+ * // [items] start
1024
+ * // [items] end
1025
+ * annotationsState?: Array<{
1026
+ * value?: string
1027
+ * actor?: string
1028
+ * timestamp?: string
1029
+ * }>
1030
+ * }>
1031
+ * mainSymptom?: string
1032
+ * }
1033
+ * ```
1034
+ */
1035
+ getPatientState<
1036
+ Config extends Alova2MethodConfig<PatientState> & {
1037
+ pathParams: {
1038
+ id: string;
1039
+ };
1040
+ }
1041
+ >(
1042
+ config: Config
1043
+ ): Alova2Method<PatientState, 'patientStateRestful.getPatientState', Config>;
1044
+ /**
1045
+ * ---
1046
+ *
1047
+ * [PUT]
1048
+ *
1049
+ * **path:** /患者/服务/{id}
1050
+ *
1051
+ * ---
1052
+ *
1053
+ * **Path Parameters**
1054
+ * ```ts
1055
+ * type PathParameters = {
1056
+ * id: string
1057
+ * }
1058
+ * ```
1059
+ *
1060
+ * ---
1061
+ *
1062
+ * **RequestBody**
1063
+ * ```ts
1064
+ * type RequestBody = {
1065
+ * id?: string
1066
+ * doctorId?: string
1067
+ * name?: string
1068
+ * createdTimestamp?: string
1069
+ * updatedTimestamp?: string
1070
+ * identity?: string
1071
+ * gender?: string
1072
+ * phoneNumber?: string
1073
+ * birthdate?: string
1074
+ * // [items] start
1075
+ * // [items] end
1076
+ * remarks?: string[]
1077
+ * // [items] start
1078
+ * // [items] end
1079
+ * tagsState?: Array<{
1080
+ * key?: string
1081
+ * // [items] start
1082
+ * // [items] end
1083
+ * annotationsState?: Array<{
1084
+ * value?: string
1085
+ * actor?: string
1086
+ * timestamp?: string
1087
+ * }>
1088
+ * }>
1089
+ * mainSymptom?: string
1090
+ * }
1091
+ * ```
1092
+ *
1093
+ * ---
1094
+ *
1095
+ * **Response**
1096
+ * ```ts
1097
+ * type Response = {
1098
+ * id?: string
1099
+ * doctorId?: string
1100
+ * name?: string
1101
+ * createdTimestamp?: string
1102
+ * updatedTimestamp?: string
1103
+ * identity?: string
1104
+ * gender?: string
1105
+ * phoneNumber?: string
1106
+ * birthdate?: string
1107
+ * // [items] start
1108
+ * // [items] end
1109
+ * remarks?: string[]
1110
+ * // [items] start
1111
+ * // [items] end
1112
+ * tagsState?: Array<{
1113
+ * key?: string
1114
+ * // [items] start
1115
+ * // [items] end
1116
+ * annotationsState?: Array<{
1117
+ * value?: string
1118
+ * actor?: string
1119
+ * timestamp?: string
1120
+ * }>
1121
+ * }>
1122
+ * mainSymptom?: string
1123
+ * }
1124
+ * ```
1125
+ */
1126
+ putPatientState<
1127
+ Config extends Alova2MethodConfig<PatientState> & {
1128
+ pathParams: {
1129
+ id: string;
1130
+ };
1131
+ data: PatientState;
1132
+ }
1133
+ >(
1134
+ config: Config
1135
+ ): Alova2Method<PatientState, 'patientStateRestful.putPatientState', Config>;
1136
+ /**
1137
+ * ---
1138
+ *
1139
+ * [DELETE]
1140
+ *
1141
+ * **path:** /患者/服务/{id}
1142
+ *
1143
+ * ---
1144
+ *
1145
+ * **Path Parameters**
1146
+ * ```ts
1147
+ * type PathParameters = {
1148
+ * id: string
1149
+ * }
1150
+ * ```
1151
+ *
1152
+ * ---
1153
+ *
1154
+ * **Response**
1155
+ * ```ts
1156
+ * type Response = null
1157
+ * ```
1158
+ */
1159
+ deletePatientState<
1160
+ Config extends Alova2MethodConfig<null> & {
1161
+ pathParams: {
1162
+ id: string;
1163
+ };
1164
+ }
1165
+ >(
1166
+ config: Config
1167
+ ): Alova2Method<null, 'patientStateRestful.deletePatientState', Config>;
1168
+ /**
1169
+ * ---
1170
+ *
1171
+ * [GET]
1172
+ *
1173
+ * **path:** /患者/服务
1174
+ *
1175
+ * ---
1176
+ *
1177
+ * **Query Parameters**
1178
+ * ```ts
1179
+ * type QueryParameters = {
1180
+ * id?: string
1181
+ * doctorId?: string
1182
+ * name?: string
1183
+ * gender?: string
1184
+ * identity?: string
1185
+ * pageSize: number
1186
+ * page: number
1187
+ * phoneNumber?: string
1188
+ * startTime?: string
1189
+ * endTime?: string
1190
+ * sort?: string
1191
+ * }
1192
+ * ```
1193
+ *
1194
+ * ---
1195
+ *
1196
+ * **Response**
1197
+ * ```ts
1198
+ * type Response = {
1199
+ * totalPages?: number
1200
+ * totalElements?: number
1201
+ * size?: number
1202
+ * // [items] start
1203
+ * // [items] end
1204
+ * content?: Array<{
1205
+ * id?: string
1206
+ * doctorId?: string
1207
+ * name?: string
1208
+ * createdTimestamp?: string
1209
+ * updatedTimestamp?: string
1210
+ * identity?: string
1211
+ * gender?: string
1212
+ * phoneNumber?: string
1213
+ * birthdate?: string
1214
+ * // [items] start
1215
+ * // [items] end
1216
+ * remarks?: string[]
1217
+ * // [items] start
1218
+ * // [items] end
1219
+ * tagsState?: Array<{
1220
+ * key?: string
1221
+ * // [items] start
1222
+ * // [items] end
1223
+ * annotationsState?: Array<{
1224
+ * value?: string
1225
+ * actor?: string
1226
+ * timestamp?: string
1227
+ * }>
1228
+ * }>
1229
+ * mainSymptom?: string
1230
+ * }>
1231
+ * number?: number
1232
+ * sort?: {
1233
+ * empty?: boolean
1234
+ * sorted?: boolean
1235
+ * unsorted?: boolean
1236
+ * }
1237
+ * numberOfElements?: number
1238
+ * pageable?: {
1239
+ * offset?: number
1240
+ * sort?: {
1241
+ * empty?: boolean
1242
+ * sorted?: boolean
1243
+ * unsorted?: boolean
1244
+ * }
1245
+ * pageSize?: number
1246
+ * paged?: boolean
1247
+ * pageNumber?: number
1248
+ * unpaged?: boolean
1249
+ * }
1250
+ * first?: boolean
1251
+ * last?: boolean
1252
+ * empty?: boolean
1253
+ * }
1254
+ * ```
1255
+ */
1256
+ queryPatientState<
1257
+ Config extends Alova2MethodConfig<PagePatientState> & {
1258
+ params: {
1259
+ id?: string;
1260
+ doctorId?: string;
1261
+ name?: string;
1262
+ gender?: string;
1263
+ identity?: string;
1264
+ pageSize: number;
1265
+ page: number;
1266
+ phoneNumber?: string;
1267
+ startTime?: string;
1268
+ endTime?: string;
1269
+ sort?: string;
1270
+ };
1271
+ }
1272
+ >(
1273
+ config: Config
1274
+ ): Alova2Method<PagePatientState, 'patientStateRestful.queryPatientState', Config>;
1275
+ /**
1276
+ * ---
1277
+ *
1278
+ * [POST]
1279
+ *
1280
+ * **path:** /患者/服务
1281
+ *
1282
+ * ---
1283
+ *
1284
+ * **RequestBody**
1285
+ * ```ts
1286
+ * type RequestBody = {
1287
+ * id?: string
1288
+ * doctorId?: string
1289
+ * name?: string
1290
+ * createdTimestamp?: string
1291
+ * updatedTimestamp?: string
1292
+ * identity?: string
1293
+ * gender?: string
1294
+ * phoneNumber?: string
1295
+ * birthdate?: string
1296
+ * // [items] start
1297
+ * // [items] end
1298
+ * remarks?: string[]
1299
+ * // [items] start
1300
+ * // [items] end
1301
+ * tagsState?: Array<{
1302
+ * key?: string
1303
+ * // [items] start
1304
+ * // [items] end
1305
+ * annotationsState?: Array<{
1306
+ * value?: string
1307
+ * actor?: string
1308
+ * timestamp?: string
1309
+ * }>
1310
+ * }>
1311
+ * mainSymptom?: string
1312
+ * }
1313
+ * ```
1314
+ *
1315
+ * ---
1316
+ *
1317
+ * **Response**
1318
+ * ```ts
1319
+ * type Response = {
1320
+ * id?: string
1321
+ * doctorId?: string
1322
+ * name?: string
1323
+ * createdTimestamp?: string
1324
+ * updatedTimestamp?: string
1325
+ * identity?: string
1326
+ * gender?: string
1327
+ * phoneNumber?: string
1328
+ * birthdate?: string
1329
+ * // [items] start
1330
+ * // [items] end
1331
+ * remarks?: string[]
1332
+ * // [items] start
1333
+ * // [items] end
1334
+ * tagsState?: Array<{
1335
+ * key?: string
1336
+ * // [items] start
1337
+ * // [items] end
1338
+ * annotationsState?: Array<{
1339
+ * value?: string
1340
+ * actor?: string
1341
+ * timestamp?: string
1342
+ * }>
1343
+ * }>
1344
+ * mainSymptom?: string
1345
+ * }
1346
+ * ```
1347
+ */
1348
+ postPatientState<
1349
+ Config extends Alova2MethodConfig<PatientState> & {
1350
+ data: PatientState;
1351
+ }
1352
+ >(
1353
+ config: Config
1354
+ ): Alova2Method<PatientState, 'patientStateRestful.postPatientState', Config>;
1355
+ /**
1356
+ * ---
1357
+ *
1358
+ * [POST]
1359
+ *
1360
+ * **path:** /患者/服务/精确匹配
1361
+ *
1362
+ * ---
1363
+ *
1364
+ * **RequestBody**
1365
+ * ```ts
1366
+ * type RequestBody = {
1367
+ * // [items] start
1368
+ * // [items] end
1369
+ * ids?: string[]
1370
+ * // [items] start
1371
+ * // [items] end
1372
+ * doctorIds?: string[]
1373
+ * // [items] start
1374
+ * // [items] end
1375
+ * names?: string[]
1376
+ * // [items] start
1377
+ * // [items] end
1378
+ * phoneNumbers?: string[]
1379
+ * // [items] start
1380
+ * // [items] end
1381
+ * genders?: string[]
1382
+ * // [items] start
1383
+ * // [items] end
1384
+ * identityNumbers?: string[]
1385
+ * // [items] start
1386
+ * // [items] end
1387
+ * mainSymptoms?: string[]
1388
+ * pageSize?: number
1389
+ * page?: number
1390
+ * startTime?: number
1391
+ * endTime?: number
1392
+ * sort?: string
1393
+ * }
1394
+ * ```
1395
+ *
1396
+ * ---
1397
+ *
1398
+ * **Response**
1399
+ * ```ts
1400
+ * type Response = {
1401
+ * totalPages?: number
1402
+ * totalElements?: number
1403
+ * size?: number
1404
+ * // [items] start
1405
+ * // [items] end
1406
+ * content?: Array<{
1407
+ * id?: string
1408
+ * doctorId?: string
1409
+ * name?: string
1410
+ * createdTimestamp?: string
1411
+ * updatedTimestamp?: string
1412
+ * identity?: string
1413
+ * gender?: string
1414
+ * phoneNumber?: string
1415
+ * birthdate?: string
1416
+ * // [items] start
1417
+ * // [items] end
1418
+ * remarks?: string[]
1419
+ * // [items] start
1420
+ * // [items] end
1421
+ * tagsState?: Array<{
1422
+ * key?: string
1423
+ * // [items] start
1424
+ * // [items] end
1425
+ * annotationsState?: Array<{
1426
+ * value?: string
1427
+ * actor?: string
1428
+ * timestamp?: string
1429
+ * }>
1430
+ * }>
1431
+ * mainSymptom?: string
1432
+ * }>
1433
+ * number?: number
1434
+ * sort?: {
1435
+ * empty?: boolean
1436
+ * sorted?: boolean
1437
+ * unsorted?: boolean
1438
+ * }
1439
+ * numberOfElements?: number
1440
+ * pageable?: {
1441
+ * offset?: number
1442
+ * sort?: {
1443
+ * empty?: boolean
1444
+ * sorted?: boolean
1445
+ * unsorted?: boolean
1446
+ * }
1447
+ * pageSize?: number
1448
+ * paged?: boolean
1449
+ * pageNumber?: number
1450
+ * unpaged?: boolean
1451
+ * }
1452
+ * first?: boolean
1453
+ * last?: boolean
1454
+ * empty?: boolean
1455
+ * }
1456
+ * ```
1457
+ */
1458
+ queryPatientStateByExactMatch<
1459
+ Config extends Alova2MethodConfig<PagePatientState> & {
1460
+ data: QueryPatientStateByExactMatchRequest;
1461
+ }
1462
+ >(
1463
+ config: Config
1464
+ ): Alova2Method<PagePatientState, 'patientStateRestful.queryPatientStateByExactMatch', Config>;
1465
+ };
1466
+ metricRestful: {
1467
+ /**
1468
+ * ---
1469
+ *
1470
+ * [GET]
1471
+ *
1472
+ * **path:** /患者/服务/统计/患者/总数
1473
+ *
1474
+ * ---
1475
+ *
1476
+ * **Response**
1477
+ * ```ts
1478
+ * type Response = number
1479
+ * ```
1480
+ */
1481
+ totalOfPatient<Config extends Alova2MethodConfig<number>>(
1482
+ config?: Config
1483
+ ): Alova2Method<number, 'metricRestful.totalOfPatient', Config>;
1484
+ /**
1485
+ * ---
1486
+ *
1487
+ * [GET]
1488
+ *
1489
+ * **path:** /患者/服务/统计/患者/性别/分布
1490
+ *
1491
+ * ---
1492
+ *
1493
+ * **Response**
1494
+ * ```ts
1495
+ * type Response = Array<{
1496
+ * age?: number
1497
+ * count?: number
1498
+ * }>
1499
+ * ```
1500
+ */
1501
+ ageDistributeOfPatient<Config extends Alova2MethodConfig<AgeDistribute[]>>(
1502
+ config?: Config
1503
+ ): Alova2Method<AgeDistribute[], 'metricRestful.ageDistributeOfPatient', Config>;
1504
+ /**
1505
+ * ---
1506
+ *
1507
+ * [GET]
1508
+ *
1509
+ * **path:** /患者/服务/统计/患者/年龄/分布
1510
+ *
1511
+ * ---
1512
+ *
1513
+ * **Response**
1514
+ * ```ts
1515
+ * type Response = Array<{
1516
+ * gender?: string
1517
+ * count?: number
1518
+ * }>
1519
+ * ```
1520
+ */
1521
+ genderDistributeOfPatient<Config extends Alova2MethodConfig<GenderDistribute[]>>(
1522
+ config?: Config
1523
+ ): Alova2Method<GenderDistribute[], 'metricRestful.genderDistributeOfPatient', Config>;
1524
+ /**
1525
+ * ---
1526
+ *
1527
+ * [GET]
1528
+ *
1529
+ * **path:** /患者/服务/统计/患者/分布
1530
+ *
1531
+ * ---
1532
+ *
1533
+ * **Response**
1534
+ * ```ts
1535
+ * type Response = Array<{
1536
+ * date?: string
1537
+ * count?: number
1538
+ * }>
1539
+ * ```
1540
+ */
1541
+ dateDistributeOfPatient<Config extends Alova2MethodConfig<DateDistribute[]>>(
1542
+ config?: Config
1543
+ ): Alova2Method<DateDistribute[], 'metricRestful.dateDistributeOfPatient', Config>;
1544
+ /**
1545
+ * ---
1546
+ *
1547
+ * [GET]
1548
+ *
1549
+ * **path:** /患者/服务/统计/患者/今日
1550
+ *
1551
+ * ---
1552
+ *
1553
+ * **Response**
1554
+ * ```ts
1555
+ * type Response = number
1556
+ * ```
1557
+ */
1558
+ totalOfPatientByToday<Config extends Alova2MethodConfig<number>>(
1559
+ config?: Config
1560
+ ): Alova2Method<number, 'metricRestful.totalOfPatientByToday', Config>;
1561
+ /**
1562
+ * ---
1563
+ *
1564
+ * [GET]
1565
+ *
1566
+ * **path:** /患者/服务/统计/元/日期
1567
+ *
1568
+ * ---
1569
+ *
1570
+ * **Query Parameters**
1571
+ * ```ts
1572
+ * type QueryParameters = {
1573
+ * type: string
1574
+ * }
1575
+ * ```
1576
+ *
1577
+ * ---
1578
+ *
1579
+ * **Response**
1580
+ * ```ts
1581
+ * type Response = Array<{
1582
+ * date?: string
1583
+ * count?: number
1584
+ * }>
1585
+ * ```
1586
+ */
1587
+ datesOfMeta<
1588
+ Config extends Alova2MethodConfig<DateDistribute[]> & {
1589
+ params: {
1590
+ type: string;
1591
+ };
1592
+ }
1593
+ >(
1594
+ config: Config
1595
+ ): Alova2Method<DateDistribute[], 'metricRestful.datesOfMeta', Config>;
1596
+ /**
1597
+ * ---
1598
+ *
1599
+ * [GET]
1600
+ *
1601
+ * **path:** /患者/服务/统计/元/总数
1602
+ *
1603
+ * ---
1604
+ *
1605
+ * **Query Parameters**
1606
+ * ```ts
1607
+ * type QueryParameters = {
1608
+ * type: string
1609
+ * }
1610
+ * ```
1611
+ *
1612
+ * ---
1613
+ *
1614
+ * **Response**
1615
+ * ```ts
1616
+ * type Response = number
1617
+ * ```
1618
+ */
1619
+ totalOfMeta<
1620
+ Config extends Alova2MethodConfig<number> & {
1621
+ params: {
1622
+ type: string;
1623
+ };
1624
+ }
1625
+ >(
1626
+ config: Config
1627
+ ): Alova2Method<number, 'metricRestful.totalOfMeta', Config>;
1628
+ /**
1629
+ * ---
1630
+ *
1631
+ * [GET]
1632
+ *
1633
+ * **path:** /患者/服务/统计/元/今日
1634
+ *
1635
+ * ---
1636
+ *
1637
+ * **Query Parameters**
1638
+ * ```ts
1639
+ * type QueryParameters = {
1640
+ * type: string
1641
+ * }
1642
+ * ```
1643
+ *
1644
+ * ---
1645
+ *
1646
+ * **Response**
1647
+ * ```ts
1648
+ * type Response = number
1649
+ * ```
1650
+ */
1651
+ totalOfMetaByToday<
1652
+ Config extends Alova2MethodConfig<number> & {
1653
+ params: {
1654
+ type: string;
1655
+ };
1656
+ }
1657
+ >(
1658
+ config: Config
1659
+ ): Alova2Method<number, 'metricRestful.totalOfMetaByToday', Config>;
1660
+ };
1661
+ }
1662
+
1663
+ var patientApi: patientApi;
1516
1664
  }
1517
- export {};