Package not found. Please check the package name and try again.
ch-admin-api-client-typescript 3.3.4 → 3.4.0
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/lib/api.d.ts +726 -1295
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -35
- package/package.json +1 -1
- package/src/api.ts +680 -1253
package/lib/api.d.ts
CHANGED
|
@@ -29,19 +29,7 @@ export interface AboutUsPageItemModel {
|
|
|
29
29
|
* @type {string}
|
|
30
30
|
* @memberof AboutUsPageItemModel
|
|
31
31
|
*/
|
|
32
|
-
'
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {string}
|
|
36
|
-
* @memberof AboutUsPageItemModel
|
|
37
|
-
*/
|
|
38
|
-
'hospitalName'?: string | null;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @type {string}
|
|
42
|
-
* @memberof AboutUsPageItemModel
|
|
43
|
-
*/
|
|
44
|
-
'hospitalSlug'?: string | null;
|
|
32
|
+
'languageCode'?: string | null;
|
|
45
33
|
/**
|
|
46
34
|
*
|
|
47
35
|
* @type {string}
|
|
@@ -54,24 +42,12 @@ export interface AboutUsPageItemModel {
|
|
|
54
42
|
* @memberof AboutUsPageItemModel
|
|
55
43
|
*/
|
|
56
44
|
'slug'?: string | null;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof AboutUsPageItemModel
|
|
61
|
-
*/
|
|
62
|
-
'description'?: string | null;
|
|
63
45
|
/**
|
|
64
46
|
*
|
|
65
47
|
* @type {boolean}
|
|
66
48
|
* @memberof AboutUsPageItemModel
|
|
67
49
|
*/
|
|
68
50
|
'confirmed'?: boolean;
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @type {Array<MediaModel>}
|
|
72
|
-
* @memberof AboutUsPageItemModel
|
|
73
|
-
*/
|
|
74
|
-
'medias'?: Array<MediaModel> | null;
|
|
75
51
|
/**
|
|
76
52
|
*
|
|
77
53
|
* @type {AuditableEntity}
|
|
@@ -96,31 +72,31 @@ export interface AboutUsPageModel {
|
|
|
96
72
|
* @type {string}
|
|
97
73
|
* @memberof AboutUsPageModel
|
|
98
74
|
*/
|
|
99
|
-
'
|
|
75
|
+
'languageCode'?: string | null;
|
|
100
76
|
/**
|
|
101
77
|
*
|
|
102
78
|
* @type {string}
|
|
103
79
|
* @memberof AboutUsPageModel
|
|
104
80
|
*/
|
|
105
|
-
'
|
|
81
|
+
'name'?: string | null;
|
|
106
82
|
/**
|
|
107
83
|
*
|
|
108
84
|
* @type {string}
|
|
109
85
|
* @memberof AboutUsPageModel
|
|
110
86
|
*/
|
|
111
|
-
'
|
|
87
|
+
'slug'?: string | null;
|
|
112
88
|
/**
|
|
113
89
|
*
|
|
114
|
-
* @type {
|
|
90
|
+
* @type {boolean}
|
|
115
91
|
* @memberof AboutUsPageModel
|
|
116
92
|
*/
|
|
117
|
-
'
|
|
93
|
+
'confirmed'?: boolean;
|
|
118
94
|
/**
|
|
119
95
|
*
|
|
120
|
-
* @type {
|
|
96
|
+
* @type {AuditableEntity}
|
|
121
97
|
* @memberof AboutUsPageModel
|
|
122
98
|
*/
|
|
123
|
-
'
|
|
99
|
+
'auditableEntity'?: AuditableEntity;
|
|
124
100
|
/**
|
|
125
101
|
*
|
|
126
102
|
* @type {string}
|
|
@@ -129,34 +105,34 @@ export interface AboutUsPageModel {
|
|
|
129
105
|
'description'?: string | null;
|
|
130
106
|
/**
|
|
131
107
|
*
|
|
132
|
-
* @type {
|
|
108
|
+
* @type {string}
|
|
133
109
|
* @memberof AboutUsPageModel
|
|
134
110
|
*/
|
|
135
|
-
'
|
|
111
|
+
'overview'?: string | null;
|
|
136
112
|
/**
|
|
137
113
|
*
|
|
138
|
-
* @type {
|
|
114
|
+
* @type {string}
|
|
139
115
|
* @memberof AboutUsPageModel
|
|
140
116
|
*/
|
|
141
|
-
'
|
|
117
|
+
'content'?: string | null;
|
|
142
118
|
/**
|
|
143
119
|
*
|
|
144
|
-
* @type {
|
|
120
|
+
* @type {string}
|
|
145
121
|
* @memberof AboutUsPageModel
|
|
146
122
|
*/
|
|
147
|
-
'
|
|
123
|
+
'hospitalId'?: string;
|
|
148
124
|
/**
|
|
149
125
|
*
|
|
150
126
|
* @type {string}
|
|
151
127
|
* @memberof AboutUsPageModel
|
|
152
128
|
*/
|
|
153
|
-
'
|
|
129
|
+
'hospitalName'?: string | null;
|
|
154
130
|
/**
|
|
155
131
|
*
|
|
156
132
|
* @type {string}
|
|
157
133
|
* @memberof AboutUsPageModel
|
|
158
134
|
*/
|
|
159
|
-
'
|
|
135
|
+
'hospitalSlug'?: string | null;
|
|
160
136
|
/**
|
|
161
137
|
*
|
|
162
138
|
* @type {string}
|
|
@@ -177,10 +153,10 @@ export interface AboutUsPageModel {
|
|
|
177
153
|
'backgroundThumbnail'?: string | null;
|
|
178
154
|
/**
|
|
179
155
|
*
|
|
180
|
-
* @type {Array<
|
|
156
|
+
* @type {Array<MediaModel>}
|
|
181
157
|
* @memberof AboutUsPageModel
|
|
182
158
|
*/
|
|
183
|
-
'
|
|
159
|
+
'medias'?: Array<MediaModel> | null;
|
|
184
160
|
}
|
|
185
161
|
/**
|
|
186
162
|
*
|
|
@@ -338,6 +314,12 @@ export interface ArticleContributorItemModel {
|
|
|
338
314
|
* @memberof ArticleContributorItemModel
|
|
339
315
|
*/
|
|
340
316
|
'contributorId'?: string;
|
|
317
|
+
/**
|
|
318
|
+
*
|
|
319
|
+
* @type {string}
|
|
320
|
+
* @memberof ArticleContributorItemModel
|
|
321
|
+
*/
|
|
322
|
+
'languageCode'?: string | null;
|
|
341
323
|
/**
|
|
342
324
|
*
|
|
343
325
|
* @type {string}
|
|
@@ -352,28 +334,28 @@ export interface ArticleContributorItemModel {
|
|
|
352
334
|
'contributorSlug'?: string | null;
|
|
353
335
|
/**
|
|
354
336
|
*
|
|
355
|
-
* @type {
|
|
337
|
+
* @type {boolean}
|
|
356
338
|
* @memberof ArticleContributorItemModel
|
|
357
339
|
*/
|
|
358
|
-
'
|
|
340
|
+
'contributorConfirmed'?: boolean;
|
|
359
341
|
/**
|
|
360
342
|
*
|
|
361
343
|
* @type {string}
|
|
362
344
|
* @memberof ArticleContributorItemModel
|
|
363
345
|
*/
|
|
364
|
-
'
|
|
346
|
+
'contributorEmail'?: string | null;
|
|
365
347
|
/**
|
|
366
348
|
*
|
|
367
349
|
* @type {string}
|
|
368
350
|
* @memberof ArticleContributorItemModel
|
|
369
351
|
*/
|
|
370
|
-
'
|
|
352
|
+
'contributorPhoto'?: string | null;
|
|
371
353
|
/**
|
|
372
354
|
*
|
|
373
355
|
* @type {string}
|
|
374
356
|
* @memberof ArticleContributorItemModel
|
|
375
357
|
*/
|
|
376
|
-
'
|
|
358
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
377
359
|
/**
|
|
378
360
|
*
|
|
379
361
|
* @type {ContributionType}
|
|
@@ -392,24 +374,12 @@ export interface ArticleContributorItemModel {
|
|
|
392
374
|
* @memberof ArticleContributorItemModel
|
|
393
375
|
*/
|
|
394
376
|
'order'?: number;
|
|
395
|
-
/**
|
|
396
|
-
*
|
|
397
|
-
* @type {boolean}
|
|
398
|
-
* @memberof ArticleContributorItemModel
|
|
399
|
-
*/
|
|
400
|
-
'confirmed'?: boolean;
|
|
401
377
|
/**
|
|
402
378
|
*
|
|
403
379
|
* @type {AuditableEntity}
|
|
404
380
|
* @memberof ArticleContributorItemModel
|
|
405
381
|
*/
|
|
406
382
|
'auditableEntity'?: AuditableEntity;
|
|
407
|
-
/**
|
|
408
|
-
*
|
|
409
|
-
* @type {Array<SnsHandleModel>}
|
|
410
|
-
* @memberof ArticleContributorItemModel
|
|
411
|
-
*/
|
|
412
|
-
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
413
383
|
}
|
|
414
384
|
/**
|
|
415
385
|
*
|
|
@@ -429,6 +399,12 @@ export interface ArticleContributorModel {
|
|
|
429
399
|
* @memberof ArticleContributorModel
|
|
430
400
|
*/
|
|
431
401
|
'contributorId'?: string;
|
|
402
|
+
/**
|
|
403
|
+
*
|
|
404
|
+
* @type {string}
|
|
405
|
+
* @memberof ArticleContributorModel
|
|
406
|
+
*/
|
|
407
|
+
'languageCode'?: string | null;
|
|
432
408
|
/**
|
|
433
409
|
*
|
|
434
410
|
* @type {string}
|
|
@@ -443,28 +419,28 @@ export interface ArticleContributorModel {
|
|
|
443
419
|
'contributorSlug'?: string | null;
|
|
444
420
|
/**
|
|
445
421
|
*
|
|
446
|
-
* @type {
|
|
422
|
+
* @type {boolean}
|
|
447
423
|
* @memberof ArticleContributorModel
|
|
448
424
|
*/
|
|
449
|
-
'
|
|
425
|
+
'contributorConfirmed'?: boolean;
|
|
450
426
|
/**
|
|
451
427
|
*
|
|
452
428
|
* @type {string}
|
|
453
429
|
* @memberof ArticleContributorModel
|
|
454
430
|
*/
|
|
455
|
-
'
|
|
431
|
+
'contributorEmail'?: string | null;
|
|
456
432
|
/**
|
|
457
433
|
*
|
|
458
434
|
* @type {string}
|
|
459
435
|
* @memberof ArticleContributorModel
|
|
460
436
|
*/
|
|
461
|
-
'
|
|
437
|
+
'contributorPhoto'?: string | null;
|
|
462
438
|
/**
|
|
463
439
|
*
|
|
464
440
|
* @type {string}
|
|
465
441
|
* @memberof ArticleContributorModel
|
|
466
442
|
*/
|
|
467
|
-
'
|
|
443
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
468
444
|
/**
|
|
469
445
|
*
|
|
470
446
|
* @type {ContributionType}
|
|
@@ -483,48 +459,12 @@ export interface ArticleContributorModel {
|
|
|
483
459
|
* @memberof ArticleContributorModel
|
|
484
460
|
*/
|
|
485
461
|
'order'?: number;
|
|
486
|
-
/**
|
|
487
|
-
*
|
|
488
|
-
* @type {boolean}
|
|
489
|
-
* @memberof ArticleContributorModel
|
|
490
|
-
*/
|
|
491
|
-
'confirmed'?: boolean;
|
|
492
462
|
/**
|
|
493
463
|
*
|
|
494
464
|
* @type {AuditableEntity}
|
|
495
465
|
* @memberof ArticleContributorModel
|
|
496
466
|
*/
|
|
497
467
|
'auditableEntity'?: AuditableEntity;
|
|
498
|
-
/**
|
|
499
|
-
*
|
|
500
|
-
* @type {Array<SnsHandleModel>}
|
|
501
|
-
* @memberof ArticleContributorModel
|
|
502
|
-
*/
|
|
503
|
-
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
504
|
-
/**
|
|
505
|
-
*
|
|
506
|
-
* @type {string}
|
|
507
|
-
* @memberof ArticleContributorModel
|
|
508
|
-
*/
|
|
509
|
-
'languageCode'?: string | null;
|
|
510
|
-
/**
|
|
511
|
-
*
|
|
512
|
-
* @type {string}
|
|
513
|
-
* @memberof ArticleContributorModel
|
|
514
|
-
*/
|
|
515
|
-
'content'?: string | null;
|
|
516
|
-
/**
|
|
517
|
-
*
|
|
518
|
-
* @type {Array<SnsHandle>}
|
|
519
|
-
* @memberof ArticleContributorModel
|
|
520
|
-
*/
|
|
521
|
-
'snsHandles'?: Array<SnsHandle> | null;
|
|
522
|
-
/**
|
|
523
|
-
*
|
|
524
|
-
* @type {Array<LocalizedUrlModel>}
|
|
525
|
-
* @memberof ArticleContributorModel
|
|
526
|
-
*/
|
|
527
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
528
468
|
}
|
|
529
469
|
/**
|
|
530
470
|
*
|
|
@@ -562,31 +502,25 @@ export interface ArticleItemModel {
|
|
|
562
502
|
* @type {string}
|
|
563
503
|
* @memberof ArticleItemModel
|
|
564
504
|
*/
|
|
565
|
-
'
|
|
566
|
-
/**
|
|
567
|
-
*
|
|
568
|
-
* @type {string}
|
|
569
|
-
* @memberof ArticleItemModel
|
|
570
|
-
*/
|
|
571
|
-
'slug'?: string | null;
|
|
505
|
+
'languageCode'?: string | null;
|
|
572
506
|
/**
|
|
573
507
|
*
|
|
574
508
|
* @type {string}
|
|
575
509
|
* @memberof ArticleItemModel
|
|
576
510
|
*/
|
|
577
|
-
'
|
|
511
|
+
'name'?: string | null;
|
|
578
512
|
/**
|
|
579
513
|
*
|
|
580
514
|
* @type {string}
|
|
581
515
|
* @memberof ArticleItemModel
|
|
582
516
|
*/
|
|
583
|
-
'
|
|
517
|
+
'slug'?: string | null;
|
|
584
518
|
/**
|
|
585
519
|
*
|
|
586
|
-
* @type {
|
|
520
|
+
* @type {boolean}
|
|
587
521
|
* @memberof ArticleItemModel
|
|
588
522
|
*/
|
|
589
|
-
'
|
|
523
|
+
'confirmed'?: boolean;
|
|
590
524
|
/**
|
|
591
525
|
*
|
|
592
526
|
* @type {MarketingType}
|
|
@@ -611,54 +545,6 @@ export interface ArticleItemModel {
|
|
|
611
545
|
* @memberof ArticleItemModel
|
|
612
546
|
*/
|
|
613
547
|
'hospitalId'?: string;
|
|
614
|
-
/**
|
|
615
|
-
*
|
|
616
|
-
* @type {string}
|
|
617
|
-
* @memberof ArticleItemModel
|
|
618
|
-
*/
|
|
619
|
-
'hospitalName'?: string | null;
|
|
620
|
-
/**
|
|
621
|
-
*
|
|
622
|
-
* @type {string}
|
|
623
|
-
* @memberof ArticleItemModel
|
|
624
|
-
*/
|
|
625
|
-
'hospitalSlug'?: string | null;
|
|
626
|
-
/**
|
|
627
|
-
*
|
|
628
|
-
* @type {string}
|
|
629
|
-
* @memberof ArticleItemModel
|
|
630
|
-
*/
|
|
631
|
-
'youtubeUrl'?: string | null;
|
|
632
|
-
/**
|
|
633
|
-
*
|
|
634
|
-
* @type {boolean}
|
|
635
|
-
* @memberof ArticleItemModel
|
|
636
|
-
*/
|
|
637
|
-
'confirmed'?: boolean;
|
|
638
|
-
/**
|
|
639
|
-
*
|
|
640
|
-
* @type {Array<ArticleTagItemModel>}
|
|
641
|
-
* @memberof ArticleItemModel
|
|
642
|
-
*/
|
|
643
|
-
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
644
|
-
/**
|
|
645
|
-
*
|
|
646
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
647
|
-
* @memberof ArticleItemModel
|
|
648
|
-
*/
|
|
649
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
650
|
-
/**
|
|
651
|
-
*
|
|
652
|
-
* @type {Array<MediaModel>}
|
|
653
|
-
* @memberof ArticleItemModel
|
|
654
|
-
*/
|
|
655
|
-
'medias'?: Array<MediaModel> | null;
|
|
656
|
-
/**
|
|
657
|
-
*
|
|
658
|
-
* @type {Array<SourceModel>}
|
|
659
|
-
* @memberof ArticleItemModel
|
|
660
|
-
*/
|
|
661
|
-
'sources'?: Array<SourceModel> | null;
|
|
662
548
|
/**
|
|
663
549
|
*
|
|
664
550
|
* @type {AuditableEntity}
|
|
@@ -683,31 +569,25 @@ export interface ArticleModel {
|
|
|
683
569
|
* @type {string}
|
|
684
570
|
* @memberof ArticleModel
|
|
685
571
|
*/
|
|
686
|
-
'
|
|
687
|
-
/**
|
|
688
|
-
*
|
|
689
|
-
* @type {string}
|
|
690
|
-
* @memberof ArticleModel
|
|
691
|
-
*/
|
|
692
|
-
'slug'?: string | null;
|
|
572
|
+
'languageCode'?: string | null;
|
|
693
573
|
/**
|
|
694
574
|
*
|
|
695
575
|
* @type {string}
|
|
696
576
|
* @memberof ArticleModel
|
|
697
577
|
*/
|
|
698
|
-
'
|
|
578
|
+
'name'?: string | null;
|
|
699
579
|
/**
|
|
700
580
|
*
|
|
701
581
|
* @type {string}
|
|
702
582
|
* @memberof ArticleModel
|
|
703
583
|
*/
|
|
704
|
-
'
|
|
584
|
+
'slug'?: string | null;
|
|
705
585
|
/**
|
|
706
586
|
*
|
|
707
|
-
* @type {
|
|
587
|
+
* @type {boolean}
|
|
708
588
|
* @memberof ArticleModel
|
|
709
589
|
*/
|
|
710
|
-
'
|
|
590
|
+
'confirmed'?: boolean;
|
|
711
591
|
/**
|
|
712
592
|
*
|
|
713
593
|
* @type {MarketingType}
|
|
@@ -734,93 +614,63 @@ export interface ArticleModel {
|
|
|
734
614
|
'hospitalId'?: string;
|
|
735
615
|
/**
|
|
736
616
|
*
|
|
737
|
-
* @type {
|
|
617
|
+
* @type {AuditableEntity}
|
|
738
618
|
* @memberof ArticleModel
|
|
739
619
|
*/
|
|
740
|
-
'
|
|
620
|
+
'auditableEntity'?: AuditableEntity;
|
|
741
621
|
/**
|
|
742
622
|
*
|
|
743
623
|
* @type {string}
|
|
744
624
|
* @memberof ArticleModel
|
|
745
625
|
*/
|
|
746
|
-
'
|
|
626
|
+
'description'?: string | null;
|
|
747
627
|
/**
|
|
748
628
|
*
|
|
749
629
|
* @type {string}
|
|
750
630
|
* @memberof ArticleModel
|
|
751
631
|
*/
|
|
752
|
-
'
|
|
632
|
+
'overview'?: string | null;
|
|
753
633
|
/**
|
|
754
634
|
*
|
|
755
|
-
* @type {
|
|
635
|
+
* @type {string}
|
|
756
636
|
* @memberof ArticleModel
|
|
757
637
|
*/
|
|
758
|
-
'
|
|
638
|
+
'content'?: string | null;
|
|
759
639
|
/**
|
|
760
640
|
*
|
|
761
|
-
* @type {
|
|
641
|
+
* @type {string}
|
|
762
642
|
* @memberof ArticleModel
|
|
763
643
|
*/
|
|
764
|
-
'
|
|
644
|
+
'youtubeUrl'?: string | null;
|
|
765
645
|
/**
|
|
766
646
|
*
|
|
767
|
-
* @type {Array<
|
|
647
|
+
* @type {Array<ArticleTagItemModel>}
|
|
768
648
|
* @memberof ArticleModel
|
|
769
649
|
*/
|
|
770
|
-
'
|
|
650
|
+
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
771
651
|
/**
|
|
772
652
|
*
|
|
773
653
|
* @type {Array<MediaModel>}
|
|
774
654
|
* @memberof ArticleModel
|
|
775
655
|
*/
|
|
776
656
|
'medias'?: Array<MediaModel> | null;
|
|
657
|
+
}
|
|
658
|
+
/**
|
|
659
|
+
*
|
|
660
|
+
* @export
|
|
661
|
+
* @interface ArticleSourcesModel
|
|
662
|
+
*/
|
|
663
|
+
export interface ArticleSourcesModel {
|
|
777
664
|
/**
|
|
778
665
|
*
|
|
779
666
|
* @type {Array<SourceModel>}
|
|
780
|
-
* @memberof
|
|
781
|
-
*/
|
|
782
|
-
'sources'?: Array<SourceModel> | null;
|
|
783
|
-
/**
|
|
784
|
-
*
|
|
785
|
-
* @type {AuditableEntity}
|
|
786
|
-
* @memberof ArticleModel
|
|
787
|
-
*/
|
|
788
|
-
'auditableEntity'?: AuditableEntity;
|
|
789
|
-
/**
|
|
790
|
-
*
|
|
791
|
-
* @type {string}
|
|
792
|
-
* @memberof ArticleModel
|
|
667
|
+
* @memberof ArticleSourcesModel
|
|
793
668
|
*/
|
|
794
|
-
'
|
|
669
|
+
'items'?: Array<SourceModel> | null;
|
|
795
670
|
/**
|
|
796
671
|
*
|
|
797
|
-
* @type {
|
|
798
|
-
* @memberof
|
|
799
|
-
*/
|
|
800
|
-
'languageCode'?: string | null;
|
|
801
|
-
/**
|
|
802
|
-
*
|
|
803
|
-
* @type {Array<LocalizedUrlModel>}
|
|
804
|
-
* @memberof ArticleModel
|
|
805
|
-
*/
|
|
806
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
807
|
-
}
|
|
808
|
-
/**
|
|
809
|
-
*
|
|
810
|
-
* @export
|
|
811
|
-
* @interface ArticleSourcesModel
|
|
812
|
-
*/
|
|
813
|
-
export interface ArticleSourcesModel {
|
|
814
|
-
/**
|
|
815
|
-
*
|
|
816
|
-
* @type {Array<SourceModel>}
|
|
817
|
-
* @memberof ArticleSourcesModel
|
|
818
|
-
*/
|
|
819
|
-
'items'?: Array<SourceModel> | null;
|
|
820
|
-
/**
|
|
821
|
-
*
|
|
822
|
-
* @type {PagedListMetaData}
|
|
823
|
-
* @memberof ArticleSourcesModel
|
|
672
|
+
* @type {PagedListMetaData}
|
|
673
|
+
* @memberof ArticleSourcesModel
|
|
824
674
|
*/
|
|
825
675
|
'metaData'?: PagedListMetaData;
|
|
826
676
|
}
|
|
@@ -1529,12 +1379,6 @@ export interface CHAdminItemModel {
|
|
|
1529
1379
|
* @memberof CHAdminItemModel
|
|
1530
1380
|
*/
|
|
1531
1381
|
'firstName'?: string | null;
|
|
1532
|
-
/**
|
|
1533
|
-
*
|
|
1534
|
-
* @type {string}
|
|
1535
|
-
* @memberof CHAdminItemModel
|
|
1536
|
-
*/
|
|
1537
|
-
'middleName'?: string | null;
|
|
1538
1382
|
/**
|
|
1539
1383
|
*
|
|
1540
1384
|
* @type {string}
|
|
@@ -1546,13 +1390,7 @@ export interface CHAdminItemModel {
|
|
|
1546
1390
|
* @type {string}
|
|
1547
1391
|
* @memberof CHAdminItemModel
|
|
1548
1392
|
*/
|
|
1549
|
-
'
|
|
1550
|
-
/**
|
|
1551
|
-
*
|
|
1552
|
-
* @type {string}
|
|
1553
|
-
* @memberof CHAdminItemModel
|
|
1554
|
-
*/
|
|
1555
|
-
'slug'?: string | null;
|
|
1393
|
+
'fullname'?: string | null;
|
|
1556
1394
|
/**
|
|
1557
1395
|
*
|
|
1558
1396
|
* @type {string}
|
|
@@ -1632,12 +1470,6 @@ export interface CHAdminModel {
|
|
|
1632
1470
|
* @memberof CHAdminModel
|
|
1633
1471
|
*/
|
|
1634
1472
|
'firstName'?: string | null;
|
|
1635
|
-
/**
|
|
1636
|
-
*
|
|
1637
|
-
* @type {string}
|
|
1638
|
-
* @memberof CHAdminModel
|
|
1639
|
-
*/
|
|
1640
|
-
'middleName'?: string | null;
|
|
1641
1473
|
/**
|
|
1642
1474
|
*
|
|
1643
1475
|
* @type {string}
|
|
@@ -1649,13 +1481,7 @@ export interface CHAdminModel {
|
|
|
1649
1481
|
* @type {string}
|
|
1650
1482
|
* @memberof CHAdminModel
|
|
1651
1483
|
*/
|
|
1652
|
-
'
|
|
1653
|
-
/**
|
|
1654
|
-
*
|
|
1655
|
-
* @type {string}
|
|
1656
|
-
* @memberof CHAdminModel
|
|
1657
|
-
*/
|
|
1658
|
-
'slug'?: string | null;
|
|
1484
|
+
'fullname'?: string | null;
|
|
1659
1485
|
/**
|
|
1660
1486
|
*
|
|
1661
1487
|
* @type {string}
|
|
@@ -1772,12 +1598,6 @@ export interface CHManagerItemModel {
|
|
|
1772
1598
|
* @memberof CHManagerItemModel
|
|
1773
1599
|
*/
|
|
1774
1600
|
'firstName'?: string | null;
|
|
1775
|
-
/**
|
|
1776
|
-
*
|
|
1777
|
-
* @type {string}
|
|
1778
|
-
* @memberof CHManagerItemModel
|
|
1779
|
-
*/
|
|
1780
|
-
'middleName'?: string | null;
|
|
1781
1601
|
/**
|
|
1782
1602
|
*
|
|
1783
1603
|
* @type {string}
|
|
@@ -1789,13 +1609,7 @@ export interface CHManagerItemModel {
|
|
|
1789
1609
|
* @type {string}
|
|
1790
1610
|
* @memberof CHManagerItemModel
|
|
1791
1611
|
*/
|
|
1792
|
-
'
|
|
1793
|
-
/**
|
|
1794
|
-
*
|
|
1795
|
-
* @type {string}
|
|
1796
|
-
* @memberof CHManagerItemModel
|
|
1797
|
-
*/
|
|
1798
|
-
'slug'?: string | null;
|
|
1612
|
+
'fullname'?: string | null;
|
|
1799
1613
|
/**
|
|
1800
1614
|
*
|
|
1801
1615
|
* @type {string}
|
|
@@ -1875,12 +1689,6 @@ export interface CHManagerModel {
|
|
|
1875
1689
|
* @memberof CHManagerModel
|
|
1876
1690
|
*/
|
|
1877
1691
|
'firstName'?: string | null;
|
|
1878
|
-
/**
|
|
1879
|
-
*
|
|
1880
|
-
* @type {string}
|
|
1881
|
-
* @memberof CHManagerModel
|
|
1882
|
-
*/
|
|
1883
|
-
'middleName'?: string | null;
|
|
1884
1692
|
/**
|
|
1885
1693
|
*
|
|
1886
1694
|
* @type {string}
|
|
@@ -1892,13 +1700,7 @@ export interface CHManagerModel {
|
|
|
1892
1700
|
* @type {string}
|
|
1893
1701
|
* @memberof CHManagerModel
|
|
1894
1702
|
*/
|
|
1895
|
-
'
|
|
1896
|
-
/**
|
|
1897
|
-
*
|
|
1898
|
-
* @type {string}
|
|
1899
|
-
* @memberof CHManagerModel
|
|
1900
|
-
*/
|
|
1901
|
-
'slug'?: string | null;
|
|
1703
|
+
'fullname'?: string | null;
|
|
1902
1704
|
/**
|
|
1903
1705
|
*
|
|
1904
1706
|
* @type {string}
|
|
@@ -2827,6 +2629,12 @@ export interface ContributorItemModel {
|
|
|
2827
2629
|
* @memberof ContributorItemModel
|
|
2828
2630
|
*/
|
|
2829
2631
|
'id'?: string;
|
|
2632
|
+
/**
|
|
2633
|
+
*
|
|
2634
|
+
* @type {string}
|
|
2635
|
+
* @memberof ContributorItemModel
|
|
2636
|
+
*/
|
|
2637
|
+
'languageCode'?: string | null;
|
|
2830
2638
|
/**
|
|
2831
2639
|
*
|
|
2832
2640
|
* @type {string}
|
|
@@ -2841,58 +2649,58 @@ export interface ContributorItemModel {
|
|
|
2841
2649
|
'slug'?: string | null;
|
|
2842
2650
|
/**
|
|
2843
2651
|
*
|
|
2844
|
-
* @type {
|
|
2652
|
+
* @type {boolean}
|
|
2845
2653
|
* @memberof ContributorItemModel
|
|
2846
2654
|
*/
|
|
2847
|
-
'
|
|
2655
|
+
'confirmed'?: boolean;
|
|
2848
2656
|
/**
|
|
2849
2657
|
*
|
|
2850
2658
|
* @type {string}
|
|
2851
2659
|
* @memberof ContributorItemModel
|
|
2852
2660
|
*/
|
|
2853
|
-
'
|
|
2661
|
+
'hospitalId'?: string;
|
|
2854
2662
|
/**
|
|
2855
2663
|
*
|
|
2856
2664
|
* @type {string}
|
|
2857
2665
|
* @memberof ContributorItemModel
|
|
2858
2666
|
*/
|
|
2859
|
-
'
|
|
2667
|
+
'hospitalName'?: string | null;
|
|
2860
2668
|
/**
|
|
2861
2669
|
*
|
|
2862
2670
|
* @type {string}
|
|
2863
2671
|
* @memberof ContributorItemModel
|
|
2864
2672
|
*/
|
|
2865
|
-
'
|
|
2673
|
+
'hospitalSlug'?: string | null;
|
|
2866
2674
|
/**
|
|
2867
2675
|
*
|
|
2868
2676
|
* @type {string}
|
|
2869
2677
|
* @memberof ContributorItemModel
|
|
2870
2678
|
*/
|
|
2871
|
-
'
|
|
2679
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2872
2680
|
/**
|
|
2873
2681
|
*
|
|
2874
2682
|
* @type {string}
|
|
2875
2683
|
* @memberof ContributorItemModel
|
|
2876
2684
|
*/
|
|
2877
|
-
'
|
|
2685
|
+
'email'?: string | null;
|
|
2878
2686
|
/**
|
|
2879
2687
|
*
|
|
2880
2688
|
* @type {string}
|
|
2881
2689
|
* @memberof ContributorItemModel
|
|
2882
2690
|
*/
|
|
2883
|
-
'
|
|
2691
|
+
'photo'?: string | null;
|
|
2884
2692
|
/**
|
|
2885
2693
|
*
|
|
2886
|
-
* @type {
|
|
2694
|
+
* @type {string}
|
|
2887
2695
|
* @memberof ContributorItemModel
|
|
2888
2696
|
*/
|
|
2889
|
-
'
|
|
2697
|
+
'photoThumbnail'?: string | null;
|
|
2890
2698
|
/**
|
|
2891
2699
|
*
|
|
2892
|
-
* @type {
|
|
2700
|
+
* @type {number}
|
|
2893
2701
|
* @memberof ContributorItemModel
|
|
2894
2702
|
*/
|
|
2895
|
-
'
|
|
2703
|
+
'order'?: number;
|
|
2896
2704
|
/**
|
|
2897
2705
|
*
|
|
2898
2706
|
* @type {AuditableEntity}
|
|
@@ -2912,6 +2720,12 @@ export interface ContributorModel {
|
|
|
2912
2720
|
* @memberof ContributorModel
|
|
2913
2721
|
*/
|
|
2914
2722
|
'id'?: string;
|
|
2723
|
+
/**
|
|
2724
|
+
*
|
|
2725
|
+
* @type {string}
|
|
2726
|
+
* @memberof ContributorModel
|
|
2727
|
+
*/
|
|
2728
|
+
'languageCode'?: string | null;
|
|
2915
2729
|
/**
|
|
2916
2730
|
*
|
|
2917
2731
|
* @type {string}
|
|
@@ -2926,58 +2740,58 @@ export interface ContributorModel {
|
|
|
2926
2740
|
'slug'?: string | null;
|
|
2927
2741
|
/**
|
|
2928
2742
|
*
|
|
2929
|
-
* @type {
|
|
2743
|
+
* @type {boolean}
|
|
2930
2744
|
* @memberof ContributorModel
|
|
2931
2745
|
*/
|
|
2932
|
-
'
|
|
2746
|
+
'confirmed'?: boolean;
|
|
2933
2747
|
/**
|
|
2934
2748
|
*
|
|
2935
2749
|
* @type {string}
|
|
2936
2750
|
* @memberof ContributorModel
|
|
2937
2751
|
*/
|
|
2938
|
-
'
|
|
2752
|
+
'hospitalId'?: string;
|
|
2939
2753
|
/**
|
|
2940
2754
|
*
|
|
2941
2755
|
* @type {string}
|
|
2942
2756
|
* @memberof ContributorModel
|
|
2943
2757
|
*/
|
|
2944
|
-
'
|
|
2758
|
+
'hospitalName'?: string | null;
|
|
2945
2759
|
/**
|
|
2946
2760
|
*
|
|
2947
2761
|
* @type {string}
|
|
2948
2762
|
* @memberof ContributorModel
|
|
2949
2763
|
*/
|
|
2950
|
-
'
|
|
2764
|
+
'hospitalSlug'?: string | null;
|
|
2951
2765
|
/**
|
|
2952
2766
|
*
|
|
2953
2767
|
* @type {string}
|
|
2954
2768
|
* @memberof ContributorModel
|
|
2955
2769
|
*/
|
|
2956
|
-
'
|
|
2770
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2957
2771
|
/**
|
|
2958
2772
|
*
|
|
2959
2773
|
* @type {string}
|
|
2960
2774
|
* @memberof ContributorModel
|
|
2961
2775
|
*/
|
|
2962
|
-
'
|
|
2776
|
+
'email'?: string | null;
|
|
2963
2777
|
/**
|
|
2964
2778
|
*
|
|
2965
2779
|
* @type {string}
|
|
2966
2780
|
* @memberof ContributorModel
|
|
2967
2781
|
*/
|
|
2968
|
-
'
|
|
2782
|
+
'photo'?: string | null;
|
|
2969
2783
|
/**
|
|
2970
2784
|
*
|
|
2971
|
-
* @type {
|
|
2785
|
+
* @type {string}
|
|
2972
2786
|
* @memberof ContributorModel
|
|
2973
2787
|
*/
|
|
2974
|
-
'
|
|
2788
|
+
'photoThumbnail'?: string | null;
|
|
2975
2789
|
/**
|
|
2976
2790
|
*
|
|
2977
|
-
* @type {
|
|
2791
|
+
* @type {number}
|
|
2978
2792
|
* @memberof ContributorModel
|
|
2979
2793
|
*/
|
|
2980
|
-
'
|
|
2794
|
+
'order'?: number;
|
|
2981
2795
|
/**
|
|
2982
2796
|
*
|
|
2983
2797
|
* @type {AuditableEntity}
|
|
@@ -2989,25 +2803,19 @@ export interface ContributorModel {
|
|
|
2989
2803
|
* @type {string}
|
|
2990
2804
|
* @memberof ContributorModel
|
|
2991
2805
|
*/
|
|
2992
|
-
'
|
|
2806
|
+
'description'?: string | null;
|
|
2993
2807
|
/**
|
|
2994
2808
|
*
|
|
2995
2809
|
* @type {string}
|
|
2996
2810
|
* @memberof ContributorModel
|
|
2997
2811
|
*/
|
|
2998
|
-
'
|
|
2999
|
-
/**
|
|
3000
|
-
*
|
|
3001
|
-
* @type {Array<SnsHandle>}
|
|
3002
|
-
* @memberof ContributorModel
|
|
3003
|
-
*/
|
|
3004
|
-
'snsHandles'?: Array<SnsHandle> | null;
|
|
2812
|
+
'overview'?: string | null;
|
|
3005
2813
|
/**
|
|
3006
2814
|
*
|
|
3007
|
-
* @type {
|
|
2815
|
+
* @type {string}
|
|
3008
2816
|
* @memberof ContributorModel
|
|
3009
2817
|
*/
|
|
3010
|
-
'
|
|
2818
|
+
'content'?: string | null;
|
|
3011
2819
|
}
|
|
3012
2820
|
/**
|
|
3013
2821
|
*
|
|
@@ -3083,67 +2891,25 @@ export interface CountryItemModel {
|
|
|
3083
2891
|
* @type {string}
|
|
3084
2892
|
* @memberof CountryItemModel
|
|
3085
2893
|
*/
|
|
3086
|
-
'
|
|
2894
|
+
'languageCode'?: string | null;
|
|
3087
2895
|
/**
|
|
3088
2896
|
*
|
|
3089
2897
|
* @type {string}
|
|
3090
2898
|
* @memberof CountryItemModel
|
|
3091
2899
|
*/
|
|
3092
|
-
'
|
|
2900
|
+
'name'?: string | null;
|
|
3093
2901
|
/**
|
|
3094
2902
|
*
|
|
3095
2903
|
* @type {string}
|
|
3096
2904
|
* @memberof CountryItemModel
|
|
3097
2905
|
*/
|
|
3098
2906
|
'slug'?: string | null;
|
|
3099
|
-
/**
|
|
3100
|
-
*
|
|
3101
|
-
* @type {string}
|
|
3102
|
-
* @memberof CountryItemModel
|
|
3103
|
-
*/
|
|
3104
|
-
'description'?: string | null;
|
|
3105
|
-
/**
|
|
3106
|
-
*
|
|
3107
|
-
* @type {number}
|
|
3108
|
-
* @memberof CountryItemModel
|
|
3109
|
-
*/
|
|
3110
|
-
'hospitalsCount'?: number;
|
|
3111
|
-
/**
|
|
3112
|
-
*
|
|
3113
|
-
* @type {number}
|
|
3114
|
-
* @memberof CountryItemModel
|
|
3115
|
-
*/
|
|
3116
|
-
'doctorsCount'?: number;
|
|
3117
|
-
/**
|
|
3118
|
-
*
|
|
3119
|
-
* @type {number}
|
|
3120
|
-
* @memberof CountryItemModel
|
|
3121
|
-
*/
|
|
3122
|
-
'specialitiesCount'?: number;
|
|
3123
|
-
/**
|
|
3124
|
-
*
|
|
3125
|
-
* @type {number}
|
|
3126
|
-
* @memberof CountryItemModel
|
|
3127
|
-
*/
|
|
3128
|
-
'packagesCount'?: number;
|
|
3129
|
-
/**
|
|
3130
|
-
*
|
|
3131
|
-
* @type {number}
|
|
3132
|
-
* @memberof CountryItemModel
|
|
3133
|
-
*/
|
|
3134
|
-
'articlesCount'?: number;
|
|
3135
2907
|
/**
|
|
3136
2908
|
*
|
|
3137
2909
|
* @type {boolean}
|
|
3138
2910
|
* @memberof CountryItemModel
|
|
3139
2911
|
*/
|
|
3140
2912
|
'confirmed'?: boolean;
|
|
3141
|
-
/**
|
|
3142
|
-
*
|
|
3143
|
-
* @type {Array<MediaModel>}
|
|
3144
|
-
* @memberof CountryItemModel
|
|
3145
|
-
*/
|
|
3146
|
-
'medias'?: Array<MediaModel> | null;
|
|
3147
2913
|
/**
|
|
3148
2914
|
*
|
|
3149
2915
|
* @type {AuditableEntity}
|
|
@@ -3168,55 +2934,19 @@ export interface CountryModel {
|
|
|
3168
2934
|
* @type {string}
|
|
3169
2935
|
* @memberof CountryModel
|
|
3170
2936
|
*/
|
|
3171
|
-
'
|
|
2937
|
+
'languageCode'?: string | null;
|
|
3172
2938
|
/**
|
|
3173
2939
|
*
|
|
3174
2940
|
* @type {string}
|
|
3175
2941
|
* @memberof CountryModel
|
|
3176
2942
|
*/
|
|
3177
|
-
'
|
|
2943
|
+
'name'?: string | null;
|
|
3178
2944
|
/**
|
|
3179
2945
|
*
|
|
3180
2946
|
* @type {string}
|
|
3181
2947
|
* @memberof CountryModel
|
|
3182
2948
|
*/
|
|
3183
2949
|
'slug'?: string | null;
|
|
3184
|
-
/**
|
|
3185
|
-
*
|
|
3186
|
-
* @type {string}
|
|
3187
|
-
* @memberof CountryModel
|
|
3188
|
-
*/
|
|
3189
|
-
'description'?: string | null;
|
|
3190
|
-
/**
|
|
3191
|
-
*
|
|
3192
|
-
* @type {number}
|
|
3193
|
-
* @memberof CountryModel
|
|
3194
|
-
*/
|
|
3195
|
-
'hospitalsCount'?: number;
|
|
3196
|
-
/**
|
|
3197
|
-
*
|
|
3198
|
-
* @type {number}
|
|
3199
|
-
* @memberof CountryModel
|
|
3200
|
-
*/
|
|
3201
|
-
'doctorsCount'?: number;
|
|
3202
|
-
/**
|
|
3203
|
-
*
|
|
3204
|
-
* @type {number}
|
|
3205
|
-
* @memberof CountryModel
|
|
3206
|
-
*/
|
|
3207
|
-
'specialitiesCount'?: number;
|
|
3208
|
-
/**
|
|
3209
|
-
*
|
|
3210
|
-
* @type {number}
|
|
3211
|
-
* @memberof CountryModel
|
|
3212
|
-
*/
|
|
3213
|
-
'packagesCount'?: number;
|
|
3214
|
-
/**
|
|
3215
|
-
*
|
|
3216
|
-
* @type {number}
|
|
3217
|
-
* @memberof CountryModel
|
|
3218
|
-
*/
|
|
3219
|
-
'articlesCount'?: number;
|
|
3220
2950
|
/**
|
|
3221
2951
|
*
|
|
3222
2952
|
* @type {boolean}
|
|
@@ -3225,22 +2955,22 @@ export interface CountryModel {
|
|
|
3225
2955
|
'confirmed'?: boolean;
|
|
3226
2956
|
/**
|
|
3227
2957
|
*
|
|
3228
|
-
* @type {
|
|
2958
|
+
* @type {AuditableEntity}
|
|
3229
2959
|
* @memberof CountryModel
|
|
3230
2960
|
*/
|
|
3231
|
-
'
|
|
2961
|
+
'auditableEntity'?: AuditableEntity;
|
|
3232
2962
|
/**
|
|
3233
2963
|
*
|
|
3234
|
-
* @type {
|
|
2964
|
+
* @type {string}
|
|
3235
2965
|
* @memberof CountryModel
|
|
3236
2966
|
*/
|
|
3237
|
-
'
|
|
2967
|
+
'description'?: string | null;
|
|
3238
2968
|
/**
|
|
3239
2969
|
*
|
|
3240
2970
|
* @type {string}
|
|
3241
2971
|
* @memberof CountryModel
|
|
3242
2972
|
*/
|
|
3243
|
-
'
|
|
2973
|
+
'overview'?: string | null;
|
|
3244
2974
|
/**
|
|
3245
2975
|
*
|
|
3246
2976
|
* @type {string}
|
|
@@ -3249,10 +2979,10 @@ export interface CountryModel {
|
|
|
3249
2979
|
'content'?: string | null;
|
|
3250
2980
|
/**
|
|
3251
2981
|
*
|
|
3252
|
-
* @type {
|
|
2982
|
+
* @type {string}
|
|
3253
2983
|
* @memberof CountryModel
|
|
3254
2984
|
*/
|
|
3255
|
-
'
|
|
2985
|
+
'logo'?: string | null;
|
|
3256
2986
|
}
|
|
3257
2987
|
/**
|
|
3258
2988
|
*
|
|
@@ -3494,12 +3224,6 @@ export interface CreateCHAdminCommand {
|
|
|
3494
3224
|
* @memberof CreateCHAdminCommand
|
|
3495
3225
|
*/
|
|
3496
3226
|
'firstName'?: string | null;
|
|
3497
|
-
/**
|
|
3498
|
-
*
|
|
3499
|
-
* @type {string}
|
|
3500
|
-
* @memberof CreateCHAdminCommand
|
|
3501
|
-
*/
|
|
3502
|
-
'middleName'?: string | null;
|
|
3503
3227
|
/**
|
|
3504
3228
|
*
|
|
3505
3229
|
* @type {string}
|
|
@@ -3567,12 +3291,6 @@ export interface CreateCHManagerCommand {
|
|
|
3567
3291
|
* @memberof CreateCHManagerCommand
|
|
3568
3292
|
*/
|
|
3569
3293
|
'firstName'?: string | null;
|
|
3570
|
-
/**
|
|
3571
|
-
*
|
|
3572
|
-
* @type {string}
|
|
3573
|
-
* @memberof CreateCHManagerCommand
|
|
3574
|
-
*/
|
|
3575
|
-
'middleName'?: string | null;
|
|
3576
3294
|
/**
|
|
3577
3295
|
*
|
|
3578
3296
|
* @type {string}
|
|
@@ -3948,52 +3666,28 @@ export interface CreateDoctorCommand {
|
|
|
3948
3666
|
* @type {string}
|
|
3949
3667
|
* @memberof CreateDoctorCommand
|
|
3950
3668
|
*/
|
|
3951
|
-
'
|
|
3669
|
+
'lastName'?: string | null;
|
|
3952
3670
|
/**
|
|
3953
3671
|
*
|
|
3954
3672
|
* @type {string}
|
|
3955
3673
|
* @memberof CreateDoctorCommand
|
|
3956
3674
|
*/
|
|
3957
|
-
'
|
|
3675
|
+
'phone'?: string | null;
|
|
3958
3676
|
/**
|
|
3959
3677
|
*
|
|
3960
3678
|
* @type {string}
|
|
3961
3679
|
* @memberof CreateDoctorCommand
|
|
3962
3680
|
*/
|
|
3963
|
-
'
|
|
3681
|
+
'photo'?: string | null;
|
|
3964
3682
|
/**
|
|
3965
3683
|
*
|
|
3966
3684
|
* @type {string}
|
|
3967
3685
|
* @memberof CreateDoctorCommand
|
|
3968
3686
|
*/
|
|
3969
|
-
'
|
|
3687
|
+
'photoThumbnail'?: string | null;
|
|
3970
3688
|
/**
|
|
3971
3689
|
*
|
|
3972
|
-
* @type {
|
|
3973
|
-
* @memberof CreateDoctorCommand
|
|
3974
|
-
*/
|
|
3975
|
-
'content'?: string | null;
|
|
3976
|
-
/**
|
|
3977
|
-
*
|
|
3978
|
-
* @type {string}
|
|
3979
|
-
* @memberof CreateDoctorCommand
|
|
3980
|
-
*/
|
|
3981
|
-
'phone'?: string | null;
|
|
3982
|
-
/**
|
|
3983
|
-
*
|
|
3984
|
-
* @type {string}
|
|
3985
|
-
* @memberof CreateDoctorCommand
|
|
3986
|
-
*/
|
|
3987
|
-
'photo'?: string | null;
|
|
3988
|
-
/**
|
|
3989
|
-
*
|
|
3990
|
-
* @type {string}
|
|
3991
|
-
* @memberof CreateDoctorCommand
|
|
3992
|
-
*/
|
|
3993
|
-
'photoThumbnail'?: string | null;
|
|
3994
|
-
/**
|
|
3995
|
-
*
|
|
3996
|
-
* @type {Gender}
|
|
3690
|
+
* @type {Gender}
|
|
3997
3691
|
* @memberof CreateDoctorCommand
|
|
3998
3692
|
*/
|
|
3999
3693
|
'gender'?: Gender;
|
|
@@ -4009,6 +3703,12 @@ export interface CreateDoctorCommand {
|
|
|
4009
3703
|
* @memberof CreateDoctorCommand
|
|
4010
3704
|
*/
|
|
4011
3705
|
'startPracticeDate'?: Date | null;
|
|
3706
|
+
/**
|
|
3707
|
+
*
|
|
3708
|
+
* @type {string}
|
|
3709
|
+
* @memberof CreateDoctorCommand
|
|
3710
|
+
*/
|
|
3711
|
+
'overview'?: string | null;
|
|
4012
3712
|
/**
|
|
4013
3713
|
*
|
|
4014
3714
|
* @type {boolean}
|
|
@@ -4711,12 +4411,6 @@ export interface CreateManagerCommand {
|
|
|
4711
4411
|
* @memberof CreateManagerCommand
|
|
4712
4412
|
*/
|
|
4713
4413
|
'firstName'?: string | null;
|
|
4714
|
-
/**
|
|
4715
|
-
*
|
|
4716
|
-
* @type {string}
|
|
4717
|
-
* @memberof CreateManagerCommand
|
|
4718
|
-
*/
|
|
4719
|
-
'middleName'?: string | null;
|
|
4720
4414
|
/**
|
|
4721
4415
|
*
|
|
4722
4416
|
* @type {string}
|
|
@@ -4827,12 +4521,6 @@ export interface CreatePatientCommand {
|
|
|
4827
4521
|
* @memberof CreatePatientCommand
|
|
4828
4522
|
*/
|
|
4829
4523
|
'firstName'?: string | null;
|
|
4830
|
-
/**
|
|
4831
|
-
*
|
|
4832
|
-
* @type {string}
|
|
4833
|
-
* @memberof CreatePatientCommand
|
|
4834
|
-
*/
|
|
4835
|
-
'middleName'?: string | null;
|
|
4836
4524
|
/**
|
|
4837
4525
|
*
|
|
4838
4526
|
* @type {string}
|
|
@@ -5220,61 +4908,43 @@ export interface DealItemModel {
|
|
|
5220
4908
|
* @type {string}
|
|
5221
4909
|
* @memberof DealItemModel
|
|
5222
4910
|
*/
|
|
5223
|
-
'
|
|
5224
|
-
/**
|
|
5225
|
-
*
|
|
5226
|
-
* @type {string}
|
|
5227
|
-
* @memberof DealItemModel
|
|
5228
|
-
*/
|
|
5229
|
-
'slug'?: string | null;
|
|
4911
|
+
'languageCode'?: string | null;
|
|
5230
4912
|
/**
|
|
5231
4913
|
*
|
|
5232
4914
|
* @type {string}
|
|
5233
4915
|
* @memberof DealItemModel
|
|
5234
4916
|
*/
|
|
5235
|
-
'
|
|
4917
|
+
'name'?: string | null;
|
|
5236
4918
|
/**
|
|
5237
4919
|
*
|
|
5238
4920
|
* @type {string}
|
|
5239
4921
|
* @memberof DealItemModel
|
|
5240
4922
|
*/
|
|
5241
|
-
'
|
|
4923
|
+
'slug'?: string | null;
|
|
5242
4924
|
/**
|
|
5243
4925
|
*
|
|
5244
|
-
* @type {
|
|
4926
|
+
* @type {boolean}
|
|
5245
4927
|
* @memberof DealItemModel
|
|
5246
4928
|
*/
|
|
5247
|
-
'
|
|
4929
|
+
'confirmed'?: boolean;
|
|
5248
4930
|
/**
|
|
5249
4931
|
*
|
|
5250
4932
|
* @type {string}
|
|
5251
4933
|
* @memberof DealItemModel
|
|
5252
4934
|
*/
|
|
5253
|
-
'
|
|
4935
|
+
'hospitalId'?: string;
|
|
5254
4936
|
/**
|
|
5255
4937
|
*
|
|
5256
4938
|
* @type {string}
|
|
5257
4939
|
* @memberof DealItemModel
|
|
5258
4940
|
*/
|
|
5259
|
-
'
|
|
4941
|
+
'hospitalName'?: string | null;
|
|
5260
4942
|
/**
|
|
5261
4943
|
*
|
|
5262
4944
|
* @type {string}
|
|
5263
4945
|
* @memberof DealItemModel
|
|
5264
4946
|
*/
|
|
5265
|
-
'
|
|
5266
|
-
/**
|
|
5267
|
-
*
|
|
5268
|
-
* @type {boolean}
|
|
5269
|
-
* @memberof DealItemModel
|
|
5270
|
-
*/
|
|
5271
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
5272
|
-
/**
|
|
5273
|
-
*
|
|
5274
|
-
* @type {number}
|
|
5275
|
-
* @memberof DealItemModel
|
|
5276
|
-
*/
|
|
5277
|
-
'serviceDuration'?: number;
|
|
4947
|
+
'hospitalSlug'?: string | null;
|
|
5278
4948
|
/**
|
|
5279
4949
|
*
|
|
5280
4950
|
* @type {MarketingType}
|
|
@@ -5299,24 +4969,6 @@ export interface DealItemModel {
|
|
|
5299
4969
|
* @memberof DealItemModel
|
|
5300
4970
|
*/
|
|
5301
4971
|
'order'?: number;
|
|
5302
|
-
/**
|
|
5303
|
-
*
|
|
5304
|
-
* @type {boolean}
|
|
5305
|
-
* @memberof DealItemModel
|
|
5306
|
-
*/
|
|
5307
|
-
'confirmed'?: boolean;
|
|
5308
|
-
/**
|
|
5309
|
-
*
|
|
5310
|
-
* @type {Array<DealPackageItemModel>}
|
|
5311
|
-
* @memberof DealItemModel
|
|
5312
|
-
*/
|
|
5313
|
-
'dealPackages'?: Array<DealPackageItemModel> | null;
|
|
5314
|
-
/**
|
|
5315
|
-
*
|
|
5316
|
-
* @type {Array<DealServiceItemModel>}
|
|
5317
|
-
* @memberof DealItemModel
|
|
5318
|
-
*/
|
|
5319
|
-
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
5320
4972
|
/**
|
|
5321
4973
|
*
|
|
5322
4974
|
* @type {AuditableEntity}
|
|
@@ -5341,49 +4993,25 @@ export interface DealItemSimpleModel {
|
|
|
5341
4993
|
* @type {string}
|
|
5342
4994
|
* @memberof DealItemSimpleModel
|
|
5343
4995
|
*/
|
|
5344
|
-
'
|
|
5345
|
-
/**
|
|
5346
|
-
*
|
|
5347
|
-
* @type {string}
|
|
5348
|
-
* @memberof DealItemSimpleModel
|
|
5349
|
-
*/
|
|
5350
|
-
'slug'?: string | null;
|
|
5351
|
-
/**
|
|
5352
|
-
*
|
|
5353
|
-
* @type {string}
|
|
5354
|
-
* @memberof DealItemSimpleModel
|
|
5355
|
-
*/
|
|
5356
|
-
'hospitalId'?: string;
|
|
4996
|
+
'languageCode'?: string | null;
|
|
5357
4997
|
/**
|
|
5358
4998
|
*
|
|
5359
4999
|
* @type {string}
|
|
5360
5000
|
* @memberof DealItemSimpleModel
|
|
5361
5001
|
*/
|
|
5362
|
-
'
|
|
5002
|
+
'name'?: string | null;
|
|
5363
5003
|
/**
|
|
5364
5004
|
*
|
|
5365
5005
|
* @type {string}
|
|
5366
5006
|
* @memberof DealItemSimpleModel
|
|
5367
5007
|
*/
|
|
5368
|
-
'
|
|
5369
|
-
/**
|
|
5370
|
-
*
|
|
5371
|
-
* @type {number}
|
|
5372
|
-
* @memberof DealItemSimpleModel
|
|
5373
|
-
*/
|
|
5374
|
-
'order'?: number;
|
|
5008
|
+
'slug'?: string | null;
|
|
5375
5009
|
/**
|
|
5376
5010
|
*
|
|
5377
5011
|
* @type {boolean}
|
|
5378
5012
|
* @memberof DealItemSimpleModel
|
|
5379
5013
|
*/
|
|
5380
5014
|
'confirmed'?: boolean;
|
|
5381
|
-
/**
|
|
5382
|
-
*
|
|
5383
|
-
* @type {AuditableEntity}
|
|
5384
|
-
* @memberof DealItemSimpleModel
|
|
5385
|
-
*/
|
|
5386
|
-
'auditableEntity'?: AuditableEntity;
|
|
5387
5015
|
}
|
|
5388
5016
|
/**
|
|
5389
5017
|
*
|
|
@@ -5402,61 +5030,43 @@ export interface DealModel {
|
|
|
5402
5030
|
* @type {string}
|
|
5403
5031
|
* @memberof DealModel
|
|
5404
5032
|
*/
|
|
5405
|
-
'
|
|
5406
|
-
/**
|
|
5407
|
-
*
|
|
5408
|
-
* @type {string}
|
|
5409
|
-
* @memberof DealModel
|
|
5410
|
-
*/
|
|
5411
|
-
'slug'?: string | null;
|
|
5033
|
+
'languageCode'?: string | null;
|
|
5412
5034
|
/**
|
|
5413
5035
|
*
|
|
5414
5036
|
* @type {string}
|
|
5415
5037
|
* @memberof DealModel
|
|
5416
5038
|
*/
|
|
5417
|
-
'
|
|
5039
|
+
'name'?: string | null;
|
|
5418
5040
|
/**
|
|
5419
5041
|
*
|
|
5420
5042
|
* @type {string}
|
|
5421
5043
|
* @memberof DealModel
|
|
5422
5044
|
*/
|
|
5423
|
-
'
|
|
5045
|
+
'slug'?: string | null;
|
|
5424
5046
|
/**
|
|
5425
5047
|
*
|
|
5426
|
-
* @type {
|
|
5048
|
+
* @type {boolean}
|
|
5427
5049
|
* @memberof DealModel
|
|
5428
5050
|
*/
|
|
5429
|
-
'
|
|
5051
|
+
'confirmed'?: boolean;
|
|
5430
5052
|
/**
|
|
5431
5053
|
*
|
|
5432
5054
|
* @type {string}
|
|
5433
5055
|
* @memberof DealModel
|
|
5434
5056
|
*/
|
|
5435
|
-
'
|
|
5057
|
+
'hospitalId'?: string;
|
|
5436
5058
|
/**
|
|
5437
5059
|
*
|
|
5438
5060
|
* @type {string}
|
|
5439
5061
|
* @memberof DealModel
|
|
5440
5062
|
*/
|
|
5441
|
-
'
|
|
5063
|
+
'hospitalName'?: string | null;
|
|
5442
5064
|
/**
|
|
5443
5065
|
*
|
|
5444
5066
|
* @type {string}
|
|
5445
5067
|
* @memberof DealModel
|
|
5446
5068
|
*/
|
|
5447
|
-
'
|
|
5448
|
-
/**
|
|
5449
|
-
*
|
|
5450
|
-
* @type {boolean}
|
|
5451
|
-
* @memberof DealModel
|
|
5452
|
-
*/
|
|
5453
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
5454
|
-
/**
|
|
5455
|
-
*
|
|
5456
|
-
* @type {number}
|
|
5457
|
-
* @memberof DealModel
|
|
5458
|
-
*/
|
|
5459
|
-
'serviceDuration'?: number;
|
|
5069
|
+
'hospitalSlug'?: string | null;
|
|
5460
5070
|
/**
|
|
5461
5071
|
*
|
|
5462
5072
|
* @type {MarketingType}
|
|
@@ -5483,40 +5093,34 @@ export interface DealModel {
|
|
|
5483
5093
|
'order'?: number;
|
|
5484
5094
|
/**
|
|
5485
5095
|
*
|
|
5486
|
-
* @type {
|
|
5487
|
-
* @memberof DealModel
|
|
5488
|
-
*/
|
|
5489
|
-
'confirmed'?: boolean;
|
|
5490
|
-
/**
|
|
5491
|
-
*
|
|
5492
|
-
* @type {Array<DealPackageItemModel>}
|
|
5096
|
+
* @type {AuditableEntity}
|
|
5493
5097
|
* @memberof DealModel
|
|
5494
5098
|
*/
|
|
5495
|
-
'
|
|
5099
|
+
'auditableEntity'?: AuditableEntity;
|
|
5496
5100
|
/**
|
|
5497
5101
|
*
|
|
5498
|
-
* @type {
|
|
5102
|
+
* @type {string}
|
|
5499
5103
|
* @memberof DealModel
|
|
5500
5104
|
*/
|
|
5501
|
-
'
|
|
5105
|
+
'description'?: string | null;
|
|
5502
5106
|
/**
|
|
5503
5107
|
*
|
|
5504
|
-
* @type {
|
|
5108
|
+
* @type {string}
|
|
5505
5109
|
* @memberof DealModel
|
|
5506
5110
|
*/
|
|
5507
|
-
'
|
|
5111
|
+
'overview'?: string | null;
|
|
5508
5112
|
/**
|
|
5509
5113
|
*
|
|
5510
5114
|
* @type {string}
|
|
5511
5115
|
* @memberof DealModel
|
|
5512
5116
|
*/
|
|
5513
|
-
'
|
|
5117
|
+
'content'?: string | null;
|
|
5514
5118
|
/**
|
|
5515
5119
|
*
|
|
5516
|
-
* @type {
|
|
5120
|
+
* @type {number}
|
|
5517
5121
|
* @memberof DealModel
|
|
5518
5122
|
*/
|
|
5519
|
-
'
|
|
5123
|
+
'serviceDuration'?: number;
|
|
5520
5124
|
}
|
|
5521
5125
|
/**
|
|
5522
5126
|
*
|
|
@@ -6172,31 +5776,31 @@ export interface DoctorItemModel {
|
|
|
6172
5776
|
* @type {string}
|
|
6173
5777
|
* @memberof DoctorItemModel
|
|
6174
5778
|
*/
|
|
6175
|
-
'
|
|
5779
|
+
'userName'?: string | null;
|
|
6176
5780
|
/**
|
|
6177
5781
|
*
|
|
6178
5782
|
* @type {string}
|
|
6179
5783
|
* @memberof DoctorItemModel
|
|
6180
5784
|
*/
|
|
6181
|
-
'
|
|
5785
|
+
'firstName'?: string | null;
|
|
6182
5786
|
/**
|
|
6183
5787
|
*
|
|
6184
|
-
* @type {
|
|
5788
|
+
* @type {string}
|
|
6185
5789
|
* @memberof DoctorItemModel
|
|
6186
5790
|
*/
|
|
6187
|
-
'
|
|
5791
|
+
'lastName'?: string | null;
|
|
6188
5792
|
/**
|
|
6189
5793
|
*
|
|
6190
|
-
* @type {
|
|
5794
|
+
* @type {string}
|
|
6191
5795
|
* @memberof DoctorItemModel
|
|
6192
5796
|
*/
|
|
6193
|
-
'
|
|
5797
|
+
'fullname'?: string | null;
|
|
6194
5798
|
/**
|
|
6195
5799
|
*
|
|
6196
|
-
* @type {
|
|
5800
|
+
* @type {string}
|
|
6197
5801
|
* @memberof DoctorItemModel
|
|
6198
5802
|
*/
|
|
6199
|
-
'
|
|
5803
|
+
'phone'?: string | null;
|
|
6200
5804
|
/**
|
|
6201
5805
|
*
|
|
6202
5806
|
* @type {string}
|
|
@@ -6215,142 +5819,275 @@ export interface DoctorItemModel {
|
|
|
6215
5819
|
* @memberof DoctorItemModel
|
|
6216
5820
|
*/
|
|
6217
5821
|
'photoThumbnail'?: string | null;
|
|
5822
|
+
/**
|
|
5823
|
+
*
|
|
5824
|
+
* @type {Gender}
|
|
5825
|
+
* @memberof DoctorItemModel
|
|
5826
|
+
*/
|
|
5827
|
+
'gender'?: Gender;
|
|
5828
|
+
/**
|
|
5829
|
+
*
|
|
5830
|
+
* @type {Date}
|
|
5831
|
+
* @memberof DoctorItemModel
|
|
5832
|
+
*/
|
|
5833
|
+
'dateOfBirth'?: Date | null;
|
|
6218
5834
|
/**
|
|
6219
5835
|
*
|
|
6220
5836
|
* @type {string}
|
|
6221
5837
|
* @memberof DoctorItemModel
|
|
6222
5838
|
*/
|
|
6223
|
-
'
|
|
5839
|
+
'timeZone'?: string | null;
|
|
6224
5840
|
/**
|
|
6225
5841
|
*
|
|
6226
|
-
* @type {
|
|
5842
|
+
* @type {string}
|
|
6227
5843
|
* @memberof DoctorItemModel
|
|
6228
5844
|
*/
|
|
6229
|
-
'
|
|
5845
|
+
'communicationUserId'?: string | null;
|
|
6230
5846
|
/**
|
|
6231
5847
|
*
|
|
6232
5848
|
* @type {AuditableEntity}
|
|
6233
5849
|
* @memberof DoctorItemModel
|
|
6234
5850
|
*/
|
|
6235
5851
|
'auditableEntity'?: AuditableEntity;
|
|
6236
|
-
}
|
|
6237
|
-
/**
|
|
6238
|
-
*
|
|
6239
|
-
* @export
|
|
6240
|
-
* @interface DoctorLanguageItemModel
|
|
6241
|
-
*/
|
|
6242
|
-
export interface DoctorLanguageItemModel {
|
|
6243
5852
|
/**
|
|
6244
5853
|
*
|
|
6245
5854
|
* @type {string}
|
|
6246
|
-
* @memberof
|
|
5855
|
+
* @memberof DoctorItemModel
|
|
6247
5856
|
*/
|
|
6248
|
-
'
|
|
5857
|
+
'userType'?: string | null;
|
|
6249
5858
|
/**
|
|
6250
5859
|
*
|
|
6251
|
-
* @type {
|
|
6252
|
-
* @memberof
|
|
5860
|
+
* @type {Array<UserLanguageModel>}
|
|
5861
|
+
* @memberof DoctorItemModel
|
|
6253
5862
|
*/
|
|
6254
|
-
'
|
|
5863
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
6255
5864
|
/**
|
|
6256
5865
|
*
|
|
6257
|
-
* @type {
|
|
6258
|
-
* @memberof
|
|
5866
|
+
* @type {Array<UserLocationModel>}
|
|
5867
|
+
* @memberof DoctorItemModel
|
|
6259
5868
|
*/
|
|
6260
|
-
'
|
|
6261
|
-
}
|
|
6262
|
-
/**
|
|
6263
|
-
*
|
|
6264
|
-
* @export
|
|
6265
|
-
* @interface DoctorLanguageModel
|
|
6266
|
-
*/
|
|
6267
|
-
export interface DoctorLanguageModel {
|
|
5869
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
6268
5870
|
/**
|
|
6269
5871
|
*
|
|
6270
5872
|
* @type {string}
|
|
6271
|
-
* @memberof
|
|
5873
|
+
* @memberof DoctorItemModel
|
|
6272
5874
|
*/
|
|
6273
|
-
'
|
|
5875
|
+
'slug'?: string | null;
|
|
6274
5876
|
/**
|
|
6275
5877
|
*
|
|
6276
5878
|
* @type {string}
|
|
6277
|
-
* @memberof
|
|
5879
|
+
* @memberof DoctorItemModel
|
|
6278
5880
|
*/
|
|
6279
|
-
'
|
|
5881
|
+
'hospitalId'?: string | null;
|
|
6280
5882
|
/**
|
|
6281
5883
|
*
|
|
6282
5884
|
* @type {string}
|
|
6283
|
-
* @memberof
|
|
5885
|
+
* @memberof DoctorItemModel
|
|
6284
5886
|
*/
|
|
6285
|
-
'
|
|
6286
|
-
}
|
|
6287
|
-
/**
|
|
6288
|
-
*
|
|
6289
|
-
* @export
|
|
6290
|
-
* @interface DoctorLanguagesModel
|
|
6291
|
-
*/
|
|
6292
|
-
export interface DoctorLanguagesModel {
|
|
5887
|
+
'hospitalName'?: string | null;
|
|
6293
5888
|
/**
|
|
6294
5889
|
*
|
|
6295
|
-
* @type {
|
|
6296
|
-
* @memberof
|
|
5890
|
+
* @type {Date}
|
|
5891
|
+
* @memberof DoctorItemModel
|
|
6297
5892
|
*/
|
|
6298
|
-
'
|
|
5893
|
+
'startPracticeDate'?: Date | null;
|
|
6299
5894
|
/**
|
|
6300
5895
|
*
|
|
6301
|
-
* @type {
|
|
6302
|
-
* @memberof
|
|
5896
|
+
* @type {string}
|
|
5897
|
+
* @memberof DoctorItemModel
|
|
6303
5898
|
*/
|
|
6304
|
-
'
|
|
5899
|
+
'overview'?: string | null;
|
|
5900
|
+
/**
|
|
5901
|
+
*
|
|
5902
|
+
* @type {boolean}
|
|
5903
|
+
* @memberof DoctorItemModel
|
|
5904
|
+
*/
|
|
5905
|
+
'consultationEnabled'?: boolean | null;
|
|
5906
|
+
/**
|
|
5907
|
+
*
|
|
5908
|
+
* @type {number}
|
|
5909
|
+
* @memberof DoctorItemModel
|
|
5910
|
+
*/
|
|
5911
|
+
'consultationFee'?: number | null;
|
|
5912
|
+
/**
|
|
5913
|
+
*
|
|
5914
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5915
|
+
* @memberof DoctorItemModel
|
|
5916
|
+
*/
|
|
5917
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5918
|
+
/**
|
|
5919
|
+
*
|
|
5920
|
+
* @type {boolean}
|
|
5921
|
+
* @memberof DoctorItemModel
|
|
5922
|
+
*/
|
|
5923
|
+
'confirmed'?: boolean;
|
|
6305
5924
|
}
|
|
6306
5925
|
/**
|
|
6307
5926
|
*
|
|
6308
5927
|
* @export
|
|
6309
|
-
* @interface
|
|
5928
|
+
* @interface DoctorItemSimpleModel
|
|
6310
5929
|
*/
|
|
6311
|
-
export interface
|
|
5930
|
+
export interface DoctorItemSimpleModel {
|
|
6312
5931
|
/**
|
|
6313
5932
|
*
|
|
6314
5933
|
* @type {string}
|
|
6315
|
-
* @memberof
|
|
5934
|
+
* @memberof DoctorItemSimpleModel
|
|
6316
5935
|
*/
|
|
6317
5936
|
'id'?: string;
|
|
6318
5937
|
/**
|
|
6319
5938
|
*
|
|
6320
5939
|
* @type {string}
|
|
6321
|
-
* @memberof
|
|
5940
|
+
* @memberof DoctorItemSimpleModel
|
|
6322
5941
|
*/
|
|
6323
|
-
'
|
|
5942
|
+
'firstName'?: string | null;
|
|
5943
|
+
/**
|
|
5944
|
+
*
|
|
5945
|
+
* @type {string}
|
|
5946
|
+
* @memberof DoctorItemSimpleModel
|
|
5947
|
+
*/
|
|
5948
|
+
'lastName'?: string | null;
|
|
5949
|
+
/**
|
|
5950
|
+
*
|
|
5951
|
+
* @type {string}
|
|
5952
|
+
* @memberof DoctorItemSimpleModel
|
|
5953
|
+
*/
|
|
5954
|
+
'fullname'?: string | null;
|
|
5955
|
+
/**
|
|
5956
|
+
*
|
|
5957
|
+
* @type {string}
|
|
5958
|
+
* @memberof DoctorItemSimpleModel
|
|
5959
|
+
*/
|
|
5960
|
+
'slug'?: string | null;
|
|
5961
|
+
/**
|
|
5962
|
+
*
|
|
5963
|
+
* @type {string}
|
|
5964
|
+
* @memberof DoctorItemSimpleModel
|
|
5965
|
+
*/
|
|
5966
|
+
'hospitalId'?: string | null;
|
|
5967
|
+
/**
|
|
5968
|
+
*
|
|
5969
|
+
* @type {string}
|
|
5970
|
+
* @memberof DoctorItemSimpleModel
|
|
5971
|
+
*/
|
|
5972
|
+
'hospitalName'?: string | null;
|
|
5973
|
+
/**
|
|
5974
|
+
*
|
|
5975
|
+
* @type {string}
|
|
5976
|
+
* @memberof DoctorItemSimpleModel
|
|
5977
|
+
*/
|
|
5978
|
+
'overview'?: string | null;
|
|
5979
|
+
/**
|
|
5980
|
+
*
|
|
5981
|
+
* @type {boolean}
|
|
5982
|
+
* @memberof DoctorItemSimpleModel
|
|
5983
|
+
*/
|
|
5984
|
+
'confirmed'?: boolean;
|
|
5985
|
+
}
|
|
5986
|
+
/**
|
|
5987
|
+
*
|
|
5988
|
+
* @export
|
|
5989
|
+
* @interface DoctorLanguageItemModel
|
|
5990
|
+
*/
|
|
5991
|
+
export interface DoctorLanguageItemModel {
|
|
5992
|
+
/**
|
|
5993
|
+
*
|
|
5994
|
+
* @type {string}
|
|
5995
|
+
* @memberof DoctorLanguageItemModel
|
|
5996
|
+
*/
|
|
5997
|
+
'id'?: string;
|
|
5998
|
+
/**
|
|
5999
|
+
*
|
|
6000
|
+
* @type {string}
|
|
6001
|
+
* @memberof DoctorLanguageItemModel
|
|
6002
|
+
*/
|
|
6003
|
+
'language'?: string | null;
|
|
6004
|
+
/**
|
|
6005
|
+
*
|
|
6006
|
+
* @type {string}
|
|
6007
|
+
* @memberof DoctorLanguageItemModel
|
|
6008
|
+
*/
|
|
6009
|
+
'userId'?: string;
|
|
6010
|
+
}
|
|
6011
|
+
/**
|
|
6012
|
+
*
|
|
6013
|
+
* @export
|
|
6014
|
+
* @interface DoctorLanguageModel
|
|
6015
|
+
*/
|
|
6016
|
+
export interface DoctorLanguageModel {
|
|
6017
|
+
/**
|
|
6018
|
+
*
|
|
6019
|
+
* @type {string}
|
|
6020
|
+
* @memberof DoctorLanguageModel
|
|
6021
|
+
*/
|
|
6022
|
+
'id'?: string;
|
|
6023
|
+
/**
|
|
6024
|
+
*
|
|
6025
|
+
* @type {string}
|
|
6026
|
+
* @memberof DoctorLanguageModel
|
|
6027
|
+
*/
|
|
6028
|
+
'language'?: string | null;
|
|
6029
|
+
/**
|
|
6030
|
+
*
|
|
6031
|
+
* @type {string}
|
|
6032
|
+
* @memberof DoctorLanguageModel
|
|
6033
|
+
*/
|
|
6034
|
+
'userId'?: string;
|
|
6035
|
+
}
|
|
6036
|
+
/**
|
|
6037
|
+
*
|
|
6038
|
+
* @export
|
|
6039
|
+
* @interface DoctorLanguagesModel
|
|
6040
|
+
*/
|
|
6041
|
+
export interface DoctorLanguagesModel {
|
|
6042
|
+
/**
|
|
6043
|
+
*
|
|
6044
|
+
* @type {Array<DoctorLanguageItemModel>}
|
|
6045
|
+
* @memberof DoctorLanguagesModel
|
|
6046
|
+
*/
|
|
6047
|
+
'items'?: Array<DoctorLanguageItemModel> | null;
|
|
6048
|
+
/**
|
|
6049
|
+
*
|
|
6050
|
+
* @type {PagedListMetaData}
|
|
6051
|
+
* @memberof DoctorLanguagesModel
|
|
6052
|
+
*/
|
|
6053
|
+
'metaData'?: PagedListMetaData;
|
|
6054
|
+
}
|
|
6055
|
+
/**
|
|
6056
|
+
*
|
|
6057
|
+
* @export
|
|
6058
|
+
* @interface DoctorModel
|
|
6059
|
+
*/
|
|
6060
|
+
export interface DoctorModel {
|
|
6324
6061
|
/**
|
|
6325
6062
|
*
|
|
6326
6063
|
* @type {string}
|
|
6327
6064
|
* @memberof DoctorModel
|
|
6328
6065
|
*/
|
|
6329
|
-
'
|
|
6066
|
+
'id'?: string;
|
|
6330
6067
|
/**
|
|
6331
6068
|
*
|
|
6332
6069
|
* @type {string}
|
|
6333
6070
|
* @memberof DoctorModel
|
|
6334
6071
|
*/
|
|
6335
|
-
'
|
|
6072
|
+
'userName'?: string | null;
|
|
6336
6073
|
/**
|
|
6337
6074
|
*
|
|
6338
6075
|
* @type {string}
|
|
6339
6076
|
* @memberof DoctorModel
|
|
6340
6077
|
*/
|
|
6341
|
-
'
|
|
6078
|
+
'firstName'?: string | null;
|
|
6342
6079
|
/**
|
|
6343
6080
|
*
|
|
6344
6081
|
* @type {string}
|
|
6345
6082
|
* @memberof DoctorModel
|
|
6346
6083
|
*/
|
|
6347
|
-
'
|
|
6084
|
+
'lastName'?: string | null;
|
|
6348
6085
|
/**
|
|
6349
6086
|
*
|
|
6350
6087
|
* @type {string}
|
|
6351
6088
|
* @memberof DoctorModel
|
|
6352
6089
|
*/
|
|
6353
|
-
'
|
|
6090
|
+
'fullname'?: string | null;
|
|
6354
6091
|
/**
|
|
6355
6092
|
*
|
|
6356
6093
|
* @type {string}
|
|
@@ -6428,25 +6165,31 @@ export interface DoctorModel {
|
|
|
6428
6165
|
* @type {string}
|
|
6429
6166
|
* @memberof DoctorModel
|
|
6430
6167
|
*/
|
|
6431
|
-
'
|
|
6168
|
+
'slug'?: string | null;
|
|
6432
6169
|
/**
|
|
6433
6170
|
*
|
|
6434
6171
|
* @type {string}
|
|
6435
6172
|
* @memberof DoctorModel
|
|
6436
6173
|
*/
|
|
6437
|
-
'
|
|
6174
|
+
'hospitalId'?: string | null;
|
|
6438
6175
|
/**
|
|
6439
6176
|
*
|
|
6440
6177
|
* @type {string}
|
|
6441
6178
|
* @memberof DoctorModel
|
|
6442
6179
|
*/
|
|
6443
|
-
'
|
|
6180
|
+
'hospitalName'?: string | null;
|
|
6181
|
+
/**
|
|
6182
|
+
*
|
|
6183
|
+
* @type {Date}
|
|
6184
|
+
* @memberof DoctorModel
|
|
6185
|
+
*/
|
|
6186
|
+
'startPracticeDate'?: Date | null;
|
|
6444
6187
|
/**
|
|
6445
6188
|
*
|
|
6446
6189
|
* @type {string}
|
|
6447
6190
|
* @memberof DoctorModel
|
|
6448
6191
|
*/
|
|
6449
|
-
'
|
|
6192
|
+
'overview'?: string | null;
|
|
6450
6193
|
/**
|
|
6451
6194
|
*
|
|
6452
6195
|
* @type {boolean}
|
|
@@ -6461,22 +6204,22 @@ export interface DoctorModel {
|
|
|
6461
6204
|
'consultationFee'?: number | null;
|
|
6462
6205
|
/**
|
|
6463
6206
|
*
|
|
6464
|
-
* @type {
|
|
6207
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6465
6208
|
* @memberof DoctorModel
|
|
6466
6209
|
*/
|
|
6467
|
-
'
|
|
6210
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6468
6211
|
/**
|
|
6469
6212
|
*
|
|
6470
|
-
* @type {
|
|
6213
|
+
* @type {boolean}
|
|
6471
6214
|
* @memberof DoctorModel
|
|
6472
6215
|
*/
|
|
6473
|
-
'
|
|
6216
|
+
'confirmed'?: boolean;
|
|
6474
6217
|
/**
|
|
6475
6218
|
*
|
|
6476
|
-
* @type {
|
|
6219
|
+
* @type {string}
|
|
6477
6220
|
* @memberof DoctorModel
|
|
6478
6221
|
*/
|
|
6479
|
-
'
|
|
6222
|
+
'languageCode'?: string | null;
|
|
6480
6223
|
}
|
|
6481
6224
|
/**
|
|
6482
6225
|
*
|
|
@@ -6595,55 +6338,6 @@ export interface DoctorPortfoliosModel {
|
|
|
6595
6338
|
*/
|
|
6596
6339
|
'metaData'?: PagedListMetaData;
|
|
6597
6340
|
}
|
|
6598
|
-
/**
|
|
6599
|
-
*
|
|
6600
|
-
* @export
|
|
6601
|
-
* @interface DoctorSimpleItemModel
|
|
6602
|
-
*/
|
|
6603
|
-
export interface DoctorSimpleItemModel {
|
|
6604
|
-
/**
|
|
6605
|
-
*
|
|
6606
|
-
* @type {string}
|
|
6607
|
-
* @memberof DoctorSimpleItemModel
|
|
6608
|
-
*/
|
|
6609
|
-
'id'?: string;
|
|
6610
|
-
/**
|
|
6611
|
-
*
|
|
6612
|
-
* @type {string}
|
|
6613
|
-
* @memberof DoctorSimpleItemModel
|
|
6614
|
-
*/
|
|
6615
|
-
'firstName'?: string | null;
|
|
6616
|
-
/**
|
|
6617
|
-
*
|
|
6618
|
-
* @type {string}
|
|
6619
|
-
* @memberof DoctorSimpleItemModel
|
|
6620
|
-
*/
|
|
6621
|
-
'middleName'?: string | null;
|
|
6622
|
-
/**
|
|
6623
|
-
*
|
|
6624
|
-
* @type {string}
|
|
6625
|
-
* @memberof DoctorSimpleItemModel
|
|
6626
|
-
*/
|
|
6627
|
-
'lastName'?: string | null;
|
|
6628
|
-
/**
|
|
6629
|
-
*
|
|
6630
|
-
* @type {string}
|
|
6631
|
-
* @memberof DoctorSimpleItemModel
|
|
6632
|
-
*/
|
|
6633
|
-
'fullname'?: string | null;
|
|
6634
|
-
/**
|
|
6635
|
-
*
|
|
6636
|
-
* @type {string}
|
|
6637
|
-
* @memberof DoctorSimpleItemModel
|
|
6638
|
-
*/
|
|
6639
|
-
'slug'?: string | null;
|
|
6640
|
-
/**
|
|
6641
|
-
*
|
|
6642
|
-
* @type {string}
|
|
6643
|
-
* @memberof DoctorSimpleItemModel
|
|
6644
|
-
*/
|
|
6645
|
-
'hospitalId'?: string | null;
|
|
6646
|
-
}
|
|
6647
6341
|
/**
|
|
6648
6342
|
*
|
|
6649
6343
|
* @export
|
|
@@ -6745,10 +6439,10 @@ export interface DoctorsModel {
|
|
|
6745
6439
|
export interface DoctorsSimpleModel {
|
|
6746
6440
|
/**
|
|
6747
6441
|
*
|
|
6748
|
-
* @type {Array<
|
|
6442
|
+
* @type {Array<DoctorItemSimpleModel>}
|
|
6749
6443
|
* @memberof DoctorsSimpleModel
|
|
6750
6444
|
*/
|
|
6751
|
-
'items'?: Array<
|
|
6445
|
+
'items'?: Array<DoctorItemSimpleModel> | null;
|
|
6752
6446
|
/**
|
|
6753
6447
|
*
|
|
6754
6448
|
* @type {PagedListMetaData}
|
|
@@ -6841,7 +6535,7 @@ export interface FaqCategoryItemModel {
|
|
|
6841
6535
|
* @type {string}
|
|
6842
6536
|
* @memberof FaqCategoryItemModel
|
|
6843
6537
|
*/
|
|
6844
|
-
'
|
|
6538
|
+
'languageCode'?: string | null;
|
|
6845
6539
|
/**
|
|
6846
6540
|
*
|
|
6847
6541
|
* @type {string}
|
|
@@ -6854,12 +6548,18 @@ export interface FaqCategoryItemModel {
|
|
|
6854
6548
|
* @memberof FaqCategoryItemModel
|
|
6855
6549
|
*/
|
|
6856
6550
|
'slug'?: string | null;
|
|
6551
|
+
/**
|
|
6552
|
+
*
|
|
6553
|
+
* @type {boolean}
|
|
6554
|
+
* @memberof FaqCategoryItemModel
|
|
6555
|
+
*/
|
|
6556
|
+
'confirmed'?: boolean;
|
|
6857
6557
|
/**
|
|
6858
6558
|
*
|
|
6859
6559
|
* @type {string}
|
|
6860
6560
|
* @memberof FaqCategoryItemModel
|
|
6861
6561
|
*/
|
|
6862
|
-
'
|
|
6562
|
+
'parentId'?: string | null;
|
|
6863
6563
|
/**
|
|
6864
6564
|
*
|
|
6865
6565
|
* @type {number}
|
|
@@ -6880,10 +6580,16 @@ export interface FaqCategoryItemModel {
|
|
|
6880
6580
|
'hospitalName'?: string | null;
|
|
6881
6581
|
/**
|
|
6882
6582
|
*
|
|
6883
|
-
* @type {
|
|
6583
|
+
* @type {string}
|
|
6884
6584
|
* @memberof FaqCategoryItemModel
|
|
6885
6585
|
*/
|
|
6886
|
-
'
|
|
6586
|
+
'hospitalSlug'?: string | null;
|
|
6587
|
+
/**
|
|
6588
|
+
*
|
|
6589
|
+
* @type {string}
|
|
6590
|
+
* @memberof FaqCategoryItemModel
|
|
6591
|
+
*/
|
|
6592
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
6887
6593
|
/**
|
|
6888
6594
|
*
|
|
6889
6595
|
* @type {AuditableEntity}
|
|
@@ -6908,7 +6614,7 @@ export interface FaqCategoryModel {
|
|
|
6908
6614
|
* @type {string}
|
|
6909
6615
|
* @memberof FaqCategoryModel
|
|
6910
6616
|
*/
|
|
6911
|
-
'
|
|
6617
|
+
'languageCode'?: string | null;
|
|
6912
6618
|
/**
|
|
6913
6619
|
*
|
|
6914
6620
|
* @type {string}
|
|
@@ -6921,12 +6627,18 @@ export interface FaqCategoryModel {
|
|
|
6921
6627
|
* @memberof FaqCategoryModel
|
|
6922
6628
|
*/
|
|
6923
6629
|
'slug'?: string | null;
|
|
6630
|
+
/**
|
|
6631
|
+
*
|
|
6632
|
+
* @type {boolean}
|
|
6633
|
+
* @memberof FaqCategoryModel
|
|
6634
|
+
*/
|
|
6635
|
+
'confirmed'?: boolean;
|
|
6924
6636
|
/**
|
|
6925
6637
|
*
|
|
6926
6638
|
* @type {string}
|
|
6927
6639
|
* @memberof FaqCategoryModel
|
|
6928
6640
|
*/
|
|
6929
|
-
'
|
|
6641
|
+
'parentId'?: string | null;
|
|
6930
6642
|
/**
|
|
6931
6643
|
*
|
|
6932
6644
|
* @type {number}
|
|
@@ -6947,13 +6659,19 @@ export interface FaqCategoryModel {
|
|
|
6947
6659
|
'hospitalName'?: string | null;
|
|
6948
6660
|
/**
|
|
6949
6661
|
*
|
|
6950
|
-
* @type {
|
|
6662
|
+
* @type {string}
|
|
6951
6663
|
* @memberof FaqCategoryModel
|
|
6952
6664
|
*/
|
|
6953
|
-
'
|
|
6665
|
+
'hospitalSlug'?: string | null;
|
|
6954
6666
|
/**
|
|
6955
6667
|
*
|
|
6956
|
-
* @type {
|
|
6668
|
+
* @type {string}
|
|
6669
|
+
* @memberof FaqCategoryModel
|
|
6670
|
+
*/
|
|
6671
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
6672
|
+
/**
|
|
6673
|
+
*
|
|
6674
|
+
* @type {AuditableEntity}
|
|
6957
6675
|
* @memberof FaqCategoryModel
|
|
6958
6676
|
*/
|
|
6959
6677
|
'auditableEntity'?: AuditableEntity;
|
|
@@ -6962,13 +6680,25 @@ export interface FaqCategoryModel {
|
|
|
6962
6680
|
* @type {string}
|
|
6963
6681
|
* @memberof FaqCategoryModel
|
|
6964
6682
|
*/
|
|
6965
|
-
'
|
|
6683
|
+
'description'?: string | null;
|
|
6966
6684
|
/**
|
|
6967
6685
|
*
|
|
6968
|
-
* @type {
|
|
6686
|
+
* @type {string}
|
|
6969
6687
|
* @memberof FaqCategoryModel
|
|
6970
6688
|
*/
|
|
6971
|
-
'
|
|
6689
|
+
'overview'?: string | null;
|
|
6690
|
+
/**
|
|
6691
|
+
*
|
|
6692
|
+
* @type {string}
|
|
6693
|
+
* @memberof FaqCategoryModel
|
|
6694
|
+
*/
|
|
6695
|
+
'content'?: string | null;
|
|
6696
|
+
/**
|
|
6697
|
+
*
|
|
6698
|
+
* @type {Array<MediaModel>}
|
|
6699
|
+
* @memberof FaqCategoryModel
|
|
6700
|
+
*/
|
|
6701
|
+
'medias'?: Array<MediaModel> | null;
|
|
6972
6702
|
}
|
|
6973
6703
|
/**
|
|
6974
6704
|
*
|
|
@@ -6982,6 +6712,12 @@ export interface FaqItemModel {
|
|
|
6982
6712
|
* @memberof FaqItemModel
|
|
6983
6713
|
*/
|
|
6984
6714
|
'id'?: string;
|
|
6715
|
+
/**
|
|
6716
|
+
*
|
|
6717
|
+
* @type {string}
|
|
6718
|
+
* @memberof FaqItemModel
|
|
6719
|
+
*/
|
|
6720
|
+
'languageCode'?: string | null;
|
|
6985
6721
|
/**
|
|
6986
6722
|
*
|
|
6987
6723
|
* @type {string}
|
|
@@ -6994,12 +6730,18 @@ export interface FaqItemModel {
|
|
|
6994
6730
|
* @memberof FaqItemModel
|
|
6995
6731
|
*/
|
|
6996
6732
|
'slug'?: string | null;
|
|
6733
|
+
/**
|
|
6734
|
+
*
|
|
6735
|
+
* @type {boolean}
|
|
6736
|
+
* @memberof FaqItemModel
|
|
6737
|
+
*/
|
|
6738
|
+
'confirmed'?: boolean;
|
|
6997
6739
|
/**
|
|
6998
6740
|
*
|
|
6999
6741
|
* @type {string}
|
|
7000
6742
|
* @memberof FaqItemModel
|
|
7001
6743
|
*/
|
|
7002
|
-
'
|
|
6744
|
+
'parentId'?: string | null;
|
|
7003
6745
|
/**
|
|
7004
6746
|
*
|
|
7005
6747
|
* @type {number}
|
|
@@ -7023,19 +6765,25 @@ export interface FaqItemModel {
|
|
|
7023
6765
|
* @type {string}
|
|
7024
6766
|
* @memberof FaqItemModel
|
|
7025
6767
|
*/
|
|
7026
|
-
'
|
|
6768
|
+
'hospitalSlug'?: string | null;
|
|
7027
6769
|
/**
|
|
7028
6770
|
*
|
|
7029
6771
|
* @type {string}
|
|
7030
6772
|
* @memberof FaqItemModel
|
|
7031
6773
|
*/
|
|
7032
|
-
'
|
|
6774
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
7033
6775
|
/**
|
|
7034
6776
|
*
|
|
7035
|
-
* @type {
|
|
6777
|
+
* @type {string}
|
|
7036
6778
|
* @memberof FaqItemModel
|
|
7037
6779
|
*/
|
|
7038
|
-
'
|
|
6780
|
+
'faqCategoryId'?: string;
|
|
6781
|
+
/**
|
|
6782
|
+
*
|
|
6783
|
+
* @type {string}
|
|
6784
|
+
* @memberof FaqItemModel
|
|
6785
|
+
*/
|
|
6786
|
+
'faqCategoryName'?: string | null;
|
|
7039
6787
|
/**
|
|
7040
6788
|
*
|
|
7041
6789
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -7067,6 +6815,12 @@ export interface FaqModel {
|
|
|
7067
6815
|
* @memberof FaqModel
|
|
7068
6816
|
*/
|
|
7069
6817
|
'id'?: string;
|
|
6818
|
+
/**
|
|
6819
|
+
*
|
|
6820
|
+
* @type {string}
|
|
6821
|
+
* @memberof FaqModel
|
|
6822
|
+
*/
|
|
6823
|
+
'languageCode'?: string | null;
|
|
7070
6824
|
/**
|
|
7071
6825
|
*
|
|
7072
6826
|
* @type {string}
|
|
@@ -7079,12 +6833,18 @@ export interface FaqModel {
|
|
|
7079
6833
|
* @memberof FaqModel
|
|
7080
6834
|
*/
|
|
7081
6835
|
'slug'?: string | null;
|
|
6836
|
+
/**
|
|
6837
|
+
*
|
|
6838
|
+
* @type {boolean}
|
|
6839
|
+
* @memberof FaqModel
|
|
6840
|
+
*/
|
|
6841
|
+
'confirmed'?: boolean;
|
|
7082
6842
|
/**
|
|
7083
6843
|
*
|
|
7084
6844
|
* @type {string}
|
|
7085
6845
|
* @memberof FaqModel
|
|
7086
6846
|
*/
|
|
7087
|
-
'
|
|
6847
|
+
'parentId'?: string | null;
|
|
7088
6848
|
/**
|
|
7089
6849
|
*
|
|
7090
6850
|
* @type {number}
|
|
@@ -7108,19 +6868,25 @@ export interface FaqModel {
|
|
|
7108
6868
|
* @type {string}
|
|
7109
6869
|
* @memberof FaqModel
|
|
7110
6870
|
*/
|
|
7111
|
-
'
|
|
6871
|
+
'hospitalSlug'?: string | null;
|
|
7112
6872
|
/**
|
|
7113
6873
|
*
|
|
7114
6874
|
* @type {string}
|
|
7115
6875
|
* @memberof FaqModel
|
|
7116
6876
|
*/
|
|
7117
|
-
'
|
|
6877
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
7118
6878
|
/**
|
|
7119
6879
|
*
|
|
7120
|
-
* @type {
|
|
6880
|
+
* @type {string}
|
|
7121
6881
|
* @memberof FaqModel
|
|
7122
6882
|
*/
|
|
7123
|
-
'
|
|
6883
|
+
'faqCategoryId'?: string;
|
|
6884
|
+
/**
|
|
6885
|
+
*
|
|
6886
|
+
* @type {string}
|
|
6887
|
+
* @memberof FaqModel
|
|
6888
|
+
*/
|
|
6889
|
+
'faqCategoryName'?: string | null;
|
|
7124
6890
|
/**
|
|
7125
6891
|
*
|
|
7126
6892
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -7144,19 +6910,19 @@ export interface FaqModel {
|
|
|
7144
6910
|
* @type {string}
|
|
7145
6911
|
* @memberof FaqModel
|
|
7146
6912
|
*/
|
|
7147
|
-
'
|
|
6913
|
+
'description'?: string | null;
|
|
7148
6914
|
/**
|
|
7149
6915
|
*
|
|
7150
6916
|
* @type {string}
|
|
7151
6917
|
* @memberof FaqModel
|
|
7152
6918
|
*/
|
|
7153
|
-
'
|
|
6919
|
+
'overview'?: string | null;
|
|
7154
6920
|
/**
|
|
7155
6921
|
*
|
|
7156
|
-
* @type {
|
|
6922
|
+
* @type {string}
|
|
7157
6923
|
* @memberof FaqModel
|
|
7158
6924
|
*/
|
|
7159
|
-
'
|
|
6925
|
+
'content'?: string | null;
|
|
7160
6926
|
}
|
|
7161
6927
|
/**
|
|
7162
6928
|
*
|
|
@@ -7590,37 +7356,49 @@ export interface HospitalItemModel {
|
|
|
7590
7356
|
* @type {string}
|
|
7591
7357
|
* @memberof HospitalItemModel
|
|
7592
7358
|
*/
|
|
7593
|
-
'
|
|
7359
|
+
'languageCode'?: string | null;
|
|
7594
7360
|
/**
|
|
7595
7361
|
*
|
|
7596
7362
|
* @type {string}
|
|
7597
7363
|
* @memberof HospitalItemModel
|
|
7598
7364
|
*/
|
|
7599
|
-
'
|
|
7365
|
+
'name'?: string | null;
|
|
7600
7366
|
/**
|
|
7601
7367
|
*
|
|
7602
7368
|
* @type {string}
|
|
7603
7369
|
* @memberof HospitalItemModel
|
|
7604
7370
|
*/
|
|
7605
|
-
'
|
|
7371
|
+
'slug'?: string | null;
|
|
7606
7372
|
/**
|
|
7607
7373
|
*
|
|
7608
|
-
* @type {
|
|
7374
|
+
* @type {boolean}
|
|
7609
7375
|
* @memberof HospitalItemModel
|
|
7610
7376
|
*/
|
|
7611
|
-
'
|
|
7377
|
+
'confirmed'?: boolean;
|
|
7612
7378
|
/**
|
|
7613
7379
|
*
|
|
7614
7380
|
* @type {string}
|
|
7615
7381
|
* @memberof HospitalItemModel
|
|
7616
7382
|
*/
|
|
7617
|
-
'
|
|
7383
|
+
'logo'?: string | null;
|
|
7618
7384
|
/**
|
|
7619
7385
|
*
|
|
7620
7386
|
* @type {MarketingType}
|
|
7621
7387
|
* @memberof HospitalItemModel
|
|
7622
7388
|
*/
|
|
7623
7389
|
'marketingType'?: MarketingType;
|
|
7390
|
+
/**
|
|
7391
|
+
*
|
|
7392
|
+
* @type {boolean}
|
|
7393
|
+
* @memberof HospitalItemModel
|
|
7394
|
+
*/
|
|
7395
|
+
'consultationEnabled'?: boolean | null;
|
|
7396
|
+
/**
|
|
7397
|
+
*
|
|
7398
|
+
* @type {number}
|
|
7399
|
+
* @memberof HospitalItemModel
|
|
7400
|
+
*/
|
|
7401
|
+
'consultationFee'?: number | null;
|
|
7624
7402
|
/**
|
|
7625
7403
|
*
|
|
7626
7404
|
* @type {string}
|
|
@@ -7641,10 +7419,10 @@ export interface HospitalItemModel {
|
|
|
7641
7419
|
'paymentEnabled'?: boolean;
|
|
7642
7420
|
/**
|
|
7643
7421
|
*
|
|
7644
|
-
* @type {
|
|
7422
|
+
* @type {string}
|
|
7645
7423
|
* @memberof HospitalItemModel
|
|
7646
7424
|
*/
|
|
7647
|
-
'
|
|
7425
|
+
'countryId'?: string;
|
|
7648
7426
|
/**
|
|
7649
7427
|
*
|
|
7650
7428
|
* @type {LocationModel}
|
|
@@ -7675,37 +7453,49 @@ export interface HospitalModel {
|
|
|
7675
7453
|
* @type {string}
|
|
7676
7454
|
* @memberof HospitalModel
|
|
7677
7455
|
*/
|
|
7678
|
-
'
|
|
7456
|
+
'languageCode'?: string | null;
|
|
7679
7457
|
/**
|
|
7680
7458
|
*
|
|
7681
7459
|
* @type {string}
|
|
7682
7460
|
* @memberof HospitalModel
|
|
7683
7461
|
*/
|
|
7684
|
-
'
|
|
7462
|
+
'name'?: string | null;
|
|
7685
7463
|
/**
|
|
7686
7464
|
*
|
|
7687
7465
|
* @type {string}
|
|
7688
7466
|
* @memberof HospitalModel
|
|
7689
7467
|
*/
|
|
7690
|
-
'
|
|
7468
|
+
'slug'?: string | null;
|
|
7691
7469
|
/**
|
|
7692
7470
|
*
|
|
7693
|
-
* @type {
|
|
7471
|
+
* @type {boolean}
|
|
7694
7472
|
* @memberof HospitalModel
|
|
7695
7473
|
*/
|
|
7696
|
-
'
|
|
7474
|
+
'confirmed'?: boolean;
|
|
7697
7475
|
/**
|
|
7698
7476
|
*
|
|
7699
7477
|
* @type {string}
|
|
7700
7478
|
* @memberof HospitalModel
|
|
7701
7479
|
*/
|
|
7702
|
-
'
|
|
7480
|
+
'logo'?: string | null;
|
|
7703
7481
|
/**
|
|
7704
7482
|
*
|
|
7705
7483
|
* @type {MarketingType}
|
|
7706
7484
|
* @memberof HospitalModel
|
|
7707
7485
|
*/
|
|
7708
7486
|
'marketingType'?: MarketingType;
|
|
7487
|
+
/**
|
|
7488
|
+
*
|
|
7489
|
+
* @type {boolean}
|
|
7490
|
+
* @memberof HospitalModel
|
|
7491
|
+
*/
|
|
7492
|
+
'consultationEnabled'?: boolean | null;
|
|
7493
|
+
/**
|
|
7494
|
+
*
|
|
7495
|
+
* @type {number}
|
|
7496
|
+
* @memberof HospitalModel
|
|
7497
|
+
*/
|
|
7498
|
+
'consultationFee'?: number | null;
|
|
7709
7499
|
/**
|
|
7710
7500
|
*
|
|
7711
7501
|
* @type {string}
|
|
@@ -7726,10 +7516,10 @@ export interface HospitalModel {
|
|
|
7726
7516
|
'paymentEnabled'?: boolean;
|
|
7727
7517
|
/**
|
|
7728
7518
|
*
|
|
7729
|
-
* @type {
|
|
7519
|
+
* @type {string}
|
|
7730
7520
|
* @memberof HospitalModel
|
|
7731
7521
|
*/
|
|
7732
|
-
'
|
|
7522
|
+
'countryId'?: string;
|
|
7733
7523
|
/**
|
|
7734
7524
|
*
|
|
7735
7525
|
* @type {LocationModel}
|
|
@@ -7742,12 +7532,6 @@ export interface HospitalModel {
|
|
|
7742
7532
|
* @memberof HospitalModel
|
|
7743
7533
|
*/
|
|
7744
7534
|
'auditableEntity'?: AuditableEntity;
|
|
7745
|
-
/**
|
|
7746
|
-
*
|
|
7747
|
-
* @type {string}
|
|
7748
|
-
* @memberof HospitalModel
|
|
7749
|
-
*/
|
|
7750
|
-
'languageCode'?: string | null;
|
|
7751
7535
|
/**
|
|
7752
7536
|
*
|
|
7753
7537
|
* @type {string}
|
|
@@ -7796,18 +7580,6 @@ export interface HospitalModel {
|
|
|
7796
7580
|
* @memberof HospitalModel
|
|
7797
7581
|
*/
|
|
7798
7582
|
'doctorCount'?: number | null;
|
|
7799
|
-
/**
|
|
7800
|
-
*
|
|
7801
|
-
* @type {boolean}
|
|
7802
|
-
* @memberof HospitalModel
|
|
7803
|
-
*/
|
|
7804
|
-
'consultationEnabled'?: boolean | null;
|
|
7805
|
-
/**
|
|
7806
|
-
*
|
|
7807
|
-
* @type {number}
|
|
7808
|
-
* @memberof HospitalModel
|
|
7809
|
-
*/
|
|
7810
|
-
'consultationFee'?: number | null;
|
|
7811
7583
|
/**
|
|
7812
7584
|
*
|
|
7813
7585
|
* @type {string}
|
|
@@ -7826,12 +7598,6 @@ export interface HospitalModel {
|
|
|
7826
7598
|
* @memberof HospitalModel
|
|
7827
7599
|
*/
|
|
7828
7600
|
'customStyle'?: string | null;
|
|
7829
|
-
/**
|
|
7830
|
-
*
|
|
7831
|
-
* @type {Array<MediaModel>}
|
|
7832
|
-
* @memberof HospitalModel
|
|
7833
|
-
*/
|
|
7834
|
-
'medias'?: Array<MediaModel> | null;
|
|
7835
7601
|
}
|
|
7836
7602
|
/**
|
|
7837
7603
|
*
|
|
@@ -7850,182 +7616,128 @@ export interface HospitalServiceItemModel {
|
|
|
7850
7616
|
* @type {string}
|
|
7851
7617
|
* @memberof HospitalServiceItemModel
|
|
7852
7618
|
*/
|
|
7853
|
-
'
|
|
7854
|
-
/**
|
|
7855
|
-
*
|
|
7856
|
-
* @type {string}
|
|
7857
|
-
* @memberof HospitalServiceItemModel
|
|
7858
|
-
*/
|
|
7859
|
-
'slug'?: string | null;
|
|
7860
|
-
/**
|
|
7861
|
-
*
|
|
7862
|
-
* @type {string}
|
|
7863
|
-
* @memberof HospitalServiceItemModel
|
|
7864
|
-
*/
|
|
7865
|
-
'description'?: string | null;
|
|
7619
|
+
'languageCode'?: string | null;
|
|
7866
7620
|
/**
|
|
7867
7621
|
*
|
|
7868
7622
|
* @type {string}
|
|
7869
7623
|
* @memberof HospitalServiceItemModel
|
|
7870
7624
|
*/
|
|
7871
|
-
'
|
|
7625
|
+
'name'?: string | null;
|
|
7872
7626
|
/**
|
|
7873
7627
|
*
|
|
7874
7628
|
* @type {string}
|
|
7875
7629
|
* @memberof HospitalServiceItemModel
|
|
7876
7630
|
*/
|
|
7877
|
-
'
|
|
7631
|
+
'slug'?: string | null;
|
|
7878
7632
|
/**
|
|
7879
7633
|
*
|
|
7880
|
-
* @type {
|
|
7634
|
+
* @type {boolean}
|
|
7881
7635
|
* @memberof HospitalServiceItemModel
|
|
7882
7636
|
*/
|
|
7883
|
-
'
|
|
7637
|
+
'confirmed'?: boolean;
|
|
7884
7638
|
/**
|
|
7885
7639
|
*
|
|
7886
|
-
* @type {
|
|
7640
|
+
* @type {number}
|
|
7887
7641
|
* @memberof HospitalServiceItemModel
|
|
7888
7642
|
*/
|
|
7889
|
-
'
|
|
7643
|
+
'order'?: number;
|
|
7890
7644
|
/**
|
|
7891
7645
|
*
|
|
7892
7646
|
* @type {string}
|
|
7893
7647
|
* @memberof HospitalServiceItemModel
|
|
7894
7648
|
*/
|
|
7895
|
-
'
|
|
7649
|
+
'photo'?: string | null;
|
|
7896
7650
|
/**
|
|
7897
7651
|
*
|
|
7898
7652
|
* @type {string}
|
|
7899
7653
|
* @memberof HospitalServiceItemModel
|
|
7900
7654
|
*/
|
|
7901
|
-
'
|
|
7655
|
+
'photoThumbnail'?: string | null;
|
|
7902
7656
|
/**
|
|
7903
7657
|
*
|
|
7904
|
-
* @type {
|
|
7658
|
+
* @type {AuditableEntity}
|
|
7905
7659
|
* @memberof HospitalServiceItemModel
|
|
7906
7660
|
*/
|
|
7907
|
-
'
|
|
7661
|
+
'auditableEntity'?: AuditableEntity;
|
|
7662
|
+
}
|
|
7663
|
+
/**
|
|
7664
|
+
*
|
|
7665
|
+
* @export
|
|
7666
|
+
* @interface HospitalServiceModel
|
|
7667
|
+
*/
|
|
7668
|
+
export interface HospitalServiceModel {
|
|
7908
7669
|
/**
|
|
7909
7670
|
*
|
|
7910
7671
|
* @type {string}
|
|
7911
|
-
* @memberof
|
|
7672
|
+
* @memberof HospitalServiceModel
|
|
7912
7673
|
*/
|
|
7913
|
-
'
|
|
7674
|
+
'id'?: string;
|
|
7914
7675
|
/**
|
|
7915
7676
|
*
|
|
7916
7677
|
* @type {string}
|
|
7917
|
-
* @memberof
|
|
7678
|
+
* @memberof HospitalServiceModel
|
|
7918
7679
|
*/
|
|
7919
|
-
'
|
|
7680
|
+
'languageCode'?: string | null;
|
|
7920
7681
|
/**
|
|
7921
7682
|
*
|
|
7922
7683
|
* @type {string}
|
|
7923
|
-
* @memberof
|
|
7684
|
+
* @memberof HospitalServiceModel
|
|
7924
7685
|
*/
|
|
7925
|
-
'
|
|
7686
|
+
'name'?: string | null;
|
|
7926
7687
|
/**
|
|
7927
7688
|
*
|
|
7928
7689
|
* @type {string}
|
|
7929
|
-
* @memberof
|
|
7930
|
-
*/
|
|
7931
|
-
'serviceCategoryName'?: string | null;
|
|
7932
|
-
/**
|
|
7933
|
-
*
|
|
7934
|
-
* @type {MarketingType}
|
|
7935
|
-
* @memberof HospitalServiceItemModel
|
|
7936
|
-
*/
|
|
7937
|
-
'marketingType'?: MarketingType;
|
|
7938
|
-
/**
|
|
7939
|
-
*
|
|
7940
|
-
* @type {Procedure}
|
|
7941
|
-
* @memberof HospitalServiceItemModel
|
|
7942
|
-
*/
|
|
7943
|
-
'procedure'?: Procedure;
|
|
7944
|
-
/**
|
|
7945
|
-
*
|
|
7946
|
-
* @type {number}
|
|
7947
|
-
* @memberof HospitalServiceItemModel
|
|
7948
|
-
*/
|
|
7949
|
-
'minPrice'?: number | null;
|
|
7950
|
-
/**
|
|
7951
|
-
*
|
|
7952
|
-
* @type {number}
|
|
7953
|
-
* @memberof HospitalServiceItemModel
|
|
7690
|
+
* @memberof HospitalServiceModel
|
|
7954
7691
|
*/
|
|
7955
|
-
'
|
|
7692
|
+
'slug'?: string | null;
|
|
7956
7693
|
/**
|
|
7957
7694
|
*
|
|
7958
7695
|
* @type {boolean}
|
|
7959
|
-
* @memberof
|
|
7696
|
+
* @memberof HospitalServiceModel
|
|
7960
7697
|
*/
|
|
7961
|
-
'
|
|
7698
|
+
'confirmed'?: boolean;
|
|
7962
7699
|
/**
|
|
7963
7700
|
*
|
|
7964
7701
|
* @type {number}
|
|
7965
|
-
* @memberof
|
|
7702
|
+
* @memberof HospitalServiceModel
|
|
7966
7703
|
*/
|
|
7967
7704
|
'order'?: number;
|
|
7968
|
-
/**
|
|
7969
|
-
*
|
|
7970
|
-
* @type {boolean}
|
|
7971
|
-
* @memberof HospitalServiceItemModel
|
|
7972
|
-
*/
|
|
7973
|
-
'confirmed'?: boolean;
|
|
7974
7705
|
/**
|
|
7975
7706
|
*
|
|
7976
7707
|
* @type {string}
|
|
7977
|
-
* @memberof
|
|
7708
|
+
* @memberof HospitalServiceModel
|
|
7978
7709
|
*/
|
|
7979
7710
|
'photo'?: string | null;
|
|
7980
7711
|
/**
|
|
7981
7712
|
*
|
|
7982
7713
|
* @type {string}
|
|
7983
|
-
* @memberof
|
|
7714
|
+
* @memberof HospitalServiceModel
|
|
7984
7715
|
*/
|
|
7985
7716
|
'photoThumbnail'?: string | null;
|
|
7986
|
-
/**
|
|
7987
|
-
*
|
|
7988
|
-
* @type {Array<MediaModel>}
|
|
7989
|
-
* @memberof HospitalServiceItemModel
|
|
7990
|
-
*/
|
|
7991
|
-
'medias'?: Array<MediaModel> | null;
|
|
7992
7717
|
/**
|
|
7993
7718
|
*
|
|
7994
7719
|
* @type {AuditableEntity}
|
|
7995
|
-
* @memberof HospitalServiceItemModel
|
|
7996
|
-
*/
|
|
7997
|
-
'auditableEntity'?: AuditableEntity;
|
|
7998
|
-
}
|
|
7999
|
-
/**
|
|
8000
|
-
*
|
|
8001
|
-
* @export
|
|
8002
|
-
* @interface HospitalServiceModel
|
|
8003
|
-
*/
|
|
8004
|
-
export interface HospitalServiceModel {
|
|
8005
|
-
/**
|
|
8006
|
-
*
|
|
8007
|
-
* @type {string}
|
|
8008
7720
|
* @memberof HospitalServiceModel
|
|
8009
7721
|
*/
|
|
8010
|
-
'
|
|
7722
|
+
'auditableEntity'?: AuditableEntity;
|
|
8011
7723
|
/**
|
|
8012
7724
|
*
|
|
8013
7725
|
* @type {string}
|
|
8014
7726
|
* @memberof HospitalServiceModel
|
|
8015
7727
|
*/
|
|
8016
|
-
'
|
|
7728
|
+
'description'?: string | null;
|
|
8017
7729
|
/**
|
|
8018
7730
|
*
|
|
8019
7731
|
* @type {string}
|
|
8020
7732
|
* @memberof HospitalServiceModel
|
|
8021
7733
|
*/
|
|
8022
|
-
'
|
|
7734
|
+
'overview'?: string | null;
|
|
8023
7735
|
/**
|
|
8024
7736
|
*
|
|
8025
7737
|
* @type {string}
|
|
8026
7738
|
* @memberof HospitalServiceModel
|
|
8027
7739
|
*/
|
|
8028
|
-
'
|
|
7740
|
+
'content'?: string | null;
|
|
8029
7741
|
/**
|
|
8030
7742
|
*
|
|
8031
7743
|
* @type {string}
|
|
@@ -8044,18 +7756,6 @@ export interface HospitalServiceModel {
|
|
|
8044
7756
|
* @memberof HospitalServiceModel
|
|
8045
7757
|
*/
|
|
8046
7758
|
'hospitalSlug'?: string | null;
|
|
8047
|
-
/**
|
|
8048
|
-
*
|
|
8049
|
-
* @type {string}
|
|
8050
|
-
* @memberof HospitalServiceModel
|
|
8051
|
-
*/
|
|
8052
|
-
'specialtyTypeId'?: string | null;
|
|
8053
|
-
/**
|
|
8054
|
-
*
|
|
8055
|
-
* @type {string}
|
|
8056
|
-
* @memberof HospitalServiceModel
|
|
8057
|
-
*/
|
|
8058
|
-
'specialtyTypeName'?: string | null;
|
|
8059
7759
|
/**
|
|
8060
7760
|
*
|
|
8061
7761
|
* @type {string}
|
|
@@ -8092,12 +7792,6 @@ export interface HospitalServiceModel {
|
|
|
8092
7792
|
* @memberof HospitalServiceModel
|
|
8093
7793
|
*/
|
|
8094
7794
|
'serviceCategoryName'?: string | null;
|
|
8095
|
-
/**
|
|
8096
|
-
*
|
|
8097
|
-
* @type {MarketingType}
|
|
8098
|
-
* @memberof HospitalServiceModel
|
|
8099
|
-
*/
|
|
8100
|
-
'marketingType'?: MarketingType;
|
|
8101
7795
|
/**
|
|
8102
7796
|
*
|
|
8103
7797
|
* @type {Procedure}
|
|
@@ -8118,58 +7812,10 @@ export interface HospitalServiceModel {
|
|
|
8118
7812
|
'maxPrice'?: number | null;
|
|
8119
7813
|
/**
|
|
8120
7814
|
*
|
|
8121
|
-
* @type {boolean}
|
|
8122
|
-
* @memberof HospitalServiceModel
|
|
8123
|
-
*/
|
|
8124
|
-
'priceReuqest'?: boolean;
|
|
8125
|
-
/**
|
|
8126
|
-
*
|
|
8127
|
-
* @type {number}
|
|
8128
|
-
* @memberof HospitalServiceModel
|
|
8129
|
-
*/
|
|
8130
|
-
'order'?: number;
|
|
8131
|
-
/**
|
|
8132
|
-
*
|
|
8133
|
-
* @type {boolean}
|
|
8134
|
-
* @memberof HospitalServiceModel
|
|
8135
|
-
*/
|
|
8136
|
-
'confirmed'?: boolean;
|
|
8137
|
-
/**
|
|
8138
|
-
*
|
|
8139
|
-
* @type {string}
|
|
8140
|
-
* @memberof HospitalServiceModel
|
|
8141
|
-
*/
|
|
8142
|
-
'photo'?: string | null;
|
|
8143
|
-
/**
|
|
8144
|
-
*
|
|
8145
|
-
* @type {string}
|
|
8146
|
-
* @memberof HospitalServiceModel
|
|
8147
|
-
*/
|
|
8148
|
-
'photoThumbnail'?: string | null;
|
|
8149
|
-
/**
|
|
8150
|
-
*
|
|
8151
|
-
* @type {Array<MediaModel>}
|
|
8152
|
-
* @memberof HospitalServiceModel
|
|
8153
|
-
*/
|
|
8154
|
-
'medias'?: Array<MediaModel> | null;
|
|
8155
|
-
/**
|
|
8156
|
-
*
|
|
8157
|
-
* @type {AuditableEntity}
|
|
8158
|
-
* @memberof HospitalServiceModel
|
|
8159
|
-
*/
|
|
8160
|
-
'auditableEntity'?: AuditableEntity;
|
|
8161
|
-
/**
|
|
8162
|
-
*
|
|
8163
|
-
* @type {string}
|
|
8164
|
-
* @memberof HospitalServiceModel
|
|
8165
|
-
*/
|
|
8166
|
-
'languageCode'?: string | null;
|
|
8167
|
-
/**
|
|
8168
|
-
*
|
|
8169
|
-
* @type {string}
|
|
7815
|
+
* @type {boolean}
|
|
8170
7816
|
* @memberof HospitalServiceModel
|
|
8171
7817
|
*/
|
|
8172
|
-
'
|
|
7818
|
+
'priceReuqest'?: boolean;
|
|
8173
7819
|
/**
|
|
8174
7820
|
*
|
|
8175
7821
|
* @type {string}
|
|
@@ -8178,10 +7824,10 @@ export interface HospitalServiceModel {
|
|
|
8178
7824
|
'customStyle'?: string | null;
|
|
8179
7825
|
/**
|
|
8180
7826
|
*
|
|
8181
|
-
* @type {Array<
|
|
7827
|
+
* @type {Array<MediaModel>}
|
|
8182
7828
|
* @memberof HospitalServiceModel
|
|
8183
7829
|
*/
|
|
8184
|
-
'
|
|
7830
|
+
'medias'?: Array<MediaModel> | null;
|
|
8185
7831
|
}
|
|
8186
7832
|
/**
|
|
8187
7833
|
*
|
|
@@ -8214,6 +7860,12 @@ export interface HospitalSimpleItemModel {
|
|
|
8214
7860
|
* @memberof HospitalSimpleItemModel
|
|
8215
7861
|
*/
|
|
8216
7862
|
'id'?: string;
|
|
7863
|
+
/**
|
|
7864
|
+
*
|
|
7865
|
+
* @type {string}
|
|
7866
|
+
* @memberof HospitalSimpleItemModel
|
|
7867
|
+
*/
|
|
7868
|
+
'languageCode'?: string | null;
|
|
8217
7869
|
/**
|
|
8218
7870
|
*
|
|
8219
7871
|
* @type {string}
|
|
@@ -8302,6 +7954,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8302
7954
|
* @memberof HospitalSpecialtyItemModel
|
|
8303
7955
|
*/
|
|
8304
7956
|
'id'?: string;
|
|
7957
|
+
/**
|
|
7958
|
+
*
|
|
7959
|
+
* @type {string}
|
|
7960
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7961
|
+
*/
|
|
7962
|
+
'languageCode'?: string | null;
|
|
8305
7963
|
/**
|
|
8306
7964
|
*
|
|
8307
7965
|
* @type {string}
|
|
@@ -8316,10 +7974,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8316
7974
|
'slug'?: string | null;
|
|
8317
7975
|
/**
|
|
8318
7976
|
*
|
|
8319
|
-
* @type {
|
|
7977
|
+
* @type {boolean}
|
|
8320
7978
|
* @memberof HospitalSpecialtyItemModel
|
|
8321
7979
|
*/
|
|
8322
|
-
'
|
|
7980
|
+
'confirmed'?: boolean;
|
|
8323
7981
|
/**
|
|
8324
7982
|
*
|
|
8325
7983
|
* @type {number}
|
|
@@ -8328,40 +7986,40 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8328
7986
|
'order'?: number;
|
|
8329
7987
|
/**
|
|
8330
7988
|
*
|
|
8331
|
-
* @type {
|
|
7989
|
+
* @type {string}
|
|
8332
7990
|
* @memberof HospitalSpecialtyItemModel
|
|
8333
7991
|
*/
|
|
8334
|
-
'
|
|
7992
|
+
'photo'?: string | null;
|
|
8335
7993
|
/**
|
|
8336
7994
|
*
|
|
8337
|
-
* @type {
|
|
7995
|
+
* @type {string}
|
|
8338
7996
|
* @memberof HospitalSpecialtyItemModel
|
|
8339
7997
|
*/
|
|
8340
|
-
'
|
|
7998
|
+
'photoThumbnail'?: string | null;
|
|
8341
7999
|
/**
|
|
8342
8000
|
*
|
|
8343
8001
|
* @type {string}
|
|
8344
8002
|
* @memberof HospitalSpecialtyItemModel
|
|
8345
8003
|
*/
|
|
8346
|
-
'
|
|
8004
|
+
'background'?: string | null;
|
|
8347
8005
|
/**
|
|
8348
8006
|
*
|
|
8349
8007
|
* @type {string}
|
|
8350
8008
|
* @memberof HospitalSpecialtyItemModel
|
|
8351
8009
|
*/
|
|
8352
|
-
'
|
|
8010
|
+
'backgroundThumbnail'?: string | null;
|
|
8353
8011
|
/**
|
|
8354
8012
|
*
|
|
8355
|
-
* @type {
|
|
8013
|
+
* @type {number}
|
|
8356
8014
|
* @memberof HospitalSpecialtyItemModel
|
|
8357
8015
|
*/
|
|
8358
|
-
'
|
|
8016
|
+
'servicesCount'?: number;
|
|
8359
8017
|
/**
|
|
8360
8018
|
*
|
|
8361
|
-
* @type {
|
|
8019
|
+
* @type {string}
|
|
8362
8020
|
* @memberof HospitalSpecialtyItemModel
|
|
8363
8021
|
*/
|
|
8364
|
-
'
|
|
8022
|
+
'specialtyId'?: string;
|
|
8365
8023
|
}
|
|
8366
8024
|
/**
|
|
8367
8025
|
*
|
|
@@ -8380,25 +8038,19 @@ export interface HospitalSpecialtyModel {
|
|
|
8380
8038
|
* @type {string}
|
|
8381
8039
|
* @memberof HospitalSpecialtyModel
|
|
8382
8040
|
*/
|
|
8383
|
-
'
|
|
8041
|
+
'languageCode'?: string | null;
|
|
8384
8042
|
/**
|
|
8385
8043
|
*
|
|
8386
8044
|
* @type {string}
|
|
8387
8045
|
* @memberof HospitalSpecialtyModel
|
|
8388
8046
|
*/
|
|
8389
|
-
'
|
|
8390
|
-
/**
|
|
8391
|
-
*
|
|
8392
|
-
* @type {MarketingType}
|
|
8393
|
-
* @memberof HospitalSpecialtyModel
|
|
8394
|
-
*/
|
|
8395
|
-
'marketingType'?: MarketingType;
|
|
8047
|
+
'name'?: string | null;
|
|
8396
8048
|
/**
|
|
8397
8049
|
*
|
|
8398
|
-
* @type {
|
|
8050
|
+
* @type {string}
|
|
8399
8051
|
* @memberof HospitalSpecialtyModel
|
|
8400
8052
|
*/
|
|
8401
|
-
'
|
|
8053
|
+
'slug'?: string | null;
|
|
8402
8054
|
/**
|
|
8403
8055
|
*
|
|
8404
8056
|
* @type {boolean}
|
|
@@ -8410,109 +8062,103 @@ export interface HospitalSpecialtyModel {
|
|
|
8410
8062
|
* @type {number}
|
|
8411
8063
|
* @memberof HospitalSpecialtyModel
|
|
8412
8064
|
*/
|
|
8413
|
-
'
|
|
8065
|
+
'order'?: number;
|
|
8414
8066
|
/**
|
|
8415
8067
|
*
|
|
8416
8068
|
* @type {string}
|
|
8417
8069
|
* @memberof HospitalSpecialtyModel
|
|
8418
8070
|
*/
|
|
8419
|
-
'
|
|
8071
|
+
'photo'?: string | null;
|
|
8420
8072
|
/**
|
|
8421
8073
|
*
|
|
8422
8074
|
* @type {string}
|
|
8423
8075
|
* @memberof HospitalSpecialtyModel
|
|
8424
8076
|
*/
|
|
8425
|
-
'
|
|
8077
|
+
'photoThumbnail'?: string | null;
|
|
8426
8078
|
/**
|
|
8427
8079
|
*
|
|
8428
8080
|
* @type {string}
|
|
8429
8081
|
* @memberof HospitalSpecialtyModel
|
|
8430
8082
|
*/
|
|
8431
|
-
'
|
|
8432
|
-
/**
|
|
8433
|
-
*
|
|
8434
|
-
* @type {AuditableEntity}
|
|
8435
|
-
* @memberof HospitalSpecialtyModel
|
|
8436
|
-
*/
|
|
8437
|
-
'auditableEntity'?: AuditableEntity;
|
|
8083
|
+
'background'?: string | null;
|
|
8438
8084
|
/**
|
|
8439
8085
|
*
|
|
8440
8086
|
* @type {string}
|
|
8441
8087
|
* @memberof HospitalSpecialtyModel
|
|
8442
8088
|
*/
|
|
8443
|
-
'
|
|
8089
|
+
'backgroundThumbnail'?: string | null;
|
|
8444
8090
|
/**
|
|
8445
8091
|
*
|
|
8446
|
-
* @type {
|
|
8092
|
+
* @type {number}
|
|
8447
8093
|
* @memberof HospitalSpecialtyModel
|
|
8448
8094
|
*/
|
|
8449
|
-
'
|
|
8095
|
+
'servicesCount'?: number;
|
|
8450
8096
|
/**
|
|
8451
8097
|
*
|
|
8452
8098
|
* @type {string}
|
|
8453
8099
|
* @memberof HospitalSpecialtyModel
|
|
8454
8100
|
*/
|
|
8455
|
-
'
|
|
8101
|
+
'specialtyId'?: string;
|
|
8456
8102
|
/**
|
|
8457
8103
|
*
|
|
8458
8104
|
* @type {string}
|
|
8459
8105
|
* @memberof HospitalSpecialtyModel
|
|
8460
8106
|
*/
|
|
8461
|
-
'
|
|
8107
|
+
'description'?: string | null;
|
|
8462
8108
|
/**
|
|
8463
8109
|
*
|
|
8464
8110
|
* @type {string}
|
|
8465
8111
|
* @memberof HospitalSpecialtyModel
|
|
8466
8112
|
*/
|
|
8467
|
-
'
|
|
8113
|
+
'overview'?: string | null;
|
|
8468
8114
|
/**
|
|
8469
8115
|
*
|
|
8470
8116
|
* @type {string}
|
|
8471
8117
|
* @memberof HospitalSpecialtyModel
|
|
8472
8118
|
*/
|
|
8473
|
-
'
|
|
8119
|
+
'content'?: string | null;
|
|
8474
8120
|
/**
|
|
8475
8121
|
*
|
|
8476
8122
|
* @type {string}
|
|
8477
8123
|
* @memberof HospitalSpecialtyModel
|
|
8478
8124
|
*/
|
|
8479
|
-
'
|
|
8125
|
+
'hospitalId'?: string;
|
|
8480
8126
|
/**
|
|
8481
8127
|
*
|
|
8482
8128
|
* @type {string}
|
|
8483
8129
|
* @memberof HospitalSpecialtyModel
|
|
8484
8130
|
*/
|
|
8485
|
-
'
|
|
8131
|
+
'hospitalName'?: string | null;
|
|
8486
8132
|
/**
|
|
8487
8133
|
*
|
|
8488
8134
|
* @type {string}
|
|
8489
8135
|
* @memberof HospitalSpecialtyModel
|
|
8490
8136
|
*/
|
|
8491
|
-
'
|
|
8137
|
+
'hospitalSlug'?: string | null;
|
|
8492
8138
|
/**
|
|
8493
8139
|
*
|
|
8494
8140
|
* @type {string}
|
|
8495
8141
|
* @memberof HospitalSpecialtyModel
|
|
8496
8142
|
*/
|
|
8497
|
-
'
|
|
8143
|
+
'specialtyName'?: string | null;
|
|
8498
8144
|
/**
|
|
8499
8145
|
*
|
|
8500
8146
|
* @type {string}
|
|
8501
8147
|
* @memberof HospitalSpecialtyModel
|
|
8502
8148
|
*/
|
|
8503
|
-
'
|
|
8149
|
+
'specialtyTypeId'?: string;
|
|
8504
8150
|
/**
|
|
8505
8151
|
*
|
|
8506
8152
|
* @type {string}
|
|
8507
8153
|
* @memberof HospitalSpecialtyModel
|
|
8508
8154
|
*/
|
|
8509
|
-
'
|
|
8155
|
+
'customStyle'?: string | null;
|
|
8510
8156
|
/**
|
|
8511
8157
|
*
|
|
8512
|
-
* @type {
|
|
8158
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8513
8159
|
* @memberof HospitalSpecialtyModel
|
|
8514
8160
|
*/
|
|
8515
|
-
'
|
|
8161
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8516
8162
|
/**
|
|
8517
8163
|
*
|
|
8518
8164
|
* @type {Array<MediaModel>}
|
|
@@ -8537,19 +8183,19 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8537
8183
|
* @type {string}
|
|
8538
8184
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8539
8185
|
*/
|
|
8540
|
-
'
|
|
8186
|
+
'languageCode'?: string | null;
|
|
8541
8187
|
/**
|
|
8542
8188
|
*
|
|
8543
8189
|
* @type {string}
|
|
8544
8190
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8545
8191
|
*/
|
|
8546
|
-
'
|
|
8192
|
+
'name'?: string | null;
|
|
8547
8193
|
/**
|
|
8548
8194
|
*
|
|
8549
|
-
* @type {
|
|
8195
|
+
* @type {string}
|
|
8550
8196
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8551
8197
|
*/
|
|
8552
|
-
'
|
|
8198
|
+
'slug'?: string | null;
|
|
8553
8199
|
/**
|
|
8554
8200
|
*
|
|
8555
8201
|
* @type {boolean}
|
|
@@ -8561,25 +8207,7 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8561
8207
|
* @type {number}
|
|
8562
8208
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8563
8209
|
*/
|
|
8564
|
-
'
|
|
8565
|
-
/**
|
|
8566
|
-
*
|
|
8567
|
-
* @type {string}
|
|
8568
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
8569
|
-
*/
|
|
8570
|
-
'specialtyId'?: string;
|
|
8571
|
-
/**
|
|
8572
|
-
*
|
|
8573
|
-
* @type {string}
|
|
8574
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
8575
|
-
*/
|
|
8576
|
-
'specialtyName'?: string | null;
|
|
8577
|
-
/**
|
|
8578
|
-
*
|
|
8579
|
-
* @type {string}
|
|
8580
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
8581
|
-
*/
|
|
8582
|
-
'specialtySlug'?: string | null;
|
|
8210
|
+
'order'?: number;
|
|
8583
8211
|
}
|
|
8584
8212
|
/**
|
|
8585
8213
|
*
|
|
@@ -8891,12 +8519,6 @@ export interface ManagerItemModel {
|
|
|
8891
8519
|
* @memberof ManagerItemModel
|
|
8892
8520
|
*/
|
|
8893
8521
|
'firstName'?: string | null;
|
|
8894
|
-
/**
|
|
8895
|
-
*
|
|
8896
|
-
* @type {string}
|
|
8897
|
-
* @memberof ManagerItemModel
|
|
8898
|
-
*/
|
|
8899
|
-
'middleName'?: string | null;
|
|
8900
8522
|
/**
|
|
8901
8523
|
*
|
|
8902
8524
|
* @type {string}
|
|
@@ -8908,13 +8530,7 @@ export interface ManagerItemModel {
|
|
|
8908
8530
|
* @type {string}
|
|
8909
8531
|
* @memberof ManagerItemModel
|
|
8910
8532
|
*/
|
|
8911
|
-
'
|
|
8912
|
-
/**
|
|
8913
|
-
*
|
|
8914
|
-
* @type {string}
|
|
8915
|
-
* @memberof ManagerItemModel
|
|
8916
|
-
*/
|
|
8917
|
-
'slug'?: string | null;
|
|
8533
|
+
'fullname'?: string | null;
|
|
8918
8534
|
/**
|
|
8919
8535
|
*
|
|
8920
8536
|
* @type {string}
|
|
@@ -8974,19 +8590,31 @@ export interface ManagerItemModel {
|
|
|
8974
8590
|
* @type {string}
|
|
8975
8591
|
* @memberof ManagerItemModel
|
|
8976
8592
|
*/
|
|
8977
|
-
'
|
|
8593
|
+
'userType'?: string | null;
|
|
8594
|
+
/**
|
|
8595
|
+
*
|
|
8596
|
+
* @type {Array<UserLanguageModel>}
|
|
8597
|
+
* @memberof ManagerItemModel
|
|
8598
|
+
*/
|
|
8599
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
8600
|
+
/**
|
|
8601
|
+
*
|
|
8602
|
+
* @type {Array<UserLocationModel>}
|
|
8603
|
+
* @memberof ManagerItemModel
|
|
8604
|
+
*/
|
|
8605
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
8978
8606
|
/**
|
|
8979
8607
|
*
|
|
8980
8608
|
* @type {string}
|
|
8981
8609
|
* @memberof ManagerItemModel
|
|
8982
8610
|
*/
|
|
8983
|
-
'
|
|
8611
|
+
'hospitalId'?: string | null;
|
|
8984
8612
|
/**
|
|
8985
8613
|
*
|
|
8986
8614
|
* @type {string}
|
|
8987
8615
|
* @memberof ManagerItemModel
|
|
8988
8616
|
*/
|
|
8989
|
-
'
|
|
8617
|
+
'hospitalName'?: string | null;
|
|
8990
8618
|
/**
|
|
8991
8619
|
*
|
|
8992
8620
|
* @type {number}
|
|
@@ -9018,12 +8646,6 @@ export interface ManagerModel {
|
|
|
9018
8646
|
* @memberof ManagerModel
|
|
9019
8647
|
*/
|
|
9020
8648
|
'firstName'?: string | null;
|
|
9021
|
-
/**
|
|
9022
|
-
*
|
|
9023
|
-
* @type {string}
|
|
9024
|
-
* @memberof ManagerModel
|
|
9025
|
-
*/
|
|
9026
|
-
'middleName'?: string | null;
|
|
9027
8649
|
/**
|
|
9028
8650
|
*
|
|
9029
8651
|
* @type {string}
|
|
@@ -9035,13 +8657,7 @@ export interface ManagerModel {
|
|
|
9035
8657
|
* @type {string}
|
|
9036
8658
|
* @memberof ManagerModel
|
|
9037
8659
|
*/
|
|
9038
|
-
'
|
|
9039
|
-
/**
|
|
9040
|
-
*
|
|
9041
|
-
* @type {string}
|
|
9042
|
-
* @memberof ManagerModel
|
|
9043
|
-
*/
|
|
9044
|
-
'slug'?: string | null;
|
|
8660
|
+
'fullname'?: string | null;
|
|
9045
8661
|
/**
|
|
9046
8662
|
*
|
|
9047
8663
|
* @type {string}
|
|
@@ -9126,12 +8742,6 @@ export interface ManagerModel {
|
|
|
9126
8742
|
* @memberof ManagerModel
|
|
9127
8743
|
*/
|
|
9128
8744
|
'hospitalName'?: string | null;
|
|
9129
|
-
/**
|
|
9130
|
-
*
|
|
9131
|
-
* @type {string}
|
|
9132
|
-
* @memberof ManagerModel
|
|
9133
|
-
*/
|
|
9134
|
-
'hospitalSlug'?: string | null;
|
|
9135
8745
|
/**
|
|
9136
8746
|
*
|
|
9137
8747
|
* @type {number}
|
|
@@ -9711,12 +9321,6 @@ export interface PatientItemModel {
|
|
|
9711
9321
|
* @memberof PatientItemModel
|
|
9712
9322
|
*/
|
|
9713
9323
|
'firstName'?: string | null;
|
|
9714
|
-
/**
|
|
9715
|
-
*
|
|
9716
|
-
* @type {string}
|
|
9717
|
-
* @memberof PatientItemModel
|
|
9718
|
-
*/
|
|
9719
|
-
'middleName'?: string | null;
|
|
9720
9324
|
/**
|
|
9721
9325
|
*
|
|
9722
9326
|
* @type {string}
|
|
@@ -9728,13 +9332,7 @@ export interface PatientItemModel {
|
|
|
9728
9332
|
* @type {string}
|
|
9729
9333
|
* @memberof PatientItemModel
|
|
9730
9334
|
*/
|
|
9731
|
-
'
|
|
9732
|
-
/**
|
|
9733
|
-
*
|
|
9734
|
-
* @type {string}
|
|
9735
|
-
* @memberof PatientItemModel
|
|
9736
|
-
*/
|
|
9737
|
-
'slug'?: string | null;
|
|
9335
|
+
'fullname'?: string | null;
|
|
9738
9336
|
/**
|
|
9739
9337
|
*
|
|
9740
9338
|
* @type {string}
|
|
@@ -9820,12 +9418,6 @@ export interface PatientModel {
|
|
|
9820
9418
|
* @memberof PatientModel
|
|
9821
9419
|
*/
|
|
9822
9420
|
'firstName'?: string | null;
|
|
9823
|
-
/**
|
|
9824
|
-
*
|
|
9825
|
-
* @type {string}
|
|
9826
|
-
* @memberof PatientModel
|
|
9827
|
-
*/
|
|
9828
|
-
'middleName'?: string | null;
|
|
9829
9421
|
/**
|
|
9830
9422
|
*
|
|
9831
9423
|
* @type {string}
|
|
@@ -9837,13 +9429,7 @@ export interface PatientModel {
|
|
|
9837
9429
|
* @type {string}
|
|
9838
9430
|
* @memberof PatientModel
|
|
9839
9431
|
*/
|
|
9840
|
-
'
|
|
9841
|
-
/**
|
|
9842
|
-
*
|
|
9843
|
-
* @type {string}
|
|
9844
|
-
* @memberof PatientModel
|
|
9845
|
-
*/
|
|
9846
|
-
'slug'?: string | null;
|
|
9432
|
+
'fullname'?: string | null;
|
|
9847
9433
|
/**
|
|
9848
9434
|
*
|
|
9849
9435
|
* @type {string}
|
|
@@ -10574,31 +10160,6 @@ export interface ServiceReviewsModel {
|
|
|
10574
10160
|
*/
|
|
10575
10161
|
'metaData'?: PagedListMetaData;
|
|
10576
10162
|
}
|
|
10577
|
-
/**
|
|
10578
|
-
*
|
|
10579
|
-
* @export
|
|
10580
|
-
* @interface SnsHandle
|
|
10581
|
-
*/
|
|
10582
|
-
export interface SnsHandle {
|
|
10583
|
-
/**
|
|
10584
|
-
*
|
|
10585
|
-
* @type {string}
|
|
10586
|
-
* @memberof SnsHandle
|
|
10587
|
-
*/
|
|
10588
|
-
'id'?: string;
|
|
10589
|
-
/**
|
|
10590
|
-
*
|
|
10591
|
-
* @type {SnsType}
|
|
10592
|
-
* @memberof SnsHandle
|
|
10593
|
-
*/
|
|
10594
|
-
'snsType'?: SnsType;
|
|
10595
|
-
/**
|
|
10596
|
-
*
|
|
10597
|
-
* @type {string}
|
|
10598
|
-
* @memberof SnsHandle
|
|
10599
|
-
*/
|
|
10600
|
-
'handle'?: string | null;
|
|
10601
|
-
}
|
|
10602
10163
|
/**
|
|
10603
10164
|
*
|
|
10604
10165
|
* @export
|
|
@@ -10732,31 +10293,25 @@ export interface SpecialtyItemModel {
|
|
|
10732
10293
|
* @type {string}
|
|
10733
10294
|
* @memberof SpecialtyItemModel
|
|
10734
10295
|
*/
|
|
10735
|
-
'
|
|
10296
|
+
'languageCode'?: string | null;
|
|
10736
10297
|
/**
|
|
10737
10298
|
*
|
|
10738
10299
|
* @type {string}
|
|
10739
10300
|
* @memberof SpecialtyItemModel
|
|
10740
10301
|
*/
|
|
10741
|
-
'
|
|
10302
|
+
'name'?: string | null;
|
|
10742
10303
|
/**
|
|
10743
10304
|
*
|
|
10744
10305
|
* @type {string}
|
|
10745
10306
|
* @memberof SpecialtyItemModel
|
|
10746
10307
|
*/
|
|
10747
|
-
'
|
|
10748
|
-
/**
|
|
10749
|
-
*
|
|
10750
|
-
* @type {number}
|
|
10751
|
-
* @memberof SpecialtyItemModel
|
|
10752
|
-
*/
|
|
10753
|
-
'hospitalSpecialtyCount'?: number;
|
|
10308
|
+
'slug'?: string | null;
|
|
10754
10309
|
/**
|
|
10755
10310
|
*
|
|
10756
|
-
* @type {
|
|
10311
|
+
* @type {boolean}
|
|
10757
10312
|
* @memberof SpecialtyItemModel
|
|
10758
10313
|
*/
|
|
10759
|
-
'
|
|
10314
|
+
'confirmed'?: boolean;
|
|
10760
10315
|
/**
|
|
10761
10316
|
*
|
|
10762
10317
|
* @type {string}
|
|
@@ -10771,22 +10326,16 @@ export interface SpecialtyItemModel {
|
|
|
10771
10326
|
'specialtyTypeName'?: string | null;
|
|
10772
10327
|
/**
|
|
10773
10328
|
*
|
|
10774
|
-
* @type {
|
|
10329
|
+
* @type {Array<MediaModel>}
|
|
10775
10330
|
* @memberof SpecialtyItemModel
|
|
10776
10331
|
*/
|
|
10777
|
-
'
|
|
10332
|
+
'medias'?: Array<MediaModel> | null;
|
|
10778
10333
|
/**
|
|
10779
10334
|
*
|
|
10780
10335
|
* @type {AuditableEntity}
|
|
10781
10336
|
* @memberof SpecialtyItemModel
|
|
10782
10337
|
*/
|
|
10783
10338
|
'auditableEntity'?: AuditableEntity;
|
|
10784
|
-
/**
|
|
10785
|
-
*
|
|
10786
|
-
* @type {Array<MediaModel>}
|
|
10787
|
-
* @memberof SpecialtyItemModel
|
|
10788
|
-
*/
|
|
10789
|
-
'medias'?: Array<MediaModel> | null;
|
|
10790
10339
|
}
|
|
10791
10340
|
/**
|
|
10792
10341
|
*
|
|
@@ -10800,6 +10349,12 @@ export interface SpecialtyItemSimpleModel {
|
|
|
10800
10349
|
* @memberof SpecialtyItemSimpleModel
|
|
10801
10350
|
*/
|
|
10802
10351
|
'id'?: string;
|
|
10352
|
+
/**
|
|
10353
|
+
*
|
|
10354
|
+
* @type {string}
|
|
10355
|
+
* @memberof SpecialtyItemSimpleModel
|
|
10356
|
+
*/
|
|
10357
|
+
'languageCode'?: string | null;
|
|
10803
10358
|
/**
|
|
10804
10359
|
*
|
|
10805
10360
|
* @type {string}
|
|
@@ -10814,16 +10369,16 @@ export interface SpecialtyItemSimpleModel {
|
|
|
10814
10369
|
'slug'?: string | null;
|
|
10815
10370
|
/**
|
|
10816
10371
|
*
|
|
10817
|
-
* @type {
|
|
10372
|
+
* @type {boolean}
|
|
10818
10373
|
* @memberof SpecialtyItemSimpleModel
|
|
10819
10374
|
*/
|
|
10820
|
-
'
|
|
10375
|
+
'confirmed'?: boolean;
|
|
10821
10376
|
/**
|
|
10822
10377
|
*
|
|
10823
|
-
* @type {
|
|
10378
|
+
* @type {string}
|
|
10824
10379
|
* @memberof SpecialtyItemSimpleModel
|
|
10825
10380
|
*/
|
|
10826
|
-
'
|
|
10381
|
+
'specialtyTypeId'?: string;
|
|
10827
10382
|
}
|
|
10828
10383
|
/**
|
|
10829
10384
|
*
|
|
@@ -10842,31 +10397,25 @@ export interface SpecialtyModel {
|
|
|
10842
10397
|
* @type {string}
|
|
10843
10398
|
* @memberof SpecialtyModel
|
|
10844
10399
|
*/
|
|
10845
|
-
'
|
|
10400
|
+
'languageCode'?: string | null;
|
|
10846
10401
|
/**
|
|
10847
10402
|
*
|
|
10848
10403
|
* @type {string}
|
|
10849
10404
|
* @memberof SpecialtyModel
|
|
10850
10405
|
*/
|
|
10851
|
-
'
|
|
10406
|
+
'name'?: string | null;
|
|
10852
10407
|
/**
|
|
10853
10408
|
*
|
|
10854
10409
|
* @type {string}
|
|
10855
10410
|
* @memberof SpecialtyModel
|
|
10856
10411
|
*/
|
|
10857
|
-
'
|
|
10858
|
-
/**
|
|
10859
|
-
*
|
|
10860
|
-
* @type {number}
|
|
10861
|
-
* @memberof SpecialtyModel
|
|
10862
|
-
*/
|
|
10863
|
-
'hospitalSpecialtyCount'?: number;
|
|
10412
|
+
'slug'?: string | null;
|
|
10864
10413
|
/**
|
|
10865
10414
|
*
|
|
10866
|
-
* @type {
|
|
10415
|
+
* @type {boolean}
|
|
10867
10416
|
* @memberof SpecialtyModel
|
|
10868
10417
|
*/
|
|
10869
|
-
'
|
|
10418
|
+
'confirmed'?: boolean;
|
|
10870
10419
|
/**
|
|
10871
10420
|
*
|
|
10872
10421
|
* @type {string}
|
|
@@ -10881,10 +10430,10 @@ export interface SpecialtyModel {
|
|
|
10881
10430
|
'specialtyTypeName'?: string | null;
|
|
10882
10431
|
/**
|
|
10883
10432
|
*
|
|
10884
|
-
* @type {
|
|
10433
|
+
* @type {Array<MediaModel>}
|
|
10885
10434
|
* @memberof SpecialtyModel
|
|
10886
10435
|
*/
|
|
10887
|
-
'
|
|
10436
|
+
'medias'?: Array<MediaModel> | null;
|
|
10888
10437
|
/**
|
|
10889
10438
|
*
|
|
10890
10439
|
* @type {AuditableEntity}
|
|
@@ -10893,28 +10442,22 @@ export interface SpecialtyModel {
|
|
|
10893
10442
|
'auditableEntity'?: AuditableEntity;
|
|
10894
10443
|
/**
|
|
10895
10444
|
*
|
|
10896
|
-
* @type {
|
|
10445
|
+
* @type {string}
|
|
10897
10446
|
* @memberof SpecialtyModel
|
|
10898
10447
|
*/
|
|
10899
|
-
'
|
|
10448
|
+
'description'?: string | null;
|
|
10900
10449
|
/**
|
|
10901
10450
|
*
|
|
10902
10451
|
* @type {string}
|
|
10903
10452
|
* @memberof SpecialtyModel
|
|
10904
10453
|
*/
|
|
10905
|
-
'
|
|
10454
|
+
'overview'?: string | null;
|
|
10906
10455
|
/**
|
|
10907
10456
|
*
|
|
10908
10457
|
* @type {string}
|
|
10909
10458
|
* @memberof SpecialtyModel
|
|
10910
10459
|
*/
|
|
10911
10460
|
'content'?: string | null;
|
|
10912
|
-
/**
|
|
10913
|
-
*
|
|
10914
|
-
* @type {Array<LocalizedUrlModel>}
|
|
10915
|
-
* @memberof SpecialtyModel
|
|
10916
|
-
*/
|
|
10917
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
10918
10461
|
}
|
|
10919
10462
|
/**
|
|
10920
10463
|
*
|
|
@@ -10933,55 +10476,43 @@ export interface SpecialtyTypeItemModel {
|
|
|
10933
10476
|
* @type {string}
|
|
10934
10477
|
* @memberof SpecialtyTypeItemModel
|
|
10935
10478
|
*/
|
|
10936
|
-
'
|
|
10479
|
+
'languageCode'?: string | null;
|
|
10937
10480
|
/**
|
|
10938
10481
|
*
|
|
10939
10482
|
* @type {string}
|
|
10940
10483
|
* @memberof SpecialtyTypeItemModel
|
|
10941
10484
|
*/
|
|
10942
|
-
'
|
|
10485
|
+
'name'?: string | null;
|
|
10943
10486
|
/**
|
|
10944
10487
|
*
|
|
10945
10488
|
* @type {string}
|
|
10946
10489
|
* @memberof SpecialtyTypeItemModel
|
|
10947
10490
|
*/
|
|
10948
|
-
'
|
|
10491
|
+
'slug'?: string | null;
|
|
10949
10492
|
/**
|
|
10950
10493
|
*
|
|
10951
|
-
* @type {
|
|
10494
|
+
* @type {boolean}
|
|
10952
10495
|
* @memberof SpecialtyTypeItemModel
|
|
10953
10496
|
*/
|
|
10954
|
-
'
|
|
10497
|
+
'confirmed'?: boolean;
|
|
10955
10498
|
/**
|
|
10956
10499
|
*
|
|
10957
|
-
* @type {
|
|
10500
|
+
* @type {string}
|
|
10958
10501
|
* @memberof SpecialtyTypeItemModel
|
|
10959
10502
|
*/
|
|
10960
|
-
'
|
|
10503
|
+
'description'?: string | null;
|
|
10961
10504
|
/**
|
|
10962
10505
|
*
|
|
10963
|
-
* @type {
|
|
10506
|
+
* @type {MarketingType}
|
|
10964
10507
|
* @memberof SpecialtyTypeItemModel
|
|
10965
10508
|
*/
|
|
10966
|
-
'
|
|
10509
|
+
'marketingType'?: MarketingType;
|
|
10967
10510
|
/**
|
|
10968
10511
|
*
|
|
10969
10512
|
* @type {number}
|
|
10970
10513
|
* @memberof SpecialtyTypeItemModel
|
|
10971
10514
|
*/
|
|
10972
|
-
'
|
|
10973
|
-
/**
|
|
10974
|
-
*
|
|
10975
|
-
* @type {Date}
|
|
10976
|
-
* @memberof SpecialtyTypeItemModel
|
|
10977
|
-
*/
|
|
10978
|
-
'created'?: Date;
|
|
10979
|
-
/**
|
|
10980
|
-
*
|
|
10981
|
-
* @type {boolean}
|
|
10982
|
-
* @memberof SpecialtyTypeItemModel
|
|
10983
|
-
*/
|
|
10984
|
-
'confirmed'?: boolean;
|
|
10515
|
+
'specialtiesCount'?: number;
|
|
10985
10516
|
/**
|
|
10986
10517
|
*
|
|
10987
10518
|
* @type {Array<MediaModel>}
|
|
@@ -11012,55 +10543,43 @@ export interface SpecialtyTypeModel {
|
|
|
11012
10543
|
* @type {string}
|
|
11013
10544
|
* @memberof SpecialtyTypeModel
|
|
11014
10545
|
*/
|
|
11015
|
-
'
|
|
10546
|
+
'languageCode'?: string | null;
|
|
11016
10547
|
/**
|
|
11017
10548
|
*
|
|
11018
10549
|
* @type {string}
|
|
11019
10550
|
* @memberof SpecialtyTypeModel
|
|
11020
10551
|
*/
|
|
11021
|
-
'
|
|
10552
|
+
'name'?: string | null;
|
|
11022
10553
|
/**
|
|
11023
10554
|
*
|
|
11024
10555
|
* @type {string}
|
|
11025
10556
|
* @memberof SpecialtyTypeModel
|
|
11026
10557
|
*/
|
|
11027
|
-
'
|
|
10558
|
+
'slug'?: string | null;
|
|
11028
10559
|
/**
|
|
11029
10560
|
*
|
|
11030
|
-
* @type {
|
|
10561
|
+
* @type {boolean}
|
|
11031
10562
|
* @memberof SpecialtyTypeModel
|
|
11032
10563
|
*/
|
|
11033
|
-
'
|
|
10564
|
+
'confirmed'?: boolean;
|
|
11034
10565
|
/**
|
|
11035
10566
|
*
|
|
11036
|
-
* @type {
|
|
10567
|
+
* @type {string}
|
|
11037
10568
|
* @memberof SpecialtyTypeModel
|
|
11038
10569
|
*/
|
|
11039
|
-
'
|
|
10570
|
+
'description'?: string | null;
|
|
11040
10571
|
/**
|
|
11041
10572
|
*
|
|
11042
|
-
* @type {
|
|
10573
|
+
* @type {MarketingType}
|
|
11043
10574
|
* @memberof SpecialtyTypeModel
|
|
11044
10575
|
*/
|
|
11045
|
-
'
|
|
10576
|
+
'marketingType'?: MarketingType;
|
|
11046
10577
|
/**
|
|
11047
10578
|
*
|
|
11048
10579
|
* @type {number}
|
|
11049
10580
|
* @memberof SpecialtyTypeModel
|
|
11050
10581
|
*/
|
|
11051
|
-
'
|
|
11052
|
-
/**
|
|
11053
|
-
*
|
|
11054
|
-
* @type {Date}
|
|
11055
|
-
* @memberof SpecialtyTypeModel
|
|
11056
|
-
*/
|
|
11057
|
-
'created'?: Date;
|
|
11058
|
-
/**
|
|
11059
|
-
*
|
|
11060
|
-
* @type {boolean}
|
|
11061
|
-
* @memberof SpecialtyTypeModel
|
|
11062
|
-
*/
|
|
11063
|
-
'confirmed'?: boolean;
|
|
10582
|
+
'specialtiesCount'?: number;
|
|
11064
10583
|
/**
|
|
11065
10584
|
*
|
|
11066
10585
|
* @type {Array<MediaModel>}
|
|
@@ -11078,19 +10597,13 @@ export interface SpecialtyTypeModel {
|
|
|
11078
10597
|
* @type {string}
|
|
11079
10598
|
* @memberof SpecialtyTypeModel
|
|
11080
10599
|
*/
|
|
11081
|
-
'
|
|
10600
|
+
'overview'?: string | null;
|
|
11082
10601
|
/**
|
|
11083
10602
|
*
|
|
11084
10603
|
* @type {string}
|
|
11085
10604
|
* @memberof SpecialtyTypeModel
|
|
11086
10605
|
*/
|
|
11087
10606
|
'content'?: string | null;
|
|
11088
|
-
/**
|
|
11089
|
-
*
|
|
11090
|
-
* @type {Array<LocalizedUrlModel>}
|
|
11091
|
-
* @memberof SpecialtyTypeModel
|
|
11092
|
-
*/
|
|
11093
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
11094
10607
|
}
|
|
11095
10608
|
/**
|
|
11096
10609
|
*
|
|
@@ -11104,6 +10617,12 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
11104
10617
|
* @memberof SpecialtyTypeSimpleItemModel
|
|
11105
10618
|
*/
|
|
11106
10619
|
'id'?: string;
|
|
10620
|
+
/**
|
|
10621
|
+
*
|
|
10622
|
+
* @type {string}
|
|
10623
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
10624
|
+
*/
|
|
10625
|
+
'languageCode'?: string | null;
|
|
11107
10626
|
/**
|
|
11108
10627
|
*
|
|
11109
10628
|
* @type {string}
|
|
@@ -11690,24 +11209,12 @@ export interface UpdateCHAdminCommand {
|
|
|
11690
11209
|
* @memberof UpdateCHAdminCommand
|
|
11691
11210
|
*/
|
|
11692
11211
|
'firstName'?: string | null;
|
|
11693
|
-
/**
|
|
11694
|
-
*
|
|
11695
|
-
* @type {string}
|
|
11696
|
-
* @memberof UpdateCHAdminCommand
|
|
11697
|
-
*/
|
|
11698
|
-
'middleName'?: string | null;
|
|
11699
11212
|
/**
|
|
11700
11213
|
*
|
|
11701
11214
|
* @type {string}
|
|
11702
11215
|
* @memberof UpdateCHAdminCommand
|
|
11703
11216
|
*/
|
|
11704
11217
|
'lastName'?: string | null;
|
|
11705
|
-
/**
|
|
11706
|
-
*
|
|
11707
|
-
* @type {string}
|
|
11708
|
-
* @memberof UpdateCHAdminCommand
|
|
11709
|
-
*/
|
|
11710
|
-
'slug'?: string | null;
|
|
11711
11218
|
/**
|
|
11712
11219
|
*
|
|
11713
11220
|
* @type {string}
|
|
@@ -11769,24 +11276,12 @@ export interface UpdateCHManagerCommand {
|
|
|
11769
11276
|
* @memberof UpdateCHManagerCommand
|
|
11770
11277
|
*/
|
|
11771
11278
|
'firstName'?: string | null;
|
|
11772
|
-
/**
|
|
11773
|
-
*
|
|
11774
|
-
* @type {string}
|
|
11775
|
-
* @memberof UpdateCHManagerCommand
|
|
11776
|
-
*/
|
|
11777
|
-
'middleName'?: string | null;
|
|
11778
11279
|
/**
|
|
11779
11280
|
*
|
|
11780
11281
|
* @type {string}
|
|
11781
11282
|
* @memberof UpdateCHManagerCommand
|
|
11782
11283
|
*/
|
|
11783
11284
|
'lastName'?: string | null;
|
|
11784
|
-
/**
|
|
11785
|
-
*
|
|
11786
|
-
* @type {string}
|
|
11787
|
-
* @memberof UpdateCHManagerCommand
|
|
11788
|
-
*/
|
|
11789
|
-
'slug'?: string | null;
|
|
11790
11285
|
/**
|
|
11791
11286
|
*
|
|
11792
11287
|
* @type {string}
|
|
@@ -12181,36 +11676,12 @@ export interface UpdateDoctorCommand {
|
|
|
12181
11676
|
* @memberof UpdateDoctorCommand
|
|
12182
11677
|
*/
|
|
12183
11678
|
'firstName'?: string | null;
|
|
12184
|
-
/**
|
|
12185
|
-
*
|
|
12186
|
-
* @type {string}
|
|
12187
|
-
* @memberof UpdateDoctorCommand
|
|
12188
|
-
*/
|
|
12189
|
-
'middleName'?: string | null;
|
|
12190
11679
|
/**
|
|
12191
11680
|
*
|
|
12192
11681
|
* @type {string}
|
|
12193
11682
|
* @memberof UpdateDoctorCommand
|
|
12194
11683
|
*/
|
|
12195
11684
|
'lastName'?: string | null;
|
|
12196
|
-
/**
|
|
12197
|
-
*
|
|
12198
|
-
* @type {string}
|
|
12199
|
-
* @memberof UpdateDoctorCommand
|
|
12200
|
-
*/
|
|
12201
|
-
'description'?: string | null;
|
|
12202
|
-
/**
|
|
12203
|
-
*
|
|
12204
|
-
* @type {string}
|
|
12205
|
-
* @memberof UpdateDoctorCommand
|
|
12206
|
-
*/
|
|
12207
|
-
'overview'?: string | null;
|
|
12208
|
-
/**
|
|
12209
|
-
*
|
|
12210
|
-
* @type {string}
|
|
12211
|
-
* @memberof UpdateDoctorCommand
|
|
12212
|
-
*/
|
|
12213
|
-
'content'?: string | null;
|
|
12214
11685
|
/**
|
|
12215
11686
|
*
|
|
12216
11687
|
* @type {string}
|
|
@@ -12253,6 +11724,12 @@ export interface UpdateDoctorCommand {
|
|
|
12253
11724
|
* @memberof UpdateDoctorCommand
|
|
12254
11725
|
*/
|
|
12255
11726
|
'startPracticeDate'?: Date | null;
|
|
11727
|
+
/**
|
|
11728
|
+
*
|
|
11729
|
+
* @type {string}
|
|
11730
|
+
* @memberof UpdateDoctorCommand
|
|
11731
|
+
*/
|
|
11732
|
+
'overview'?: string | null;
|
|
12256
11733
|
/**
|
|
12257
11734
|
*
|
|
12258
11735
|
* @type {boolean}
|
|
@@ -12271,6 +11748,12 @@ export interface UpdateDoctorCommand {
|
|
|
12271
11748
|
* @memberof UpdateDoctorCommand
|
|
12272
11749
|
*/
|
|
12273
11750
|
'timeZone'?: string | null;
|
|
11751
|
+
/**
|
|
11752
|
+
*
|
|
11753
|
+
* @type {string}
|
|
11754
|
+
* @memberof UpdateDoctorCommand
|
|
11755
|
+
*/
|
|
11756
|
+
'hospitalId'?: string | null;
|
|
12274
11757
|
/**
|
|
12275
11758
|
*
|
|
12276
11759
|
* @type {string}
|
|
@@ -13013,24 +12496,12 @@ export interface UpdateManagerCommand {
|
|
|
13013
12496
|
* @memberof UpdateManagerCommand
|
|
13014
12497
|
*/
|
|
13015
12498
|
'firstName'?: string | null;
|
|
13016
|
-
/**
|
|
13017
|
-
*
|
|
13018
|
-
* @type {string}
|
|
13019
|
-
* @memberof UpdateManagerCommand
|
|
13020
|
-
*/
|
|
13021
|
-
'middleName'?: string | null;
|
|
13022
12499
|
/**
|
|
13023
12500
|
*
|
|
13024
12501
|
* @type {string}
|
|
13025
12502
|
* @memberof UpdateManagerCommand
|
|
13026
12503
|
*/
|
|
13027
12504
|
'lastName'?: string | null;
|
|
13028
|
-
/**
|
|
13029
|
-
*
|
|
13030
|
-
* @type {string}
|
|
13031
|
-
* @memberof UpdateManagerCommand
|
|
13032
|
-
*/
|
|
13033
|
-
'slug'?: string | null;
|
|
13034
12505
|
/**
|
|
13035
12506
|
*
|
|
13036
12507
|
* @type {string}
|
|
@@ -13067,6 +12538,12 @@ export interface UpdateManagerCommand {
|
|
|
13067
12538
|
* @memberof UpdateManagerCommand
|
|
13068
12539
|
*/
|
|
13069
12540
|
'timeZone'?: string | null;
|
|
12541
|
+
/**
|
|
12542
|
+
*
|
|
12543
|
+
* @type {Array<string>}
|
|
12544
|
+
* @memberof UpdateManagerCommand
|
|
12545
|
+
*/
|
|
12546
|
+
'hospitalIds'?: Array<string> | null;
|
|
13070
12547
|
}
|
|
13071
12548
|
/**
|
|
13072
12549
|
*
|
|
@@ -13129,24 +12606,12 @@ export interface UpdatePatientCommand {
|
|
|
13129
12606
|
* @memberof UpdatePatientCommand
|
|
13130
12607
|
*/
|
|
13131
12608
|
'firstName'?: string | null;
|
|
13132
|
-
/**
|
|
13133
|
-
*
|
|
13134
|
-
* @type {string}
|
|
13135
|
-
* @memberof UpdatePatientCommand
|
|
13136
|
-
*/
|
|
13137
|
-
'middleName'?: string | null;
|
|
13138
12609
|
/**
|
|
13139
12610
|
*
|
|
13140
12611
|
* @type {string}
|
|
13141
12612
|
* @memberof UpdatePatientCommand
|
|
13142
12613
|
*/
|
|
13143
12614
|
'lastName'?: string | null;
|
|
13144
|
-
/**
|
|
13145
|
-
*
|
|
13146
|
-
* @type {string}
|
|
13147
|
-
* @memberof UpdatePatientCommand
|
|
13148
|
-
*/
|
|
13149
|
-
'slug'?: string | null;
|
|
13150
12615
|
/**
|
|
13151
12616
|
*
|
|
13152
12617
|
* @type {string}
|
|
@@ -13442,55 +12907,43 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
13442
12907
|
* @type {string}
|
|
13443
12908
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13444
12909
|
*/
|
|
13445
|
-
'
|
|
12910
|
+
'languageCode'?: string | null;
|
|
13446
12911
|
/**
|
|
13447
12912
|
*
|
|
13448
12913
|
* @type {string}
|
|
13449
12914
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13450
12915
|
*/
|
|
13451
|
-
'
|
|
12916
|
+
'name'?: string | null;
|
|
13452
12917
|
/**
|
|
13453
12918
|
*
|
|
13454
12919
|
* @type {string}
|
|
13455
12920
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13456
12921
|
*/
|
|
13457
|
-
'
|
|
12922
|
+
'slug'?: string | null;
|
|
13458
12923
|
/**
|
|
13459
12924
|
*
|
|
13460
|
-
* @type {
|
|
12925
|
+
* @type {boolean}
|
|
13461
12926
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13462
12927
|
*/
|
|
13463
|
-
'
|
|
12928
|
+
'confirmed'?: boolean;
|
|
13464
12929
|
/**
|
|
13465
12930
|
*
|
|
13466
|
-
* @type {
|
|
12931
|
+
* @type {string}
|
|
13467
12932
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13468
12933
|
*/
|
|
13469
|
-
'
|
|
12934
|
+
'description'?: string | null;
|
|
13470
12935
|
/**
|
|
13471
12936
|
*
|
|
13472
|
-
* @type {
|
|
12937
|
+
* @type {MarketingType}
|
|
13473
12938
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13474
12939
|
*/
|
|
13475
|
-
'
|
|
12940
|
+
'marketingType'?: MarketingType;
|
|
13476
12941
|
/**
|
|
13477
12942
|
*
|
|
13478
12943
|
* @type {number}
|
|
13479
12944
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13480
12945
|
*/
|
|
13481
|
-
'
|
|
13482
|
-
/**
|
|
13483
|
-
*
|
|
13484
|
-
* @type {Date}
|
|
13485
|
-
* @memberof UpdateSpecialtyTypeCommand
|
|
13486
|
-
*/
|
|
13487
|
-
'created'?: Date;
|
|
13488
|
-
/**
|
|
13489
|
-
*
|
|
13490
|
-
* @type {boolean}
|
|
13491
|
-
* @memberof UpdateSpecialtyTypeCommand
|
|
13492
|
-
*/
|
|
13493
|
-
'confirmed'?: boolean;
|
|
12946
|
+
'specialtiesCount'?: number;
|
|
13494
12947
|
/**
|
|
13495
12948
|
*
|
|
13496
12949
|
* @type {Array<MediaModel>}
|
|
@@ -13508,19 +12961,13 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
13508
12961
|
* @type {string}
|
|
13509
12962
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13510
12963
|
*/
|
|
13511
|
-
'
|
|
12964
|
+
'overview'?: string | null;
|
|
13512
12965
|
/**
|
|
13513
12966
|
*
|
|
13514
12967
|
* @type {string}
|
|
13515
12968
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13516
12969
|
*/
|
|
13517
12970
|
'content'?: string | null;
|
|
13518
|
-
/**
|
|
13519
|
-
*
|
|
13520
|
-
* @type {Array<LocalizedUrlModel>}
|
|
13521
|
-
* @memberof UpdateSpecialtyTypeCommand
|
|
13522
|
-
*/
|
|
13523
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
13524
12971
|
}
|
|
13525
12972
|
/**
|
|
13526
12973
|
*
|
|
@@ -13679,12 +13126,6 @@ export interface UserModel {
|
|
|
13679
13126
|
* @memberof UserModel
|
|
13680
13127
|
*/
|
|
13681
13128
|
'firstName'?: string | null;
|
|
13682
|
-
/**
|
|
13683
|
-
*
|
|
13684
|
-
* @type {string}
|
|
13685
|
-
* @memberof UserModel
|
|
13686
|
-
*/
|
|
13687
|
-
'middleName'?: string | null;
|
|
13688
13129
|
/**
|
|
13689
13130
|
*
|
|
13690
13131
|
* @type {string}
|
|
@@ -13696,13 +13137,7 @@ export interface UserModel {
|
|
|
13696
13137
|
* @type {string}
|
|
13697
13138
|
* @memberof UserModel
|
|
13698
13139
|
*/
|
|
13699
|
-
'
|
|
13700
|
-
/**
|
|
13701
|
-
*
|
|
13702
|
-
* @type {string}
|
|
13703
|
-
* @memberof UserModel
|
|
13704
|
-
*/
|
|
13705
|
-
'slug'?: string | null;
|
|
13140
|
+
'fullname'?: string | null;
|
|
13706
13141
|
/**
|
|
13707
13142
|
*
|
|
13708
13143
|
* @type {string}
|
|
@@ -19221,7 +18656,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19221
18656
|
*
|
|
19222
18657
|
* @summary Get all Doctors.
|
|
19223
18658
|
* @param {string} [hospitalId]
|
|
19224
|
-
* @param {string} [hospitalName]
|
|
19225
18659
|
* @param {string} [languageCode]
|
|
19226
18660
|
* @param {boolean} [returnDefaultValue]
|
|
19227
18661
|
* @param {Array<string>} [ids]
|
|
@@ -19240,7 +18674,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19240
18674
|
* @param {*} [options] Override http request option.
|
|
19241
18675
|
* @throws {RequiredError}
|
|
19242
18676
|
*/
|
|
19243
|
-
apiV1DoctorsGet: (hospitalId?: string | undefined,
|
|
18677
|
+
apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19244
18678
|
/**
|
|
19245
18679
|
*
|
|
19246
18680
|
* @summary Create a Doctor.
|
|
@@ -19253,7 +18687,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19253
18687
|
*
|
|
19254
18688
|
* @summary Get all Doctors.
|
|
19255
18689
|
* @param {string} [hospitalId]
|
|
19256
|
-
* @param {string} [hospitalName]
|
|
19257
18690
|
* @param {string} [languageCode]
|
|
19258
18691
|
* @param {boolean} [returnDefaultValue]
|
|
19259
18692
|
* @param {Array<string>} [ids]
|
|
@@ -19272,7 +18705,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19272
18705
|
* @param {*} [options] Override http request option.
|
|
19273
18706
|
* @throws {RequiredError}
|
|
19274
18707
|
*/
|
|
19275
|
-
apiV1DoctorsSimpleGet: (hospitalId?: string | undefined,
|
|
18708
|
+
apiV1DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19276
18709
|
/**
|
|
19277
18710
|
*
|
|
19278
18711
|
* @param {string} slug
|
|
@@ -19663,7 +19096,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19663
19096
|
*
|
|
19664
19097
|
* @summary Get all Doctors.
|
|
19665
19098
|
* @param {string} [hospitalId]
|
|
19666
|
-
* @param {string} [hospitalName]
|
|
19667
19099
|
* @param {string} [languageCode]
|
|
19668
19100
|
* @param {boolean} [returnDefaultValue]
|
|
19669
19101
|
* @param {Array<string>} [ids]
|
|
@@ -19682,7 +19114,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19682
19114
|
* @param {*} [options] Override http request option.
|
|
19683
19115
|
* @throws {RequiredError}
|
|
19684
19116
|
*/
|
|
19685
|
-
apiV1DoctorsGet(hospitalId?: string | undefined,
|
|
19117
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
19686
19118
|
/**
|
|
19687
19119
|
*
|
|
19688
19120
|
* @summary Create a Doctor.
|
|
@@ -19695,7 +19127,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19695
19127
|
*
|
|
19696
19128
|
* @summary Get all Doctors.
|
|
19697
19129
|
* @param {string} [hospitalId]
|
|
19698
|
-
* @param {string} [hospitalName]
|
|
19699
19130
|
* @param {string} [languageCode]
|
|
19700
19131
|
* @param {boolean} [returnDefaultValue]
|
|
19701
19132
|
* @param {Array<string>} [ids]
|
|
@@ -19714,7 +19145,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19714
19145
|
* @param {*} [options] Override http request option.
|
|
19715
19146
|
* @throws {RequiredError}
|
|
19716
19147
|
*/
|
|
19717
|
-
apiV1DoctorsSimpleGet(hospitalId?: string | undefined,
|
|
19148
|
+
apiV1DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
|
|
19718
19149
|
/**
|
|
19719
19150
|
*
|
|
19720
19151
|
* @param {string} slug
|
|
@@ -20105,7 +19536,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20105
19536
|
*
|
|
20106
19537
|
* @summary Get all Doctors.
|
|
20107
19538
|
* @param {string} [hospitalId]
|
|
20108
|
-
* @param {string} [hospitalName]
|
|
20109
19539
|
* @param {string} [languageCode]
|
|
20110
19540
|
* @param {boolean} [returnDefaultValue]
|
|
20111
19541
|
* @param {Array<string>} [ids]
|
|
@@ -20124,7 +19554,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20124
19554
|
* @param {*} [options] Override http request option.
|
|
20125
19555
|
* @throws {RequiredError}
|
|
20126
19556
|
*/
|
|
20127
|
-
apiV1DoctorsGet(hospitalId?: string | undefined,
|
|
19557
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
20128
19558
|
/**
|
|
20129
19559
|
*
|
|
20130
19560
|
* @summary Create a Doctor.
|
|
@@ -20137,7 +19567,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20137
19567
|
*
|
|
20138
19568
|
* @summary Get all Doctors.
|
|
20139
19569
|
* @param {string} [hospitalId]
|
|
20140
|
-
* @param {string} [hospitalName]
|
|
20141
19570
|
* @param {string} [languageCode]
|
|
20142
19571
|
* @param {boolean} [returnDefaultValue]
|
|
20143
19572
|
* @param {Array<string>} [ids]
|
|
@@ -20156,7 +19585,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
20156
19585
|
* @param {*} [options] Override http request option.
|
|
20157
19586
|
* @throws {RequiredError}
|
|
20158
19587
|
*/
|
|
20159
|
-
apiV1DoctorsSimpleGet(hospitalId?: string | undefined,
|
|
19588
|
+
apiV1DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
|
|
20160
19589
|
/**
|
|
20161
19590
|
*
|
|
20162
19591
|
* @param {string} slug
|
|
@@ -20586,7 +20015,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20586
20015
|
*
|
|
20587
20016
|
* @summary Get all Doctors.
|
|
20588
20017
|
* @param {string} [hospitalId]
|
|
20589
|
-
* @param {string} [hospitalName]
|
|
20590
20018
|
* @param {string} [languageCode]
|
|
20591
20019
|
* @param {boolean} [returnDefaultValue]
|
|
20592
20020
|
* @param {Array<string>} [ids]
|
|
@@ -20606,7 +20034,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20606
20034
|
* @throws {RequiredError}
|
|
20607
20035
|
* @memberof DoctorsApi
|
|
20608
20036
|
*/
|
|
20609
|
-
apiV1DoctorsGet(hospitalId?: string,
|
|
20037
|
+
apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
20610
20038
|
/**
|
|
20611
20039
|
*
|
|
20612
20040
|
* @summary Create a Doctor.
|
|
@@ -20620,7 +20048,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20620
20048
|
*
|
|
20621
20049
|
* @summary Get all Doctors.
|
|
20622
20050
|
* @param {string} [hospitalId]
|
|
20623
|
-
* @param {string} [hospitalName]
|
|
20624
20051
|
* @param {string} [languageCode]
|
|
20625
20052
|
* @param {boolean} [returnDefaultValue]
|
|
20626
20053
|
* @param {Array<string>} [ids]
|
|
@@ -20640,7 +20067,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20640
20067
|
* @throws {RequiredError}
|
|
20641
20068
|
* @memberof DoctorsApi
|
|
20642
20069
|
*/
|
|
20643
|
-
apiV1DoctorsSimpleGet(hospitalId?: string,
|
|
20070
|
+
apiV1DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel>>;
|
|
20644
20071
|
/**
|
|
20645
20072
|
*
|
|
20646
20073
|
* @param {string} slug
|
|
@@ -26919,13 +26346,14 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
26919
26346
|
* @param {boolean} [recommended]
|
|
26920
26347
|
* @param {number} [rate]
|
|
26921
26348
|
* @param {ReviewType} [reviewType]
|
|
26349
|
+
* @param {string} [languageCode]
|
|
26922
26350
|
* @param {number} [page]
|
|
26923
26351
|
* @param {number} [limit]
|
|
26924
26352
|
* @param {Date} [lastRetrieved]
|
|
26925
26353
|
* @param {*} [options] Override http request option.
|
|
26926
26354
|
* @throws {RequiredError}
|
|
26927
26355
|
*/
|
|
26928
|
-
apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26356
|
+
apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26929
26357
|
/**
|
|
26930
26358
|
*
|
|
26931
26359
|
* @summary Create a ServiceReview.
|
|
@@ -27025,13 +26453,14 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
27025
26453
|
* @param {boolean} [recommended]
|
|
27026
26454
|
* @param {number} [rate]
|
|
27027
26455
|
* @param {ReviewType} [reviewType]
|
|
26456
|
+
* @param {string} [languageCode]
|
|
27028
26457
|
* @param {number} [page]
|
|
27029
26458
|
* @param {number} [limit]
|
|
27030
26459
|
* @param {Date} [lastRetrieved]
|
|
27031
26460
|
* @param {*} [options] Override http request option.
|
|
27032
26461
|
* @throws {RequiredError}
|
|
27033
26462
|
*/
|
|
27034
|
-
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
26463
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
27035
26464
|
/**
|
|
27036
26465
|
*
|
|
27037
26466
|
* @summary Create a ServiceReview.
|
|
@@ -27131,13 +26560,14 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
27131
26560
|
* @param {boolean} [recommended]
|
|
27132
26561
|
* @param {number} [rate]
|
|
27133
26562
|
* @param {ReviewType} [reviewType]
|
|
26563
|
+
* @param {string} [languageCode]
|
|
27134
26564
|
* @param {number} [page]
|
|
27135
26565
|
* @param {number} [limit]
|
|
27136
26566
|
* @param {Date} [lastRetrieved]
|
|
27137
26567
|
* @param {*} [options] Override http request option.
|
|
27138
26568
|
* @throws {RequiredError}
|
|
27139
26569
|
*/
|
|
27140
|
-
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
26570
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
27141
26571
|
/**
|
|
27142
26572
|
*
|
|
27143
26573
|
* @summary Create a ServiceReview.
|
|
@@ -27239,6 +26669,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
27239
26669
|
* @param {boolean} [recommended]
|
|
27240
26670
|
* @param {number} [rate]
|
|
27241
26671
|
* @param {ReviewType} [reviewType]
|
|
26672
|
+
* @param {string} [languageCode]
|
|
27242
26673
|
* @param {number} [page]
|
|
27243
26674
|
* @param {number} [limit]
|
|
27244
26675
|
* @param {Date} [lastRetrieved]
|
|
@@ -27246,7 +26677,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
27246
26677
|
* @throws {RequiredError}
|
|
27247
26678
|
* @memberof ServiceReviewsApi
|
|
27248
26679
|
*/
|
|
27249
|
-
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
26680
|
+
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
27250
26681
|
/**
|
|
27251
26682
|
*
|
|
27252
26683
|
* @summary Create a ServiceReview.
|