web-core-tcm 0.0.83 → 0.0.85
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/prescription/alova/globals.d.ts +984 -100
- package/dist/src/api/prescription/alova/implement/herbal.d.ts +2 -2
- package/dist/src/api/prescription/alova/implement/herbal.js +5 -6
- package/dist/src/api/prescription/alova/implement/prescription.d.ts +2 -2
- package/dist/src/api/prescription/alova/index.js +1 -0
- package/dist/src/api/prescription/herbal.d.ts +3 -3
- package/dist/src/api/prescription/herbal.js +8 -8
- package/dist/src/api/prescription/prescription.d.ts +3 -3
- package/dist/src/api/prescription/prescription.js +2 -1
- package/package.json +1 -1
|
@@ -71,7 +71,7 @@ type Alova2Method<
|
|
|
71
71
|
>
|
|
72
72
|
: never;
|
|
73
73
|
|
|
74
|
-
export interface
|
|
74
|
+
export interface UserState {
|
|
75
75
|
id?: string;
|
|
76
76
|
name?: string;
|
|
77
77
|
createdTimestamp?: string;
|
|
@@ -81,15 +81,54 @@ export interface DoctorState {
|
|
|
81
81
|
phoneNumber?: string;
|
|
82
82
|
birthdate?: string;
|
|
83
83
|
}
|
|
84
|
+
export interface DivisionState {
|
|
85
|
+
id?: string;
|
|
86
|
+
name?: string;
|
|
87
|
+
note?: string;
|
|
88
|
+
admins?: UserState[];
|
|
89
|
+
members?: UserState[];
|
|
90
|
+
createdTimestamp?: string;
|
|
91
|
+
updatedTimestamp?: string;
|
|
92
|
+
}
|
|
93
|
+
export interface DepartmentState {
|
|
94
|
+
id?: string;
|
|
95
|
+
name?: string;
|
|
96
|
+
note?: string;
|
|
97
|
+
admins?: UserState[];
|
|
98
|
+
members?: DivisionState[];
|
|
99
|
+
createdTimestamp?: string;
|
|
100
|
+
updatedTimestamp?: string;
|
|
101
|
+
}
|
|
102
|
+
export interface HospitalState {
|
|
103
|
+
id?: string;
|
|
104
|
+
name?: string;
|
|
105
|
+
level?: string;
|
|
106
|
+
address?: string;
|
|
107
|
+
note?: string;
|
|
108
|
+
admins?: UserState[];
|
|
109
|
+
members?: DepartmentState[];
|
|
110
|
+
createdTimestamp?: string;
|
|
111
|
+
updatedTimestamp?: string;
|
|
112
|
+
}
|
|
84
113
|
export interface HerbalState {
|
|
85
114
|
id?: string;
|
|
86
115
|
name?: string;
|
|
87
116
|
price?: number;
|
|
88
117
|
weight?: number;
|
|
89
|
-
ownerState?:
|
|
118
|
+
ownerState?: HospitalState;
|
|
90
119
|
createdTimestamp?: string;
|
|
91
120
|
updatedTimestamp?: string;
|
|
92
121
|
}
|
|
122
|
+
export interface DoctorState {
|
|
123
|
+
id?: string;
|
|
124
|
+
name?: string;
|
|
125
|
+
createdTimestamp?: string;
|
|
126
|
+
updatedTimestamp?: string;
|
|
127
|
+
gender?: string;
|
|
128
|
+
identityNumber?: string;
|
|
129
|
+
phoneNumber?: string;
|
|
130
|
+
birthdate?: string;
|
|
131
|
+
}
|
|
93
132
|
export interface PrescriptionState {
|
|
94
133
|
id?: string;
|
|
95
134
|
createdTimestamp?: string;
|
|
@@ -105,7 +144,7 @@ export interface PrescriptionState {
|
|
|
105
144
|
}
|
|
106
145
|
export interface QueryPrescriptionRequest {
|
|
107
146
|
ownerState?: DoctorState;
|
|
108
|
-
|
|
147
|
+
prescriptionState?: string;
|
|
109
148
|
startTime?: string;
|
|
110
149
|
endTime?: string;
|
|
111
150
|
page?: number;
|
|
@@ -115,48 +154,48 @@ export interface InitPrescriptionRequest {
|
|
|
115
154
|
ownerState?: DoctorState;
|
|
116
155
|
}
|
|
117
156
|
export interface QueryHerbalRequest {
|
|
118
|
-
ownerState?:
|
|
157
|
+
ownerState?: HospitalState;
|
|
119
158
|
name?: string;
|
|
120
159
|
page?: number;
|
|
121
160
|
pageSize?: number;
|
|
122
161
|
}
|
|
123
162
|
export interface SortObject {
|
|
124
|
-
sorted?: boolean;
|
|
125
163
|
empty?: boolean;
|
|
164
|
+
sorted?: boolean;
|
|
126
165
|
unsorted?: boolean;
|
|
127
166
|
}
|
|
128
167
|
export interface PageableObject {
|
|
129
|
-
paged?: boolean;
|
|
130
|
-
pageNumber?: number;
|
|
131
168
|
offset?: number;
|
|
132
169
|
sort?: SortObject;
|
|
170
|
+
paged?: boolean;
|
|
171
|
+
pageNumber?: number;
|
|
133
172
|
pageSize?: number;
|
|
134
173
|
unpaged?: boolean;
|
|
135
174
|
}
|
|
136
175
|
export interface PagePrescriptionState {
|
|
137
|
-
totalPages?: number;
|
|
138
176
|
totalElements?: number;
|
|
139
|
-
|
|
177
|
+
totalPages?: number;
|
|
178
|
+
first?: boolean;
|
|
179
|
+
last?: boolean;
|
|
140
180
|
size?: number;
|
|
141
181
|
content?: PrescriptionState[];
|
|
142
182
|
number?: number;
|
|
143
183
|
sort?: SortObject;
|
|
144
184
|
numberOfElements?: number;
|
|
145
|
-
|
|
146
|
-
last?: boolean;
|
|
185
|
+
pageable?: PageableObject;
|
|
147
186
|
empty?: boolean;
|
|
148
187
|
}
|
|
149
188
|
export interface PageHerbalState {
|
|
150
|
-
totalPages?: number;
|
|
151
189
|
totalElements?: number;
|
|
152
|
-
|
|
190
|
+
totalPages?: number;
|
|
191
|
+
first?: boolean;
|
|
192
|
+
last?: boolean;
|
|
153
193
|
size?: number;
|
|
154
194
|
content?: HerbalState[];
|
|
155
195
|
number?: number;
|
|
156
196
|
sort?: SortObject;
|
|
157
197
|
numberOfElements?: number;
|
|
158
|
-
|
|
159
|
-
last?: boolean;
|
|
198
|
+
pageable?: PageableObject;
|
|
160
199
|
empty?: boolean;
|
|
161
200
|
}
|
|
162
201
|
declare global {
|
|
@@ -216,12 +255,77 @@ declare global {
|
|
|
216
255
|
* ownerState?: {
|
|
217
256
|
* id?: string
|
|
218
257
|
* name?: string
|
|
258
|
+
* level?: string
|
|
259
|
+
* address?: string
|
|
260
|
+
* note?: string
|
|
261
|
+
* // [items] start
|
|
262
|
+
* // [items] end
|
|
263
|
+
* admins?: Array<{
|
|
264
|
+
* id?: string
|
|
265
|
+
* name?: string
|
|
266
|
+
* createdTimestamp?: string
|
|
267
|
+
* updatedTimestamp?: string
|
|
268
|
+
* gender?: string
|
|
269
|
+
* identityNumber?: string
|
|
270
|
+
* phoneNumber?: string
|
|
271
|
+
* birthdate?: string
|
|
272
|
+
* }>
|
|
273
|
+
* // [items] start
|
|
274
|
+
* // [items] end
|
|
275
|
+
* members?: Array<{
|
|
276
|
+
* id?: string
|
|
277
|
+
* name?: string
|
|
278
|
+
* note?: string
|
|
279
|
+
* // [items] start
|
|
280
|
+
* // [items] end
|
|
281
|
+
* admins?: Array<{
|
|
282
|
+
* id?: string
|
|
283
|
+
* name?: string
|
|
284
|
+
* createdTimestamp?: string
|
|
285
|
+
* updatedTimestamp?: string
|
|
286
|
+
* gender?: string
|
|
287
|
+
* identityNumber?: string
|
|
288
|
+
* phoneNumber?: string
|
|
289
|
+
* birthdate?: string
|
|
290
|
+
* }>
|
|
291
|
+
* // [items] start
|
|
292
|
+
* // [items] end
|
|
293
|
+
* members?: Array<{
|
|
294
|
+
* id?: string
|
|
295
|
+
* name?: string
|
|
296
|
+
* note?: string
|
|
297
|
+
* // [items] start
|
|
298
|
+
* // [items] end
|
|
299
|
+
* admins?: Array<{
|
|
300
|
+
* id?: string
|
|
301
|
+
* name?: string
|
|
302
|
+
* createdTimestamp?: string
|
|
303
|
+
* updatedTimestamp?: string
|
|
304
|
+
* gender?: string
|
|
305
|
+
* identityNumber?: string
|
|
306
|
+
* phoneNumber?: string
|
|
307
|
+
* birthdate?: string
|
|
308
|
+
* }>
|
|
309
|
+
* // [items] start
|
|
310
|
+
* // [items] end
|
|
311
|
+
* members?: Array<{
|
|
312
|
+
* id?: string
|
|
313
|
+
* name?: string
|
|
314
|
+
* createdTimestamp?: string
|
|
315
|
+
* updatedTimestamp?: string
|
|
316
|
+
* gender?: string
|
|
317
|
+
* identityNumber?: string
|
|
318
|
+
* phoneNumber?: string
|
|
319
|
+
* birthdate?: string
|
|
320
|
+
* }>
|
|
321
|
+
* createdTimestamp?: string
|
|
322
|
+
* updatedTimestamp?: string
|
|
323
|
+
* }>
|
|
324
|
+
* createdTimestamp?: string
|
|
325
|
+
* updatedTimestamp?: string
|
|
326
|
+
* }>
|
|
219
327
|
* createdTimestamp?: string
|
|
220
328
|
* updatedTimestamp?: string
|
|
221
|
-
* gender?: string
|
|
222
|
-
* identityNumber?: string
|
|
223
|
-
* phoneNumber?: string
|
|
224
|
-
* birthdate?: string
|
|
225
329
|
* }
|
|
226
330
|
* createdTimestamp?: string
|
|
227
331
|
* updatedTimestamp?: string
|
|
@@ -292,12 +396,77 @@ declare global {
|
|
|
292
396
|
* ownerState?: {
|
|
293
397
|
* id?: string
|
|
294
398
|
* name?: string
|
|
399
|
+
* level?: string
|
|
400
|
+
* address?: string
|
|
401
|
+
* note?: string
|
|
402
|
+
* // [items] start
|
|
403
|
+
* // [items] end
|
|
404
|
+
* admins?: Array<{
|
|
405
|
+
* id?: string
|
|
406
|
+
* name?: string
|
|
407
|
+
* createdTimestamp?: string
|
|
408
|
+
* updatedTimestamp?: string
|
|
409
|
+
* gender?: string
|
|
410
|
+
* identityNumber?: string
|
|
411
|
+
* phoneNumber?: string
|
|
412
|
+
* birthdate?: string
|
|
413
|
+
* }>
|
|
414
|
+
* // [items] start
|
|
415
|
+
* // [items] end
|
|
416
|
+
* members?: Array<{
|
|
417
|
+
* id?: string
|
|
418
|
+
* name?: string
|
|
419
|
+
* note?: string
|
|
420
|
+
* // [items] start
|
|
421
|
+
* // [items] end
|
|
422
|
+
* admins?: Array<{
|
|
423
|
+
* id?: string
|
|
424
|
+
* name?: string
|
|
425
|
+
* createdTimestamp?: string
|
|
426
|
+
* updatedTimestamp?: string
|
|
427
|
+
* gender?: string
|
|
428
|
+
* identityNumber?: string
|
|
429
|
+
* phoneNumber?: string
|
|
430
|
+
* birthdate?: string
|
|
431
|
+
* }>
|
|
432
|
+
* // [items] start
|
|
433
|
+
* // [items] end
|
|
434
|
+
* members?: Array<{
|
|
435
|
+
* id?: string
|
|
436
|
+
* name?: string
|
|
437
|
+
* note?: string
|
|
438
|
+
* // [items] start
|
|
439
|
+
* // [items] end
|
|
440
|
+
* admins?: Array<{
|
|
441
|
+
* id?: string
|
|
442
|
+
* name?: string
|
|
443
|
+
* createdTimestamp?: string
|
|
444
|
+
* updatedTimestamp?: string
|
|
445
|
+
* gender?: string
|
|
446
|
+
* identityNumber?: string
|
|
447
|
+
* phoneNumber?: string
|
|
448
|
+
* birthdate?: string
|
|
449
|
+
* }>
|
|
450
|
+
* // [items] start
|
|
451
|
+
* // [items] end
|
|
452
|
+
* members?: Array<{
|
|
453
|
+
* id?: string
|
|
454
|
+
* name?: string
|
|
455
|
+
* createdTimestamp?: string
|
|
456
|
+
* updatedTimestamp?: string
|
|
457
|
+
* gender?: string
|
|
458
|
+
* identityNumber?: string
|
|
459
|
+
* phoneNumber?: string
|
|
460
|
+
* birthdate?: string
|
|
461
|
+
* }>
|
|
462
|
+
* createdTimestamp?: string
|
|
463
|
+
* updatedTimestamp?: string
|
|
464
|
+
* }>
|
|
465
|
+
* createdTimestamp?: string
|
|
466
|
+
* updatedTimestamp?: string
|
|
467
|
+
* }>
|
|
295
468
|
* createdTimestamp?: string
|
|
296
469
|
* updatedTimestamp?: string
|
|
297
|
-
* gender?: string
|
|
298
|
-
* identityNumber?: string
|
|
299
|
-
* phoneNumber?: string
|
|
300
|
-
* birthdate?: string
|
|
301
470
|
* }
|
|
302
471
|
* createdTimestamp?: string
|
|
303
472
|
* updatedTimestamp?: string
|
|
@@ -343,12 +512,77 @@ declare global {
|
|
|
343
512
|
* ownerState?: {
|
|
344
513
|
* id?: string
|
|
345
514
|
* name?: string
|
|
515
|
+
* level?: string
|
|
516
|
+
* address?: string
|
|
517
|
+
* note?: string
|
|
518
|
+
* // [items] start
|
|
519
|
+
* // [items] end
|
|
520
|
+
* admins?: Array<{
|
|
521
|
+
* id?: string
|
|
522
|
+
* name?: string
|
|
523
|
+
* createdTimestamp?: string
|
|
524
|
+
* updatedTimestamp?: string
|
|
525
|
+
* gender?: string
|
|
526
|
+
* identityNumber?: string
|
|
527
|
+
* phoneNumber?: string
|
|
528
|
+
* birthdate?: string
|
|
529
|
+
* }>
|
|
530
|
+
* // [items] start
|
|
531
|
+
* // [items] end
|
|
532
|
+
* members?: Array<{
|
|
533
|
+
* id?: string
|
|
534
|
+
* name?: string
|
|
535
|
+
* note?: string
|
|
536
|
+
* // [items] start
|
|
537
|
+
* // [items] end
|
|
538
|
+
* admins?: Array<{
|
|
539
|
+
* id?: string
|
|
540
|
+
* name?: string
|
|
541
|
+
* createdTimestamp?: string
|
|
542
|
+
* updatedTimestamp?: string
|
|
543
|
+
* gender?: string
|
|
544
|
+
* identityNumber?: string
|
|
545
|
+
* phoneNumber?: string
|
|
546
|
+
* birthdate?: string
|
|
547
|
+
* }>
|
|
548
|
+
* // [items] start
|
|
549
|
+
* // [items] end
|
|
550
|
+
* members?: Array<{
|
|
551
|
+
* id?: string
|
|
552
|
+
* name?: string
|
|
553
|
+
* note?: string
|
|
554
|
+
* // [items] start
|
|
555
|
+
* // [items] end
|
|
556
|
+
* admins?: Array<{
|
|
557
|
+
* id?: string
|
|
558
|
+
* name?: string
|
|
559
|
+
* createdTimestamp?: string
|
|
560
|
+
* updatedTimestamp?: string
|
|
561
|
+
* gender?: string
|
|
562
|
+
* identityNumber?: string
|
|
563
|
+
* phoneNumber?: string
|
|
564
|
+
* birthdate?: string
|
|
565
|
+
* }>
|
|
566
|
+
* // [items] start
|
|
567
|
+
* // [items] end
|
|
568
|
+
* members?: Array<{
|
|
569
|
+
* id?: string
|
|
570
|
+
* name?: string
|
|
571
|
+
* createdTimestamp?: string
|
|
572
|
+
* updatedTimestamp?: string
|
|
573
|
+
* gender?: string
|
|
574
|
+
* identityNumber?: string
|
|
575
|
+
* phoneNumber?: string
|
|
576
|
+
* birthdate?: string
|
|
577
|
+
* }>
|
|
578
|
+
* createdTimestamp?: string
|
|
579
|
+
* updatedTimestamp?: string
|
|
580
|
+
* }>
|
|
581
|
+
* createdTimestamp?: string
|
|
582
|
+
* updatedTimestamp?: string
|
|
583
|
+
* }>
|
|
346
584
|
* createdTimestamp?: string
|
|
347
585
|
* updatedTimestamp?: string
|
|
348
|
-
* gender?: string
|
|
349
|
-
* identityNumber?: string
|
|
350
|
-
* phoneNumber?: string
|
|
351
|
-
* birthdate?: string
|
|
352
586
|
* }
|
|
353
587
|
* createdTimestamp?: string
|
|
354
588
|
* updatedTimestamp?: string
|
|
@@ -443,12 +677,77 @@ declare global {
|
|
|
443
677
|
* ownerState?: {
|
|
444
678
|
* id?: string
|
|
445
679
|
* name?: string
|
|
680
|
+
* level?: string
|
|
681
|
+
* address?: string
|
|
682
|
+
* note?: string
|
|
683
|
+
* // [items] start
|
|
684
|
+
* // [items] end
|
|
685
|
+
* admins?: Array<{
|
|
686
|
+
* id?: string
|
|
687
|
+
* name?: string
|
|
688
|
+
* createdTimestamp?: string
|
|
689
|
+
* updatedTimestamp?: string
|
|
690
|
+
* gender?: string
|
|
691
|
+
* identityNumber?: string
|
|
692
|
+
* phoneNumber?: string
|
|
693
|
+
* birthdate?: string
|
|
694
|
+
* }>
|
|
695
|
+
* // [items] start
|
|
696
|
+
* // [items] end
|
|
697
|
+
* members?: Array<{
|
|
698
|
+
* id?: string
|
|
699
|
+
* name?: string
|
|
700
|
+
* note?: string
|
|
701
|
+
* // [items] start
|
|
702
|
+
* // [items] end
|
|
703
|
+
* admins?: Array<{
|
|
704
|
+
* id?: string
|
|
705
|
+
* name?: string
|
|
706
|
+
* createdTimestamp?: string
|
|
707
|
+
* updatedTimestamp?: string
|
|
708
|
+
* gender?: string
|
|
709
|
+
* identityNumber?: string
|
|
710
|
+
* phoneNumber?: string
|
|
711
|
+
* birthdate?: string
|
|
712
|
+
* }>
|
|
713
|
+
* // [items] start
|
|
714
|
+
* // [items] end
|
|
715
|
+
* members?: Array<{
|
|
716
|
+
* id?: string
|
|
717
|
+
* name?: string
|
|
718
|
+
* note?: string
|
|
719
|
+
* // [items] start
|
|
720
|
+
* // [items] end
|
|
721
|
+
* admins?: Array<{
|
|
722
|
+
* id?: string
|
|
723
|
+
* name?: string
|
|
724
|
+
* createdTimestamp?: string
|
|
725
|
+
* updatedTimestamp?: string
|
|
726
|
+
* gender?: string
|
|
727
|
+
* identityNumber?: string
|
|
728
|
+
* phoneNumber?: string
|
|
729
|
+
* birthdate?: string
|
|
730
|
+
* }>
|
|
731
|
+
* // [items] start
|
|
732
|
+
* // [items] end
|
|
733
|
+
* members?: Array<{
|
|
734
|
+
* id?: string
|
|
735
|
+
* name?: string
|
|
736
|
+
* createdTimestamp?: string
|
|
737
|
+
* updatedTimestamp?: string
|
|
738
|
+
* gender?: string
|
|
739
|
+
* identityNumber?: string
|
|
740
|
+
* phoneNumber?: string
|
|
741
|
+
* birthdate?: string
|
|
742
|
+
* }>
|
|
743
|
+
* createdTimestamp?: string
|
|
744
|
+
* updatedTimestamp?: string
|
|
745
|
+
* }>
|
|
746
|
+
* createdTimestamp?: string
|
|
747
|
+
* updatedTimestamp?: string
|
|
748
|
+
* }>
|
|
446
749
|
* createdTimestamp?: string
|
|
447
750
|
* updatedTimestamp?: string
|
|
448
|
-
* gender?: string
|
|
449
|
-
* identityNumber?: string
|
|
450
|
-
* phoneNumber?: string
|
|
451
|
-
* birthdate?: string
|
|
452
751
|
* }
|
|
453
752
|
* createdTimestamp?: string
|
|
454
753
|
* updatedTimestamp?: string
|
|
@@ -494,12 +793,77 @@ declare global {
|
|
|
494
793
|
* ownerState?: {
|
|
495
794
|
* id?: string
|
|
496
795
|
* name?: string
|
|
796
|
+
* level?: string
|
|
797
|
+
* address?: string
|
|
798
|
+
* note?: string
|
|
799
|
+
* // [items] start
|
|
800
|
+
* // [items] end
|
|
801
|
+
* admins?: Array<{
|
|
802
|
+
* id?: string
|
|
803
|
+
* name?: string
|
|
804
|
+
* createdTimestamp?: string
|
|
805
|
+
* updatedTimestamp?: string
|
|
806
|
+
* gender?: string
|
|
807
|
+
* identityNumber?: string
|
|
808
|
+
* phoneNumber?: string
|
|
809
|
+
* birthdate?: string
|
|
810
|
+
* }>
|
|
811
|
+
* // [items] start
|
|
812
|
+
* // [items] end
|
|
813
|
+
* members?: Array<{
|
|
814
|
+
* id?: string
|
|
815
|
+
* name?: string
|
|
816
|
+
* note?: string
|
|
817
|
+
* // [items] start
|
|
818
|
+
* // [items] end
|
|
819
|
+
* admins?: Array<{
|
|
820
|
+
* id?: string
|
|
821
|
+
* name?: string
|
|
822
|
+
* createdTimestamp?: string
|
|
823
|
+
* updatedTimestamp?: string
|
|
824
|
+
* gender?: string
|
|
825
|
+
* identityNumber?: string
|
|
826
|
+
* phoneNumber?: string
|
|
827
|
+
* birthdate?: string
|
|
828
|
+
* }>
|
|
829
|
+
* // [items] start
|
|
830
|
+
* // [items] end
|
|
831
|
+
* members?: Array<{
|
|
832
|
+
* id?: string
|
|
833
|
+
* name?: string
|
|
834
|
+
* note?: string
|
|
835
|
+
* // [items] start
|
|
836
|
+
* // [items] end
|
|
837
|
+
* admins?: Array<{
|
|
838
|
+
* id?: string
|
|
839
|
+
* name?: string
|
|
840
|
+
* createdTimestamp?: string
|
|
841
|
+
* updatedTimestamp?: string
|
|
842
|
+
* gender?: string
|
|
843
|
+
* identityNumber?: string
|
|
844
|
+
* phoneNumber?: string
|
|
845
|
+
* birthdate?: string
|
|
846
|
+
* }>
|
|
847
|
+
* // [items] start
|
|
848
|
+
* // [items] end
|
|
849
|
+
* members?: Array<{
|
|
850
|
+
* id?: string
|
|
851
|
+
* name?: string
|
|
852
|
+
* createdTimestamp?: string
|
|
853
|
+
* updatedTimestamp?: string
|
|
854
|
+
* gender?: string
|
|
855
|
+
* identityNumber?: string
|
|
856
|
+
* phoneNumber?: string
|
|
857
|
+
* birthdate?: string
|
|
858
|
+
* }>
|
|
859
|
+
* createdTimestamp?: string
|
|
860
|
+
* updatedTimestamp?: string
|
|
861
|
+
* }>
|
|
862
|
+
* createdTimestamp?: string
|
|
863
|
+
* updatedTimestamp?: string
|
|
864
|
+
* }>
|
|
497
865
|
* createdTimestamp?: string
|
|
498
866
|
* updatedTimestamp?: string
|
|
499
|
-
* gender?: string
|
|
500
|
-
* identityNumber?: string
|
|
501
|
-
* phoneNumber?: string
|
|
502
|
-
* birthdate?: string
|
|
503
867
|
* }
|
|
504
868
|
* createdTimestamp?: string
|
|
505
869
|
* updatedTimestamp?: string
|
|
@@ -536,7 +900,7 @@ declare global {
|
|
|
536
900
|
* phoneNumber?: string
|
|
537
901
|
* birthdate?: string
|
|
538
902
|
* }
|
|
539
|
-
*
|
|
903
|
+
* prescriptionState?: string
|
|
540
904
|
* startTime?: string
|
|
541
905
|
* endTime?: string
|
|
542
906
|
* page?: number
|
|
@@ -549,20 +913,10 @@ declare global {
|
|
|
549
913
|
* **Response**
|
|
550
914
|
* ```ts
|
|
551
915
|
* type Response = {
|
|
552
|
-
* totalPages?: number
|
|
553
916
|
* totalElements?: number
|
|
554
|
-
*
|
|
555
|
-
*
|
|
556
|
-
*
|
|
557
|
-
* offset?: number
|
|
558
|
-
* sort?: {
|
|
559
|
-
* sorted?: boolean
|
|
560
|
-
* empty?: boolean
|
|
561
|
-
* unsorted?: boolean
|
|
562
|
-
* }
|
|
563
|
-
* pageSize?: number
|
|
564
|
-
* unpaged?: boolean
|
|
565
|
-
* }
|
|
917
|
+
* totalPages?: number
|
|
918
|
+
* first?: boolean
|
|
919
|
+
* last?: boolean
|
|
566
920
|
* size?: number
|
|
567
921
|
* // [items] start
|
|
568
922
|
* // [items] end
|
|
@@ -600,12 +954,77 @@ declare global {
|
|
|
600
954
|
* ownerState?: {
|
|
601
955
|
* id?: string
|
|
602
956
|
* name?: string
|
|
957
|
+
* level?: string
|
|
958
|
+
* address?: string
|
|
959
|
+
* note?: string
|
|
960
|
+
* // [items] start
|
|
961
|
+
* // [items] end
|
|
962
|
+
* admins?: Array<{
|
|
963
|
+
* id?: string
|
|
964
|
+
* name?: string
|
|
965
|
+
* createdTimestamp?: string
|
|
966
|
+
* updatedTimestamp?: string
|
|
967
|
+
* gender?: string
|
|
968
|
+
* identityNumber?: string
|
|
969
|
+
* phoneNumber?: string
|
|
970
|
+
* birthdate?: string
|
|
971
|
+
* }>
|
|
972
|
+
* // [items] start
|
|
973
|
+
* // [items] end
|
|
974
|
+
* members?: Array<{
|
|
975
|
+
* id?: string
|
|
976
|
+
* name?: string
|
|
977
|
+
* note?: string
|
|
978
|
+
* // [items] start
|
|
979
|
+
* // [items] end
|
|
980
|
+
* admins?: Array<{
|
|
981
|
+
* id?: string
|
|
982
|
+
* name?: string
|
|
983
|
+
* createdTimestamp?: string
|
|
984
|
+
* updatedTimestamp?: string
|
|
985
|
+
* gender?: string
|
|
986
|
+
* identityNumber?: string
|
|
987
|
+
* phoneNumber?: string
|
|
988
|
+
* birthdate?: string
|
|
989
|
+
* }>
|
|
990
|
+
* // [items] start
|
|
991
|
+
* // [items] end
|
|
992
|
+
* members?: Array<{
|
|
993
|
+
* id?: string
|
|
994
|
+
* name?: string
|
|
995
|
+
* note?: string
|
|
996
|
+
* // [items] start
|
|
997
|
+
* // [items] end
|
|
998
|
+
* admins?: Array<{
|
|
999
|
+
* id?: string
|
|
1000
|
+
* name?: string
|
|
1001
|
+
* createdTimestamp?: string
|
|
1002
|
+
* updatedTimestamp?: string
|
|
1003
|
+
* gender?: string
|
|
1004
|
+
* identityNumber?: string
|
|
1005
|
+
* phoneNumber?: string
|
|
1006
|
+
* birthdate?: string
|
|
1007
|
+
* }>
|
|
1008
|
+
* // [items] start
|
|
1009
|
+
* // [items] end
|
|
1010
|
+
* members?: Array<{
|
|
1011
|
+
* id?: string
|
|
1012
|
+
* name?: string
|
|
1013
|
+
* createdTimestamp?: string
|
|
1014
|
+
* updatedTimestamp?: string
|
|
1015
|
+
* gender?: string
|
|
1016
|
+
* identityNumber?: string
|
|
1017
|
+
* phoneNumber?: string
|
|
1018
|
+
* birthdate?: string
|
|
1019
|
+
* }>
|
|
1020
|
+
* createdTimestamp?: string
|
|
1021
|
+
* updatedTimestamp?: string
|
|
1022
|
+
* }>
|
|
1023
|
+
* createdTimestamp?: string
|
|
1024
|
+
* updatedTimestamp?: string
|
|
1025
|
+
* }>
|
|
603
1026
|
* createdTimestamp?: string
|
|
604
1027
|
* updatedTimestamp?: string
|
|
605
|
-
* gender?: string
|
|
606
|
-
* identityNumber?: string
|
|
607
|
-
* phoneNumber?: string
|
|
608
|
-
* birthdate?: string
|
|
609
1028
|
* }
|
|
610
1029
|
* createdTimestamp?: string
|
|
611
1030
|
* updatedTimestamp?: string
|
|
@@ -613,13 +1032,23 @@ declare global {
|
|
|
613
1032
|
* }>
|
|
614
1033
|
* number?: number
|
|
615
1034
|
* sort?: {
|
|
616
|
-
* sorted?: boolean
|
|
617
1035
|
* empty?: boolean
|
|
1036
|
+
* sorted?: boolean
|
|
618
1037
|
* unsorted?: boolean
|
|
619
1038
|
* }
|
|
620
1039
|
* numberOfElements?: number
|
|
621
|
-
*
|
|
622
|
-
*
|
|
1040
|
+
* pageable?: {
|
|
1041
|
+
* offset?: number
|
|
1042
|
+
* sort?: {
|
|
1043
|
+
* empty?: boolean
|
|
1044
|
+
* sorted?: boolean
|
|
1045
|
+
* unsorted?: boolean
|
|
1046
|
+
* }
|
|
1047
|
+
* paged?: boolean
|
|
1048
|
+
* pageNumber?: number
|
|
1049
|
+
* pageSize?: number
|
|
1050
|
+
* unpaged?: boolean
|
|
1051
|
+
* }
|
|
623
1052
|
* empty?: boolean
|
|
624
1053
|
* }
|
|
625
1054
|
* ```
|
|
@@ -700,12 +1129,77 @@ declare global {
|
|
|
700
1129
|
* ownerState?: {
|
|
701
1130
|
* id?: string
|
|
702
1131
|
* name?: string
|
|
1132
|
+
* level?: string
|
|
1133
|
+
* address?: string
|
|
1134
|
+
* note?: string
|
|
1135
|
+
* // [items] start
|
|
1136
|
+
* // [items] end
|
|
1137
|
+
* admins?: Array<{
|
|
1138
|
+
* id?: string
|
|
1139
|
+
* name?: string
|
|
1140
|
+
* createdTimestamp?: string
|
|
1141
|
+
* updatedTimestamp?: string
|
|
1142
|
+
* gender?: string
|
|
1143
|
+
* identityNumber?: string
|
|
1144
|
+
* phoneNumber?: string
|
|
1145
|
+
* birthdate?: string
|
|
1146
|
+
* }>
|
|
1147
|
+
* // [items] start
|
|
1148
|
+
* // [items] end
|
|
1149
|
+
* members?: Array<{
|
|
1150
|
+
* id?: string
|
|
1151
|
+
* name?: string
|
|
1152
|
+
* note?: string
|
|
1153
|
+
* // [items] start
|
|
1154
|
+
* // [items] end
|
|
1155
|
+
* admins?: Array<{
|
|
1156
|
+
* id?: string
|
|
1157
|
+
* name?: string
|
|
1158
|
+
* createdTimestamp?: string
|
|
1159
|
+
* updatedTimestamp?: string
|
|
1160
|
+
* gender?: string
|
|
1161
|
+
* identityNumber?: string
|
|
1162
|
+
* phoneNumber?: string
|
|
1163
|
+
* birthdate?: string
|
|
1164
|
+
* }>
|
|
1165
|
+
* // [items] start
|
|
1166
|
+
* // [items] end
|
|
1167
|
+
* members?: Array<{
|
|
1168
|
+
* id?: string
|
|
1169
|
+
* name?: string
|
|
1170
|
+
* note?: string
|
|
1171
|
+
* // [items] start
|
|
1172
|
+
* // [items] end
|
|
1173
|
+
* admins?: Array<{
|
|
1174
|
+
* id?: string
|
|
1175
|
+
* name?: string
|
|
1176
|
+
* createdTimestamp?: string
|
|
1177
|
+
* updatedTimestamp?: string
|
|
1178
|
+
* gender?: string
|
|
1179
|
+
* identityNumber?: string
|
|
1180
|
+
* phoneNumber?: string
|
|
1181
|
+
* birthdate?: string
|
|
1182
|
+
* }>
|
|
1183
|
+
* // [items] start
|
|
1184
|
+
* // [items] end
|
|
1185
|
+
* members?: Array<{
|
|
1186
|
+
* id?: string
|
|
1187
|
+
* name?: string
|
|
1188
|
+
* createdTimestamp?: string
|
|
1189
|
+
* updatedTimestamp?: string
|
|
1190
|
+
* gender?: string
|
|
1191
|
+
* identityNumber?: string
|
|
1192
|
+
* phoneNumber?: string
|
|
1193
|
+
* birthdate?: string
|
|
1194
|
+
* }>
|
|
1195
|
+
* createdTimestamp?: string
|
|
1196
|
+
* updatedTimestamp?: string
|
|
1197
|
+
* }>
|
|
1198
|
+
* createdTimestamp?: string
|
|
1199
|
+
* updatedTimestamp?: string
|
|
1200
|
+
* }>
|
|
703
1201
|
* createdTimestamp?: string
|
|
704
1202
|
* updatedTimestamp?: string
|
|
705
|
-
* gender?: string
|
|
706
|
-
* identityNumber?: string
|
|
707
|
-
* phoneNumber?: string
|
|
708
|
-
* birthdate?: string
|
|
709
1203
|
* }
|
|
710
1204
|
* createdTimestamp?: string
|
|
711
1205
|
* updatedTimestamp?: string
|
|
@@ -749,12 +1243,77 @@ declare global {
|
|
|
749
1243
|
* ownerState?: {
|
|
750
1244
|
* id?: string
|
|
751
1245
|
* name?: string
|
|
1246
|
+
* level?: string
|
|
1247
|
+
* address?: string
|
|
1248
|
+
* note?: string
|
|
1249
|
+
* // [items] start
|
|
1250
|
+
* // [items] end
|
|
1251
|
+
* admins?: Array<{
|
|
1252
|
+
* id?: string
|
|
1253
|
+
* name?: string
|
|
1254
|
+
* createdTimestamp?: string
|
|
1255
|
+
* updatedTimestamp?: string
|
|
1256
|
+
* gender?: string
|
|
1257
|
+
* identityNumber?: string
|
|
1258
|
+
* phoneNumber?: string
|
|
1259
|
+
* birthdate?: string
|
|
1260
|
+
* }>
|
|
1261
|
+
* // [items] start
|
|
1262
|
+
* // [items] end
|
|
1263
|
+
* members?: Array<{
|
|
1264
|
+
* id?: string
|
|
1265
|
+
* name?: string
|
|
1266
|
+
* note?: string
|
|
1267
|
+
* // [items] start
|
|
1268
|
+
* // [items] end
|
|
1269
|
+
* admins?: Array<{
|
|
1270
|
+
* id?: string
|
|
1271
|
+
* name?: string
|
|
1272
|
+
* createdTimestamp?: string
|
|
1273
|
+
* updatedTimestamp?: string
|
|
1274
|
+
* gender?: string
|
|
1275
|
+
* identityNumber?: string
|
|
1276
|
+
* phoneNumber?: string
|
|
1277
|
+
* birthdate?: string
|
|
1278
|
+
* }>
|
|
1279
|
+
* // [items] start
|
|
1280
|
+
* // [items] end
|
|
1281
|
+
* members?: Array<{
|
|
1282
|
+
* id?: string
|
|
1283
|
+
* name?: string
|
|
1284
|
+
* note?: string
|
|
1285
|
+
* // [items] start
|
|
1286
|
+
* // [items] end
|
|
1287
|
+
* admins?: Array<{
|
|
1288
|
+
* id?: string
|
|
1289
|
+
* name?: string
|
|
1290
|
+
* createdTimestamp?: string
|
|
1291
|
+
* updatedTimestamp?: string
|
|
1292
|
+
* gender?: string
|
|
1293
|
+
* identityNumber?: string
|
|
1294
|
+
* phoneNumber?: string
|
|
1295
|
+
* birthdate?: string
|
|
1296
|
+
* }>
|
|
1297
|
+
* // [items] start
|
|
1298
|
+
* // [items] end
|
|
1299
|
+
* members?: Array<{
|
|
1300
|
+
* id?: string
|
|
1301
|
+
* name?: string
|
|
1302
|
+
* createdTimestamp?: string
|
|
1303
|
+
* updatedTimestamp?: string
|
|
1304
|
+
* gender?: string
|
|
1305
|
+
* identityNumber?: string
|
|
1306
|
+
* phoneNumber?: string
|
|
1307
|
+
* birthdate?: string
|
|
1308
|
+
* }>
|
|
1309
|
+
* createdTimestamp?: string
|
|
1310
|
+
* updatedTimestamp?: string
|
|
1311
|
+
* }>
|
|
1312
|
+
* createdTimestamp?: string
|
|
1313
|
+
* updatedTimestamp?: string
|
|
1314
|
+
* }>
|
|
752
1315
|
* createdTimestamp?: string
|
|
753
1316
|
* updatedTimestamp?: string
|
|
754
|
-
* gender?: string
|
|
755
|
-
* identityNumber?: string
|
|
756
|
-
* phoneNumber?: string
|
|
757
|
-
* birthdate?: string
|
|
758
1317
|
* }
|
|
759
1318
|
* createdTimestamp?: string
|
|
760
1319
|
* updatedTimestamp?: string
|
|
@@ -773,12 +1332,77 @@ declare global {
|
|
|
773
1332
|
* ownerState?: {
|
|
774
1333
|
* id?: string
|
|
775
1334
|
* name?: string
|
|
1335
|
+
* level?: string
|
|
1336
|
+
* address?: string
|
|
1337
|
+
* note?: string
|
|
1338
|
+
* // [items] start
|
|
1339
|
+
* // [items] end
|
|
1340
|
+
* admins?: Array<{
|
|
1341
|
+
* id?: string
|
|
1342
|
+
* name?: string
|
|
1343
|
+
* createdTimestamp?: string
|
|
1344
|
+
* updatedTimestamp?: string
|
|
1345
|
+
* gender?: string
|
|
1346
|
+
* identityNumber?: string
|
|
1347
|
+
* phoneNumber?: string
|
|
1348
|
+
* birthdate?: string
|
|
1349
|
+
* }>
|
|
1350
|
+
* // [items] start
|
|
1351
|
+
* // [items] end
|
|
1352
|
+
* members?: Array<{
|
|
1353
|
+
* id?: string
|
|
1354
|
+
* name?: string
|
|
1355
|
+
* note?: string
|
|
1356
|
+
* // [items] start
|
|
1357
|
+
* // [items] end
|
|
1358
|
+
* admins?: Array<{
|
|
1359
|
+
* id?: string
|
|
1360
|
+
* name?: string
|
|
1361
|
+
* createdTimestamp?: string
|
|
1362
|
+
* updatedTimestamp?: string
|
|
1363
|
+
* gender?: string
|
|
1364
|
+
* identityNumber?: string
|
|
1365
|
+
* phoneNumber?: string
|
|
1366
|
+
* birthdate?: string
|
|
1367
|
+
* }>
|
|
1368
|
+
* // [items] start
|
|
1369
|
+
* // [items] end
|
|
1370
|
+
* members?: Array<{
|
|
1371
|
+
* id?: string
|
|
1372
|
+
* name?: string
|
|
1373
|
+
* note?: string
|
|
1374
|
+
* // [items] start
|
|
1375
|
+
* // [items] end
|
|
1376
|
+
* admins?: Array<{
|
|
1377
|
+
* id?: string
|
|
1378
|
+
* name?: string
|
|
1379
|
+
* createdTimestamp?: string
|
|
1380
|
+
* updatedTimestamp?: string
|
|
1381
|
+
* gender?: string
|
|
1382
|
+
* identityNumber?: string
|
|
1383
|
+
* phoneNumber?: string
|
|
1384
|
+
* birthdate?: string
|
|
1385
|
+
* }>
|
|
1386
|
+
* // [items] start
|
|
1387
|
+
* // [items] end
|
|
1388
|
+
* members?: Array<{
|
|
1389
|
+
* id?: string
|
|
1390
|
+
* name?: string
|
|
1391
|
+
* createdTimestamp?: string
|
|
1392
|
+
* updatedTimestamp?: string
|
|
1393
|
+
* gender?: string
|
|
1394
|
+
* identityNumber?: string
|
|
1395
|
+
* phoneNumber?: string
|
|
1396
|
+
* birthdate?: string
|
|
1397
|
+
* }>
|
|
1398
|
+
* createdTimestamp?: string
|
|
1399
|
+
* updatedTimestamp?: string
|
|
1400
|
+
* }>
|
|
1401
|
+
* createdTimestamp?: string
|
|
1402
|
+
* updatedTimestamp?: string
|
|
1403
|
+
* }>
|
|
776
1404
|
* createdTimestamp?: string
|
|
777
1405
|
* updatedTimestamp?: string
|
|
778
|
-
* gender?: string
|
|
779
|
-
* identityNumber?: string
|
|
780
|
-
* phoneNumber?: string
|
|
781
|
-
* birthdate?: string
|
|
782
1406
|
* }
|
|
783
1407
|
* createdTimestamp?: string
|
|
784
1408
|
* updatedTimestamp?: string
|
|
@@ -846,12 +1470,77 @@ declare global {
|
|
|
846
1470
|
* ownerState?: {
|
|
847
1471
|
* id?: string
|
|
848
1472
|
* name?: string
|
|
1473
|
+
* level?: string
|
|
1474
|
+
* address?: string
|
|
1475
|
+
* note?: string
|
|
1476
|
+
* // [items] start
|
|
1477
|
+
* // [items] end
|
|
1478
|
+
* admins?: Array<{
|
|
1479
|
+
* id?: string
|
|
1480
|
+
* name?: string
|
|
1481
|
+
* createdTimestamp?: string
|
|
1482
|
+
* updatedTimestamp?: string
|
|
1483
|
+
* gender?: string
|
|
1484
|
+
* identityNumber?: string
|
|
1485
|
+
* phoneNumber?: string
|
|
1486
|
+
* birthdate?: string
|
|
1487
|
+
* }>
|
|
1488
|
+
* // [items] start
|
|
1489
|
+
* // [items] end
|
|
1490
|
+
* members?: Array<{
|
|
1491
|
+
* id?: string
|
|
1492
|
+
* name?: string
|
|
1493
|
+
* note?: string
|
|
1494
|
+
* // [items] start
|
|
1495
|
+
* // [items] end
|
|
1496
|
+
* admins?: Array<{
|
|
1497
|
+
* id?: string
|
|
1498
|
+
* name?: string
|
|
1499
|
+
* createdTimestamp?: string
|
|
1500
|
+
* updatedTimestamp?: string
|
|
1501
|
+
* gender?: string
|
|
1502
|
+
* identityNumber?: string
|
|
1503
|
+
* phoneNumber?: string
|
|
1504
|
+
* birthdate?: string
|
|
1505
|
+
* }>
|
|
1506
|
+
* // [items] start
|
|
1507
|
+
* // [items] end
|
|
1508
|
+
* members?: Array<{
|
|
1509
|
+
* id?: string
|
|
1510
|
+
* name?: string
|
|
1511
|
+
* note?: string
|
|
1512
|
+
* // [items] start
|
|
1513
|
+
* // [items] end
|
|
1514
|
+
* admins?: Array<{
|
|
1515
|
+
* id?: string
|
|
1516
|
+
* name?: string
|
|
1517
|
+
* createdTimestamp?: string
|
|
1518
|
+
* updatedTimestamp?: string
|
|
1519
|
+
* gender?: string
|
|
1520
|
+
* identityNumber?: string
|
|
1521
|
+
* phoneNumber?: string
|
|
1522
|
+
* birthdate?: string
|
|
1523
|
+
* }>
|
|
1524
|
+
* // [items] start
|
|
1525
|
+
* // [items] end
|
|
1526
|
+
* members?: Array<{
|
|
1527
|
+
* id?: string
|
|
1528
|
+
* name?: string
|
|
1529
|
+
* createdTimestamp?: string
|
|
1530
|
+
* updatedTimestamp?: string
|
|
1531
|
+
* gender?: string
|
|
1532
|
+
* identityNumber?: string
|
|
1533
|
+
* phoneNumber?: string
|
|
1534
|
+
* birthdate?: string
|
|
1535
|
+
* }>
|
|
1536
|
+
* createdTimestamp?: string
|
|
1537
|
+
* updatedTimestamp?: string
|
|
1538
|
+
* }>
|
|
1539
|
+
* createdTimestamp?: string
|
|
1540
|
+
* updatedTimestamp?: string
|
|
1541
|
+
* }>
|
|
849
1542
|
* createdTimestamp?: string
|
|
850
1543
|
* updatedTimestamp?: string
|
|
851
|
-
* gender?: string
|
|
852
|
-
* identityNumber?: string
|
|
853
|
-
* phoneNumber?: string
|
|
854
|
-
* birthdate?: string
|
|
855
1544
|
* }
|
|
856
1545
|
* createdTimestamp?: string
|
|
857
1546
|
* updatedTimestamp?: string
|
|
@@ -870,12 +1559,77 @@ declare global {
|
|
|
870
1559
|
* ownerState?: {
|
|
871
1560
|
* id?: string
|
|
872
1561
|
* name?: string
|
|
1562
|
+
* level?: string
|
|
1563
|
+
* address?: string
|
|
1564
|
+
* note?: string
|
|
1565
|
+
* // [items] start
|
|
1566
|
+
* // [items] end
|
|
1567
|
+
* admins?: Array<{
|
|
1568
|
+
* id?: string
|
|
1569
|
+
* name?: string
|
|
1570
|
+
* createdTimestamp?: string
|
|
1571
|
+
* updatedTimestamp?: string
|
|
1572
|
+
* gender?: string
|
|
1573
|
+
* identityNumber?: string
|
|
1574
|
+
* phoneNumber?: string
|
|
1575
|
+
* birthdate?: string
|
|
1576
|
+
* }>
|
|
1577
|
+
* // [items] start
|
|
1578
|
+
* // [items] end
|
|
1579
|
+
* members?: Array<{
|
|
1580
|
+
* id?: string
|
|
1581
|
+
* name?: string
|
|
1582
|
+
* note?: string
|
|
1583
|
+
* // [items] start
|
|
1584
|
+
* // [items] end
|
|
1585
|
+
* admins?: Array<{
|
|
1586
|
+
* id?: string
|
|
1587
|
+
* name?: string
|
|
1588
|
+
* createdTimestamp?: string
|
|
1589
|
+
* updatedTimestamp?: string
|
|
1590
|
+
* gender?: string
|
|
1591
|
+
* identityNumber?: string
|
|
1592
|
+
* phoneNumber?: string
|
|
1593
|
+
* birthdate?: string
|
|
1594
|
+
* }>
|
|
1595
|
+
* // [items] start
|
|
1596
|
+
* // [items] end
|
|
1597
|
+
* members?: Array<{
|
|
1598
|
+
* id?: string
|
|
1599
|
+
* name?: string
|
|
1600
|
+
* note?: string
|
|
1601
|
+
* // [items] start
|
|
1602
|
+
* // [items] end
|
|
1603
|
+
* admins?: Array<{
|
|
1604
|
+
* id?: string
|
|
1605
|
+
* name?: string
|
|
1606
|
+
* createdTimestamp?: string
|
|
1607
|
+
* updatedTimestamp?: string
|
|
1608
|
+
* gender?: string
|
|
1609
|
+
* identityNumber?: string
|
|
1610
|
+
* phoneNumber?: string
|
|
1611
|
+
* birthdate?: string
|
|
1612
|
+
* }>
|
|
1613
|
+
* // [items] start
|
|
1614
|
+
* // [items] end
|
|
1615
|
+
* members?: Array<{
|
|
1616
|
+
* id?: string
|
|
1617
|
+
* name?: string
|
|
1618
|
+
* createdTimestamp?: string
|
|
1619
|
+
* updatedTimestamp?: string
|
|
1620
|
+
* gender?: string
|
|
1621
|
+
* identityNumber?: string
|
|
1622
|
+
* phoneNumber?: string
|
|
1623
|
+
* birthdate?: string
|
|
1624
|
+
* }>
|
|
1625
|
+
* createdTimestamp?: string
|
|
1626
|
+
* updatedTimestamp?: string
|
|
1627
|
+
* }>
|
|
1628
|
+
* createdTimestamp?: string
|
|
1629
|
+
* updatedTimestamp?: string
|
|
1630
|
+
* }>
|
|
873
1631
|
* createdTimestamp?: string
|
|
874
1632
|
* updatedTimestamp?: string
|
|
875
|
-
* gender?: string
|
|
876
|
-
* identityNumber?: string
|
|
877
|
-
* phoneNumber?: string
|
|
878
|
-
* birthdate?: string
|
|
879
1633
|
* }
|
|
880
1634
|
* createdTimestamp?: string
|
|
881
1635
|
* updatedTimestamp?: string
|
|
@@ -904,12 +1658,77 @@ declare global {
|
|
|
904
1658
|
* ownerState?: {
|
|
905
1659
|
* id?: string
|
|
906
1660
|
* name?: string
|
|
1661
|
+
* level?: string
|
|
1662
|
+
* address?: string
|
|
1663
|
+
* note?: string
|
|
1664
|
+
* // [items] start
|
|
1665
|
+
* // [items] end
|
|
1666
|
+
* admins?: Array<{
|
|
1667
|
+
* id?: string
|
|
1668
|
+
* name?: string
|
|
1669
|
+
* createdTimestamp?: string
|
|
1670
|
+
* updatedTimestamp?: string
|
|
1671
|
+
* gender?: string
|
|
1672
|
+
* identityNumber?: string
|
|
1673
|
+
* phoneNumber?: string
|
|
1674
|
+
* birthdate?: string
|
|
1675
|
+
* }>
|
|
1676
|
+
* // [items] start
|
|
1677
|
+
* // [items] end
|
|
1678
|
+
* members?: Array<{
|
|
1679
|
+
* id?: string
|
|
1680
|
+
* name?: string
|
|
1681
|
+
* note?: string
|
|
1682
|
+
* // [items] start
|
|
1683
|
+
* // [items] end
|
|
1684
|
+
* admins?: Array<{
|
|
1685
|
+
* id?: string
|
|
1686
|
+
* name?: string
|
|
1687
|
+
* createdTimestamp?: string
|
|
1688
|
+
* updatedTimestamp?: string
|
|
1689
|
+
* gender?: string
|
|
1690
|
+
* identityNumber?: string
|
|
1691
|
+
* phoneNumber?: string
|
|
1692
|
+
* birthdate?: string
|
|
1693
|
+
* }>
|
|
1694
|
+
* // [items] start
|
|
1695
|
+
* // [items] end
|
|
1696
|
+
* members?: Array<{
|
|
1697
|
+
* id?: string
|
|
1698
|
+
* name?: string
|
|
1699
|
+
* note?: string
|
|
1700
|
+
* // [items] start
|
|
1701
|
+
* // [items] end
|
|
1702
|
+
* admins?: Array<{
|
|
1703
|
+
* id?: string
|
|
1704
|
+
* name?: string
|
|
1705
|
+
* createdTimestamp?: string
|
|
1706
|
+
* updatedTimestamp?: string
|
|
1707
|
+
* gender?: string
|
|
1708
|
+
* identityNumber?: string
|
|
1709
|
+
* phoneNumber?: string
|
|
1710
|
+
* birthdate?: string
|
|
1711
|
+
* }>
|
|
1712
|
+
* // [items] start
|
|
1713
|
+
* // [items] end
|
|
1714
|
+
* members?: Array<{
|
|
1715
|
+
* id?: string
|
|
1716
|
+
* name?: string
|
|
1717
|
+
* createdTimestamp?: string
|
|
1718
|
+
* updatedTimestamp?: string
|
|
1719
|
+
* gender?: string
|
|
1720
|
+
* identityNumber?: string
|
|
1721
|
+
* phoneNumber?: string
|
|
1722
|
+
* birthdate?: string
|
|
1723
|
+
* }>
|
|
1724
|
+
* createdTimestamp?: string
|
|
1725
|
+
* updatedTimestamp?: string
|
|
1726
|
+
* }>
|
|
1727
|
+
* createdTimestamp?: string
|
|
1728
|
+
* updatedTimestamp?: string
|
|
1729
|
+
* }>
|
|
907
1730
|
* createdTimestamp?: string
|
|
908
1731
|
* updatedTimestamp?: string
|
|
909
|
-
* gender?: string
|
|
910
|
-
* identityNumber?: string
|
|
911
|
-
* phoneNumber?: string
|
|
912
|
-
* birthdate?: string
|
|
913
1732
|
* }
|
|
914
1733
|
* name?: string
|
|
915
1734
|
* page?: number
|
|
@@ -922,20 +1741,10 @@ declare global {
|
|
|
922
1741
|
* **Response**
|
|
923
1742
|
* ```ts
|
|
924
1743
|
* type Response = {
|
|
925
|
-
* totalPages?: number
|
|
926
1744
|
* totalElements?: number
|
|
927
|
-
*
|
|
928
|
-
*
|
|
929
|
-
*
|
|
930
|
-
* offset?: number
|
|
931
|
-
* sort?: {
|
|
932
|
-
* sorted?: boolean
|
|
933
|
-
* empty?: boolean
|
|
934
|
-
* unsorted?: boolean
|
|
935
|
-
* }
|
|
936
|
-
* pageSize?: number
|
|
937
|
-
* unpaged?: boolean
|
|
938
|
-
* }
|
|
1745
|
+
* totalPages?: number
|
|
1746
|
+
* first?: boolean
|
|
1747
|
+
* last?: boolean
|
|
939
1748
|
* size?: number
|
|
940
1749
|
* // [items] start
|
|
941
1750
|
* // [items] end
|
|
@@ -947,25 +1756,100 @@ declare global {
|
|
|
947
1756
|
* ownerState?: {
|
|
948
1757
|
* id?: string
|
|
949
1758
|
* name?: string
|
|
1759
|
+
* level?: string
|
|
1760
|
+
* address?: string
|
|
1761
|
+
* note?: string
|
|
1762
|
+
* // [items] start
|
|
1763
|
+
* // [items] end
|
|
1764
|
+
* admins?: Array<{
|
|
1765
|
+
* id?: string
|
|
1766
|
+
* name?: string
|
|
1767
|
+
* createdTimestamp?: string
|
|
1768
|
+
* updatedTimestamp?: string
|
|
1769
|
+
* gender?: string
|
|
1770
|
+
* identityNumber?: string
|
|
1771
|
+
* phoneNumber?: string
|
|
1772
|
+
* birthdate?: string
|
|
1773
|
+
* }>
|
|
1774
|
+
* // [items] start
|
|
1775
|
+
* // [items] end
|
|
1776
|
+
* members?: Array<{
|
|
1777
|
+
* id?: string
|
|
1778
|
+
* name?: string
|
|
1779
|
+
* note?: string
|
|
1780
|
+
* // [items] start
|
|
1781
|
+
* // [items] end
|
|
1782
|
+
* admins?: Array<{
|
|
1783
|
+
* id?: string
|
|
1784
|
+
* name?: string
|
|
1785
|
+
* createdTimestamp?: string
|
|
1786
|
+
* updatedTimestamp?: string
|
|
1787
|
+
* gender?: string
|
|
1788
|
+
* identityNumber?: string
|
|
1789
|
+
* phoneNumber?: string
|
|
1790
|
+
* birthdate?: string
|
|
1791
|
+
* }>
|
|
1792
|
+
* // [items] start
|
|
1793
|
+
* // [items] end
|
|
1794
|
+
* members?: Array<{
|
|
1795
|
+
* id?: string
|
|
1796
|
+
* name?: string
|
|
1797
|
+
* note?: string
|
|
1798
|
+
* // [items] start
|
|
1799
|
+
* // [items] end
|
|
1800
|
+
* admins?: Array<{
|
|
1801
|
+
* id?: string
|
|
1802
|
+
* name?: string
|
|
1803
|
+
* createdTimestamp?: string
|
|
1804
|
+
* updatedTimestamp?: string
|
|
1805
|
+
* gender?: string
|
|
1806
|
+
* identityNumber?: string
|
|
1807
|
+
* phoneNumber?: string
|
|
1808
|
+
* birthdate?: string
|
|
1809
|
+
* }>
|
|
1810
|
+
* // [items] start
|
|
1811
|
+
* // [items] end
|
|
1812
|
+
* members?: Array<{
|
|
1813
|
+
* id?: string
|
|
1814
|
+
* name?: string
|
|
1815
|
+
* createdTimestamp?: string
|
|
1816
|
+
* updatedTimestamp?: string
|
|
1817
|
+
* gender?: string
|
|
1818
|
+
* identityNumber?: string
|
|
1819
|
+
* phoneNumber?: string
|
|
1820
|
+
* birthdate?: string
|
|
1821
|
+
* }>
|
|
1822
|
+
* createdTimestamp?: string
|
|
1823
|
+
* updatedTimestamp?: string
|
|
1824
|
+
* }>
|
|
1825
|
+
* createdTimestamp?: string
|
|
1826
|
+
* updatedTimestamp?: string
|
|
1827
|
+
* }>
|
|
950
1828
|
* createdTimestamp?: string
|
|
951
1829
|
* updatedTimestamp?: string
|
|
952
|
-
* gender?: string
|
|
953
|
-
* identityNumber?: string
|
|
954
|
-
* phoneNumber?: string
|
|
955
|
-
* birthdate?: string
|
|
956
1830
|
* }
|
|
957
1831
|
* createdTimestamp?: string
|
|
958
1832
|
* updatedTimestamp?: string
|
|
959
1833
|
* }>
|
|
960
1834
|
* number?: number
|
|
961
1835
|
* sort?: {
|
|
962
|
-
* sorted?: boolean
|
|
963
1836
|
* empty?: boolean
|
|
1837
|
+
* sorted?: boolean
|
|
964
1838
|
* unsorted?: boolean
|
|
965
1839
|
* }
|
|
966
1840
|
* numberOfElements?: number
|
|
967
|
-
*
|
|
968
|
-
*
|
|
1841
|
+
* pageable?: {
|
|
1842
|
+
* offset?: number
|
|
1843
|
+
* sort?: {
|
|
1844
|
+
* empty?: boolean
|
|
1845
|
+
* sorted?: boolean
|
|
1846
|
+
* unsorted?: boolean
|
|
1847
|
+
* }
|
|
1848
|
+
* paged?: boolean
|
|
1849
|
+
* pageNumber?: number
|
|
1850
|
+
* pageSize?: number
|
|
1851
|
+
* unpaged?: boolean
|
|
1852
|
+
* }
|
|
969
1853
|
* empty?: boolean
|
|
970
1854
|
* }
|
|
971
1855
|
* ```
|