web-core-tcm 0.0.29 → 0.0.34

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