web-core-tcm 0.0.87 → 0.0.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/api/check/alova/globals.d.ts +1007 -123
- package/dist/src/api/check/alova/implement/check.js +16 -22
- package/dist/src/api/check/check.js +25 -25
- package/dist/src/api/prescription/alova/globals.d.ts +33 -33
- package/dist/src/api/prescription/herbal.js +4 -4
- package/dist/src/api/prescription/prescription.js +2 -2
- package/package.json +1 -1
|
@@ -112,12 +112,51 @@ export interface DoctorState {
|
|
|
112
112
|
phoneNumber?: string;
|
|
113
113
|
birthdate?: string;
|
|
114
114
|
}
|
|
115
|
+
export interface UserState {
|
|
116
|
+
id?: string;
|
|
117
|
+
name?: string;
|
|
118
|
+
createdTimestamp?: string;
|
|
119
|
+
updatedTimestamp?: string;
|
|
120
|
+
gender?: string;
|
|
121
|
+
identityNumber?: string;
|
|
122
|
+
phoneNumber?: string;
|
|
123
|
+
birthdate?: string;
|
|
124
|
+
}
|
|
125
|
+
export interface DivisionState {
|
|
126
|
+
id?: string;
|
|
127
|
+
name?: string;
|
|
128
|
+
note?: string;
|
|
129
|
+
admins?: UserState[];
|
|
130
|
+
members?: UserState[];
|
|
131
|
+
createdTimestamp?: string;
|
|
132
|
+
updatedTimestamp?: string;
|
|
133
|
+
}
|
|
134
|
+
export interface DepartmentState {
|
|
135
|
+
id?: string;
|
|
136
|
+
name?: string;
|
|
137
|
+
note?: string;
|
|
138
|
+
admins?: UserState[];
|
|
139
|
+
members?: DivisionState[];
|
|
140
|
+
createdTimestamp?: string;
|
|
141
|
+
updatedTimestamp?: string;
|
|
142
|
+
}
|
|
143
|
+
export interface HospitalState {
|
|
144
|
+
id?: string;
|
|
145
|
+
name?: string;
|
|
146
|
+
level?: string;
|
|
147
|
+
address?: string;
|
|
148
|
+
note?: string;
|
|
149
|
+
admins?: UserState[];
|
|
150
|
+
members?: DepartmentState[];
|
|
151
|
+
createdTimestamp?: string;
|
|
152
|
+
updatedTimestamp?: string;
|
|
153
|
+
}
|
|
115
154
|
export interface HerbalState {
|
|
116
155
|
id?: string;
|
|
117
156
|
name?: string;
|
|
118
157
|
price?: number;
|
|
119
158
|
weight?: number;
|
|
120
|
-
ownerState?:
|
|
159
|
+
ownerState?: HospitalState;
|
|
121
160
|
createdTimestamp?: string;
|
|
122
161
|
updatedTimestamp?: string;
|
|
123
162
|
}
|
|
@@ -136,24 +175,24 @@ export interface PrescriptionState {
|
|
|
136
175
|
}
|
|
137
176
|
export interface CheckState {
|
|
138
177
|
id?: string;
|
|
139
|
-
|
|
140
|
-
|
|
178
|
+
metas?: MetaState[];
|
|
179
|
+
prescriptions?: PrescriptionState[];
|
|
141
180
|
diagnosis?: string;
|
|
142
|
-
|
|
143
|
-
|
|
181
|
+
doctor?: DoctorState;
|
|
182
|
+
patient?: PatientState;
|
|
144
183
|
paymentType?: string;
|
|
145
184
|
outpatientType?: string;
|
|
146
185
|
createdTimestamp?: string;
|
|
147
186
|
updatedTimestamp?: string;
|
|
148
|
-
|
|
187
|
+
tags?: TagState[];
|
|
149
188
|
prescriptionPaymentStatus?: number;
|
|
150
189
|
outboundStatus?: number;
|
|
151
190
|
}
|
|
152
191
|
export interface PaymentState {
|
|
153
192
|
id?: string;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
193
|
+
doctor?: DoctorState;
|
|
194
|
+
patient?: PatientState;
|
|
195
|
+
prescriptions?: PrescriptionState[];
|
|
157
196
|
createdTimestamp?: string;
|
|
158
197
|
updatedTimestamp?: string;
|
|
159
198
|
prescriptionPaymentStatus?: number;
|
|
@@ -178,16 +217,16 @@ export interface AgeDistribute {
|
|
|
178
217
|
}
|
|
179
218
|
export interface SortObject {
|
|
180
219
|
empty?: boolean;
|
|
181
|
-
unsorted?: boolean;
|
|
182
220
|
sorted?: boolean;
|
|
221
|
+
unsorted?: boolean;
|
|
183
222
|
}
|
|
184
223
|
export interface PageableObject {
|
|
185
224
|
offset?: number;
|
|
186
225
|
sort?: SortObject;
|
|
187
|
-
unpaged?: boolean;
|
|
188
226
|
paged?: boolean;
|
|
189
227
|
pageNumber?: number;
|
|
190
228
|
pageSize?: number;
|
|
229
|
+
unpaged?: boolean;
|
|
191
230
|
}
|
|
192
231
|
export interface PageCheckState {
|
|
193
232
|
totalPages?: number;
|
|
@@ -242,7 +281,7 @@ declare global {
|
|
|
242
281
|
* id?: string
|
|
243
282
|
* // [items] start
|
|
244
283
|
* // [items] end
|
|
245
|
-
*
|
|
284
|
+
* metas?: Array<{
|
|
246
285
|
* id?: string
|
|
247
286
|
* ownerState?: {
|
|
248
287
|
* id?: string
|
|
@@ -289,7 +328,7 @@ declare global {
|
|
|
289
328
|
* }>
|
|
290
329
|
* // [items] start
|
|
291
330
|
* // [items] end
|
|
292
|
-
*
|
|
331
|
+
* prescriptions?: Array<{
|
|
293
332
|
* id?: string
|
|
294
333
|
* createdTimestamp?: string
|
|
295
334
|
* updatedTimestamp?: string
|
|
@@ -323,19 +362,84 @@ declare global {
|
|
|
323
362
|
* ownerState?: {
|
|
324
363
|
* id?: string
|
|
325
364
|
* name?: string
|
|
365
|
+
* level?: string
|
|
366
|
+
* address?: string
|
|
367
|
+
* note?: string
|
|
368
|
+
* // [items] start
|
|
369
|
+
* // [items] end
|
|
370
|
+
* admins?: Array<{
|
|
371
|
+
* id?: string
|
|
372
|
+
* name?: string
|
|
373
|
+
* createdTimestamp?: string
|
|
374
|
+
* updatedTimestamp?: string
|
|
375
|
+
* gender?: string
|
|
376
|
+
* identityNumber?: string
|
|
377
|
+
* phoneNumber?: string
|
|
378
|
+
* birthdate?: string
|
|
379
|
+
* }>
|
|
380
|
+
* // [items] start
|
|
381
|
+
* // [items] end
|
|
382
|
+
* members?: Array<{
|
|
383
|
+
* id?: string
|
|
384
|
+
* name?: string
|
|
385
|
+
* note?: string
|
|
386
|
+
* // [items] start
|
|
387
|
+
* // [items] end
|
|
388
|
+
* admins?: Array<{
|
|
389
|
+
* id?: string
|
|
390
|
+
* name?: string
|
|
391
|
+
* createdTimestamp?: string
|
|
392
|
+
* updatedTimestamp?: string
|
|
393
|
+
* gender?: string
|
|
394
|
+
* identityNumber?: string
|
|
395
|
+
* phoneNumber?: string
|
|
396
|
+
* birthdate?: string
|
|
397
|
+
* }>
|
|
398
|
+
* // [items] start
|
|
399
|
+
* // [items] end
|
|
400
|
+
* members?: Array<{
|
|
401
|
+
* id?: string
|
|
402
|
+
* name?: string
|
|
403
|
+
* note?: string
|
|
404
|
+
* // [items] start
|
|
405
|
+
* // [items] end
|
|
406
|
+
* admins?: Array<{
|
|
407
|
+
* id?: string
|
|
408
|
+
* name?: string
|
|
409
|
+
* createdTimestamp?: string
|
|
410
|
+
* updatedTimestamp?: string
|
|
411
|
+
* gender?: string
|
|
412
|
+
* identityNumber?: string
|
|
413
|
+
* phoneNumber?: string
|
|
414
|
+
* birthdate?: string
|
|
415
|
+
* }>
|
|
416
|
+
* // [items] start
|
|
417
|
+
* // [items] end
|
|
418
|
+
* members?: Array<{
|
|
419
|
+
* id?: string
|
|
420
|
+
* name?: string
|
|
421
|
+
* createdTimestamp?: string
|
|
422
|
+
* updatedTimestamp?: string
|
|
423
|
+
* gender?: string
|
|
424
|
+
* identityNumber?: string
|
|
425
|
+
* phoneNumber?: string
|
|
426
|
+
* birthdate?: string
|
|
427
|
+
* }>
|
|
428
|
+
* createdTimestamp?: string
|
|
429
|
+
* updatedTimestamp?: string
|
|
430
|
+
* }>
|
|
431
|
+
* createdTimestamp?: string
|
|
432
|
+
* updatedTimestamp?: string
|
|
433
|
+
* }>
|
|
326
434
|
* createdTimestamp?: string
|
|
327
435
|
* updatedTimestamp?: string
|
|
328
|
-
* gender?: string
|
|
329
|
-
* identityNumber?: string
|
|
330
|
-
* phoneNumber?: string
|
|
331
|
-
* birthdate?: string
|
|
332
436
|
* }
|
|
333
437
|
* createdTimestamp?: string
|
|
334
438
|
* updatedTimestamp?: string
|
|
335
439
|
* }>
|
|
336
440
|
* }>
|
|
337
441
|
* diagnosis?: string
|
|
338
|
-
*
|
|
442
|
+
* doctor?: {
|
|
339
443
|
* id?: string
|
|
340
444
|
* name?: string
|
|
341
445
|
* createdTimestamp?: string
|
|
@@ -345,7 +449,7 @@ declare global {
|
|
|
345
449
|
* phoneNumber?: string
|
|
346
450
|
* birthdate?: string
|
|
347
451
|
* }
|
|
348
|
-
*
|
|
452
|
+
* patient?: {
|
|
349
453
|
* id?: string
|
|
350
454
|
* doctorId?: string
|
|
351
455
|
* name?: string
|
|
@@ -378,7 +482,7 @@ declare global {
|
|
|
378
482
|
* updatedTimestamp?: string
|
|
379
483
|
* // [items] start
|
|
380
484
|
* // [items] end
|
|
381
|
-
*
|
|
485
|
+
* tags?: Array<{
|
|
382
486
|
* key?: string
|
|
383
487
|
* // [items] start
|
|
384
488
|
* // [items] end
|
|
@@ -426,7 +530,7 @@ declare global {
|
|
|
426
530
|
* id?: string
|
|
427
531
|
* // [items] start
|
|
428
532
|
* // [items] end
|
|
429
|
-
*
|
|
533
|
+
* metas?: Array<{
|
|
430
534
|
* id?: string
|
|
431
535
|
* ownerState?: {
|
|
432
536
|
* id?: string
|
|
@@ -473,7 +577,7 @@ declare global {
|
|
|
473
577
|
* }>
|
|
474
578
|
* // [items] start
|
|
475
579
|
* // [items] end
|
|
476
|
-
*
|
|
580
|
+
* prescriptions?: Array<{
|
|
477
581
|
* id?: string
|
|
478
582
|
* createdTimestamp?: string
|
|
479
583
|
* updatedTimestamp?: string
|
|
@@ -507,19 +611,84 @@ declare global {
|
|
|
507
611
|
* ownerState?: {
|
|
508
612
|
* id?: string
|
|
509
613
|
* name?: string
|
|
614
|
+
* level?: string
|
|
615
|
+
* address?: string
|
|
616
|
+
* note?: string
|
|
617
|
+
* // [items] start
|
|
618
|
+
* // [items] end
|
|
619
|
+
* admins?: Array<{
|
|
620
|
+
* id?: string
|
|
621
|
+
* name?: string
|
|
622
|
+
* createdTimestamp?: string
|
|
623
|
+
* updatedTimestamp?: string
|
|
624
|
+
* gender?: string
|
|
625
|
+
* identityNumber?: string
|
|
626
|
+
* phoneNumber?: string
|
|
627
|
+
* birthdate?: string
|
|
628
|
+
* }>
|
|
629
|
+
* // [items] start
|
|
630
|
+
* // [items] end
|
|
631
|
+
* members?: Array<{
|
|
632
|
+
* id?: string
|
|
633
|
+
* name?: string
|
|
634
|
+
* note?: string
|
|
635
|
+
* // [items] start
|
|
636
|
+
* // [items] end
|
|
637
|
+
* admins?: Array<{
|
|
638
|
+
* id?: string
|
|
639
|
+
* name?: string
|
|
640
|
+
* createdTimestamp?: string
|
|
641
|
+
* updatedTimestamp?: string
|
|
642
|
+
* gender?: string
|
|
643
|
+
* identityNumber?: string
|
|
644
|
+
* phoneNumber?: string
|
|
645
|
+
* birthdate?: string
|
|
646
|
+
* }>
|
|
647
|
+
* // [items] start
|
|
648
|
+
* // [items] end
|
|
649
|
+
* members?: Array<{
|
|
650
|
+
* id?: string
|
|
651
|
+
* name?: string
|
|
652
|
+
* note?: string
|
|
653
|
+
* // [items] start
|
|
654
|
+
* // [items] end
|
|
655
|
+
* admins?: Array<{
|
|
656
|
+
* id?: string
|
|
657
|
+
* name?: string
|
|
658
|
+
* createdTimestamp?: string
|
|
659
|
+
* updatedTimestamp?: string
|
|
660
|
+
* gender?: string
|
|
661
|
+
* identityNumber?: string
|
|
662
|
+
* phoneNumber?: string
|
|
663
|
+
* birthdate?: string
|
|
664
|
+
* }>
|
|
665
|
+
* // [items] start
|
|
666
|
+
* // [items] end
|
|
667
|
+
* members?: Array<{
|
|
668
|
+
* id?: string
|
|
669
|
+
* name?: string
|
|
670
|
+
* createdTimestamp?: string
|
|
671
|
+
* updatedTimestamp?: string
|
|
672
|
+
* gender?: string
|
|
673
|
+
* identityNumber?: string
|
|
674
|
+
* phoneNumber?: string
|
|
675
|
+
* birthdate?: string
|
|
676
|
+
* }>
|
|
677
|
+
* createdTimestamp?: string
|
|
678
|
+
* updatedTimestamp?: string
|
|
679
|
+
* }>
|
|
680
|
+
* createdTimestamp?: string
|
|
681
|
+
* updatedTimestamp?: string
|
|
682
|
+
* }>
|
|
510
683
|
* createdTimestamp?: string
|
|
511
684
|
* updatedTimestamp?: string
|
|
512
|
-
* gender?: string
|
|
513
|
-
* identityNumber?: string
|
|
514
|
-
* phoneNumber?: string
|
|
515
|
-
* birthdate?: string
|
|
516
685
|
* }
|
|
517
686
|
* createdTimestamp?: string
|
|
518
687
|
* updatedTimestamp?: string
|
|
519
688
|
* }>
|
|
520
689
|
* }>
|
|
521
690
|
* diagnosis?: string
|
|
522
|
-
*
|
|
691
|
+
* doctor?: {
|
|
523
692
|
* id?: string
|
|
524
693
|
* name?: string
|
|
525
694
|
* createdTimestamp?: string
|
|
@@ -529,7 +698,7 @@ declare global {
|
|
|
529
698
|
* phoneNumber?: string
|
|
530
699
|
* birthdate?: string
|
|
531
700
|
* }
|
|
532
|
-
*
|
|
701
|
+
* patient?: {
|
|
533
702
|
* id?: string
|
|
534
703
|
* doctorId?: string
|
|
535
704
|
* name?: string
|
|
@@ -562,7 +731,7 @@ declare global {
|
|
|
562
731
|
* updatedTimestamp?: string
|
|
563
732
|
* // [items] start
|
|
564
733
|
* // [items] end
|
|
565
|
-
*
|
|
734
|
+
* tags?: Array<{
|
|
566
735
|
* key?: string
|
|
567
736
|
* // [items] start
|
|
568
737
|
* // [items] end
|
|
@@ -585,7 +754,7 @@ declare global {
|
|
|
585
754
|
* id?: string
|
|
586
755
|
* // [items] start
|
|
587
756
|
* // [items] end
|
|
588
|
-
*
|
|
757
|
+
* metas?: Array<{
|
|
589
758
|
* id?: string
|
|
590
759
|
* ownerState?: {
|
|
591
760
|
* id?: string
|
|
@@ -632,7 +801,7 @@ declare global {
|
|
|
632
801
|
* }>
|
|
633
802
|
* // [items] start
|
|
634
803
|
* // [items] end
|
|
635
|
-
*
|
|
804
|
+
* prescriptions?: Array<{
|
|
636
805
|
* id?: string
|
|
637
806
|
* createdTimestamp?: string
|
|
638
807
|
* updatedTimestamp?: string
|
|
@@ -666,19 +835,84 @@ declare global {
|
|
|
666
835
|
* ownerState?: {
|
|
667
836
|
* id?: string
|
|
668
837
|
* name?: string
|
|
838
|
+
* level?: string
|
|
839
|
+
* address?: string
|
|
840
|
+
* note?: string
|
|
841
|
+
* // [items] start
|
|
842
|
+
* // [items] end
|
|
843
|
+
* admins?: Array<{
|
|
844
|
+
* id?: string
|
|
845
|
+
* name?: string
|
|
846
|
+
* createdTimestamp?: string
|
|
847
|
+
* updatedTimestamp?: string
|
|
848
|
+
* gender?: string
|
|
849
|
+
* identityNumber?: string
|
|
850
|
+
* phoneNumber?: string
|
|
851
|
+
* birthdate?: string
|
|
852
|
+
* }>
|
|
853
|
+
* // [items] start
|
|
854
|
+
* // [items] end
|
|
855
|
+
* members?: Array<{
|
|
856
|
+
* id?: string
|
|
857
|
+
* name?: string
|
|
858
|
+
* note?: string
|
|
859
|
+
* // [items] start
|
|
860
|
+
* // [items] end
|
|
861
|
+
* admins?: Array<{
|
|
862
|
+
* id?: string
|
|
863
|
+
* name?: string
|
|
864
|
+
* createdTimestamp?: string
|
|
865
|
+
* updatedTimestamp?: string
|
|
866
|
+
* gender?: string
|
|
867
|
+
* identityNumber?: string
|
|
868
|
+
* phoneNumber?: string
|
|
869
|
+
* birthdate?: string
|
|
870
|
+
* }>
|
|
871
|
+
* // [items] start
|
|
872
|
+
* // [items] end
|
|
873
|
+
* members?: Array<{
|
|
874
|
+
* id?: string
|
|
875
|
+
* name?: string
|
|
876
|
+
* note?: string
|
|
877
|
+
* // [items] start
|
|
878
|
+
* // [items] end
|
|
879
|
+
* admins?: Array<{
|
|
880
|
+
* id?: string
|
|
881
|
+
* name?: string
|
|
882
|
+
* createdTimestamp?: string
|
|
883
|
+
* updatedTimestamp?: string
|
|
884
|
+
* gender?: string
|
|
885
|
+
* identityNumber?: string
|
|
886
|
+
* phoneNumber?: string
|
|
887
|
+
* birthdate?: string
|
|
888
|
+
* }>
|
|
889
|
+
* // [items] start
|
|
890
|
+
* // [items] end
|
|
891
|
+
* members?: Array<{
|
|
892
|
+
* id?: string
|
|
893
|
+
* name?: string
|
|
894
|
+
* createdTimestamp?: string
|
|
895
|
+
* updatedTimestamp?: string
|
|
896
|
+
* gender?: string
|
|
897
|
+
* identityNumber?: string
|
|
898
|
+
* phoneNumber?: string
|
|
899
|
+
* birthdate?: string
|
|
900
|
+
* }>
|
|
901
|
+
* createdTimestamp?: string
|
|
902
|
+
* updatedTimestamp?: string
|
|
903
|
+
* }>
|
|
904
|
+
* createdTimestamp?: string
|
|
905
|
+
* updatedTimestamp?: string
|
|
906
|
+
* }>
|
|
669
907
|
* createdTimestamp?: string
|
|
670
908
|
* updatedTimestamp?: string
|
|
671
|
-
* gender?: string
|
|
672
|
-
* identityNumber?: string
|
|
673
|
-
* phoneNumber?: string
|
|
674
|
-
* birthdate?: string
|
|
675
909
|
* }
|
|
676
910
|
* createdTimestamp?: string
|
|
677
911
|
* updatedTimestamp?: string
|
|
678
912
|
* }>
|
|
679
913
|
* }>
|
|
680
914
|
* diagnosis?: string
|
|
681
|
-
*
|
|
915
|
+
* doctor?: {
|
|
682
916
|
* id?: string
|
|
683
917
|
* name?: string
|
|
684
918
|
* createdTimestamp?: string
|
|
@@ -688,7 +922,7 @@ declare global {
|
|
|
688
922
|
* phoneNumber?: string
|
|
689
923
|
* birthdate?: string
|
|
690
924
|
* }
|
|
691
|
-
*
|
|
925
|
+
* patient?: {
|
|
692
926
|
* id?: string
|
|
693
927
|
* doctorId?: string
|
|
694
928
|
* name?: string
|
|
@@ -721,7 +955,7 @@ declare global {
|
|
|
721
955
|
* updatedTimestamp?: string
|
|
722
956
|
* // [items] start
|
|
723
957
|
* // [items] end
|
|
724
|
-
*
|
|
958
|
+
* tags?: Array<{
|
|
725
959
|
* key?: string
|
|
726
960
|
* // [items] start
|
|
727
961
|
* // [items] end
|
|
@@ -820,7 +1054,7 @@ declare global {
|
|
|
820
1054
|
* id?: string
|
|
821
1055
|
* // [items] start
|
|
822
1056
|
* // [items] end
|
|
823
|
-
*
|
|
1057
|
+
* metas?: Array<{
|
|
824
1058
|
* id?: string
|
|
825
1059
|
* ownerState?: {
|
|
826
1060
|
* id?: string
|
|
@@ -867,7 +1101,7 @@ declare global {
|
|
|
867
1101
|
* }>
|
|
868
1102
|
* // [items] start
|
|
869
1103
|
* // [items] end
|
|
870
|
-
*
|
|
1104
|
+
* prescriptions?: Array<{
|
|
871
1105
|
* id?: string
|
|
872
1106
|
* createdTimestamp?: string
|
|
873
1107
|
* updatedTimestamp?: string
|
|
@@ -901,19 +1135,84 @@ declare global {
|
|
|
901
1135
|
* ownerState?: {
|
|
902
1136
|
* id?: string
|
|
903
1137
|
* name?: string
|
|
1138
|
+
* level?: string
|
|
1139
|
+
* address?: string
|
|
1140
|
+
* note?: string
|
|
1141
|
+
* // [items] start
|
|
1142
|
+
* // [items] end
|
|
1143
|
+
* admins?: Array<{
|
|
1144
|
+
* id?: string
|
|
1145
|
+
* name?: string
|
|
1146
|
+
* createdTimestamp?: string
|
|
1147
|
+
* updatedTimestamp?: string
|
|
1148
|
+
* gender?: string
|
|
1149
|
+
* identityNumber?: string
|
|
1150
|
+
* phoneNumber?: string
|
|
1151
|
+
* birthdate?: string
|
|
1152
|
+
* }>
|
|
1153
|
+
* // [items] start
|
|
1154
|
+
* // [items] end
|
|
1155
|
+
* members?: Array<{
|
|
1156
|
+
* id?: string
|
|
1157
|
+
* name?: string
|
|
1158
|
+
* note?: string
|
|
1159
|
+
* // [items] start
|
|
1160
|
+
* // [items] end
|
|
1161
|
+
* admins?: Array<{
|
|
1162
|
+
* id?: string
|
|
1163
|
+
* name?: string
|
|
1164
|
+
* createdTimestamp?: string
|
|
1165
|
+
* updatedTimestamp?: string
|
|
1166
|
+
* gender?: string
|
|
1167
|
+
* identityNumber?: string
|
|
1168
|
+
* phoneNumber?: string
|
|
1169
|
+
* birthdate?: string
|
|
1170
|
+
* }>
|
|
1171
|
+
* // [items] start
|
|
1172
|
+
* // [items] end
|
|
1173
|
+
* members?: Array<{
|
|
1174
|
+
* id?: string
|
|
1175
|
+
* name?: string
|
|
1176
|
+
* note?: string
|
|
1177
|
+
* // [items] start
|
|
1178
|
+
* // [items] end
|
|
1179
|
+
* admins?: Array<{
|
|
1180
|
+
* id?: string
|
|
1181
|
+
* name?: string
|
|
1182
|
+
* createdTimestamp?: string
|
|
1183
|
+
* updatedTimestamp?: string
|
|
1184
|
+
* gender?: string
|
|
1185
|
+
* identityNumber?: string
|
|
1186
|
+
* phoneNumber?: string
|
|
1187
|
+
* birthdate?: string
|
|
1188
|
+
* }>
|
|
1189
|
+
* // [items] start
|
|
1190
|
+
* // [items] end
|
|
1191
|
+
* members?: Array<{
|
|
1192
|
+
* id?: string
|
|
1193
|
+
* name?: string
|
|
1194
|
+
* createdTimestamp?: string
|
|
1195
|
+
* updatedTimestamp?: string
|
|
1196
|
+
* gender?: string
|
|
1197
|
+
* identityNumber?: string
|
|
1198
|
+
* phoneNumber?: string
|
|
1199
|
+
* birthdate?: string
|
|
1200
|
+
* }>
|
|
1201
|
+
* createdTimestamp?: string
|
|
1202
|
+
* updatedTimestamp?: string
|
|
1203
|
+
* }>
|
|
1204
|
+
* createdTimestamp?: string
|
|
1205
|
+
* updatedTimestamp?: string
|
|
1206
|
+
* }>
|
|
904
1207
|
* createdTimestamp?: string
|
|
905
1208
|
* updatedTimestamp?: string
|
|
906
|
-
* gender?: string
|
|
907
|
-
* identityNumber?: string
|
|
908
|
-
* phoneNumber?: string
|
|
909
|
-
* birthdate?: string
|
|
910
1209
|
* }
|
|
911
1210
|
* createdTimestamp?: string
|
|
912
1211
|
* updatedTimestamp?: string
|
|
913
1212
|
* }>
|
|
914
1213
|
* }>
|
|
915
1214
|
* diagnosis?: string
|
|
916
|
-
*
|
|
1215
|
+
* doctor?: {
|
|
917
1216
|
* id?: string
|
|
918
1217
|
* name?: string
|
|
919
1218
|
* createdTimestamp?: string
|
|
@@ -923,7 +1222,7 @@ declare global {
|
|
|
923
1222
|
* phoneNumber?: string
|
|
924
1223
|
* birthdate?: string
|
|
925
1224
|
* }
|
|
926
|
-
*
|
|
1225
|
+
* patient?: {
|
|
927
1226
|
* id?: string
|
|
928
1227
|
* doctorId?: string
|
|
929
1228
|
* name?: string
|
|
@@ -956,7 +1255,7 @@ declare global {
|
|
|
956
1255
|
* updatedTimestamp?: string
|
|
957
1256
|
* // [items] start
|
|
958
1257
|
* // [items] end
|
|
959
|
-
*
|
|
1258
|
+
* tags?: Array<{
|
|
960
1259
|
* key?: string
|
|
961
1260
|
* // [items] start
|
|
962
1261
|
* // [items] end
|
|
@@ -972,20 +1271,20 @@ declare global {
|
|
|
972
1271
|
* number?: number
|
|
973
1272
|
* sort?: {
|
|
974
1273
|
* empty?: boolean
|
|
975
|
-
* unsorted?: boolean
|
|
976
1274
|
* sorted?: boolean
|
|
1275
|
+
* unsorted?: boolean
|
|
977
1276
|
* }
|
|
978
1277
|
* pageable?: {
|
|
979
1278
|
* offset?: number
|
|
980
1279
|
* sort?: {
|
|
981
1280
|
* empty?: boolean
|
|
982
|
-
* unsorted?: boolean
|
|
983
1281
|
* sorted?: boolean
|
|
1282
|
+
* unsorted?: boolean
|
|
984
1283
|
* }
|
|
985
|
-
* unpaged?: boolean
|
|
986
1284
|
* paged?: boolean
|
|
987
1285
|
* pageNumber?: number
|
|
988
1286
|
* pageSize?: number
|
|
1287
|
+
* unpaged?: boolean
|
|
989
1288
|
* }
|
|
990
1289
|
* numberOfElements?: number
|
|
991
1290
|
* empty?: boolean
|
|
@@ -1026,7 +1325,7 @@ declare global {
|
|
|
1026
1325
|
* id?: string
|
|
1027
1326
|
* // [items] start
|
|
1028
1327
|
* // [items] end
|
|
1029
|
-
*
|
|
1328
|
+
* metas?: Array<{
|
|
1030
1329
|
* id?: string
|
|
1031
1330
|
* ownerState?: {
|
|
1032
1331
|
* id?: string
|
|
@@ -1073,7 +1372,7 @@ declare global {
|
|
|
1073
1372
|
* }>
|
|
1074
1373
|
* // [items] start
|
|
1075
1374
|
* // [items] end
|
|
1076
|
-
*
|
|
1375
|
+
* prescriptions?: Array<{
|
|
1077
1376
|
* id?: string
|
|
1078
1377
|
* createdTimestamp?: string
|
|
1079
1378
|
* updatedTimestamp?: string
|
|
@@ -1107,19 +1406,84 @@ declare global {
|
|
|
1107
1406
|
* ownerState?: {
|
|
1108
1407
|
* id?: string
|
|
1109
1408
|
* name?: string
|
|
1409
|
+
* level?: string
|
|
1410
|
+
* address?: string
|
|
1411
|
+
* note?: string
|
|
1412
|
+
* // [items] start
|
|
1413
|
+
* // [items] end
|
|
1414
|
+
* admins?: Array<{
|
|
1415
|
+
* id?: string
|
|
1416
|
+
* name?: string
|
|
1417
|
+
* createdTimestamp?: string
|
|
1418
|
+
* updatedTimestamp?: string
|
|
1419
|
+
* gender?: string
|
|
1420
|
+
* identityNumber?: string
|
|
1421
|
+
* phoneNumber?: string
|
|
1422
|
+
* birthdate?: string
|
|
1423
|
+
* }>
|
|
1424
|
+
* // [items] start
|
|
1425
|
+
* // [items] end
|
|
1426
|
+
* members?: Array<{
|
|
1427
|
+
* id?: string
|
|
1428
|
+
* name?: string
|
|
1429
|
+
* note?: string
|
|
1430
|
+
* // [items] start
|
|
1431
|
+
* // [items] end
|
|
1432
|
+
* admins?: Array<{
|
|
1433
|
+
* id?: string
|
|
1434
|
+
* name?: string
|
|
1435
|
+
* createdTimestamp?: string
|
|
1436
|
+
* updatedTimestamp?: string
|
|
1437
|
+
* gender?: string
|
|
1438
|
+
* identityNumber?: string
|
|
1439
|
+
* phoneNumber?: string
|
|
1440
|
+
* birthdate?: string
|
|
1441
|
+
* }>
|
|
1442
|
+
* // [items] start
|
|
1443
|
+
* // [items] end
|
|
1444
|
+
* members?: Array<{
|
|
1445
|
+
* id?: string
|
|
1446
|
+
* name?: string
|
|
1447
|
+
* note?: string
|
|
1448
|
+
* // [items] start
|
|
1449
|
+
* // [items] end
|
|
1450
|
+
* admins?: Array<{
|
|
1451
|
+
* id?: string
|
|
1452
|
+
* name?: string
|
|
1453
|
+
* createdTimestamp?: string
|
|
1454
|
+
* updatedTimestamp?: string
|
|
1455
|
+
* gender?: string
|
|
1456
|
+
* identityNumber?: string
|
|
1457
|
+
* phoneNumber?: string
|
|
1458
|
+
* birthdate?: string
|
|
1459
|
+
* }>
|
|
1460
|
+
* // [items] start
|
|
1461
|
+
* // [items] end
|
|
1462
|
+
* members?: Array<{
|
|
1463
|
+
* id?: string
|
|
1464
|
+
* name?: string
|
|
1465
|
+
* createdTimestamp?: string
|
|
1466
|
+
* updatedTimestamp?: string
|
|
1467
|
+
* gender?: string
|
|
1468
|
+
* identityNumber?: string
|
|
1469
|
+
* phoneNumber?: string
|
|
1470
|
+
* birthdate?: string
|
|
1471
|
+
* }>
|
|
1472
|
+
* createdTimestamp?: string
|
|
1473
|
+
* updatedTimestamp?: string
|
|
1474
|
+
* }>
|
|
1475
|
+
* createdTimestamp?: string
|
|
1476
|
+
* updatedTimestamp?: string
|
|
1477
|
+
* }>
|
|
1110
1478
|
* createdTimestamp?: string
|
|
1111
1479
|
* updatedTimestamp?: string
|
|
1112
|
-
* gender?: string
|
|
1113
|
-
* identityNumber?: string
|
|
1114
|
-
* phoneNumber?: string
|
|
1115
|
-
* birthdate?: string
|
|
1116
1480
|
* }
|
|
1117
1481
|
* createdTimestamp?: string
|
|
1118
1482
|
* updatedTimestamp?: string
|
|
1119
1483
|
* }>
|
|
1120
1484
|
* }>
|
|
1121
1485
|
* diagnosis?: string
|
|
1122
|
-
*
|
|
1486
|
+
* doctor?: {
|
|
1123
1487
|
* id?: string
|
|
1124
1488
|
* name?: string
|
|
1125
1489
|
* createdTimestamp?: string
|
|
@@ -1129,7 +1493,7 @@ declare global {
|
|
|
1129
1493
|
* phoneNumber?: string
|
|
1130
1494
|
* birthdate?: string
|
|
1131
1495
|
* }
|
|
1132
|
-
*
|
|
1496
|
+
* patient?: {
|
|
1133
1497
|
* id?: string
|
|
1134
1498
|
* doctorId?: string
|
|
1135
1499
|
* name?: string
|
|
@@ -1162,7 +1526,7 @@ declare global {
|
|
|
1162
1526
|
* updatedTimestamp?: string
|
|
1163
1527
|
* // [items] start
|
|
1164
1528
|
* // [items] end
|
|
1165
|
-
*
|
|
1529
|
+
* tags?: Array<{
|
|
1166
1530
|
* key?: string
|
|
1167
1531
|
* // [items] start
|
|
1168
1532
|
* // [items] end
|
|
@@ -1185,7 +1549,7 @@ declare global {
|
|
|
1185
1549
|
* id?: string
|
|
1186
1550
|
* // [items] start
|
|
1187
1551
|
* // [items] end
|
|
1188
|
-
*
|
|
1552
|
+
* metas?: Array<{
|
|
1189
1553
|
* id?: string
|
|
1190
1554
|
* ownerState?: {
|
|
1191
1555
|
* id?: string
|
|
@@ -1232,7 +1596,7 @@ declare global {
|
|
|
1232
1596
|
* }>
|
|
1233
1597
|
* // [items] start
|
|
1234
1598
|
* // [items] end
|
|
1235
|
-
*
|
|
1599
|
+
* prescriptions?: Array<{
|
|
1236
1600
|
* id?: string
|
|
1237
1601
|
* createdTimestamp?: string
|
|
1238
1602
|
* updatedTimestamp?: string
|
|
@@ -1266,19 +1630,84 @@ declare global {
|
|
|
1266
1630
|
* ownerState?: {
|
|
1267
1631
|
* id?: string
|
|
1268
1632
|
* name?: string
|
|
1633
|
+
* level?: string
|
|
1634
|
+
* address?: string
|
|
1635
|
+
* note?: string
|
|
1636
|
+
* // [items] start
|
|
1637
|
+
* // [items] end
|
|
1638
|
+
* admins?: Array<{
|
|
1639
|
+
* id?: string
|
|
1640
|
+
* name?: string
|
|
1641
|
+
* createdTimestamp?: string
|
|
1642
|
+
* updatedTimestamp?: string
|
|
1643
|
+
* gender?: string
|
|
1644
|
+
* identityNumber?: string
|
|
1645
|
+
* phoneNumber?: string
|
|
1646
|
+
* birthdate?: string
|
|
1647
|
+
* }>
|
|
1648
|
+
* // [items] start
|
|
1649
|
+
* // [items] end
|
|
1650
|
+
* members?: Array<{
|
|
1651
|
+
* id?: string
|
|
1652
|
+
* name?: string
|
|
1653
|
+
* note?: string
|
|
1654
|
+
* // [items] start
|
|
1655
|
+
* // [items] end
|
|
1656
|
+
* admins?: Array<{
|
|
1657
|
+
* id?: string
|
|
1658
|
+
* name?: string
|
|
1659
|
+
* createdTimestamp?: string
|
|
1660
|
+
* updatedTimestamp?: string
|
|
1661
|
+
* gender?: string
|
|
1662
|
+
* identityNumber?: string
|
|
1663
|
+
* phoneNumber?: string
|
|
1664
|
+
* birthdate?: string
|
|
1665
|
+
* }>
|
|
1666
|
+
* // [items] start
|
|
1667
|
+
* // [items] end
|
|
1668
|
+
* members?: Array<{
|
|
1669
|
+
* id?: string
|
|
1670
|
+
* name?: string
|
|
1671
|
+
* note?: string
|
|
1672
|
+
* // [items] start
|
|
1673
|
+
* // [items] end
|
|
1674
|
+
* admins?: Array<{
|
|
1675
|
+
* id?: string
|
|
1676
|
+
* name?: string
|
|
1677
|
+
* createdTimestamp?: string
|
|
1678
|
+
* updatedTimestamp?: string
|
|
1679
|
+
* gender?: string
|
|
1680
|
+
* identityNumber?: string
|
|
1681
|
+
* phoneNumber?: string
|
|
1682
|
+
* birthdate?: string
|
|
1683
|
+
* }>
|
|
1684
|
+
* // [items] start
|
|
1685
|
+
* // [items] end
|
|
1686
|
+
* members?: Array<{
|
|
1687
|
+
* id?: string
|
|
1688
|
+
* name?: string
|
|
1689
|
+
* createdTimestamp?: string
|
|
1690
|
+
* updatedTimestamp?: string
|
|
1691
|
+
* gender?: string
|
|
1692
|
+
* identityNumber?: string
|
|
1693
|
+
* phoneNumber?: string
|
|
1694
|
+
* birthdate?: string
|
|
1695
|
+
* }>
|
|
1696
|
+
* createdTimestamp?: string
|
|
1697
|
+
* updatedTimestamp?: string
|
|
1698
|
+
* }>
|
|
1699
|
+
* createdTimestamp?: string
|
|
1700
|
+
* updatedTimestamp?: string
|
|
1701
|
+
* }>
|
|
1269
1702
|
* createdTimestamp?: string
|
|
1270
1703
|
* updatedTimestamp?: string
|
|
1271
|
-
* gender?: string
|
|
1272
|
-
* identityNumber?: string
|
|
1273
|
-
* phoneNumber?: string
|
|
1274
|
-
* birthdate?: string
|
|
1275
1704
|
* }
|
|
1276
1705
|
* createdTimestamp?: string
|
|
1277
1706
|
* updatedTimestamp?: string
|
|
1278
1707
|
* }>
|
|
1279
1708
|
* }>
|
|
1280
1709
|
* diagnosis?: string
|
|
1281
|
-
*
|
|
1710
|
+
* doctor?: {
|
|
1282
1711
|
* id?: string
|
|
1283
1712
|
* name?: string
|
|
1284
1713
|
* createdTimestamp?: string
|
|
@@ -1288,7 +1717,7 @@ declare global {
|
|
|
1288
1717
|
* phoneNumber?: string
|
|
1289
1718
|
* birthdate?: string
|
|
1290
1719
|
* }
|
|
1291
|
-
*
|
|
1720
|
+
* patient?: {
|
|
1292
1721
|
* id?: string
|
|
1293
1722
|
* doctorId?: string
|
|
1294
1723
|
* name?: string
|
|
@@ -1321,7 +1750,7 @@ declare global {
|
|
|
1321
1750
|
* updatedTimestamp?: string
|
|
1322
1751
|
* // [items] start
|
|
1323
1752
|
* // [items] end
|
|
1324
|
-
*
|
|
1753
|
+
* tags?: Array<{
|
|
1325
1754
|
* key?: string
|
|
1326
1755
|
* // [items] start
|
|
1327
1756
|
* // [items] end
|
|
@@ -1357,7 +1786,7 @@ declare global {
|
|
|
1357
1786
|
* type RequestBody = {
|
|
1358
1787
|
* paymentState?: {
|
|
1359
1788
|
* id?: string
|
|
1360
|
-
*
|
|
1789
|
+
* doctor?: {
|
|
1361
1790
|
* id?: string
|
|
1362
1791
|
* name?: string
|
|
1363
1792
|
* createdTimestamp?: string
|
|
@@ -1367,7 +1796,7 @@ declare global {
|
|
|
1367
1796
|
* phoneNumber?: string
|
|
1368
1797
|
* birthdate?: string
|
|
1369
1798
|
* }
|
|
1370
|
-
*
|
|
1799
|
+
* patient?: {
|
|
1371
1800
|
* id?: string
|
|
1372
1801
|
* doctorId?: string
|
|
1373
1802
|
* name?: string
|
|
@@ -1396,7 +1825,7 @@ declare global {
|
|
|
1396
1825
|
* }
|
|
1397
1826
|
* // [items] start
|
|
1398
1827
|
* // [items] end
|
|
1399
|
-
*
|
|
1828
|
+
* prescriptions?: Array<{
|
|
1400
1829
|
* id?: string
|
|
1401
1830
|
* createdTimestamp?: string
|
|
1402
1831
|
* updatedTimestamp?: string
|
|
@@ -1430,12 +1859,77 @@ declare global {
|
|
|
1430
1859
|
* ownerState?: {
|
|
1431
1860
|
* id?: string
|
|
1432
1861
|
* name?: string
|
|
1862
|
+
* level?: string
|
|
1863
|
+
* address?: string
|
|
1864
|
+
* note?: string
|
|
1865
|
+
* // [items] start
|
|
1866
|
+
* // [items] end
|
|
1867
|
+
* admins?: Array<{
|
|
1868
|
+
* id?: string
|
|
1869
|
+
* name?: string
|
|
1870
|
+
* createdTimestamp?: string
|
|
1871
|
+
* updatedTimestamp?: string
|
|
1872
|
+
* gender?: string
|
|
1873
|
+
* identityNumber?: string
|
|
1874
|
+
* phoneNumber?: string
|
|
1875
|
+
* birthdate?: string
|
|
1876
|
+
* }>
|
|
1877
|
+
* // [items] start
|
|
1878
|
+
* // [items] end
|
|
1879
|
+
* members?: Array<{
|
|
1880
|
+
* id?: string
|
|
1881
|
+
* name?: string
|
|
1882
|
+
* note?: string
|
|
1883
|
+
* // [items] start
|
|
1884
|
+
* // [items] end
|
|
1885
|
+
* admins?: Array<{
|
|
1886
|
+
* id?: string
|
|
1887
|
+
* name?: string
|
|
1888
|
+
* createdTimestamp?: string
|
|
1889
|
+
* updatedTimestamp?: string
|
|
1890
|
+
* gender?: string
|
|
1891
|
+
* identityNumber?: string
|
|
1892
|
+
* phoneNumber?: string
|
|
1893
|
+
* birthdate?: string
|
|
1894
|
+
* }>
|
|
1895
|
+
* // [items] start
|
|
1896
|
+
* // [items] end
|
|
1897
|
+
* members?: Array<{
|
|
1898
|
+
* id?: string
|
|
1899
|
+
* name?: string
|
|
1900
|
+
* note?: string
|
|
1901
|
+
* // [items] start
|
|
1902
|
+
* // [items] end
|
|
1903
|
+
* admins?: Array<{
|
|
1904
|
+
* id?: string
|
|
1905
|
+
* name?: string
|
|
1906
|
+
* createdTimestamp?: string
|
|
1907
|
+
* updatedTimestamp?: string
|
|
1908
|
+
* gender?: string
|
|
1909
|
+
* identityNumber?: string
|
|
1910
|
+
* phoneNumber?: string
|
|
1911
|
+
* birthdate?: string
|
|
1912
|
+
* }>
|
|
1913
|
+
* // [items] start
|
|
1914
|
+
* // [items] end
|
|
1915
|
+
* members?: Array<{
|
|
1916
|
+
* id?: string
|
|
1917
|
+
* name?: string
|
|
1918
|
+
* createdTimestamp?: string
|
|
1919
|
+
* updatedTimestamp?: string
|
|
1920
|
+
* gender?: string
|
|
1921
|
+
* identityNumber?: string
|
|
1922
|
+
* phoneNumber?: string
|
|
1923
|
+
* birthdate?: string
|
|
1924
|
+
* }>
|
|
1925
|
+
* createdTimestamp?: string
|
|
1926
|
+
* updatedTimestamp?: string
|
|
1927
|
+
* }>
|
|
1928
|
+
* createdTimestamp?: string
|
|
1929
|
+
* updatedTimestamp?: string
|
|
1930
|
+
* }>
|
|
1433
1931
|
* createdTimestamp?: string
|
|
1434
1932
|
* updatedTimestamp?: string
|
|
1435
|
-
* gender?: string
|
|
1436
|
-
* identityNumber?: string
|
|
1437
|
-
* phoneNumber?: string
|
|
1438
|
-
* birthdate?: string
|
|
1439
1933
|
* }
|
|
1440
1934
|
* createdTimestamp?: string
|
|
1441
1935
|
* updatedTimestamp?: string
|
|
@@ -1465,7 +1959,7 @@ declare global {
|
|
|
1465
1959
|
* // [items] end
|
|
1466
1960
|
* content?: Array<{
|
|
1467
1961
|
* id?: string
|
|
1468
|
-
*
|
|
1962
|
+
* doctor?: {
|
|
1469
1963
|
* id?: string
|
|
1470
1964
|
* name?: string
|
|
1471
1965
|
* createdTimestamp?: string
|
|
@@ -1475,7 +1969,7 @@ declare global {
|
|
|
1475
1969
|
* phoneNumber?: string
|
|
1476
1970
|
* birthdate?: string
|
|
1477
1971
|
* }
|
|
1478
|
-
*
|
|
1972
|
+
* patient?: {
|
|
1479
1973
|
* id?: string
|
|
1480
1974
|
* doctorId?: string
|
|
1481
1975
|
* name?: string
|
|
@@ -1504,7 +1998,7 @@ declare global {
|
|
|
1504
1998
|
* }
|
|
1505
1999
|
* // [items] start
|
|
1506
2000
|
* // [items] end
|
|
1507
|
-
*
|
|
2001
|
+
* prescriptions?: Array<{
|
|
1508
2002
|
* id?: string
|
|
1509
2003
|
* createdTimestamp?: string
|
|
1510
2004
|
* updatedTimestamp?: string
|
|
@@ -1538,12 +2032,77 @@ declare global {
|
|
|
1538
2032
|
* ownerState?: {
|
|
1539
2033
|
* id?: string
|
|
1540
2034
|
* name?: string
|
|
2035
|
+
* level?: string
|
|
2036
|
+
* address?: string
|
|
2037
|
+
* note?: string
|
|
2038
|
+
* // [items] start
|
|
2039
|
+
* // [items] end
|
|
2040
|
+
* admins?: Array<{
|
|
2041
|
+
* id?: string
|
|
2042
|
+
* name?: string
|
|
2043
|
+
* createdTimestamp?: string
|
|
2044
|
+
* updatedTimestamp?: string
|
|
2045
|
+
* gender?: string
|
|
2046
|
+
* identityNumber?: string
|
|
2047
|
+
* phoneNumber?: string
|
|
2048
|
+
* birthdate?: string
|
|
2049
|
+
* }>
|
|
2050
|
+
* // [items] start
|
|
2051
|
+
* // [items] end
|
|
2052
|
+
* members?: Array<{
|
|
2053
|
+
* id?: string
|
|
2054
|
+
* name?: string
|
|
2055
|
+
* note?: string
|
|
2056
|
+
* // [items] start
|
|
2057
|
+
* // [items] end
|
|
2058
|
+
* admins?: Array<{
|
|
2059
|
+
* id?: string
|
|
2060
|
+
* name?: string
|
|
2061
|
+
* createdTimestamp?: string
|
|
2062
|
+
* updatedTimestamp?: string
|
|
2063
|
+
* gender?: string
|
|
2064
|
+
* identityNumber?: string
|
|
2065
|
+
* phoneNumber?: string
|
|
2066
|
+
* birthdate?: string
|
|
2067
|
+
* }>
|
|
2068
|
+
* // [items] start
|
|
2069
|
+
* // [items] end
|
|
2070
|
+
* members?: Array<{
|
|
2071
|
+
* id?: string
|
|
2072
|
+
* name?: string
|
|
2073
|
+
* note?: string
|
|
2074
|
+
* // [items] start
|
|
2075
|
+
* // [items] end
|
|
2076
|
+
* admins?: Array<{
|
|
2077
|
+
* id?: string
|
|
2078
|
+
* name?: string
|
|
2079
|
+
* createdTimestamp?: string
|
|
2080
|
+
* updatedTimestamp?: string
|
|
2081
|
+
* gender?: string
|
|
2082
|
+
* identityNumber?: string
|
|
2083
|
+
* phoneNumber?: string
|
|
2084
|
+
* birthdate?: string
|
|
2085
|
+
* }>
|
|
2086
|
+
* // [items] start
|
|
2087
|
+
* // [items] end
|
|
2088
|
+
* members?: Array<{
|
|
2089
|
+
* id?: string
|
|
2090
|
+
* name?: string
|
|
2091
|
+
* createdTimestamp?: string
|
|
2092
|
+
* updatedTimestamp?: string
|
|
2093
|
+
* gender?: string
|
|
2094
|
+
* identityNumber?: string
|
|
2095
|
+
* phoneNumber?: string
|
|
2096
|
+
* birthdate?: string
|
|
2097
|
+
* }>
|
|
2098
|
+
* createdTimestamp?: string
|
|
2099
|
+
* updatedTimestamp?: string
|
|
2100
|
+
* }>
|
|
2101
|
+
* createdTimestamp?: string
|
|
2102
|
+
* updatedTimestamp?: string
|
|
2103
|
+
* }>
|
|
1541
2104
|
* createdTimestamp?: string
|
|
1542
2105
|
* updatedTimestamp?: string
|
|
1543
|
-
* gender?: string
|
|
1544
|
-
* identityNumber?: string
|
|
1545
|
-
* phoneNumber?: string
|
|
1546
|
-
* birthdate?: string
|
|
1547
2106
|
* }
|
|
1548
2107
|
* createdTimestamp?: string
|
|
1549
2108
|
* updatedTimestamp?: string
|
|
@@ -1557,20 +2116,20 @@ declare global {
|
|
|
1557
2116
|
* number?: number
|
|
1558
2117
|
* sort?: {
|
|
1559
2118
|
* empty?: boolean
|
|
1560
|
-
* unsorted?: boolean
|
|
1561
2119
|
* sorted?: boolean
|
|
2120
|
+
* unsorted?: boolean
|
|
1562
2121
|
* }
|
|
1563
2122
|
* pageable?: {
|
|
1564
2123
|
* offset?: number
|
|
1565
2124
|
* sort?: {
|
|
1566
2125
|
* empty?: boolean
|
|
1567
|
-
* unsorted?: boolean
|
|
1568
2126
|
* sorted?: boolean
|
|
2127
|
+
* unsorted?: boolean
|
|
1569
2128
|
* }
|
|
1570
|
-
* unpaged?: boolean
|
|
1571
2129
|
* paged?: boolean
|
|
1572
2130
|
* pageNumber?: number
|
|
1573
2131
|
* pageSize?: number
|
|
2132
|
+
* unpaged?: boolean
|
|
1574
2133
|
* }
|
|
1575
2134
|
* numberOfElements?: number
|
|
1576
2135
|
* empty?: boolean
|
|
@@ -1702,7 +2261,7 @@ declare global {
|
|
|
1702
2261
|
* ```ts
|
|
1703
2262
|
* type Response = {
|
|
1704
2263
|
* id?: string
|
|
1705
|
-
*
|
|
2264
|
+
* doctor?: {
|
|
1706
2265
|
* id?: string
|
|
1707
2266
|
* name?: string
|
|
1708
2267
|
* createdTimestamp?: string
|
|
@@ -1712,7 +2271,7 @@ declare global {
|
|
|
1712
2271
|
* phoneNumber?: string
|
|
1713
2272
|
* birthdate?: string
|
|
1714
2273
|
* }
|
|
1715
|
-
*
|
|
2274
|
+
* patient?: {
|
|
1716
2275
|
* id?: string
|
|
1717
2276
|
* doctorId?: string
|
|
1718
2277
|
* name?: string
|
|
@@ -1741,7 +2300,7 @@ declare global {
|
|
|
1741
2300
|
* }
|
|
1742
2301
|
* // [items] start
|
|
1743
2302
|
* // [items] end
|
|
1744
|
-
*
|
|
2303
|
+
* prescriptions?: Array<{
|
|
1745
2304
|
* id?: string
|
|
1746
2305
|
* createdTimestamp?: string
|
|
1747
2306
|
* updatedTimestamp?: string
|
|
@@ -1775,12 +2334,77 @@ declare global {
|
|
|
1775
2334
|
* ownerState?: {
|
|
1776
2335
|
* id?: string
|
|
1777
2336
|
* name?: string
|
|
2337
|
+
* level?: string
|
|
2338
|
+
* address?: string
|
|
2339
|
+
* note?: string
|
|
2340
|
+
* // [items] start
|
|
2341
|
+
* // [items] end
|
|
2342
|
+
* admins?: Array<{
|
|
2343
|
+
* id?: string
|
|
2344
|
+
* name?: string
|
|
2345
|
+
* createdTimestamp?: string
|
|
2346
|
+
* updatedTimestamp?: string
|
|
2347
|
+
* gender?: string
|
|
2348
|
+
* identityNumber?: string
|
|
2349
|
+
* phoneNumber?: string
|
|
2350
|
+
* birthdate?: string
|
|
2351
|
+
* }>
|
|
2352
|
+
* // [items] start
|
|
2353
|
+
* // [items] end
|
|
2354
|
+
* members?: Array<{
|
|
2355
|
+
* id?: string
|
|
2356
|
+
* name?: string
|
|
2357
|
+
* note?: string
|
|
2358
|
+
* // [items] start
|
|
2359
|
+
* // [items] end
|
|
2360
|
+
* admins?: Array<{
|
|
2361
|
+
* id?: string
|
|
2362
|
+
* name?: string
|
|
2363
|
+
* createdTimestamp?: string
|
|
2364
|
+
* updatedTimestamp?: string
|
|
2365
|
+
* gender?: string
|
|
2366
|
+
* identityNumber?: string
|
|
2367
|
+
* phoneNumber?: string
|
|
2368
|
+
* birthdate?: string
|
|
2369
|
+
* }>
|
|
2370
|
+
* // [items] start
|
|
2371
|
+
* // [items] end
|
|
2372
|
+
* members?: Array<{
|
|
2373
|
+
* id?: string
|
|
2374
|
+
* name?: string
|
|
2375
|
+
* note?: string
|
|
2376
|
+
* // [items] start
|
|
2377
|
+
* // [items] end
|
|
2378
|
+
* admins?: Array<{
|
|
2379
|
+
* id?: string
|
|
2380
|
+
* name?: string
|
|
2381
|
+
* createdTimestamp?: string
|
|
2382
|
+
* updatedTimestamp?: string
|
|
2383
|
+
* gender?: string
|
|
2384
|
+
* identityNumber?: string
|
|
2385
|
+
* phoneNumber?: string
|
|
2386
|
+
* birthdate?: string
|
|
2387
|
+
* }>
|
|
2388
|
+
* // [items] start
|
|
2389
|
+
* // [items] end
|
|
2390
|
+
* members?: Array<{
|
|
2391
|
+
* id?: string
|
|
2392
|
+
* name?: string
|
|
2393
|
+
* createdTimestamp?: string
|
|
2394
|
+
* updatedTimestamp?: string
|
|
2395
|
+
* gender?: string
|
|
2396
|
+
* identityNumber?: string
|
|
2397
|
+
* phoneNumber?: string
|
|
2398
|
+
* birthdate?: string
|
|
2399
|
+
* }>
|
|
2400
|
+
* createdTimestamp?: string
|
|
2401
|
+
* updatedTimestamp?: string
|
|
2402
|
+
* }>
|
|
2403
|
+
* createdTimestamp?: string
|
|
2404
|
+
* updatedTimestamp?: string
|
|
2405
|
+
* }>
|
|
1778
2406
|
* createdTimestamp?: string
|
|
1779
2407
|
* updatedTimestamp?: string
|
|
1780
|
-
* gender?: string
|
|
1781
|
-
* identityNumber?: string
|
|
1782
|
-
* phoneNumber?: string
|
|
1783
|
-
* birthdate?: string
|
|
1784
2408
|
* }
|
|
1785
2409
|
* createdTimestamp?: string
|
|
1786
2410
|
* updatedTimestamp?: string
|
|
@@ -1824,7 +2448,7 @@ declare global {
|
|
|
1824
2448
|
* ```ts
|
|
1825
2449
|
* type RequestBody = {
|
|
1826
2450
|
* id?: string
|
|
1827
|
-
*
|
|
2451
|
+
* doctor?: {
|
|
1828
2452
|
* id?: string
|
|
1829
2453
|
* name?: string
|
|
1830
2454
|
* createdTimestamp?: string
|
|
@@ -1834,7 +2458,7 @@ declare global {
|
|
|
1834
2458
|
* phoneNumber?: string
|
|
1835
2459
|
* birthdate?: string
|
|
1836
2460
|
* }
|
|
1837
|
-
*
|
|
2461
|
+
* patient?: {
|
|
1838
2462
|
* id?: string
|
|
1839
2463
|
* doctorId?: string
|
|
1840
2464
|
* name?: string
|
|
@@ -1863,7 +2487,7 @@ declare global {
|
|
|
1863
2487
|
* }
|
|
1864
2488
|
* // [items] start
|
|
1865
2489
|
* // [items] end
|
|
1866
|
-
*
|
|
2490
|
+
* prescriptions?: Array<{
|
|
1867
2491
|
* id?: string
|
|
1868
2492
|
* createdTimestamp?: string
|
|
1869
2493
|
* updatedTimestamp?: string
|
|
@@ -1897,12 +2521,77 @@ declare global {
|
|
|
1897
2521
|
* ownerState?: {
|
|
1898
2522
|
* id?: string
|
|
1899
2523
|
* name?: string
|
|
2524
|
+
* level?: string
|
|
2525
|
+
* address?: string
|
|
2526
|
+
* note?: string
|
|
2527
|
+
* // [items] start
|
|
2528
|
+
* // [items] end
|
|
2529
|
+
* admins?: Array<{
|
|
2530
|
+
* id?: string
|
|
2531
|
+
* name?: string
|
|
2532
|
+
* createdTimestamp?: string
|
|
2533
|
+
* updatedTimestamp?: string
|
|
2534
|
+
* gender?: string
|
|
2535
|
+
* identityNumber?: string
|
|
2536
|
+
* phoneNumber?: string
|
|
2537
|
+
* birthdate?: string
|
|
2538
|
+
* }>
|
|
2539
|
+
* // [items] start
|
|
2540
|
+
* // [items] end
|
|
2541
|
+
* members?: Array<{
|
|
2542
|
+
* id?: string
|
|
2543
|
+
* name?: string
|
|
2544
|
+
* note?: string
|
|
2545
|
+
* // [items] start
|
|
2546
|
+
* // [items] end
|
|
2547
|
+
* admins?: Array<{
|
|
2548
|
+
* id?: string
|
|
2549
|
+
* name?: string
|
|
2550
|
+
* createdTimestamp?: string
|
|
2551
|
+
* updatedTimestamp?: string
|
|
2552
|
+
* gender?: string
|
|
2553
|
+
* identityNumber?: string
|
|
2554
|
+
* phoneNumber?: string
|
|
2555
|
+
* birthdate?: string
|
|
2556
|
+
* }>
|
|
2557
|
+
* // [items] start
|
|
2558
|
+
* // [items] end
|
|
2559
|
+
* members?: Array<{
|
|
2560
|
+
* id?: string
|
|
2561
|
+
* name?: string
|
|
2562
|
+
* note?: string
|
|
2563
|
+
* // [items] start
|
|
2564
|
+
* // [items] end
|
|
2565
|
+
* admins?: Array<{
|
|
2566
|
+
* id?: string
|
|
2567
|
+
* name?: string
|
|
2568
|
+
* createdTimestamp?: string
|
|
2569
|
+
* updatedTimestamp?: string
|
|
2570
|
+
* gender?: string
|
|
2571
|
+
* identityNumber?: string
|
|
2572
|
+
* phoneNumber?: string
|
|
2573
|
+
* birthdate?: string
|
|
2574
|
+
* }>
|
|
2575
|
+
* // [items] start
|
|
2576
|
+
* // [items] end
|
|
2577
|
+
* members?: Array<{
|
|
2578
|
+
* id?: string
|
|
2579
|
+
* name?: string
|
|
2580
|
+
* createdTimestamp?: string
|
|
2581
|
+
* updatedTimestamp?: string
|
|
2582
|
+
* gender?: string
|
|
2583
|
+
* identityNumber?: string
|
|
2584
|
+
* phoneNumber?: string
|
|
2585
|
+
* birthdate?: string
|
|
2586
|
+
* }>
|
|
2587
|
+
* createdTimestamp?: string
|
|
2588
|
+
* updatedTimestamp?: string
|
|
2589
|
+
* }>
|
|
2590
|
+
* createdTimestamp?: string
|
|
2591
|
+
* updatedTimestamp?: string
|
|
2592
|
+
* }>
|
|
1900
2593
|
* createdTimestamp?: string
|
|
1901
2594
|
* updatedTimestamp?: string
|
|
1902
|
-
* gender?: string
|
|
1903
|
-
* identityNumber?: string
|
|
1904
|
-
* phoneNumber?: string
|
|
1905
|
-
* birthdate?: string
|
|
1906
2595
|
* }
|
|
1907
2596
|
* createdTimestamp?: string
|
|
1908
2597
|
* updatedTimestamp?: string
|
|
@@ -1921,7 +2610,7 @@ declare global {
|
|
|
1921
2610
|
* ```ts
|
|
1922
2611
|
* type Response = {
|
|
1923
2612
|
* id?: string
|
|
1924
|
-
*
|
|
2613
|
+
* doctor?: {
|
|
1925
2614
|
* id?: string
|
|
1926
2615
|
* name?: string
|
|
1927
2616
|
* createdTimestamp?: string
|
|
@@ -1931,7 +2620,7 @@ declare global {
|
|
|
1931
2620
|
* phoneNumber?: string
|
|
1932
2621
|
* birthdate?: string
|
|
1933
2622
|
* }
|
|
1934
|
-
*
|
|
2623
|
+
* patient?: {
|
|
1935
2624
|
* id?: string
|
|
1936
2625
|
* doctorId?: string
|
|
1937
2626
|
* name?: string
|
|
@@ -1960,7 +2649,7 @@ declare global {
|
|
|
1960
2649
|
* }
|
|
1961
2650
|
* // [items] start
|
|
1962
2651
|
* // [items] end
|
|
1963
|
-
*
|
|
2652
|
+
* prescriptions?: Array<{
|
|
1964
2653
|
* id?: string
|
|
1965
2654
|
* createdTimestamp?: string
|
|
1966
2655
|
* updatedTimestamp?: string
|
|
@@ -1994,12 +2683,77 @@ declare global {
|
|
|
1994
2683
|
* ownerState?: {
|
|
1995
2684
|
* id?: string
|
|
1996
2685
|
* name?: string
|
|
2686
|
+
* level?: string
|
|
2687
|
+
* address?: string
|
|
2688
|
+
* note?: string
|
|
2689
|
+
* // [items] start
|
|
2690
|
+
* // [items] end
|
|
2691
|
+
* admins?: Array<{
|
|
2692
|
+
* id?: string
|
|
2693
|
+
* name?: string
|
|
2694
|
+
* createdTimestamp?: string
|
|
2695
|
+
* updatedTimestamp?: string
|
|
2696
|
+
* gender?: string
|
|
2697
|
+
* identityNumber?: string
|
|
2698
|
+
* phoneNumber?: string
|
|
2699
|
+
* birthdate?: string
|
|
2700
|
+
* }>
|
|
2701
|
+
* // [items] start
|
|
2702
|
+
* // [items] end
|
|
2703
|
+
* members?: Array<{
|
|
2704
|
+
* id?: string
|
|
2705
|
+
* name?: string
|
|
2706
|
+
* note?: string
|
|
2707
|
+
* // [items] start
|
|
2708
|
+
* // [items] end
|
|
2709
|
+
* admins?: Array<{
|
|
2710
|
+
* id?: string
|
|
2711
|
+
* name?: string
|
|
2712
|
+
* createdTimestamp?: string
|
|
2713
|
+
* updatedTimestamp?: string
|
|
2714
|
+
* gender?: string
|
|
2715
|
+
* identityNumber?: string
|
|
2716
|
+
* phoneNumber?: string
|
|
2717
|
+
* birthdate?: string
|
|
2718
|
+
* }>
|
|
2719
|
+
* // [items] start
|
|
2720
|
+
* // [items] end
|
|
2721
|
+
* members?: Array<{
|
|
2722
|
+
* id?: string
|
|
2723
|
+
* name?: string
|
|
2724
|
+
* note?: string
|
|
2725
|
+
* // [items] start
|
|
2726
|
+
* // [items] end
|
|
2727
|
+
* admins?: Array<{
|
|
2728
|
+
* id?: string
|
|
2729
|
+
* name?: string
|
|
2730
|
+
* createdTimestamp?: string
|
|
2731
|
+
* updatedTimestamp?: string
|
|
2732
|
+
* gender?: string
|
|
2733
|
+
* identityNumber?: string
|
|
2734
|
+
* phoneNumber?: string
|
|
2735
|
+
* birthdate?: string
|
|
2736
|
+
* }>
|
|
2737
|
+
* // [items] start
|
|
2738
|
+
* // [items] end
|
|
2739
|
+
* members?: Array<{
|
|
2740
|
+
* id?: string
|
|
2741
|
+
* name?: string
|
|
2742
|
+
* createdTimestamp?: string
|
|
2743
|
+
* updatedTimestamp?: string
|
|
2744
|
+
* gender?: string
|
|
2745
|
+
* identityNumber?: string
|
|
2746
|
+
* phoneNumber?: string
|
|
2747
|
+
* birthdate?: string
|
|
2748
|
+
* }>
|
|
2749
|
+
* createdTimestamp?: string
|
|
2750
|
+
* updatedTimestamp?: string
|
|
2751
|
+
* }>
|
|
2752
|
+
* createdTimestamp?: string
|
|
2753
|
+
* updatedTimestamp?: string
|
|
2754
|
+
* }>
|
|
1997
2755
|
* createdTimestamp?: string
|
|
1998
2756
|
* updatedTimestamp?: string
|
|
1999
|
-
* gender?: string
|
|
2000
|
-
* identityNumber?: string
|
|
2001
|
-
* phoneNumber?: string
|
|
2002
|
-
* birthdate?: string
|
|
2003
2757
|
* }
|
|
2004
2758
|
* createdTimestamp?: string
|
|
2005
2759
|
* updatedTimestamp?: string
|
|
@@ -2045,7 +2799,7 @@ declare global {
|
|
|
2045
2799
|
* ```ts
|
|
2046
2800
|
* type RequestBody = {
|
|
2047
2801
|
* id?: string
|
|
2048
|
-
*
|
|
2802
|
+
* doctor?: {
|
|
2049
2803
|
* id?: string
|
|
2050
2804
|
* name?: string
|
|
2051
2805
|
* createdTimestamp?: string
|
|
@@ -2055,7 +2809,7 @@ declare global {
|
|
|
2055
2809
|
* phoneNumber?: string
|
|
2056
2810
|
* birthdate?: string
|
|
2057
2811
|
* }
|
|
2058
|
-
*
|
|
2812
|
+
* patient?: {
|
|
2059
2813
|
* id?: string
|
|
2060
2814
|
* doctorId?: string
|
|
2061
2815
|
* name?: string
|
|
@@ -2084,7 +2838,7 @@ declare global {
|
|
|
2084
2838
|
* }
|
|
2085
2839
|
* // [items] start
|
|
2086
2840
|
* // [items] end
|
|
2087
|
-
*
|
|
2841
|
+
* prescriptions?: Array<{
|
|
2088
2842
|
* id?: string
|
|
2089
2843
|
* createdTimestamp?: string
|
|
2090
2844
|
* updatedTimestamp?: string
|
|
@@ -2118,12 +2872,77 @@ declare global {
|
|
|
2118
2872
|
* ownerState?: {
|
|
2119
2873
|
* id?: string
|
|
2120
2874
|
* name?: string
|
|
2875
|
+
* level?: string
|
|
2876
|
+
* address?: string
|
|
2877
|
+
* note?: string
|
|
2878
|
+
* // [items] start
|
|
2879
|
+
* // [items] end
|
|
2880
|
+
* admins?: Array<{
|
|
2881
|
+
* id?: string
|
|
2882
|
+
* name?: string
|
|
2883
|
+
* createdTimestamp?: string
|
|
2884
|
+
* updatedTimestamp?: string
|
|
2885
|
+
* gender?: string
|
|
2886
|
+
* identityNumber?: string
|
|
2887
|
+
* phoneNumber?: string
|
|
2888
|
+
* birthdate?: string
|
|
2889
|
+
* }>
|
|
2890
|
+
* // [items] start
|
|
2891
|
+
* // [items] end
|
|
2892
|
+
* members?: Array<{
|
|
2893
|
+
* id?: string
|
|
2894
|
+
* name?: string
|
|
2895
|
+
* note?: string
|
|
2896
|
+
* // [items] start
|
|
2897
|
+
* // [items] end
|
|
2898
|
+
* admins?: Array<{
|
|
2899
|
+
* id?: string
|
|
2900
|
+
* name?: string
|
|
2901
|
+
* createdTimestamp?: string
|
|
2902
|
+
* updatedTimestamp?: string
|
|
2903
|
+
* gender?: string
|
|
2904
|
+
* identityNumber?: string
|
|
2905
|
+
* phoneNumber?: string
|
|
2906
|
+
* birthdate?: string
|
|
2907
|
+
* }>
|
|
2908
|
+
* // [items] start
|
|
2909
|
+
* // [items] end
|
|
2910
|
+
* members?: Array<{
|
|
2911
|
+
* id?: string
|
|
2912
|
+
* name?: string
|
|
2913
|
+
* note?: string
|
|
2914
|
+
* // [items] start
|
|
2915
|
+
* // [items] end
|
|
2916
|
+
* admins?: Array<{
|
|
2917
|
+
* id?: string
|
|
2918
|
+
* name?: string
|
|
2919
|
+
* createdTimestamp?: string
|
|
2920
|
+
* updatedTimestamp?: string
|
|
2921
|
+
* gender?: string
|
|
2922
|
+
* identityNumber?: string
|
|
2923
|
+
* phoneNumber?: string
|
|
2924
|
+
* birthdate?: string
|
|
2925
|
+
* }>
|
|
2926
|
+
* // [items] start
|
|
2927
|
+
* // [items] end
|
|
2928
|
+
* members?: Array<{
|
|
2929
|
+
* id?: string
|
|
2930
|
+
* name?: string
|
|
2931
|
+
* createdTimestamp?: string
|
|
2932
|
+
* updatedTimestamp?: string
|
|
2933
|
+
* gender?: string
|
|
2934
|
+
* identityNumber?: string
|
|
2935
|
+
* phoneNumber?: string
|
|
2936
|
+
* birthdate?: string
|
|
2937
|
+
* }>
|
|
2938
|
+
* createdTimestamp?: string
|
|
2939
|
+
* updatedTimestamp?: string
|
|
2940
|
+
* }>
|
|
2941
|
+
* createdTimestamp?: string
|
|
2942
|
+
* updatedTimestamp?: string
|
|
2943
|
+
* }>
|
|
2121
2944
|
* createdTimestamp?: string
|
|
2122
2945
|
* updatedTimestamp?: string
|
|
2123
|
-
* gender?: string
|
|
2124
|
-
* identityNumber?: string
|
|
2125
|
-
* phoneNumber?: string
|
|
2126
|
-
* birthdate?: string
|
|
2127
2946
|
* }
|
|
2128
2947
|
* createdTimestamp?: string
|
|
2129
2948
|
* updatedTimestamp?: string
|
|
@@ -2150,7 +2969,7 @@ declare global {
|
|
|
2150
2969
|
* // [items] end
|
|
2151
2970
|
* content?: Array<{
|
|
2152
2971
|
* id?: string
|
|
2153
|
-
*
|
|
2972
|
+
* doctor?: {
|
|
2154
2973
|
* id?: string
|
|
2155
2974
|
* name?: string
|
|
2156
2975
|
* createdTimestamp?: string
|
|
@@ -2160,7 +2979,7 @@ declare global {
|
|
|
2160
2979
|
* phoneNumber?: string
|
|
2161
2980
|
* birthdate?: string
|
|
2162
2981
|
* }
|
|
2163
|
-
*
|
|
2982
|
+
* patient?: {
|
|
2164
2983
|
* id?: string
|
|
2165
2984
|
* doctorId?: string
|
|
2166
2985
|
* name?: string
|
|
@@ -2189,7 +3008,7 @@ declare global {
|
|
|
2189
3008
|
* }
|
|
2190
3009
|
* // [items] start
|
|
2191
3010
|
* // [items] end
|
|
2192
|
-
*
|
|
3011
|
+
* prescriptions?: Array<{
|
|
2193
3012
|
* id?: string
|
|
2194
3013
|
* createdTimestamp?: string
|
|
2195
3014
|
* updatedTimestamp?: string
|
|
@@ -2223,12 +3042,77 @@ declare global {
|
|
|
2223
3042
|
* ownerState?: {
|
|
2224
3043
|
* id?: string
|
|
2225
3044
|
* name?: string
|
|
3045
|
+
* level?: string
|
|
3046
|
+
* address?: string
|
|
3047
|
+
* note?: string
|
|
3048
|
+
* // [items] start
|
|
3049
|
+
* // [items] end
|
|
3050
|
+
* admins?: Array<{
|
|
3051
|
+
* id?: string
|
|
3052
|
+
* name?: string
|
|
3053
|
+
* createdTimestamp?: string
|
|
3054
|
+
* updatedTimestamp?: string
|
|
3055
|
+
* gender?: string
|
|
3056
|
+
* identityNumber?: string
|
|
3057
|
+
* phoneNumber?: string
|
|
3058
|
+
* birthdate?: string
|
|
3059
|
+
* }>
|
|
3060
|
+
* // [items] start
|
|
3061
|
+
* // [items] end
|
|
3062
|
+
* members?: Array<{
|
|
3063
|
+
* id?: string
|
|
3064
|
+
* name?: string
|
|
3065
|
+
* note?: string
|
|
3066
|
+
* // [items] start
|
|
3067
|
+
* // [items] end
|
|
3068
|
+
* admins?: Array<{
|
|
3069
|
+
* id?: string
|
|
3070
|
+
* name?: string
|
|
3071
|
+
* createdTimestamp?: string
|
|
3072
|
+
* updatedTimestamp?: string
|
|
3073
|
+
* gender?: string
|
|
3074
|
+
* identityNumber?: string
|
|
3075
|
+
* phoneNumber?: string
|
|
3076
|
+
* birthdate?: string
|
|
3077
|
+
* }>
|
|
3078
|
+
* // [items] start
|
|
3079
|
+
* // [items] end
|
|
3080
|
+
* members?: Array<{
|
|
3081
|
+
* id?: string
|
|
3082
|
+
* name?: string
|
|
3083
|
+
* note?: string
|
|
3084
|
+
* // [items] start
|
|
3085
|
+
* // [items] end
|
|
3086
|
+
* admins?: Array<{
|
|
3087
|
+
* id?: string
|
|
3088
|
+
* name?: string
|
|
3089
|
+
* createdTimestamp?: string
|
|
3090
|
+
* updatedTimestamp?: string
|
|
3091
|
+
* gender?: string
|
|
3092
|
+
* identityNumber?: string
|
|
3093
|
+
* phoneNumber?: string
|
|
3094
|
+
* birthdate?: string
|
|
3095
|
+
* }>
|
|
3096
|
+
* // [items] start
|
|
3097
|
+
* // [items] end
|
|
3098
|
+
* members?: Array<{
|
|
3099
|
+
* id?: string
|
|
3100
|
+
* name?: string
|
|
3101
|
+
* createdTimestamp?: string
|
|
3102
|
+
* updatedTimestamp?: string
|
|
3103
|
+
* gender?: string
|
|
3104
|
+
* identityNumber?: string
|
|
3105
|
+
* phoneNumber?: string
|
|
3106
|
+
* birthdate?: string
|
|
3107
|
+
* }>
|
|
3108
|
+
* createdTimestamp?: string
|
|
3109
|
+
* updatedTimestamp?: string
|
|
3110
|
+
* }>
|
|
3111
|
+
* createdTimestamp?: string
|
|
3112
|
+
* updatedTimestamp?: string
|
|
3113
|
+
* }>
|
|
2226
3114
|
* createdTimestamp?: string
|
|
2227
3115
|
* updatedTimestamp?: string
|
|
2228
|
-
* gender?: string
|
|
2229
|
-
* identityNumber?: string
|
|
2230
|
-
* phoneNumber?: string
|
|
2231
|
-
* birthdate?: string
|
|
2232
3116
|
* }
|
|
2233
3117
|
* createdTimestamp?: string
|
|
2234
3118
|
* updatedTimestamp?: string
|
|
@@ -2242,20 +3126,20 @@ declare global {
|
|
|
2242
3126
|
* number?: number
|
|
2243
3127
|
* sort?: {
|
|
2244
3128
|
* empty?: boolean
|
|
2245
|
-
* unsorted?: boolean
|
|
2246
3129
|
* sorted?: boolean
|
|
3130
|
+
* unsorted?: boolean
|
|
2247
3131
|
* }
|
|
2248
3132
|
* pageable?: {
|
|
2249
3133
|
* offset?: number
|
|
2250
3134
|
* sort?: {
|
|
2251
3135
|
* empty?: boolean
|
|
2252
|
-
* unsorted?: boolean
|
|
2253
3136
|
* sorted?: boolean
|
|
3137
|
+
* unsorted?: boolean
|
|
2254
3138
|
* }
|
|
2255
|
-
* unpaged?: boolean
|
|
2256
3139
|
* paged?: boolean
|
|
2257
3140
|
* pageNumber?: number
|
|
2258
3141
|
* pageSize?: number
|
|
3142
|
+
* unpaged?: boolean
|
|
2259
3143
|
* }
|
|
2260
3144
|
* numberOfElements?: number
|
|
2261
3145
|
* empty?: boolean
|