ch-admin-api-client-typescript 3.3.5 → 3.4.1
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 +1361 -1516
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +395 -256
- package/package.json +1 -1
- package/src/api.ts +1345 -1439
package/src/api.ts
CHANGED
|
@@ -38,19 +38,7 @@ export interface AboutUsPageItemModel {
|
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof AboutUsPageItemModel
|
|
40
40
|
*/
|
|
41
|
-
'
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof AboutUsPageItemModel
|
|
46
|
-
*/
|
|
47
|
-
'hospitalName'?: string | null;
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof AboutUsPageItemModel
|
|
52
|
-
*/
|
|
53
|
-
'hospitalSlug'?: string | null;
|
|
41
|
+
'languageCode'?: string | null;
|
|
54
42
|
/**
|
|
55
43
|
*
|
|
56
44
|
* @type {string}
|
|
@@ -63,24 +51,12 @@ export interface AboutUsPageItemModel {
|
|
|
63
51
|
* @memberof AboutUsPageItemModel
|
|
64
52
|
*/
|
|
65
53
|
'slug'?: string | null;
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof AboutUsPageItemModel
|
|
70
|
-
*/
|
|
71
|
-
'description'?: string | null;
|
|
72
54
|
/**
|
|
73
55
|
*
|
|
74
56
|
* @type {boolean}
|
|
75
57
|
* @memberof AboutUsPageItemModel
|
|
76
58
|
*/
|
|
77
59
|
'confirmed'?: boolean;
|
|
78
|
-
/**
|
|
79
|
-
*
|
|
80
|
-
* @type {Array<MediaModel>}
|
|
81
|
-
* @memberof AboutUsPageItemModel
|
|
82
|
-
*/
|
|
83
|
-
'medias'?: Array<MediaModel> | null;
|
|
84
60
|
/**
|
|
85
61
|
*
|
|
86
62
|
* @type {AuditableEntity}
|
|
@@ -105,31 +81,31 @@ export interface AboutUsPageModel {
|
|
|
105
81
|
* @type {string}
|
|
106
82
|
* @memberof AboutUsPageModel
|
|
107
83
|
*/
|
|
108
|
-
'
|
|
84
|
+
'languageCode'?: string | null;
|
|
109
85
|
/**
|
|
110
86
|
*
|
|
111
87
|
* @type {string}
|
|
112
88
|
* @memberof AboutUsPageModel
|
|
113
89
|
*/
|
|
114
|
-
'
|
|
90
|
+
'name'?: string | null;
|
|
115
91
|
/**
|
|
116
92
|
*
|
|
117
93
|
* @type {string}
|
|
118
94
|
* @memberof AboutUsPageModel
|
|
119
95
|
*/
|
|
120
|
-
'
|
|
96
|
+
'slug'?: string | null;
|
|
121
97
|
/**
|
|
122
98
|
*
|
|
123
|
-
* @type {
|
|
99
|
+
* @type {boolean}
|
|
124
100
|
* @memberof AboutUsPageModel
|
|
125
101
|
*/
|
|
126
|
-
'
|
|
102
|
+
'confirmed'?: boolean;
|
|
127
103
|
/**
|
|
128
104
|
*
|
|
129
|
-
* @type {
|
|
105
|
+
* @type {AuditableEntity}
|
|
130
106
|
* @memberof AboutUsPageModel
|
|
131
107
|
*/
|
|
132
|
-
'
|
|
108
|
+
'auditableEntity'?: AuditableEntity;
|
|
133
109
|
/**
|
|
134
110
|
*
|
|
135
111
|
* @type {string}
|
|
@@ -138,34 +114,34 @@ export interface AboutUsPageModel {
|
|
|
138
114
|
'description'?: string | null;
|
|
139
115
|
/**
|
|
140
116
|
*
|
|
141
|
-
* @type {
|
|
117
|
+
* @type {string}
|
|
142
118
|
* @memberof AboutUsPageModel
|
|
143
119
|
*/
|
|
144
|
-
'
|
|
120
|
+
'overview'?: string | null;
|
|
145
121
|
/**
|
|
146
122
|
*
|
|
147
|
-
* @type {
|
|
123
|
+
* @type {string}
|
|
148
124
|
* @memberof AboutUsPageModel
|
|
149
125
|
*/
|
|
150
|
-
'
|
|
126
|
+
'content'?: string | null;
|
|
151
127
|
/**
|
|
152
128
|
*
|
|
153
|
-
* @type {
|
|
129
|
+
* @type {string}
|
|
154
130
|
* @memberof AboutUsPageModel
|
|
155
131
|
*/
|
|
156
|
-
'
|
|
132
|
+
'hospitalId'?: string;
|
|
157
133
|
/**
|
|
158
134
|
*
|
|
159
135
|
* @type {string}
|
|
160
136
|
* @memberof AboutUsPageModel
|
|
161
137
|
*/
|
|
162
|
-
'
|
|
138
|
+
'hospitalName'?: string | null;
|
|
163
139
|
/**
|
|
164
140
|
*
|
|
165
141
|
* @type {string}
|
|
166
142
|
* @memberof AboutUsPageModel
|
|
167
143
|
*/
|
|
168
|
-
'
|
|
144
|
+
'hospitalSlug'?: string | null;
|
|
169
145
|
/**
|
|
170
146
|
*
|
|
171
147
|
* @type {string}
|
|
@@ -186,10 +162,10 @@ export interface AboutUsPageModel {
|
|
|
186
162
|
'backgroundThumbnail'?: string | null;
|
|
187
163
|
/**
|
|
188
164
|
*
|
|
189
|
-
* @type {Array<
|
|
165
|
+
* @type {Array<MediaModel>}
|
|
190
166
|
* @memberof AboutUsPageModel
|
|
191
167
|
*/
|
|
192
|
-
'
|
|
168
|
+
'medias'?: Array<MediaModel> | null;
|
|
193
169
|
}
|
|
194
170
|
/**
|
|
195
171
|
*
|
|
@@ -347,6 +323,12 @@ export interface ArticleContributorItemModel {
|
|
|
347
323
|
* @memberof ArticleContributorItemModel
|
|
348
324
|
*/
|
|
349
325
|
'contributorId'?: string;
|
|
326
|
+
/**
|
|
327
|
+
*
|
|
328
|
+
* @type {string}
|
|
329
|
+
* @memberof ArticleContributorItemModel
|
|
330
|
+
*/
|
|
331
|
+
'languageCode'?: string | null;
|
|
350
332
|
/**
|
|
351
333
|
*
|
|
352
334
|
* @type {string}
|
|
@@ -361,28 +343,28 @@ export interface ArticleContributorItemModel {
|
|
|
361
343
|
'contributorSlug'?: string | null;
|
|
362
344
|
/**
|
|
363
345
|
*
|
|
364
|
-
* @type {
|
|
346
|
+
* @type {boolean}
|
|
365
347
|
* @memberof ArticleContributorItemModel
|
|
366
348
|
*/
|
|
367
|
-
'
|
|
349
|
+
'contributorConfirmed'?: boolean;
|
|
368
350
|
/**
|
|
369
351
|
*
|
|
370
352
|
* @type {string}
|
|
371
353
|
* @memberof ArticleContributorItemModel
|
|
372
354
|
*/
|
|
373
|
-
'
|
|
355
|
+
'contributorEmail'?: string | null;
|
|
374
356
|
/**
|
|
375
357
|
*
|
|
376
358
|
* @type {string}
|
|
377
359
|
* @memberof ArticleContributorItemModel
|
|
378
360
|
*/
|
|
379
|
-
'
|
|
361
|
+
'contributorPhoto'?: string | null;
|
|
380
362
|
/**
|
|
381
363
|
*
|
|
382
364
|
* @type {string}
|
|
383
365
|
* @memberof ArticleContributorItemModel
|
|
384
366
|
*/
|
|
385
|
-
'
|
|
367
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
386
368
|
/**
|
|
387
369
|
*
|
|
388
370
|
* @type {ContributionType}
|
|
@@ -401,24 +383,12 @@ export interface ArticleContributorItemModel {
|
|
|
401
383
|
* @memberof ArticleContributorItemModel
|
|
402
384
|
*/
|
|
403
385
|
'order'?: number;
|
|
404
|
-
/**
|
|
405
|
-
*
|
|
406
|
-
* @type {boolean}
|
|
407
|
-
* @memberof ArticleContributorItemModel
|
|
408
|
-
*/
|
|
409
|
-
'confirmed'?: boolean;
|
|
410
386
|
/**
|
|
411
387
|
*
|
|
412
388
|
* @type {AuditableEntity}
|
|
413
389
|
* @memberof ArticleContributorItemModel
|
|
414
390
|
*/
|
|
415
391
|
'auditableEntity'?: AuditableEntity;
|
|
416
|
-
/**
|
|
417
|
-
*
|
|
418
|
-
* @type {Array<SnsHandleModel>}
|
|
419
|
-
* @memberof ArticleContributorItemModel
|
|
420
|
-
*/
|
|
421
|
-
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
422
392
|
}
|
|
423
393
|
/**
|
|
424
394
|
*
|
|
@@ -438,6 +408,12 @@ export interface ArticleContributorModel {
|
|
|
438
408
|
* @memberof ArticleContributorModel
|
|
439
409
|
*/
|
|
440
410
|
'contributorId'?: string;
|
|
411
|
+
/**
|
|
412
|
+
*
|
|
413
|
+
* @type {string}
|
|
414
|
+
* @memberof ArticleContributorModel
|
|
415
|
+
*/
|
|
416
|
+
'languageCode'?: string | null;
|
|
441
417
|
/**
|
|
442
418
|
*
|
|
443
419
|
* @type {string}
|
|
@@ -452,28 +428,28 @@ export interface ArticleContributorModel {
|
|
|
452
428
|
'contributorSlug'?: string | null;
|
|
453
429
|
/**
|
|
454
430
|
*
|
|
455
|
-
* @type {
|
|
431
|
+
* @type {boolean}
|
|
456
432
|
* @memberof ArticleContributorModel
|
|
457
433
|
*/
|
|
458
|
-
'
|
|
434
|
+
'contributorConfirmed'?: boolean;
|
|
459
435
|
/**
|
|
460
436
|
*
|
|
461
437
|
* @type {string}
|
|
462
438
|
* @memberof ArticleContributorModel
|
|
463
439
|
*/
|
|
464
|
-
'
|
|
440
|
+
'contributorEmail'?: string | null;
|
|
465
441
|
/**
|
|
466
442
|
*
|
|
467
443
|
* @type {string}
|
|
468
444
|
* @memberof ArticleContributorModel
|
|
469
445
|
*/
|
|
470
|
-
'
|
|
446
|
+
'contributorPhoto'?: string | null;
|
|
471
447
|
/**
|
|
472
448
|
*
|
|
473
449
|
* @type {string}
|
|
474
450
|
* @memberof ArticleContributorModel
|
|
475
451
|
*/
|
|
476
|
-
'
|
|
452
|
+
'contributorPhotoThumbnail'?: string | null;
|
|
477
453
|
/**
|
|
478
454
|
*
|
|
479
455
|
* @type {ContributionType}
|
|
@@ -492,48 +468,12 @@ export interface ArticleContributorModel {
|
|
|
492
468
|
* @memberof ArticleContributorModel
|
|
493
469
|
*/
|
|
494
470
|
'order'?: number;
|
|
495
|
-
/**
|
|
496
|
-
*
|
|
497
|
-
* @type {boolean}
|
|
498
|
-
* @memberof ArticleContributorModel
|
|
499
|
-
*/
|
|
500
|
-
'confirmed'?: boolean;
|
|
501
471
|
/**
|
|
502
472
|
*
|
|
503
473
|
* @type {AuditableEntity}
|
|
504
474
|
* @memberof ArticleContributorModel
|
|
505
475
|
*/
|
|
506
476
|
'auditableEntity'?: AuditableEntity;
|
|
507
|
-
/**
|
|
508
|
-
*
|
|
509
|
-
* @type {Array<SnsHandleModel>}
|
|
510
|
-
* @memberof ArticleContributorModel
|
|
511
|
-
*/
|
|
512
|
-
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
513
|
-
/**
|
|
514
|
-
*
|
|
515
|
-
* @type {string}
|
|
516
|
-
* @memberof ArticleContributorModel
|
|
517
|
-
*/
|
|
518
|
-
'languageCode'?: string | null;
|
|
519
|
-
/**
|
|
520
|
-
*
|
|
521
|
-
* @type {string}
|
|
522
|
-
* @memberof ArticleContributorModel
|
|
523
|
-
*/
|
|
524
|
-
'content'?: string | null;
|
|
525
|
-
/**
|
|
526
|
-
*
|
|
527
|
-
* @type {Array<SnsHandle>}
|
|
528
|
-
* @memberof ArticleContributorModel
|
|
529
|
-
*/
|
|
530
|
-
'snsHandles'?: Array<SnsHandle> | null;
|
|
531
|
-
/**
|
|
532
|
-
*
|
|
533
|
-
* @type {Array<LocalizedUrlModel>}
|
|
534
|
-
* @memberof ArticleContributorModel
|
|
535
|
-
*/
|
|
536
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
537
477
|
}
|
|
538
478
|
/**
|
|
539
479
|
*
|
|
@@ -571,31 +511,25 @@ export interface ArticleItemModel {
|
|
|
571
511
|
* @type {string}
|
|
572
512
|
* @memberof ArticleItemModel
|
|
573
513
|
*/
|
|
574
|
-
'
|
|
575
|
-
/**
|
|
576
|
-
*
|
|
577
|
-
* @type {string}
|
|
578
|
-
* @memberof ArticleItemModel
|
|
579
|
-
*/
|
|
580
|
-
'slug'?: string | null;
|
|
514
|
+
'languageCode'?: string | null;
|
|
581
515
|
/**
|
|
582
516
|
*
|
|
583
517
|
* @type {string}
|
|
584
518
|
* @memberof ArticleItemModel
|
|
585
519
|
*/
|
|
586
|
-
'
|
|
520
|
+
'name'?: string | null;
|
|
587
521
|
/**
|
|
588
522
|
*
|
|
589
523
|
* @type {string}
|
|
590
524
|
* @memberof ArticleItemModel
|
|
591
525
|
*/
|
|
592
|
-
'
|
|
526
|
+
'slug'?: string | null;
|
|
593
527
|
/**
|
|
594
528
|
*
|
|
595
|
-
* @type {
|
|
529
|
+
* @type {boolean}
|
|
596
530
|
* @memberof ArticleItemModel
|
|
597
531
|
*/
|
|
598
|
-
'
|
|
532
|
+
'confirmed'?: boolean;
|
|
599
533
|
/**
|
|
600
534
|
*
|
|
601
535
|
* @type {MarketingType}
|
|
@@ -620,54 +554,6 @@ export interface ArticleItemModel {
|
|
|
620
554
|
* @memberof ArticleItemModel
|
|
621
555
|
*/
|
|
622
556
|
'hospitalId'?: string;
|
|
623
|
-
/**
|
|
624
|
-
*
|
|
625
|
-
* @type {string}
|
|
626
|
-
* @memberof ArticleItemModel
|
|
627
|
-
*/
|
|
628
|
-
'hospitalName'?: string | null;
|
|
629
|
-
/**
|
|
630
|
-
*
|
|
631
|
-
* @type {string}
|
|
632
|
-
* @memberof ArticleItemModel
|
|
633
|
-
*/
|
|
634
|
-
'hospitalSlug'?: string | null;
|
|
635
|
-
/**
|
|
636
|
-
*
|
|
637
|
-
* @type {string}
|
|
638
|
-
* @memberof ArticleItemModel
|
|
639
|
-
*/
|
|
640
|
-
'youtubeUrl'?: string | null;
|
|
641
|
-
/**
|
|
642
|
-
*
|
|
643
|
-
* @type {boolean}
|
|
644
|
-
* @memberof ArticleItemModel
|
|
645
|
-
*/
|
|
646
|
-
'confirmed'?: boolean;
|
|
647
|
-
/**
|
|
648
|
-
*
|
|
649
|
-
* @type {Array<ArticleTagItemModel>}
|
|
650
|
-
* @memberof ArticleItemModel
|
|
651
|
-
*/
|
|
652
|
-
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
653
|
-
/**
|
|
654
|
-
*
|
|
655
|
-
* @type {Array<ArticleContributorItemModel>}
|
|
656
|
-
* @memberof ArticleItemModel
|
|
657
|
-
*/
|
|
658
|
-
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
659
|
-
/**
|
|
660
|
-
*
|
|
661
|
-
* @type {Array<MediaModel>}
|
|
662
|
-
* @memberof ArticleItemModel
|
|
663
|
-
*/
|
|
664
|
-
'medias'?: Array<MediaModel> | null;
|
|
665
|
-
/**
|
|
666
|
-
*
|
|
667
|
-
* @type {Array<SourceModel>}
|
|
668
|
-
* @memberof ArticleItemModel
|
|
669
|
-
*/
|
|
670
|
-
'sources'?: Array<SourceModel> | null;
|
|
671
557
|
/**
|
|
672
558
|
*
|
|
673
559
|
* @type {AuditableEntity}
|
|
@@ -692,31 +578,25 @@ export interface ArticleModel {
|
|
|
692
578
|
* @type {string}
|
|
693
579
|
* @memberof ArticleModel
|
|
694
580
|
*/
|
|
695
|
-
'
|
|
696
|
-
/**
|
|
697
|
-
*
|
|
698
|
-
* @type {string}
|
|
699
|
-
* @memberof ArticleModel
|
|
700
|
-
*/
|
|
701
|
-
'slug'?: string | null;
|
|
581
|
+
'languageCode'?: string | null;
|
|
702
582
|
/**
|
|
703
583
|
*
|
|
704
584
|
* @type {string}
|
|
705
585
|
* @memberof ArticleModel
|
|
706
586
|
*/
|
|
707
|
-
'
|
|
587
|
+
'name'?: string | null;
|
|
708
588
|
/**
|
|
709
589
|
*
|
|
710
590
|
* @type {string}
|
|
711
591
|
* @memberof ArticleModel
|
|
712
592
|
*/
|
|
713
|
-
'
|
|
593
|
+
'slug'?: string | null;
|
|
714
594
|
/**
|
|
715
595
|
*
|
|
716
|
-
* @type {
|
|
596
|
+
* @type {boolean}
|
|
717
597
|
* @memberof ArticleModel
|
|
718
598
|
*/
|
|
719
|
-
'
|
|
599
|
+
'confirmed'?: boolean;
|
|
720
600
|
/**
|
|
721
601
|
*
|
|
722
602
|
* @type {MarketingType}
|
|
@@ -743,76 +623,46 @@ export interface ArticleModel {
|
|
|
743
623
|
'hospitalId'?: string;
|
|
744
624
|
/**
|
|
745
625
|
*
|
|
746
|
-
* @type {
|
|
626
|
+
* @type {AuditableEntity}
|
|
747
627
|
* @memberof ArticleModel
|
|
748
628
|
*/
|
|
749
|
-
'
|
|
629
|
+
'auditableEntity'?: AuditableEntity;
|
|
750
630
|
/**
|
|
751
631
|
*
|
|
752
632
|
* @type {string}
|
|
753
633
|
* @memberof ArticleModel
|
|
754
634
|
*/
|
|
755
|
-
'
|
|
635
|
+
'description'?: string | null;
|
|
756
636
|
/**
|
|
757
637
|
*
|
|
758
638
|
* @type {string}
|
|
759
639
|
* @memberof ArticleModel
|
|
760
640
|
*/
|
|
761
|
-
'
|
|
641
|
+
'overview'?: string | null;
|
|
762
642
|
/**
|
|
763
643
|
*
|
|
764
|
-
* @type {
|
|
644
|
+
* @type {string}
|
|
765
645
|
* @memberof ArticleModel
|
|
766
646
|
*/
|
|
767
|
-
'
|
|
647
|
+
'content'?: string | null;
|
|
768
648
|
/**
|
|
769
649
|
*
|
|
770
|
-
* @type {
|
|
650
|
+
* @type {string}
|
|
771
651
|
* @memberof ArticleModel
|
|
772
652
|
*/
|
|
773
|
-
'
|
|
653
|
+
'youtubeUrl'?: string | null;
|
|
774
654
|
/**
|
|
775
655
|
*
|
|
776
|
-
* @type {Array<
|
|
656
|
+
* @type {Array<ArticleTagItemModel>}
|
|
777
657
|
* @memberof ArticleModel
|
|
778
658
|
*/
|
|
779
|
-
'
|
|
659
|
+
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
780
660
|
/**
|
|
781
661
|
*
|
|
782
662
|
* @type {Array<MediaModel>}
|
|
783
663
|
* @memberof ArticleModel
|
|
784
664
|
*/
|
|
785
665
|
'medias'?: Array<MediaModel> | null;
|
|
786
|
-
/**
|
|
787
|
-
*
|
|
788
|
-
* @type {Array<SourceModel>}
|
|
789
|
-
* @memberof ArticleModel
|
|
790
|
-
*/
|
|
791
|
-
'sources'?: Array<SourceModel> | null;
|
|
792
|
-
/**
|
|
793
|
-
*
|
|
794
|
-
* @type {AuditableEntity}
|
|
795
|
-
* @memberof ArticleModel
|
|
796
|
-
*/
|
|
797
|
-
'auditableEntity'?: AuditableEntity;
|
|
798
|
-
/**
|
|
799
|
-
*
|
|
800
|
-
* @type {string}
|
|
801
|
-
* @memberof ArticleModel
|
|
802
|
-
*/
|
|
803
|
-
'content'?: string | null;
|
|
804
|
-
/**
|
|
805
|
-
*
|
|
806
|
-
* @type {string}
|
|
807
|
-
* @memberof ArticleModel
|
|
808
|
-
*/
|
|
809
|
-
'languageCode'?: string | null;
|
|
810
|
-
/**
|
|
811
|
-
*
|
|
812
|
-
* @type {Array<LocalizedUrlModel>}
|
|
813
|
-
* @memberof ArticleModel
|
|
814
|
-
*/
|
|
815
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
816
666
|
}
|
|
817
667
|
/**
|
|
818
668
|
*
|
|
@@ -1542,12 +1392,6 @@ export interface CHAdminItemModel {
|
|
|
1542
1392
|
* @memberof CHAdminItemModel
|
|
1543
1393
|
*/
|
|
1544
1394
|
'firstName'?: string | null;
|
|
1545
|
-
/**
|
|
1546
|
-
*
|
|
1547
|
-
* @type {string}
|
|
1548
|
-
* @memberof CHAdminItemModel
|
|
1549
|
-
*/
|
|
1550
|
-
'middleName'?: string | null;
|
|
1551
1395
|
/**
|
|
1552
1396
|
*
|
|
1553
1397
|
* @type {string}
|
|
@@ -1559,13 +1403,7 @@ export interface CHAdminItemModel {
|
|
|
1559
1403
|
* @type {string}
|
|
1560
1404
|
* @memberof CHAdminItemModel
|
|
1561
1405
|
*/
|
|
1562
|
-
'
|
|
1563
|
-
/**
|
|
1564
|
-
*
|
|
1565
|
-
* @type {string}
|
|
1566
|
-
* @memberof CHAdminItemModel
|
|
1567
|
-
*/
|
|
1568
|
-
'slug'?: string | null;
|
|
1406
|
+
'fullname'?: string | null;
|
|
1569
1407
|
/**
|
|
1570
1408
|
*
|
|
1571
1409
|
* @type {string}
|
|
@@ -1645,12 +1483,6 @@ export interface CHAdminModel {
|
|
|
1645
1483
|
* @memberof CHAdminModel
|
|
1646
1484
|
*/
|
|
1647
1485
|
'firstName'?: string | null;
|
|
1648
|
-
/**
|
|
1649
|
-
*
|
|
1650
|
-
* @type {string}
|
|
1651
|
-
* @memberof CHAdminModel
|
|
1652
|
-
*/
|
|
1653
|
-
'middleName'?: string | null;
|
|
1654
1486
|
/**
|
|
1655
1487
|
*
|
|
1656
1488
|
* @type {string}
|
|
@@ -1662,13 +1494,7 @@ export interface CHAdminModel {
|
|
|
1662
1494
|
* @type {string}
|
|
1663
1495
|
* @memberof CHAdminModel
|
|
1664
1496
|
*/
|
|
1665
|
-
'
|
|
1666
|
-
/**
|
|
1667
|
-
*
|
|
1668
|
-
* @type {string}
|
|
1669
|
-
* @memberof CHAdminModel
|
|
1670
|
-
*/
|
|
1671
|
-
'slug'?: string | null;
|
|
1497
|
+
'fullname'?: string | null;
|
|
1672
1498
|
/**
|
|
1673
1499
|
*
|
|
1674
1500
|
* @type {string}
|
|
@@ -1785,12 +1611,6 @@ export interface CHManagerItemModel {
|
|
|
1785
1611
|
* @memberof CHManagerItemModel
|
|
1786
1612
|
*/
|
|
1787
1613
|
'firstName'?: string | null;
|
|
1788
|
-
/**
|
|
1789
|
-
*
|
|
1790
|
-
* @type {string}
|
|
1791
|
-
* @memberof CHManagerItemModel
|
|
1792
|
-
*/
|
|
1793
|
-
'middleName'?: string | null;
|
|
1794
1614
|
/**
|
|
1795
1615
|
*
|
|
1796
1616
|
* @type {string}
|
|
@@ -1802,13 +1622,7 @@ export interface CHManagerItemModel {
|
|
|
1802
1622
|
* @type {string}
|
|
1803
1623
|
* @memberof CHManagerItemModel
|
|
1804
1624
|
*/
|
|
1805
|
-
'
|
|
1806
|
-
/**
|
|
1807
|
-
*
|
|
1808
|
-
* @type {string}
|
|
1809
|
-
* @memberof CHManagerItemModel
|
|
1810
|
-
*/
|
|
1811
|
-
'slug'?: string | null;
|
|
1625
|
+
'fullname'?: string | null;
|
|
1812
1626
|
/**
|
|
1813
1627
|
*
|
|
1814
1628
|
* @type {string}
|
|
@@ -1888,12 +1702,6 @@ export interface CHManagerModel {
|
|
|
1888
1702
|
* @memberof CHManagerModel
|
|
1889
1703
|
*/
|
|
1890
1704
|
'firstName'?: string | null;
|
|
1891
|
-
/**
|
|
1892
|
-
*
|
|
1893
|
-
* @type {string}
|
|
1894
|
-
* @memberof CHManagerModel
|
|
1895
|
-
*/
|
|
1896
|
-
'middleName'?: string | null;
|
|
1897
1705
|
/**
|
|
1898
1706
|
*
|
|
1899
1707
|
* @type {string}
|
|
@@ -1905,13 +1713,7 @@ export interface CHManagerModel {
|
|
|
1905
1713
|
* @type {string}
|
|
1906
1714
|
* @memberof CHManagerModel
|
|
1907
1715
|
*/
|
|
1908
|
-
'
|
|
1909
|
-
/**
|
|
1910
|
-
*
|
|
1911
|
-
* @type {string}
|
|
1912
|
-
* @memberof CHManagerModel
|
|
1913
|
-
*/
|
|
1914
|
-
'slug'?: string | null;
|
|
1716
|
+
'fullname'?: string | null;
|
|
1915
1717
|
/**
|
|
1916
1718
|
*
|
|
1917
1719
|
* @type {string}
|
|
@@ -2846,6 +2648,12 @@ export interface ContributorItemModel {
|
|
|
2846
2648
|
* @memberof ContributorItemModel
|
|
2847
2649
|
*/
|
|
2848
2650
|
'id'?: string;
|
|
2651
|
+
/**
|
|
2652
|
+
*
|
|
2653
|
+
* @type {string}
|
|
2654
|
+
* @memberof ContributorItemModel
|
|
2655
|
+
*/
|
|
2656
|
+
'languageCode'?: string | null;
|
|
2849
2657
|
/**
|
|
2850
2658
|
*
|
|
2851
2659
|
* @type {string}
|
|
@@ -2860,58 +2668,58 @@ export interface ContributorItemModel {
|
|
|
2860
2668
|
'slug'?: string | null;
|
|
2861
2669
|
/**
|
|
2862
2670
|
*
|
|
2863
|
-
* @type {
|
|
2671
|
+
* @type {boolean}
|
|
2864
2672
|
* @memberof ContributorItemModel
|
|
2865
2673
|
*/
|
|
2866
|
-
'
|
|
2674
|
+
'confirmed'?: boolean;
|
|
2867
2675
|
/**
|
|
2868
2676
|
*
|
|
2869
2677
|
* @type {string}
|
|
2870
2678
|
* @memberof ContributorItemModel
|
|
2871
2679
|
*/
|
|
2872
|
-
'
|
|
2680
|
+
'hospitalId'?: string;
|
|
2873
2681
|
/**
|
|
2874
2682
|
*
|
|
2875
2683
|
* @type {string}
|
|
2876
2684
|
* @memberof ContributorItemModel
|
|
2877
2685
|
*/
|
|
2878
|
-
'
|
|
2686
|
+
'hospitalName'?: string | null;
|
|
2879
2687
|
/**
|
|
2880
2688
|
*
|
|
2881
2689
|
* @type {string}
|
|
2882
2690
|
* @memberof ContributorItemModel
|
|
2883
2691
|
*/
|
|
2884
|
-
'
|
|
2692
|
+
'hospitalSlug'?: string | null;
|
|
2885
2693
|
/**
|
|
2886
2694
|
*
|
|
2887
2695
|
* @type {string}
|
|
2888
2696
|
* @memberof ContributorItemModel
|
|
2889
2697
|
*/
|
|
2890
|
-
'
|
|
2698
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2891
2699
|
/**
|
|
2892
2700
|
*
|
|
2893
2701
|
* @type {string}
|
|
2894
2702
|
* @memberof ContributorItemModel
|
|
2895
2703
|
*/
|
|
2896
|
-
'
|
|
2704
|
+
'email'?: string | null;
|
|
2897
2705
|
/**
|
|
2898
2706
|
*
|
|
2899
2707
|
* @type {string}
|
|
2900
2708
|
* @memberof ContributorItemModel
|
|
2901
2709
|
*/
|
|
2902
|
-
'
|
|
2710
|
+
'photo'?: string | null;
|
|
2903
2711
|
/**
|
|
2904
2712
|
*
|
|
2905
|
-
* @type {
|
|
2713
|
+
* @type {string}
|
|
2906
2714
|
* @memberof ContributorItemModel
|
|
2907
2715
|
*/
|
|
2908
|
-
'
|
|
2716
|
+
'photoThumbnail'?: string | null;
|
|
2909
2717
|
/**
|
|
2910
2718
|
*
|
|
2911
|
-
* @type {
|
|
2719
|
+
* @type {number}
|
|
2912
2720
|
* @memberof ContributorItemModel
|
|
2913
2721
|
*/
|
|
2914
|
-
'
|
|
2722
|
+
'order'?: number;
|
|
2915
2723
|
/**
|
|
2916
2724
|
*
|
|
2917
2725
|
* @type {AuditableEntity}
|
|
@@ -2931,6 +2739,12 @@ export interface ContributorModel {
|
|
|
2931
2739
|
* @memberof ContributorModel
|
|
2932
2740
|
*/
|
|
2933
2741
|
'id'?: string;
|
|
2742
|
+
/**
|
|
2743
|
+
*
|
|
2744
|
+
* @type {string}
|
|
2745
|
+
* @memberof ContributorModel
|
|
2746
|
+
*/
|
|
2747
|
+
'languageCode'?: string | null;
|
|
2934
2748
|
/**
|
|
2935
2749
|
*
|
|
2936
2750
|
* @type {string}
|
|
@@ -2945,58 +2759,58 @@ export interface ContributorModel {
|
|
|
2945
2759
|
'slug'?: string | null;
|
|
2946
2760
|
/**
|
|
2947
2761
|
*
|
|
2948
|
-
* @type {
|
|
2762
|
+
* @type {boolean}
|
|
2949
2763
|
* @memberof ContributorModel
|
|
2950
2764
|
*/
|
|
2951
|
-
'
|
|
2765
|
+
'confirmed'?: boolean;
|
|
2952
2766
|
/**
|
|
2953
2767
|
*
|
|
2954
2768
|
* @type {string}
|
|
2955
2769
|
* @memberof ContributorModel
|
|
2956
2770
|
*/
|
|
2957
|
-
'
|
|
2771
|
+
'hospitalId'?: string;
|
|
2958
2772
|
/**
|
|
2959
2773
|
*
|
|
2960
2774
|
* @type {string}
|
|
2961
2775
|
* @memberof ContributorModel
|
|
2962
2776
|
*/
|
|
2963
|
-
'
|
|
2777
|
+
'hospitalName'?: string | null;
|
|
2964
2778
|
/**
|
|
2965
2779
|
*
|
|
2966
2780
|
* @type {string}
|
|
2967
2781
|
* @memberof ContributorModel
|
|
2968
2782
|
*/
|
|
2969
|
-
'
|
|
2783
|
+
'hospitalSlug'?: string | null;
|
|
2970
2784
|
/**
|
|
2971
2785
|
*
|
|
2972
2786
|
* @type {string}
|
|
2973
2787
|
* @memberof ContributorModel
|
|
2974
2788
|
*/
|
|
2975
|
-
'
|
|
2789
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
2976
2790
|
/**
|
|
2977
2791
|
*
|
|
2978
2792
|
* @type {string}
|
|
2979
2793
|
* @memberof ContributorModel
|
|
2980
2794
|
*/
|
|
2981
|
-
'
|
|
2795
|
+
'email'?: string | null;
|
|
2982
2796
|
/**
|
|
2983
2797
|
*
|
|
2984
2798
|
* @type {string}
|
|
2985
2799
|
* @memberof ContributorModel
|
|
2986
2800
|
*/
|
|
2987
|
-
'
|
|
2801
|
+
'photo'?: string | null;
|
|
2988
2802
|
/**
|
|
2989
2803
|
*
|
|
2990
|
-
* @type {
|
|
2804
|
+
* @type {string}
|
|
2991
2805
|
* @memberof ContributorModel
|
|
2992
2806
|
*/
|
|
2993
|
-
'
|
|
2807
|
+
'photoThumbnail'?: string | null;
|
|
2994
2808
|
/**
|
|
2995
2809
|
*
|
|
2996
|
-
* @type {
|
|
2810
|
+
* @type {number}
|
|
2997
2811
|
* @memberof ContributorModel
|
|
2998
2812
|
*/
|
|
2999
|
-
'
|
|
2813
|
+
'order'?: number;
|
|
3000
2814
|
/**
|
|
3001
2815
|
*
|
|
3002
2816
|
* @type {AuditableEntity}
|
|
@@ -3008,25 +2822,19 @@ export interface ContributorModel {
|
|
|
3008
2822
|
* @type {string}
|
|
3009
2823
|
* @memberof ContributorModel
|
|
3010
2824
|
*/
|
|
3011
|
-
'
|
|
2825
|
+
'description'?: string | null;
|
|
3012
2826
|
/**
|
|
3013
2827
|
*
|
|
3014
2828
|
* @type {string}
|
|
3015
2829
|
* @memberof ContributorModel
|
|
3016
2830
|
*/
|
|
3017
|
-
'
|
|
3018
|
-
/**
|
|
3019
|
-
*
|
|
3020
|
-
* @type {Array<SnsHandle>}
|
|
3021
|
-
* @memberof ContributorModel
|
|
3022
|
-
*/
|
|
3023
|
-
'snsHandles'?: Array<SnsHandle> | null;
|
|
2831
|
+
'overview'?: string | null;
|
|
3024
2832
|
/**
|
|
3025
2833
|
*
|
|
3026
|
-
* @type {
|
|
2834
|
+
* @type {string}
|
|
3027
2835
|
* @memberof ContributorModel
|
|
3028
2836
|
*/
|
|
3029
|
-
'
|
|
2837
|
+
'content'?: string | null;
|
|
3030
2838
|
}
|
|
3031
2839
|
/**
|
|
3032
2840
|
*
|
|
@@ -3102,67 +2910,25 @@ export interface CountryItemModel {
|
|
|
3102
2910
|
* @type {string}
|
|
3103
2911
|
* @memberof CountryItemModel
|
|
3104
2912
|
*/
|
|
3105
|
-
'
|
|
2913
|
+
'languageCode'?: string | null;
|
|
3106
2914
|
/**
|
|
3107
2915
|
*
|
|
3108
2916
|
* @type {string}
|
|
3109
2917
|
* @memberof CountryItemModel
|
|
3110
2918
|
*/
|
|
3111
|
-
'
|
|
2919
|
+
'name'?: string | null;
|
|
3112
2920
|
/**
|
|
3113
2921
|
*
|
|
3114
2922
|
* @type {string}
|
|
3115
2923
|
* @memberof CountryItemModel
|
|
3116
2924
|
*/
|
|
3117
2925
|
'slug'?: string | null;
|
|
3118
|
-
/**
|
|
3119
|
-
*
|
|
3120
|
-
* @type {string}
|
|
3121
|
-
* @memberof CountryItemModel
|
|
3122
|
-
*/
|
|
3123
|
-
'description'?: string | null;
|
|
3124
|
-
/**
|
|
3125
|
-
*
|
|
3126
|
-
* @type {number}
|
|
3127
|
-
* @memberof CountryItemModel
|
|
3128
|
-
*/
|
|
3129
|
-
'hospitalsCount'?: number;
|
|
3130
|
-
/**
|
|
3131
|
-
*
|
|
3132
|
-
* @type {number}
|
|
3133
|
-
* @memberof CountryItemModel
|
|
3134
|
-
*/
|
|
3135
|
-
'doctorsCount'?: number;
|
|
3136
|
-
/**
|
|
3137
|
-
*
|
|
3138
|
-
* @type {number}
|
|
3139
|
-
* @memberof CountryItemModel
|
|
3140
|
-
*/
|
|
3141
|
-
'specialitiesCount'?: number;
|
|
3142
|
-
/**
|
|
3143
|
-
*
|
|
3144
|
-
* @type {number}
|
|
3145
|
-
* @memberof CountryItemModel
|
|
3146
|
-
*/
|
|
3147
|
-
'packagesCount'?: number;
|
|
3148
|
-
/**
|
|
3149
|
-
*
|
|
3150
|
-
* @type {number}
|
|
3151
|
-
* @memberof CountryItemModel
|
|
3152
|
-
*/
|
|
3153
|
-
'articlesCount'?: number;
|
|
3154
2926
|
/**
|
|
3155
2927
|
*
|
|
3156
2928
|
* @type {boolean}
|
|
3157
2929
|
* @memberof CountryItemModel
|
|
3158
2930
|
*/
|
|
3159
2931
|
'confirmed'?: boolean;
|
|
3160
|
-
/**
|
|
3161
|
-
*
|
|
3162
|
-
* @type {Array<MediaModel>}
|
|
3163
|
-
* @memberof CountryItemModel
|
|
3164
|
-
*/
|
|
3165
|
-
'medias'?: Array<MediaModel> | null;
|
|
3166
2932
|
/**
|
|
3167
2933
|
*
|
|
3168
2934
|
* @type {AuditableEntity}
|
|
@@ -3187,55 +2953,19 @@ export interface CountryModel {
|
|
|
3187
2953
|
* @type {string}
|
|
3188
2954
|
* @memberof CountryModel
|
|
3189
2955
|
*/
|
|
3190
|
-
'
|
|
2956
|
+
'languageCode'?: string | null;
|
|
3191
2957
|
/**
|
|
3192
2958
|
*
|
|
3193
2959
|
* @type {string}
|
|
3194
2960
|
* @memberof CountryModel
|
|
3195
2961
|
*/
|
|
3196
|
-
'
|
|
2962
|
+
'name'?: string | null;
|
|
3197
2963
|
/**
|
|
3198
2964
|
*
|
|
3199
2965
|
* @type {string}
|
|
3200
2966
|
* @memberof CountryModel
|
|
3201
2967
|
*/
|
|
3202
2968
|
'slug'?: string | null;
|
|
3203
|
-
/**
|
|
3204
|
-
*
|
|
3205
|
-
* @type {string}
|
|
3206
|
-
* @memberof CountryModel
|
|
3207
|
-
*/
|
|
3208
|
-
'description'?: string | null;
|
|
3209
|
-
/**
|
|
3210
|
-
*
|
|
3211
|
-
* @type {number}
|
|
3212
|
-
* @memberof CountryModel
|
|
3213
|
-
*/
|
|
3214
|
-
'hospitalsCount'?: number;
|
|
3215
|
-
/**
|
|
3216
|
-
*
|
|
3217
|
-
* @type {number}
|
|
3218
|
-
* @memberof CountryModel
|
|
3219
|
-
*/
|
|
3220
|
-
'doctorsCount'?: number;
|
|
3221
|
-
/**
|
|
3222
|
-
*
|
|
3223
|
-
* @type {number}
|
|
3224
|
-
* @memberof CountryModel
|
|
3225
|
-
*/
|
|
3226
|
-
'specialitiesCount'?: number;
|
|
3227
|
-
/**
|
|
3228
|
-
*
|
|
3229
|
-
* @type {number}
|
|
3230
|
-
* @memberof CountryModel
|
|
3231
|
-
*/
|
|
3232
|
-
'packagesCount'?: number;
|
|
3233
|
-
/**
|
|
3234
|
-
*
|
|
3235
|
-
* @type {number}
|
|
3236
|
-
* @memberof CountryModel
|
|
3237
|
-
*/
|
|
3238
|
-
'articlesCount'?: number;
|
|
3239
2969
|
/**
|
|
3240
2970
|
*
|
|
3241
2971
|
* @type {boolean}
|
|
@@ -3244,22 +2974,22 @@ export interface CountryModel {
|
|
|
3244
2974
|
'confirmed'?: boolean;
|
|
3245
2975
|
/**
|
|
3246
2976
|
*
|
|
3247
|
-
* @type {
|
|
2977
|
+
* @type {AuditableEntity}
|
|
3248
2978
|
* @memberof CountryModel
|
|
3249
2979
|
*/
|
|
3250
|
-
'
|
|
2980
|
+
'auditableEntity'?: AuditableEntity;
|
|
3251
2981
|
/**
|
|
3252
2982
|
*
|
|
3253
|
-
* @type {
|
|
2983
|
+
* @type {string}
|
|
3254
2984
|
* @memberof CountryModel
|
|
3255
2985
|
*/
|
|
3256
|
-
'
|
|
2986
|
+
'description'?: string | null;
|
|
3257
2987
|
/**
|
|
3258
2988
|
*
|
|
3259
2989
|
* @type {string}
|
|
3260
2990
|
* @memberof CountryModel
|
|
3261
2991
|
*/
|
|
3262
|
-
'
|
|
2992
|
+
'overview'?: string | null;
|
|
3263
2993
|
/**
|
|
3264
2994
|
*
|
|
3265
2995
|
* @type {string}
|
|
@@ -3268,10 +2998,10 @@ export interface CountryModel {
|
|
|
3268
2998
|
'content'?: string | null;
|
|
3269
2999
|
/**
|
|
3270
3000
|
*
|
|
3271
|
-
* @type {
|
|
3001
|
+
* @type {string}
|
|
3272
3002
|
* @memberof CountryModel
|
|
3273
3003
|
*/
|
|
3274
|
-
'
|
|
3004
|
+
'logo'?: string | null;
|
|
3275
3005
|
}
|
|
3276
3006
|
/**
|
|
3277
3007
|
*
|
|
@@ -3513,12 +3243,6 @@ export interface CreateCHAdminCommand {
|
|
|
3513
3243
|
* @memberof CreateCHAdminCommand
|
|
3514
3244
|
*/
|
|
3515
3245
|
'firstName'?: string | null;
|
|
3516
|
-
/**
|
|
3517
|
-
*
|
|
3518
|
-
* @type {string}
|
|
3519
|
-
* @memberof CreateCHAdminCommand
|
|
3520
|
-
*/
|
|
3521
|
-
'middleName'?: string | null;
|
|
3522
3246
|
/**
|
|
3523
3247
|
*
|
|
3524
3248
|
* @type {string}
|
|
@@ -3586,12 +3310,6 @@ export interface CreateCHManagerCommand {
|
|
|
3586
3310
|
* @memberof CreateCHManagerCommand
|
|
3587
3311
|
*/
|
|
3588
3312
|
'firstName'?: string | null;
|
|
3589
|
-
/**
|
|
3590
|
-
*
|
|
3591
|
-
* @type {string}
|
|
3592
|
-
* @memberof CreateCHManagerCommand
|
|
3593
|
-
*/
|
|
3594
|
-
'middleName'?: string | null;
|
|
3595
3313
|
/**
|
|
3596
3314
|
*
|
|
3597
3315
|
* @type {string}
|
|
@@ -3906,12 +3624,90 @@ export interface CreateDealServiceCommand {
|
|
|
3906
3624
|
* @interface CreateDoctorAffiliationCommand
|
|
3907
3625
|
*/
|
|
3908
3626
|
export interface CreateDoctorAffiliationCommand {
|
|
3627
|
+
/**
|
|
3628
|
+
*
|
|
3629
|
+
* @type {string}
|
|
3630
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3631
|
+
*/
|
|
3632
|
+
'doctorId'?: string;
|
|
3909
3633
|
/**
|
|
3910
3634
|
*
|
|
3911
3635
|
* @type {string}
|
|
3912
3636
|
* @memberof CreateDoctorAffiliationCommand
|
|
3913
3637
|
*/
|
|
3914
3638
|
'hospitalId'?: string;
|
|
3639
|
+
/**
|
|
3640
|
+
*
|
|
3641
|
+
* @type {string}
|
|
3642
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3643
|
+
*/
|
|
3644
|
+
'name'?: string | null;
|
|
3645
|
+
/**
|
|
3646
|
+
*
|
|
3647
|
+
* @type {string}
|
|
3648
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3649
|
+
*/
|
|
3650
|
+
'description'?: string | null;
|
|
3651
|
+
/**
|
|
3652
|
+
*
|
|
3653
|
+
* @type {string}
|
|
3654
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3655
|
+
*/
|
|
3656
|
+
'content'?: string | null;
|
|
3657
|
+
/**
|
|
3658
|
+
*
|
|
3659
|
+
* @type {string}
|
|
3660
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3661
|
+
*/
|
|
3662
|
+
'customStyle'?: string | null;
|
|
3663
|
+
/**
|
|
3664
|
+
*
|
|
3665
|
+
* @type {number}
|
|
3666
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3667
|
+
*/
|
|
3668
|
+
'order'?: number;
|
|
3669
|
+
/**
|
|
3670
|
+
*
|
|
3671
|
+
* @type {string}
|
|
3672
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3673
|
+
*/
|
|
3674
|
+
'photo'?: string | null;
|
|
3675
|
+
/**
|
|
3676
|
+
*
|
|
3677
|
+
* @type {string}
|
|
3678
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3679
|
+
*/
|
|
3680
|
+
'photoThumbnail'?: string | null;
|
|
3681
|
+
/**
|
|
3682
|
+
*
|
|
3683
|
+
* @type {string}
|
|
3684
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3685
|
+
*/
|
|
3686
|
+
'background'?: string | null;
|
|
3687
|
+
/**
|
|
3688
|
+
*
|
|
3689
|
+
* @type {string}
|
|
3690
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3691
|
+
*/
|
|
3692
|
+
'backgroundThumbnail'?: string | null;
|
|
3693
|
+
/**
|
|
3694
|
+
*
|
|
3695
|
+
* @type {boolean}
|
|
3696
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3697
|
+
*/
|
|
3698
|
+
'consultationEnabled'?: boolean | null;
|
|
3699
|
+
/**
|
|
3700
|
+
*
|
|
3701
|
+
* @type {number}
|
|
3702
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3703
|
+
*/
|
|
3704
|
+
'consultationFee'?: number | null;
|
|
3705
|
+
/**
|
|
3706
|
+
*
|
|
3707
|
+
* @type {Array<MediaModel>}
|
|
3708
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3709
|
+
*/
|
|
3710
|
+
'medias'?: Array<MediaModel> | null;
|
|
3915
3711
|
}
|
|
3916
3712
|
/**
|
|
3917
3713
|
*
|
|
@@ -3962,36 +3758,12 @@ export interface CreateDoctorCommand {
|
|
|
3962
3758
|
* @memberof CreateDoctorCommand
|
|
3963
3759
|
*/
|
|
3964
3760
|
'firstName'?: string | null;
|
|
3965
|
-
/**
|
|
3966
|
-
*
|
|
3967
|
-
* @type {string}
|
|
3968
|
-
* @memberof CreateDoctorCommand
|
|
3969
|
-
*/
|
|
3970
|
-
'middleName'?: string | null;
|
|
3971
3761
|
/**
|
|
3972
3762
|
*
|
|
3973
3763
|
* @type {string}
|
|
3974
3764
|
* @memberof CreateDoctorCommand
|
|
3975
3765
|
*/
|
|
3976
3766
|
'lastName'?: string | null;
|
|
3977
|
-
/**
|
|
3978
|
-
*
|
|
3979
|
-
* @type {string}
|
|
3980
|
-
* @memberof CreateDoctorCommand
|
|
3981
|
-
*/
|
|
3982
|
-
'description'?: string | null;
|
|
3983
|
-
/**
|
|
3984
|
-
*
|
|
3985
|
-
* @type {string}
|
|
3986
|
-
* @memberof CreateDoctorCommand
|
|
3987
|
-
*/
|
|
3988
|
-
'overview'?: string | null;
|
|
3989
|
-
/**
|
|
3990
|
-
*
|
|
3991
|
-
* @type {string}
|
|
3992
|
-
* @memberof CreateDoctorCommand
|
|
3993
|
-
*/
|
|
3994
|
-
'content'?: string | null;
|
|
3995
3767
|
/**
|
|
3996
3768
|
*
|
|
3997
3769
|
* @type {string}
|
|
@@ -4028,6 +3800,12 @@ export interface CreateDoctorCommand {
|
|
|
4028
3800
|
* @memberof CreateDoctorCommand
|
|
4029
3801
|
*/
|
|
4030
3802
|
'startPracticeDate'?: Date | null;
|
|
3803
|
+
/**
|
|
3804
|
+
*
|
|
3805
|
+
* @type {string}
|
|
3806
|
+
* @memberof CreateDoctorCommand
|
|
3807
|
+
*/
|
|
3808
|
+
'overview'?: string | null;
|
|
4031
3809
|
/**
|
|
4032
3810
|
*
|
|
4033
3811
|
* @type {boolean}
|
|
@@ -4730,12 +4508,6 @@ export interface CreateManagerCommand {
|
|
|
4730
4508
|
* @memberof CreateManagerCommand
|
|
4731
4509
|
*/
|
|
4732
4510
|
'firstName'?: string | null;
|
|
4733
|
-
/**
|
|
4734
|
-
*
|
|
4735
|
-
* @type {string}
|
|
4736
|
-
* @memberof CreateManagerCommand
|
|
4737
|
-
*/
|
|
4738
|
-
'middleName'?: string | null;
|
|
4739
4511
|
/**
|
|
4740
4512
|
*
|
|
4741
4513
|
* @type {string}
|
|
@@ -4846,12 +4618,6 @@ export interface CreatePatientCommand {
|
|
|
4846
4618
|
* @memberof CreatePatientCommand
|
|
4847
4619
|
*/
|
|
4848
4620
|
'firstName'?: string | null;
|
|
4849
|
-
/**
|
|
4850
|
-
*
|
|
4851
|
-
* @type {string}
|
|
4852
|
-
* @memberof CreatePatientCommand
|
|
4853
|
-
*/
|
|
4854
|
-
'middleName'?: string | null;
|
|
4855
4621
|
/**
|
|
4856
4622
|
*
|
|
4857
4623
|
* @type {string}
|
|
@@ -5239,61 +5005,43 @@ export interface DealItemModel {
|
|
|
5239
5005
|
* @type {string}
|
|
5240
5006
|
* @memberof DealItemModel
|
|
5241
5007
|
*/
|
|
5242
|
-
'
|
|
5243
|
-
/**
|
|
5244
|
-
*
|
|
5245
|
-
* @type {string}
|
|
5246
|
-
* @memberof DealItemModel
|
|
5247
|
-
*/
|
|
5248
|
-
'slug'?: string | null;
|
|
5008
|
+
'languageCode'?: string | null;
|
|
5249
5009
|
/**
|
|
5250
5010
|
*
|
|
5251
5011
|
* @type {string}
|
|
5252
5012
|
* @memberof DealItemModel
|
|
5253
5013
|
*/
|
|
5254
|
-
'
|
|
5014
|
+
'name'?: string | null;
|
|
5255
5015
|
/**
|
|
5256
5016
|
*
|
|
5257
5017
|
* @type {string}
|
|
5258
5018
|
* @memberof DealItemModel
|
|
5259
5019
|
*/
|
|
5260
|
-
'
|
|
5020
|
+
'slug'?: string | null;
|
|
5261
5021
|
/**
|
|
5262
5022
|
*
|
|
5263
|
-
* @type {
|
|
5023
|
+
* @type {boolean}
|
|
5264
5024
|
* @memberof DealItemModel
|
|
5265
5025
|
*/
|
|
5266
|
-
'
|
|
5026
|
+
'confirmed'?: boolean;
|
|
5267
5027
|
/**
|
|
5268
5028
|
*
|
|
5269
5029
|
* @type {string}
|
|
5270
5030
|
* @memberof DealItemModel
|
|
5271
5031
|
*/
|
|
5272
|
-
'
|
|
5032
|
+
'hospitalId'?: string;
|
|
5273
5033
|
/**
|
|
5274
5034
|
*
|
|
5275
5035
|
* @type {string}
|
|
5276
5036
|
* @memberof DealItemModel
|
|
5277
5037
|
*/
|
|
5278
|
-
'
|
|
5038
|
+
'hospitalName'?: string | null;
|
|
5279
5039
|
/**
|
|
5280
5040
|
*
|
|
5281
5041
|
* @type {string}
|
|
5282
5042
|
* @memberof DealItemModel
|
|
5283
5043
|
*/
|
|
5284
|
-
'
|
|
5285
|
-
/**
|
|
5286
|
-
*
|
|
5287
|
-
* @type {boolean}
|
|
5288
|
-
* @memberof DealItemModel
|
|
5289
|
-
*/
|
|
5290
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
5291
|
-
/**
|
|
5292
|
-
*
|
|
5293
|
-
* @type {number}
|
|
5294
|
-
* @memberof DealItemModel
|
|
5295
|
-
*/
|
|
5296
|
-
'serviceDuration'?: number;
|
|
5044
|
+
'hospitalSlug'?: string | null;
|
|
5297
5045
|
/**
|
|
5298
5046
|
*
|
|
5299
5047
|
* @type {MarketingType}
|
|
@@ -5318,24 +5066,6 @@ export interface DealItemModel {
|
|
|
5318
5066
|
* @memberof DealItemModel
|
|
5319
5067
|
*/
|
|
5320
5068
|
'order'?: number;
|
|
5321
|
-
/**
|
|
5322
|
-
*
|
|
5323
|
-
* @type {boolean}
|
|
5324
|
-
* @memberof DealItemModel
|
|
5325
|
-
*/
|
|
5326
|
-
'confirmed'?: boolean;
|
|
5327
|
-
/**
|
|
5328
|
-
*
|
|
5329
|
-
* @type {Array<DealPackageItemModel>}
|
|
5330
|
-
* @memberof DealItemModel
|
|
5331
|
-
*/
|
|
5332
|
-
'dealPackages'?: Array<DealPackageItemModel> | null;
|
|
5333
|
-
/**
|
|
5334
|
-
*
|
|
5335
|
-
* @type {Array<DealServiceItemModel>}
|
|
5336
|
-
* @memberof DealItemModel
|
|
5337
|
-
*/
|
|
5338
|
-
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
5339
5069
|
/**
|
|
5340
5070
|
*
|
|
5341
5071
|
* @type {AuditableEntity}
|
|
@@ -5360,49 +5090,25 @@ export interface DealItemSimpleModel {
|
|
|
5360
5090
|
* @type {string}
|
|
5361
5091
|
* @memberof DealItemSimpleModel
|
|
5362
5092
|
*/
|
|
5363
|
-
'
|
|
5364
|
-
/**
|
|
5365
|
-
*
|
|
5366
|
-
* @type {string}
|
|
5367
|
-
* @memberof DealItemSimpleModel
|
|
5368
|
-
*/
|
|
5369
|
-
'slug'?: string | null;
|
|
5370
|
-
/**
|
|
5371
|
-
*
|
|
5372
|
-
* @type {string}
|
|
5373
|
-
* @memberof DealItemSimpleModel
|
|
5374
|
-
*/
|
|
5375
|
-
'hospitalId'?: string;
|
|
5093
|
+
'languageCode'?: string | null;
|
|
5376
5094
|
/**
|
|
5377
5095
|
*
|
|
5378
5096
|
* @type {string}
|
|
5379
5097
|
* @memberof DealItemSimpleModel
|
|
5380
5098
|
*/
|
|
5381
|
-
'
|
|
5099
|
+
'name'?: string | null;
|
|
5382
5100
|
/**
|
|
5383
5101
|
*
|
|
5384
5102
|
* @type {string}
|
|
5385
5103
|
* @memberof DealItemSimpleModel
|
|
5386
5104
|
*/
|
|
5387
|
-
'
|
|
5388
|
-
/**
|
|
5389
|
-
*
|
|
5390
|
-
* @type {number}
|
|
5391
|
-
* @memberof DealItemSimpleModel
|
|
5392
|
-
*/
|
|
5393
|
-
'order'?: number;
|
|
5105
|
+
'slug'?: string | null;
|
|
5394
5106
|
/**
|
|
5395
5107
|
*
|
|
5396
5108
|
* @type {boolean}
|
|
5397
5109
|
* @memberof DealItemSimpleModel
|
|
5398
5110
|
*/
|
|
5399
5111
|
'confirmed'?: boolean;
|
|
5400
|
-
/**
|
|
5401
|
-
*
|
|
5402
|
-
* @type {AuditableEntity}
|
|
5403
|
-
* @memberof DealItemSimpleModel
|
|
5404
|
-
*/
|
|
5405
|
-
'auditableEntity'?: AuditableEntity;
|
|
5406
5112
|
}
|
|
5407
5113
|
/**
|
|
5408
5114
|
*
|
|
@@ -5421,61 +5127,43 @@ export interface DealModel {
|
|
|
5421
5127
|
* @type {string}
|
|
5422
5128
|
* @memberof DealModel
|
|
5423
5129
|
*/
|
|
5424
|
-
'
|
|
5425
|
-
/**
|
|
5426
|
-
*
|
|
5427
|
-
* @type {string}
|
|
5428
|
-
* @memberof DealModel
|
|
5429
|
-
*/
|
|
5430
|
-
'slug'?: string | null;
|
|
5130
|
+
'languageCode'?: string | null;
|
|
5431
5131
|
/**
|
|
5432
5132
|
*
|
|
5433
5133
|
* @type {string}
|
|
5434
5134
|
* @memberof DealModel
|
|
5435
5135
|
*/
|
|
5436
|
-
'
|
|
5136
|
+
'name'?: string | null;
|
|
5437
5137
|
/**
|
|
5438
5138
|
*
|
|
5439
5139
|
* @type {string}
|
|
5440
5140
|
* @memberof DealModel
|
|
5441
5141
|
*/
|
|
5442
|
-
'
|
|
5142
|
+
'slug'?: string | null;
|
|
5443
5143
|
/**
|
|
5444
5144
|
*
|
|
5445
|
-
* @type {
|
|
5145
|
+
* @type {boolean}
|
|
5446
5146
|
* @memberof DealModel
|
|
5447
5147
|
*/
|
|
5448
|
-
'
|
|
5148
|
+
'confirmed'?: boolean;
|
|
5449
5149
|
/**
|
|
5450
5150
|
*
|
|
5451
5151
|
* @type {string}
|
|
5452
5152
|
* @memberof DealModel
|
|
5453
5153
|
*/
|
|
5454
|
-
'
|
|
5154
|
+
'hospitalId'?: string;
|
|
5455
5155
|
/**
|
|
5456
5156
|
*
|
|
5457
5157
|
* @type {string}
|
|
5458
5158
|
* @memberof DealModel
|
|
5459
5159
|
*/
|
|
5460
|
-
'
|
|
5160
|
+
'hospitalName'?: string | null;
|
|
5461
5161
|
/**
|
|
5462
5162
|
*
|
|
5463
5163
|
* @type {string}
|
|
5464
5164
|
* @memberof DealModel
|
|
5465
5165
|
*/
|
|
5466
|
-
'
|
|
5467
|
-
/**
|
|
5468
|
-
*
|
|
5469
|
-
* @type {boolean}
|
|
5470
|
-
* @memberof DealModel
|
|
5471
|
-
*/
|
|
5472
|
-
'hospitalConsultationEnabled'?: boolean;
|
|
5473
|
-
/**
|
|
5474
|
-
*
|
|
5475
|
-
* @type {number}
|
|
5476
|
-
* @memberof DealModel
|
|
5477
|
-
*/
|
|
5478
|
-
'serviceDuration'?: number;
|
|
5166
|
+
'hospitalSlug'?: string | null;
|
|
5479
5167
|
/**
|
|
5480
5168
|
*
|
|
5481
5169
|
* @type {MarketingType}
|
|
@@ -5502,40 +5190,34 @@ export interface DealModel {
|
|
|
5502
5190
|
'order'?: number;
|
|
5503
5191
|
/**
|
|
5504
5192
|
*
|
|
5505
|
-
* @type {
|
|
5506
|
-
* @memberof DealModel
|
|
5507
|
-
*/
|
|
5508
|
-
'confirmed'?: boolean;
|
|
5509
|
-
/**
|
|
5510
|
-
*
|
|
5511
|
-
* @type {Array<DealPackageItemModel>}
|
|
5193
|
+
* @type {AuditableEntity}
|
|
5512
5194
|
* @memberof DealModel
|
|
5513
5195
|
*/
|
|
5514
|
-
'
|
|
5196
|
+
'auditableEntity'?: AuditableEntity;
|
|
5515
5197
|
/**
|
|
5516
5198
|
*
|
|
5517
|
-
* @type {
|
|
5199
|
+
* @type {string}
|
|
5518
5200
|
* @memberof DealModel
|
|
5519
5201
|
*/
|
|
5520
|
-
'
|
|
5202
|
+
'description'?: string | null;
|
|
5521
5203
|
/**
|
|
5522
5204
|
*
|
|
5523
|
-
* @type {
|
|
5205
|
+
* @type {string}
|
|
5524
5206
|
* @memberof DealModel
|
|
5525
5207
|
*/
|
|
5526
|
-
'
|
|
5208
|
+
'overview'?: string | null;
|
|
5527
5209
|
/**
|
|
5528
5210
|
*
|
|
5529
5211
|
* @type {string}
|
|
5530
5212
|
* @memberof DealModel
|
|
5531
5213
|
*/
|
|
5532
|
-
'
|
|
5214
|
+
'content'?: string | null;
|
|
5533
5215
|
/**
|
|
5534
5216
|
*
|
|
5535
|
-
* @type {
|
|
5217
|
+
* @type {number}
|
|
5536
5218
|
* @memberof DealModel
|
|
5537
5219
|
*/
|
|
5538
|
-
'
|
|
5220
|
+
'serviceDuration'?: number;
|
|
5539
5221
|
}
|
|
5540
5222
|
/**
|
|
5541
5223
|
*
|
|
@@ -5877,6 +5559,12 @@ export interface DeleteFaqTagCommand {
|
|
|
5877
5559
|
* @interface DoctorAffiliationItemModel
|
|
5878
5560
|
*/
|
|
5879
5561
|
export interface DoctorAffiliationItemModel {
|
|
5562
|
+
/**
|
|
5563
|
+
*
|
|
5564
|
+
* @type {string}
|
|
5565
|
+
* @memberof DoctorAffiliationItemModel
|
|
5566
|
+
*/
|
|
5567
|
+
'id'?: string;
|
|
5880
5568
|
/**
|
|
5881
5569
|
*
|
|
5882
5570
|
* @type {string}
|
|
@@ -5888,13 +5576,61 @@ export interface DoctorAffiliationItemModel {
|
|
|
5888
5576
|
* @type {string}
|
|
5889
5577
|
* @memberof DoctorAffiliationItemModel
|
|
5890
5578
|
*/
|
|
5891
|
-
'
|
|
5579
|
+
'doctorId'?: string;
|
|
5892
5580
|
/**
|
|
5893
5581
|
*
|
|
5894
5582
|
* @type {string}
|
|
5895
5583
|
* @memberof DoctorAffiliationItemModel
|
|
5896
5584
|
*/
|
|
5897
|
-
'
|
|
5585
|
+
'languageCode'?: string | null;
|
|
5586
|
+
/**
|
|
5587
|
+
*
|
|
5588
|
+
* @type {string}
|
|
5589
|
+
* @memberof DoctorAffiliationItemModel
|
|
5590
|
+
*/
|
|
5591
|
+
'name'?: string | null;
|
|
5592
|
+
/**
|
|
5593
|
+
*
|
|
5594
|
+
* @type {string}
|
|
5595
|
+
* @memberof DoctorAffiliationItemModel
|
|
5596
|
+
*/
|
|
5597
|
+
'slug'?: string | null;
|
|
5598
|
+
/**
|
|
5599
|
+
*
|
|
5600
|
+
* @type {boolean}
|
|
5601
|
+
* @memberof DoctorAffiliationItemModel
|
|
5602
|
+
*/
|
|
5603
|
+
'confirmed'?: boolean;
|
|
5604
|
+
/**
|
|
5605
|
+
*
|
|
5606
|
+
* @type {string}
|
|
5607
|
+
* @memberof DoctorAffiliationItemModel
|
|
5608
|
+
*/
|
|
5609
|
+
'photo'?: string | null;
|
|
5610
|
+
/**
|
|
5611
|
+
*
|
|
5612
|
+
* @type {string}
|
|
5613
|
+
* @memberof DoctorAffiliationItemModel
|
|
5614
|
+
*/
|
|
5615
|
+
'photoThumbnail'?: string | null;
|
|
5616
|
+
/**
|
|
5617
|
+
*
|
|
5618
|
+
* @type {boolean}
|
|
5619
|
+
* @memberof DoctorAffiliationItemModel
|
|
5620
|
+
*/
|
|
5621
|
+
'consultationEnabled'?: boolean | null;
|
|
5622
|
+
/**
|
|
5623
|
+
*
|
|
5624
|
+
* @type {number}
|
|
5625
|
+
* @memberof DoctorAffiliationItemModel
|
|
5626
|
+
*/
|
|
5627
|
+
'consultationFee'?: number | null;
|
|
5628
|
+
/**
|
|
5629
|
+
*
|
|
5630
|
+
* @type {number}
|
|
5631
|
+
* @memberof DoctorAffiliationItemModel
|
|
5632
|
+
*/
|
|
5633
|
+
'order'?: number;
|
|
5898
5634
|
}
|
|
5899
5635
|
/**
|
|
5900
5636
|
*
|
|
@@ -5902,12 +5638,96 @@ export interface DoctorAffiliationItemModel {
|
|
|
5902
5638
|
* @interface DoctorAffiliationModel
|
|
5903
5639
|
*/
|
|
5904
5640
|
export interface DoctorAffiliationModel {
|
|
5641
|
+
/**
|
|
5642
|
+
*
|
|
5643
|
+
* @type {string}
|
|
5644
|
+
* @memberof DoctorAffiliationModel
|
|
5645
|
+
*/
|
|
5646
|
+
'id'?: string;
|
|
5905
5647
|
/**
|
|
5906
5648
|
*
|
|
5907
5649
|
* @type {string}
|
|
5908
5650
|
* @memberof DoctorAffiliationModel
|
|
5909
5651
|
*/
|
|
5910
5652
|
'hospitalId'?: string;
|
|
5653
|
+
/**
|
|
5654
|
+
*
|
|
5655
|
+
* @type {string}
|
|
5656
|
+
* @memberof DoctorAffiliationModel
|
|
5657
|
+
*/
|
|
5658
|
+
'doctorId'?: string;
|
|
5659
|
+
/**
|
|
5660
|
+
*
|
|
5661
|
+
* @type {string}
|
|
5662
|
+
* @memberof DoctorAffiliationModel
|
|
5663
|
+
*/
|
|
5664
|
+
'languageCode'?: string | null;
|
|
5665
|
+
/**
|
|
5666
|
+
*
|
|
5667
|
+
* @type {string}
|
|
5668
|
+
* @memberof DoctorAffiliationModel
|
|
5669
|
+
*/
|
|
5670
|
+
'name'?: string | null;
|
|
5671
|
+
/**
|
|
5672
|
+
*
|
|
5673
|
+
* @type {string}
|
|
5674
|
+
* @memberof DoctorAffiliationModel
|
|
5675
|
+
*/
|
|
5676
|
+
'slug'?: string | null;
|
|
5677
|
+
/**
|
|
5678
|
+
*
|
|
5679
|
+
* @type {boolean}
|
|
5680
|
+
* @memberof DoctorAffiliationModel
|
|
5681
|
+
*/
|
|
5682
|
+
'confirmed'?: boolean;
|
|
5683
|
+
/**
|
|
5684
|
+
*
|
|
5685
|
+
* @type {string}
|
|
5686
|
+
* @memberof DoctorAffiliationModel
|
|
5687
|
+
*/
|
|
5688
|
+
'photo'?: string | null;
|
|
5689
|
+
/**
|
|
5690
|
+
*
|
|
5691
|
+
* @type {string}
|
|
5692
|
+
* @memberof DoctorAffiliationModel
|
|
5693
|
+
*/
|
|
5694
|
+
'photoThumbnail'?: string | null;
|
|
5695
|
+
/**
|
|
5696
|
+
*
|
|
5697
|
+
* @type {boolean}
|
|
5698
|
+
* @memberof DoctorAffiliationModel
|
|
5699
|
+
*/
|
|
5700
|
+
'consultationEnabled'?: boolean | null;
|
|
5701
|
+
/**
|
|
5702
|
+
*
|
|
5703
|
+
* @type {number}
|
|
5704
|
+
* @memberof DoctorAffiliationModel
|
|
5705
|
+
*/
|
|
5706
|
+
'consultationFee'?: number | null;
|
|
5707
|
+
/**
|
|
5708
|
+
*
|
|
5709
|
+
* @type {number}
|
|
5710
|
+
* @memberof DoctorAffiliationModel
|
|
5711
|
+
*/
|
|
5712
|
+
'order'?: number;
|
|
5713
|
+
/**
|
|
5714
|
+
*
|
|
5715
|
+
* @type {string}
|
|
5716
|
+
* @memberof DoctorAffiliationModel
|
|
5717
|
+
*/
|
|
5718
|
+
'description'?: string | null;
|
|
5719
|
+
/**
|
|
5720
|
+
*
|
|
5721
|
+
* @type {string}
|
|
5722
|
+
* @memberof DoctorAffiliationModel
|
|
5723
|
+
*/
|
|
5724
|
+
'overview'?: string | null;
|
|
5725
|
+
/**
|
|
5726
|
+
*
|
|
5727
|
+
* @type {string}
|
|
5728
|
+
* @memberof DoctorAffiliationModel
|
|
5729
|
+
*/
|
|
5730
|
+
'content'?: string | null;
|
|
5911
5731
|
/**
|
|
5912
5732
|
*
|
|
5913
5733
|
* @type {string}
|
|
@@ -5920,6 +5740,36 @@ export interface DoctorAffiliationModel {
|
|
|
5920
5740
|
* @memberof DoctorAffiliationModel
|
|
5921
5741
|
*/
|
|
5922
5742
|
'hospitalSlug'?: string | null;
|
|
5743
|
+
/**
|
|
5744
|
+
*
|
|
5745
|
+
* @type {string}
|
|
5746
|
+
* @memberof DoctorAffiliationModel
|
|
5747
|
+
*/
|
|
5748
|
+
'background'?: string | null;
|
|
5749
|
+
/**
|
|
5750
|
+
*
|
|
5751
|
+
* @type {string}
|
|
5752
|
+
* @memberof DoctorAffiliationModel
|
|
5753
|
+
*/
|
|
5754
|
+
'backgroundThumbnail'?: string | null;
|
|
5755
|
+
/**
|
|
5756
|
+
*
|
|
5757
|
+
* @type {string}
|
|
5758
|
+
* @memberof DoctorAffiliationModel
|
|
5759
|
+
*/
|
|
5760
|
+
'customStyle'?: string | null;
|
|
5761
|
+
/**
|
|
5762
|
+
*
|
|
5763
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5764
|
+
* @memberof DoctorAffiliationModel
|
|
5765
|
+
*/
|
|
5766
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5767
|
+
/**
|
|
5768
|
+
*
|
|
5769
|
+
* @type {Array<MediaModel>}
|
|
5770
|
+
* @memberof DoctorAffiliationModel
|
|
5771
|
+
*/
|
|
5772
|
+
'medias'?: Array<MediaModel> | null;
|
|
5923
5773
|
}
|
|
5924
5774
|
/**
|
|
5925
5775
|
*
|
|
@@ -6191,31 +6041,31 @@ export interface DoctorItemModel {
|
|
|
6191
6041
|
* @type {string}
|
|
6192
6042
|
* @memberof DoctorItemModel
|
|
6193
6043
|
*/
|
|
6194
|
-
'
|
|
6044
|
+
'userName'?: string | null;
|
|
6195
6045
|
/**
|
|
6196
6046
|
*
|
|
6197
6047
|
* @type {string}
|
|
6198
6048
|
* @memberof DoctorItemModel
|
|
6199
6049
|
*/
|
|
6200
|
-
'
|
|
6050
|
+
'firstName'?: string | null;
|
|
6201
6051
|
/**
|
|
6202
6052
|
*
|
|
6203
|
-
* @type {
|
|
6053
|
+
* @type {string}
|
|
6204
6054
|
* @memberof DoctorItemModel
|
|
6205
6055
|
*/
|
|
6206
|
-
'
|
|
6056
|
+
'lastName'?: string | null;
|
|
6207
6057
|
/**
|
|
6208
6058
|
*
|
|
6209
|
-
* @type {
|
|
6059
|
+
* @type {string}
|
|
6210
6060
|
* @memberof DoctorItemModel
|
|
6211
6061
|
*/
|
|
6212
|
-
'
|
|
6062
|
+
'fullname'?: string | null;
|
|
6213
6063
|
/**
|
|
6214
6064
|
*
|
|
6215
|
-
* @type {
|
|
6065
|
+
* @type {string}
|
|
6216
6066
|
* @memberof DoctorItemModel
|
|
6217
6067
|
*/
|
|
6218
|
-
'
|
|
6068
|
+
'phone'?: string | null;
|
|
6219
6069
|
/**
|
|
6220
6070
|
*
|
|
6221
6071
|
* @type {string}
|
|
@@ -6234,24 +6084,169 @@ export interface DoctorItemModel {
|
|
|
6234
6084
|
* @memberof DoctorItemModel
|
|
6235
6085
|
*/
|
|
6236
6086
|
'photoThumbnail'?: string | null;
|
|
6087
|
+
/**
|
|
6088
|
+
*
|
|
6089
|
+
* @type {Gender}
|
|
6090
|
+
* @memberof DoctorItemModel
|
|
6091
|
+
*/
|
|
6092
|
+
'gender'?: Gender;
|
|
6093
|
+
/**
|
|
6094
|
+
*
|
|
6095
|
+
* @type {Date}
|
|
6096
|
+
* @memberof DoctorItemModel
|
|
6097
|
+
*/
|
|
6098
|
+
'dateOfBirth'?: Date | null;
|
|
6237
6099
|
/**
|
|
6238
6100
|
*
|
|
6239
6101
|
* @type {string}
|
|
6240
6102
|
* @memberof DoctorItemModel
|
|
6241
6103
|
*/
|
|
6242
|
-
'
|
|
6104
|
+
'timeZone'?: string | null;
|
|
6243
6105
|
/**
|
|
6244
6106
|
*
|
|
6245
|
-
* @type {
|
|
6107
|
+
* @type {string}
|
|
6246
6108
|
* @memberof DoctorItemModel
|
|
6247
6109
|
*/
|
|
6248
|
-
'
|
|
6110
|
+
'communicationUserId'?: string | null;
|
|
6249
6111
|
/**
|
|
6250
6112
|
*
|
|
6251
6113
|
* @type {AuditableEntity}
|
|
6252
6114
|
* @memberof DoctorItemModel
|
|
6253
6115
|
*/
|
|
6254
6116
|
'auditableEntity'?: AuditableEntity;
|
|
6117
|
+
/**
|
|
6118
|
+
*
|
|
6119
|
+
* @type {string}
|
|
6120
|
+
* @memberof DoctorItemModel
|
|
6121
|
+
*/
|
|
6122
|
+
'userType'?: string | null;
|
|
6123
|
+
/**
|
|
6124
|
+
*
|
|
6125
|
+
* @type {Array<UserLanguageModel>}
|
|
6126
|
+
* @memberof DoctorItemModel
|
|
6127
|
+
*/
|
|
6128
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
6129
|
+
/**
|
|
6130
|
+
*
|
|
6131
|
+
* @type {Array<UserLocationModel>}
|
|
6132
|
+
* @memberof DoctorItemModel
|
|
6133
|
+
*/
|
|
6134
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
6135
|
+
/**
|
|
6136
|
+
*
|
|
6137
|
+
* @type {string}
|
|
6138
|
+
* @memberof DoctorItemModel
|
|
6139
|
+
*/
|
|
6140
|
+
'slug'?: string | null;
|
|
6141
|
+
/**
|
|
6142
|
+
*
|
|
6143
|
+
* @type {string}
|
|
6144
|
+
* @memberof DoctorItemModel
|
|
6145
|
+
*/
|
|
6146
|
+
'hospitalId'?: string | null;
|
|
6147
|
+
/**
|
|
6148
|
+
*
|
|
6149
|
+
* @type {string}
|
|
6150
|
+
* @memberof DoctorItemModel
|
|
6151
|
+
*/
|
|
6152
|
+
'hospitalName'?: string | null;
|
|
6153
|
+
/**
|
|
6154
|
+
*
|
|
6155
|
+
* @type {Date}
|
|
6156
|
+
* @memberof DoctorItemModel
|
|
6157
|
+
*/
|
|
6158
|
+
'startPracticeDate'?: Date | null;
|
|
6159
|
+
/**
|
|
6160
|
+
*
|
|
6161
|
+
* @type {string}
|
|
6162
|
+
* @memberof DoctorItemModel
|
|
6163
|
+
*/
|
|
6164
|
+
'overview'?: string | null;
|
|
6165
|
+
/**
|
|
6166
|
+
*
|
|
6167
|
+
* @type {boolean}
|
|
6168
|
+
* @memberof DoctorItemModel
|
|
6169
|
+
*/
|
|
6170
|
+
'consultationEnabled'?: boolean | null;
|
|
6171
|
+
/**
|
|
6172
|
+
*
|
|
6173
|
+
* @type {number}
|
|
6174
|
+
* @memberof DoctorItemModel
|
|
6175
|
+
*/
|
|
6176
|
+
'consultationFee'?: number | null;
|
|
6177
|
+
/**
|
|
6178
|
+
*
|
|
6179
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6180
|
+
* @memberof DoctorItemModel
|
|
6181
|
+
*/
|
|
6182
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6183
|
+
/**
|
|
6184
|
+
*
|
|
6185
|
+
* @type {boolean}
|
|
6186
|
+
* @memberof DoctorItemModel
|
|
6187
|
+
*/
|
|
6188
|
+
'confirmed'?: boolean;
|
|
6189
|
+
}
|
|
6190
|
+
/**
|
|
6191
|
+
*
|
|
6192
|
+
* @export
|
|
6193
|
+
* @interface DoctorItemSimpleModel
|
|
6194
|
+
*/
|
|
6195
|
+
export interface DoctorItemSimpleModel {
|
|
6196
|
+
/**
|
|
6197
|
+
*
|
|
6198
|
+
* @type {string}
|
|
6199
|
+
* @memberof DoctorItemSimpleModel
|
|
6200
|
+
*/
|
|
6201
|
+
'id'?: string;
|
|
6202
|
+
/**
|
|
6203
|
+
*
|
|
6204
|
+
* @type {string}
|
|
6205
|
+
* @memberof DoctorItemSimpleModel
|
|
6206
|
+
*/
|
|
6207
|
+
'firstName'?: string | null;
|
|
6208
|
+
/**
|
|
6209
|
+
*
|
|
6210
|
+
* @type {string}
|
|
6211
|
+
* @memberof DoctorItemSimpleModel
|
|
6212
|
+
*/
|
|
6213
|
+
'lastName'?: string | null;
|
|
6214
|
+
/**
|
|
6215
|
+
*
|
|
6216
|
+
* @type {string}
|
|
6217
|
+
* @memberof DoctorItemSimpleModel
|
|
6218
|
+
*/
|
|
6219
|
+
'fullname'?: string | null;
|
|
6220
|
+
/**
|
|
6221
|
+
*
|
|
6222
|
+
* @type {string}
|
|
6223
|
+
* @memberof DoctorItemSimpleModel
|
|
6224
|
+
*/
|
|
6225
|
+
'slug'?: string | null;
|
|
6226
|
+
/**
|
|
6227
|
+
*
|
|
6228
|
+
* @type {string}
|
|
6229
|
+
* @memberof DoctorItemSimpleModel
|
|
6230
|
+
*/
|
|
6231
|
+
'hospitalId'?: string | null;
|
|
6232
|
+
/**
|
|
6233
|
+
*
|
|
6234
|
+
* @type {string}
|
|
6235
|
+
* @memberof DoctorItemSimpleModel
|
|
6236
|
+
*/
|
|
6237
|
+
'hospitalName'?: string | null;
|
|
6238
|
+
/**
|
|
6239
|
+
*
|
|
6240
|
+
* @type {string}
|
|
6241
|
+
* @memberof DoctorItemSimpleModel
|
|
6242
|
+
*/
|
|
6243
|
+
'overview'?: string | null;
|
|
6244
|
+
/**
|
|
6245
|
+
*
|
|
6246
|
+
* @type {boolean}
|
|
6247
|
+
* @memberof DoctorItemSimpleModel
|
|
6248
|
+
*/
|
|
6249
|
+
'confirmed'?: boolean;
|
|
6255
6250
|
}
|
|
6256
6251
|
/**
|
|
6257
6252
|
*
|
|
@@ -6346,12 +6341,6 @@ export interface DoctorModel {
|
|
|
6346
6341
|
* @memberof DoctorModel
|
|
6347
6342
|
*/
|
|
6348
6343
|
'firstName'?: string | null;
|
|
6349
|
-
/**
|
|
6350
|
-
*
|
|
6351
|
-
* @type {string}
|
|
6352
|
-
* @memberof DoctorModel
|
|
6353
|
-
*/
|
|
6354
|
-
'middleName'?: string | null;
|
|
6355
6344
|
/**
|
|
6356
6345
|
*
|
|
6357
6346
|
* @type {string}
|
|
@@ -6363,13 +6352,7 @@ export interface DoctorModel {
|
|
|
6363
6352
|
* @type {string}
|
|
6364
6353
|
* @memberof DoctorModel
|
|
6365
6354
|
*/
|
|
6366
|
-
'
|
|
6367
|
-
/**
|
|
6368
|
-
*
|
|
6369
|
-
* @type {string}
|
|
6370
|
-
* @memberof DoctorModel
|
|
6371
|
-
*/
|
|
6372
|
-
'slug'?: string | null;
|
|
6355
|
+
'fullname'?: string | null;
|
|
6373
6356
|
/**
|
|
6374
6357
|
*
|
|
6375
6358
|
* @type {string}
|
|
@@ -6447,25 +6430,31 @@ export interface DoctorModel {
|
|
|
6447
6430
|
* @type {string}
|
|
6448
6431
|
* @memberof DoctorModel
|
|
6449
6432
|
*/
|
|
6450
|
-
'
|
|
6433
|
+
'slug'?: string | null;
|
|
6451
6434
|
/**
|
|
6452
6435
|
*
|
|
6453
6436
|
* @type {string}
|
|
6454
6437
|
* @memberof DoctorModel
|
|
6455
6438
|
*/
|
|
6456
|
-
'
|
|
6439
|
+
'hospitalId'?: string | null;
|
|
6457
6440
|
/**
|
|
6458
6441
|
*
|
|
6459
6442
|
* @type {string}
|
|
6460
6443
|
* @memberof DoctorModel
|
|
6461
6444
|
*/
|
|
6462
|
-
'
|
|
6445
|
+
'hospitalName'?: string | null;
|
|
6446
|
+
/**
|
|
6447
|
+
*
|
|
6448
|
+
* @type {Date}
|
|
6449
|
+
* @memberof DoctorModel
|
|
6450
|
+
*/
|
|
6451
|
+
'startPracticeDate'?: Date | null;
|
|
6463
6452
|
/**
|
|
6464
6453
|
*
|
|
6465
6454
|
* @type {string}
|
|
6466
6455
|
* @memberof DoctorModel
|
|
6467
6456
|
*/
|
|
6468
|
-
'
|
|
6457
|
+
'overview'?: string | null;
|
|
6469
6458
|
/**
|
|
6470
6459
|
*
|
|
6471
6460
|
* @type {boolean}
|
|
@@ -6480,22 +6469,22 @@ export interface DoctorModel {
|
|
|
6480
6469
|
'consultationFee'?: number | null;
|
|
6481
6470
|
/**
|
|
6482
6471
|
*
|
|
6483
|
-
* @type {
|
|
6472
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6484
6473
|
* @memberof DoctorModel
|
|
6485
6474
|
*/
|
|
6486
|
-
'
|
|
6475
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6487
6476
|
/**
|
|
6488
6477
|
*
|
|
6489
|
-
* @type {
|
|
6478
|
+
* @type {boolean}
|
|
6490
6479
|
* @memberof DoctorModel
|
|
6491
6480
|
*/
|
|
6492
|
-
'
|
|
6481
|
+
'confirmed'?: boolean;
|
|
6493
6482
|
/**
|
|
6494
6483
|
*
|
|
6495
|
-
* @type {
|
|
6484
|
+
* @type {string}
|
|
6496
6485
|
* @memberof DoctorModel
|
|
6497
6486
|
*/
|
|
6498
|
-
'
|
|
6487
|
+
'languageCode'?: string | null;
|
|
6499
6488
|
}
|
|
6500
6489
|
/**
|
|
6501
6490
|
*
|
|
@@ -6614,55 +6603,6 @@ export interface DoctorPortfoliosModel {
|
|
|
6614
6603
|
*/
|
|
6615
6604
|
'metaData'?: PagedListMetaData;
|
|
6616
6605
|
}
|
|
6617
|
-
/**
|
|
6618
|
-
*
|
|
6619
|
-
* @export
|
|
6620
|
-
* @interface DoctorSimpleItemModel
|
|
6621
|
-
*/
|
|
6622
|
-
export interface DoctorSimpleItemModel {
|
|
6623
|
-
/**
|
|
6624
|
-
*
|
|
6625
|
-
* @type {string}
|
|
6626
|
-
* @memberof DoctorSimpleItemModel
|
|
6627
|
-
*/
|
|
6628
|
-
'id'?: string;
|
|
6629
|
-
/**
|
|
6630
|
-
*
|
|
6631
|
-
* @type {string}
|
|
6632
|
-
* @memberof DoctorSimpleItemModel
|
|
6633
|
-
*/
|
|
6634
|
-
'firstName'?: string | null;
|
|
6635
|
-
/**
|
|
6636
|
-
*
|
|
6637
|
-
* @type {string}
|
|
6638
|
-
* @memberof DoctorSimpleItemModel
|
|
6639
|
-
*/
|
|
6640
|
-
'middleName'?: string | null;
|
|
6641
|
-
/**
|
|
6642
|
-
*
|
|
6643
|
-
* @type {string}
|
|
6644
|
-
* @memberof DoctorSimpleItemModel
|
|
6645
|
-
*/
|
|
6646
|
-
'lastName'?: string | null;
|
|
6647
|
-
/**
|
|
6648
|
-
*
|
|
6649
|
-
* @type {string}
|
|
6650
|
-
* @memberof DoctorSimpleItemModel
|
|
6651
|
-
*/
|
|
6652
|
-
'fullname'?: string | null;
|
|
6653
|
-
/**
|
|
6654
|
-
*
|
|
6655
|
-
* @type {string}
|
|
6656
|
-
* @memberof DoctorSimpleItemModel
|
|
6657
|
-
*/
|
|
6658
|
-
'slug'?: string | null;
|
|
6659
|
-
/**
|
|
6660
|
-
*
|
|
6661
|
-
* @type {string}
|
|
6662
|
-
* @memberof DoctorSimpleItemModel
|
|
6663
|
-
*/
|
|
6664
|
-
'hospitalId'?: string | null;
|
|
6665
|
-
}
|
|
6666
6606
|
/**
|
|
6667
6607
|
*
|
|
6668
6608
|
* @export
|
|
@@ -6764,10 +6704,10 @@ export interface DoctorsModel {
|
|
|
6764
6704
|
export interface DoctorsSimpleModel {
|
|
6765
6705
|
/**
|
|
6766
6706
|
*
|
|
6767
|
-
* @type {Array<
|
|
6707
|
+
* @type {Array<DoctorItemSimpleModel>}
|
|
6768
6708
|
* @memberof DoctorsSimpleModel
|
|
6769
6709
|
*/
|
|
6770
|
-
'items'?: Array<
|
|
6710
|
+
'items'?: Array<DoctorItemSimpleModel> | null;
|
|
6771
6711
|
/**
|
|
6772
6712
|
*
|
|
6773
6713
|
* @type {PagedListMetaData}
|
|
@@ -6862,7 +6802,7 @@ export interface FaqCategoryItemModel {
|
|
|
6862
6802
|
* @type {string}
|
|
6863
6803
|
* @memberof FaqCategoryItemModel
|
|
6864
6804
|
*/
|
|
6865
|
-
'
|
|
6805
|
+
'languageCode'?: string | null;
|
|
6866
6806
|
/**
|
|
6867
6807
|
*
|
|
6868
6808
|
* @type {string}
|
|
@@ -6875,12 +6815,18 @@ export interface FaqCategoryItemModel {
|
|
|
6875
6815
|
* @memberof FaqCategoryItemModel
|
|
6876
6816
|
*/
|
|
6877
6817
|
'slug'?: string | null;
|
|
6818
|
+
/**
|
|
6819
|
+
*
|
|
6820
|
+
* @type {boolean}
|
|
6821
|
+
* @memberof FaqCategoryItemModel
|
|
6822
|
+
*/
|
|
6823
|
+
'confirmed'?: boolean;
|
|
6878
6824
|
/**
|
|
6879
6825
|
*
|
|
6880
6826
|
* @type {string}
|
|
6881
6827
|
* @memberof FaqCategoryItemModel
|
|
6882
6828
|
*/
|
|
6883
|
-
'
|
|
6829
|
+
'parentId'?: string | null;
|
|
6884
6830
|
/**
|
|
6885
6831
|
*
|
|
6886
6832
|
* @type {number}
|
|
@@ -6901,10 +6847,16 @@ export interface FaqCategoryItemModel {
|
|
|
6901
6847
|
'hospitalName'?: string | null;
|
|
6902
6848
|
/**
|
|
6903
6849
|
*
|
|
6904
|
-
* @type {
|
|
6850
|
+
* @type {string}
|
|
6905
6851
|
* @memberof FaqCategoryItemModel
|
|
6906
6852
|
*/
|
|
6907
|
-
'
|
|
6853
|
+
'hospitalSlug'?: string | null;
|
|
6854
|
+
/**
|
|
6855
|
+
*
|
|
6856
|
+
* @type {string}
|
|
6857
|
+
* @memberof FaqCategoryItemModel
|
|
6858
|
+
*/
|
|
6859
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
6908
6860
|
/**
|
|
6909
6861
|
*
|
|
6910
6862
|
* @type {AuditableEntity}
|
|
@@ -6929,7 +6881,7 @@ export interface FaqCategoryModel {
|
|
|
6929
6881
|
* @type {string}
|
|
6930
6882
|
* @memberof FaqCategoryModel
|
|
6931
6883
|
*/
|
|
6932
|
-
'
|
|
6884
|
+
'languageCode'?: string | null;
|
|
6933
6885
|
/**
|
|
6934
6886
|
*
|
|
6935
6887
|
* @type {string}
|
|
@@ -6942,12 +6894,18 @@ export interface FaqCategoryModel {
|
|
|
6942
6894
|
* @memberof FaqCategoryModel
|
|
6943
6895
|
*/
|
|
6944
6896
|
'slug'?: string | null;
|
|
6897
|
+
/**
|
|
6898
|
+
*
|
|
6899
|
+
* @type {boolean}
|
|
6900
|
+
* @memberof FaqCategoryModel
|
|
6901
|
+
*/
|
|
6902
|
+
'confirmed'?: boolean;
|
|
6945
6903
|
/**
|
|
6946
6904
|
*
|
|
6947
6905
|
* @type {string}
|
|
6948
6906
|
* @memberof FaqCategoryModel
|
|
6949
6907
|
*/
|
|
6950
|
-
'
|
|
6908
|
+
'parentId'?: string | null;
|
|
6951
6909
|
/**
|
|
6952
6910
|
*
|
|
6953
6911
|
* @type {number}
|
|
@@ -6968,10 +6926,16 @@ export interface FaqCategoryModel {
|
|
|
6968
6926
|
'hospitalName'?: string | null;
|
|
6969
6927
|
/**
|
|
6970
6928
|
*
|
|
6971
|
-
* @type {
|
|
6929
|
+
* @type {string}
|
|
6972
6930
|
* @memberof FaqCategoryModel
|
|
6973
6931
|
*/
|
|
6974
|
-
'
|
|
6932
|
+
'hospitalSlug'?: string | null;
|
|
6933
|
+
/**
|
|
6934
|
+
*
|
|
6935
|
+
* @type {string}
|
|
6936
|
+
* @memberof FaqCategoryModel
|
|
6937
|
+
*/
|
|
6938
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
6975
6939
|
/**
|
|
6976
6940
|
*
|
|
6977
6941
|
* @type {AuditableEntity}
|
|
@@ -6983,13 +6947,25 @@ export interface FaqCategoryModel {
|
|
|
6983
6947
|
* @type {string}
|
|
6984
6948
|
* @memberof FaqCategoryModel
|
|
6985
6949
|
*/
|
|
6986
|
-
'
|
|
6950
|
+
'description'?: string | null;
|
|
6987
6951
|
/**
|
|
6988
6952
|
*
|
|
6989
|
-
* @type {
|
|
6953
|
+
* @type {string}
|
|
6990
6954
|
* @memberof FaqCategoryModel
|
|
6991
6955
|
*/
|
|
6992
|
-
'
|
|
6956
|
+
'overview'?: string | null;
|
|
6957
|
+
/**
|
|
6958
|
+
*
|
|
6959
|
+
* @type {string}
|
|
6960
|
+
* @memberof FaqCategoryModel
|
|
6961
|
+
*/
|
|
6962
|
+
'content'?: string | null;
|
|
6963
|
+
/**
|
|
6964
|
+
*
|
|
6965
|
+
* @type {Array<MediaModel>}
|
|
6966
|
+
* @memberof FaqCategoryModel
|
|
6967
|
+
*/
|
|
6968
|
+
'medias'?: Array<MediaModel> | null;
|
|
6993
6969
|
}
|
|
6994
6970
|
/**
|
|
6995
6971
|
*
|
|
@@ -7003,6 +6979,12 @@ export interface FaqItemModel {
|
|
|
7003
6979
|
* @memberof FaqItemModel
|
|
7004
6980
|
*/
|
|
7005
6981
|
'id'?: string;
|
|
6982
|
+
/**
|
|
6983
|
+
*
|
|
6984
|
+
* @type {string}
|
|
6985
|
+
* @memberof FaqItemModel
|
|
6986
|
+
*/
|
|
6987
|
+
'languageCode'?: string | null;
|
|
7006
6988
|
/**
|
|
7007
6989
|
*
|
|
7008
6990
|
* @type {string}
|
|
@@ -7015,12 +6997,18 @@ export interface FaqItemModel {
|
|
|
7015
6997
|
* @memberof FaqItemModel
|
|
7016
6998
|
*/
|
|
7017
6999
|
'slug'?: string | null;
|
|
7000
|
+
/**
|
|
7001
|
+
*
|
|
7002
|
+
* @type {boolean}
|
|
7003
|
+
* @memberof FaqItemModel
|
|
7004
|
+
*/
|
|
7005
|
+
'confirmed'?: boolean;
|
|
7018
7006
|
/**
|
|
7019
7007
|
*
|
|
7020
7008
|
* @type {string}
|
|
7021
7009
|
* @memberof FaqItemModel
|
|
7022
7010
|
*/
|
|
7023
|
-
'
|
|
7011
|
+
'parentId'?: string | null;
|
|
7024
7012
|
/**
|
|
7025
7013
|
*
|
|
7026
7014
|
* @type {number}
|
|
@@ -7044,19 +7032,25 @@ export interface FaqItemModel {
|
|
|
7044
7032
|
* @type {string}
|
|
7045
7033
|
* @memberof FaqItemModel
|
|
7046
7034
|
*/
|
|
7047
|
-
'
|
|
7035
|
+
'hospitalSlug'?: string | null;
|
|
7048
7036
|
/**
|
|
7049
7037
|
*
|
|
7050
7038
|
* @type {string}
|
|
7051
7039
|
* @memberof FaqItemModel
|
|
7052
7040
|
*/
|
|
7053
|
-
'
|
|
7041
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
7054
7042
|
/**
|
|
7055
7043
|
*
|
|
7056
|
-
* @type {
|
|
7044
|
+
* @type {string}
|
|
7057
7045
|
* @memberof FaqItemModel
|
|
7058
7046
|
*/
|
|
7059
|
-
'
|
|
7047
|
+
'faqCategoryId'?: string;
|
|
7048
|
+
/**
|
|
7049
|
+
*
|
|
7050
|
+
* @type {string}
|
|
7051
|
+
* @memberof FaqItemModel
|
|
7052
|
+
*/
|
|
7053
|
+
'faqCategoryName'?: string | null;
|
|
7060
7054
|
/**
|
|
7061
7055
|
*
|
|
7062
7056
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -7088,6 +7082,12 @@ export interface FaqModel {
|
|
|
7088
7082
|
* @memberof FaqModel
|
|
7089
7083
|
*/
|
|
7090
7084
|
'id'?: string;
|
|
7085
|
+
/**
|
|
7086
|
+
*
|
|
7087
|
+
* @type {string}
|
|
7088
|
+
* @memberof FaqModel
|
|
7089
|
+
*/
|
|
7090
|
+
'languageCode'?: string | null;
|
|
7091
7091
|
/**
|
|
7092
7092
|
*
|
|
7093
7093
|
* @type {string}
|
|
@@ -7100,12 +7100,18 @@ export interface FaqModel {
|
|
|
7100
7100
|
* @memberof FaqModel
|
|
7101
7101
|
*/
|
|
7102
7102
|
'slug'?: string | null;
|
|
7103
|
+
/**
|
|
7104
|
+
*
|
|
7105
|
+
* @type {boolean}
|
|
7106
|
+
* @memberof FaqModel
|
|
7107
|
+
*/
|
|
7108
|
+
'confirmed'?: boolean;
|
|
7103
7109
|
/**
|
|
7104
7110
|
*
|
|
7105
7111
|
* @type {string}
|
|
7106
7112
|
* @memberof FaqModel
|
|
7107
7113
|
*/
|
|
7108
|
-
'
|
|
7114
|
+
'parentId'?: string | null;
|
|
7109
7115
|
/**
|
|
7110
7116
|
*
|
|
7111
7117
|
* @type {number}
|
|
@@ -7129,19 +7135,25 @@ export interface FaqModel {
|
|
|
7129
7135
|
* @type {string}
|
|
7130
7136
|
* @memberof FaqModel
|
|
7131
7137
|
*/
|
|
7132
|
-
'
|
|
7138
|
+
'hospitalSlug'?: string | null;
|
|
7133
7139
|
/**
|
|
7134
7140
|
*
|
|
7135
7141
|
* @type {string}
|
|
7136
7142
|
* @memberof FaqModel
|
|
7137
7143
|
*/
|
|
7138
|
-
'
|
|
7144
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
7139
7145
|
/**
|
|
7140
7146
|
*
|
|
7141
|
-
* @type {
|
|
7147
|
+
* @type {string}
|
|
7142
7148
|
* @memberof FaqModel
|
|
7143
7149
|
*/
|
|
7144
|
-
'
|
|
7150
|
+
'faqCategoryId'?: string;
|
|
7151
|
+
/**
|
|
7152
|
+
*
|
|
7153
|
+
* @type {string}
|
|
7154
|
+
* @memberof FaqModel
|
|
7155
|
+
*/
|
|
7156
|
+
'faqCategoryName'?: string | null;
|
|
7145
7157
|
/**
|
|
7146
7158
|
*
|
|
7147
7159
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -7165,19 +7177,19 @@ export interface FaqModel {
|
|
|
7165
7177
|
* @type {string}
|
|
7166
7178
|
* @memberof FaqModel
|
|
7167
7179
|
*/
|
|
7168
|
-
'
|
|
7180
|
+
'description'?: string | null;
|
|
7169
7181
|
/**
|
|
7170
7182
|
*
|
|
7171
7183
|
* @type {string}
|
|
7172
7184
|
* @memberof FaqModel
|
|
7173
7185
|
*/
|
|
7174
|
-
'
|
|
7186
|
+
'overview'?: string | null;
|
|
7175
7187
|
/**
|
|
7176
7188
|
*
|
|
7177
|
-
* @type {
|
|
7189
|
+
* @type {string}
|
|
7178
7190
|
* @memberof FaqModel
|
|
7179
7191
|
*/
|
|
7180
|
-
'
|
|
7192
|
+
'content'?: string | null;
|
|
7181
7193
|
}
|
|
7182
7194
|
/**
|
|
7183
7195
|
*
|
|
@@ -7613,37 +7625,49 @@ export interface HospitalItemModel {
|
|
|
7613
7625
|
* @type {string}
|
|
7614
7626
|
* @memberof HospitalItemModel
|
|
7615
7627
|
*/
|
|
7616
|
-
'
|
|
7628
|
+
'languageCode'?: string | null;
|
|
7617
7629
|
/**
|
|
7618
7630
|
*
|
|
7619
7631
|
* @type {string}
|
|
7620
7632
|
* @memberof HospitalItemModel
|
|
7621
7633
|
*/
|
|
7622
|
-
'
|
|
7634
|
+
'name'?: string | null;
|
|
7623
7635
|
/**
|
|
7624
7636
|
*
|
|
7625
7637
|
* @type {string}
|
|
7626
7638
|
* @memberof HospitalItemModel
|
|
7627
7639
|
*/
|
|
7628
|
-
'
|
|
7640
|
+
'slug'?: string | null;
|
|
7629
7641
|
/**
|
|
7630
7642
|
*
|
|
7631
|
-
* @type {
|
|
7643
|
+
* @type {boolean}
|
|
7632
7644
|
* @memberof HospitalItemModel
|
|
7633
7645
|
*/
|
|
7634
|
-
'
|
|
7646
|
+
'confirmed'?: boolean;
|
|
7635
7647
|
/**
|
|
7636
7648
|
*
|
|
7637
7649
|
* @type {string}
|
|
7638
7650
|
* @memberof HospitalItemModel
|
|
7639
7651
|
*/
|
|
7640
|
-
'
|
|
7652
|
+
'logo'?: string | null;
|
|
7641
7653
|
/**
|
|
7642
7654
|
*
|
|
7643
7655
|
* @type {MarketingType}
|
|
7644
7656
|
* @memberof HospitalItemModel
|
|
7645
7657
|
*/
|
|
7646
7658
|
'marketingType'?: MarketingType;
|
|
7659
|
+
/**
|
|
7660
|
+
*
|
|
7661
|
+
* @type {boolean}
|
|
7662
|
+
* @memberof HospitalItemModel
|
|
7663
|
+
*/
|
|
7664
|
+
'consultationEnabled'?: boolean | null;
|
|
7665
|
+
/**
|
|
7666
|
+
*
|
|
7667
|
+
* @type {number}
|
|
7668
|
+
* @memberof HospitalItemModel
|
|
7669
|
+
*/
|
|
7670
|
+
'consultationFee'?: number | null;
|
|
7647
7671
|
/**
|
|
7648
7672
|
*
|
|
7649
7673
|
* @type {string}
|
|
@@ -7664,10 +7688,10 @@ export interface HospitalItemModel {
|
|
|
7664
7688
|
'paymentEnabled'?: boolean;
|
|
7665
7689
|
/**
|
|
7666
7690
|
*
|
|
7667
|
-
* @type {
|
|
7691
|
+
* @type {string}
|
|
7668
7692
|
* @memberof HospitalItemModel
|
|
7669
7693
|
*/
|
|
7670
|
-
'
|
|
7694
|
+
'countryId'?: string;
|
|
7671
7695
|
/**
|
|
7672
7696
|
*
|
|
7673
7697
|
* @type {LocationModel}
|
|
@@ -7698,37 +7722,49 @@ export interface HospitalModel {
|
|
|
7698
7722
|
* @type {string}
|
|
7699
7723
|
* @memberof HospitalModel
|
|
7700
7724
|
*/
|
|
7701
|
-
'
|
|
7725
|
+
'languageCode'?: string | null;
|
|
7702
7726
|
/**
|
|
7703
7727
|
*
|
|
7704
7728
|
* @type {string}
|
|
7705
7729
|
* @memberof HospitalModel
|
|
7706
7730
|
*/
|
|
7707
|
-
'
|
|
7731
|
+
'name'?: string | null;
|
|
7708
7732
|
/**
|
|
7709
7733
|
*
|
|
7710
7734
|
* @type {string}
|
|
7711
7735
|
* @memberof HospitalModel
|
|
7712
7736
|
*/
|
|
7713
|
-
'
|
|
7737
|
+
'slug'?: string | null;
|
|
7714
7738
|
/**
|
|
7715
7739
|
*
|
|
7716
|
-
* @type {
|
|
7740
|
+
* @type {boolean}
|
|
7717
7741
|
* @memberof HospitalModel
|
|
7718
7742
|
*/
|
|
7719
|
-
'
|
|
7743
|
+
'confirmed'?: boolean;
|
|
7720
7744
|
/**
|
|
7721
7745
|
*
|
|
7722
7746
|
* @type {string}
|
|
7723
7747
|
* @memberof HospitalModel
|
|
7724
7748
|
*/
|
|
7725
|
-
'
|
|
7749
|
+
'logo'?: string | null;
|
|
7726
7750
|
/**
|
|
7727
7751
|
*
|
|
7728
7752
|
* @type {MarketingType}
|
|
7729
7753
|
* @memberof HospitalModel
|
|
7730
7754
|
*/
|
|
7731
7755
|
'marketingType'?: MarketingType;
|
|
7756
|
+
/**
|
|
7757
|
+
*
|
|
7758
|
+
* @type {boolean}
|
|
7759
|
+
* @memberof HospitalModel
|
|
7760
|
+
*/
|
|
7761
|
+
'consultationEnabled'?: boolean | null;
|
|
7762
|
+
/**
|
|
7763
|
+
*
|
|
7764
|
+
* @type {number}
|
|
7765
|
+
* @memberof HospitalModel
|
|
7766
|
+
*/
|
|
7767
|
+
'consultationFee'?: number | null;
|
|
7732
7768
|
/**
|
|
7733
7769
|
*
|
|
7734
7770
|
* @type {string}
|
|
@@ -7749,10 +7785,10 @@ export interface HospitalModel {
|
|
|
7749
7785
|
'paymentEnabled'?: boolean;
|
|
7750
7786
|
/**
|
|
7751
7787
|
*
|
|
7752
|
-
* @type {
|
|
7788
|
+
* @type {string}
|
|
7753
7789
|
* @memberof HospitalModel
|
|
7754
7790
|
*/
|
|
7755
|
-
'
|
|
7791
|
+
'countryId'?: string;
|
|
7756
7792
|
/**
|
|
7757
7793
|
*
|
|
7758
7794
|
* @type {LocationModel}
|
|
@@ -7765,12 +7801,6 @@ export interface HospitalModel {
|
|
|
7765
7801
|
* @memberof HospitalModel
|
|
7766
7802
|
*/
|
|
7767
7803
|
'auditableEntity'?: AuditableEntity;
|
|
7768
|
-
/**
|
|
7769
|
-
*
|
|
7770
|
-
* @type {string}
|
|
7771
|
-
* @memberof HospitalModel
|
|
7772
|
-
*/
|
|
7773
|
-
'languageCode'?: string | null;
|
|
7774
7804
|
/**
|
|
7775
7805
|
*
|
|
7776
7806
|
* @type {string}
|
|
@@ -7819,18 +7849,6 @@ export interface HospitalModel {
|
|
|
7819
7849
|
* @memberof HospitalModel
|
|
7820
7850
|
*/
|
|
7821
7851
|
'doctorCount'?: number | null;
|
|
7822
|
-
/**
|
|
7823
|
-
*
|
|
7824
|
-
* @type {boolean}
|
|
7825
|
-
* @memberof HospitalModel
|
|
7826
|
-
*/
|
|
7827
|
-
'consultationEnabled'?: boolean | null;
|
|
7828
|
-
/**
|
|
7829
|
-
*
|
|
7830
|
-
* @type {number}
|
|
7831
|
-
* @memberof HospitalModel
|
|
7832
|
-
*/
|
|
7833
|
-
'consultationFee'?: number | null;
|
|
7834
7852
|
/**
|
|
7835
7853
|
*
|
|
7836
7854
|
* @type {string}
|
|
@@ -7849,12 +7867,6 @@ export interface HospitalModel {
|
|
|
7849
7867
|
* @memberof HospitalModel
|
|
7850
7868
|
*/
|
|
7851
7869
|
'customStyle'?: string | null;
|
|
7852
|
-
/**
|
|
7853
|
-
*
|
|
7854
|
-
* @type {Array<MediaModel>}
|
|
7855
|
-
* @memberof HospitalModel
|
|
7856
|
-
*/
|
|
7857
|
-
'medias'?: Array<MediaModel> | null;
|
|
7858
7870
|
}
|
|
7859
7871
|
/**
|
|
7860
7872
|
*
|
|
@@ -7873,182 +7885,128 @@ export interface HospitalServiceItemModel {
|
|
|
7873
7885
|
* @type {string}
|
|
7874
7886
|
* @memberof HospitalServiceItemModel
|
|
7875
7887
|
*/
|
|
7876
|
-
'
|
|
7877
|
-
/**
|
|
7878
|
-
*
|
|
7879
|
-
* @type {string}
|
|
7880
|
-
* @memberof HospitalServiceItemModel
|
|
7881
|
-
*/
|
|
7882
|
-
'slug'?: string | null;
|
|
7883
|
-
/**
|
|
7884
|
-
*
|
|
7885
|
-
* @type {string}
|
|
7886
|
-
* @memberof HospitalServiceItemModel
|
|
7887
|
-
*/
|
|
7888
|
-
'description'?: string | null;
|
|
7888
|
+
'languageCode'?: string | null;
|
|
7889
7889
|
/**
|
|
7890
7890
|
*
|
|
7891
7891
|
* @type {string}
|
|
7892
7892
|
* @memberof HospitalServiceItemModel
|
|
7893
7893
|
*/
|
|
7894
|
-
'
|
|
7894
|
+
'name'?: string | null;
|
|
7895
7895
|
/**
|
|
7896
7896
|
*
|
|
7897
7897
|
* @type {string}
|
|
7898
7898
|
* @memberof HospitalServiceItemModel
|
|
7899
7899
|
*/
|
|
7900
|
-
'
|
|
7900
|
+
'slug'?: string | null;
|
|
7901
7901
|
/**
|
|
7902
7902
|
*
|
|
7903
|
-
* @type {
|
|
7903
|
+
* @type {boolean}
|
|
7904
7904
|
* @memberof HospitalServiceItemModel
|
|
7905
7905
|
*/
|
|
7906
|
-
'
|
|
7906
|
+
'confirmed'?: boolean;
|
|
7907
7907
|
/**
|
|
7908
7908
|
*
|
|
7909
|
-
* @type {
|
|
7909
|
+
* @type {number}
|
|
7910
7910
|
* @memberof HospitalServiceItemModel
|
|
7911
7911
|
*/
|
|
7912
|
-
'
|
|
7912
|
+
'order'?: number;
|
|
7913
7913
|
/**
|
|
7914
7914
|
*
|
|
7915
7915
|
* @type {string}
|
|
7916
7916
|
* @memberof HospitalServiceItemModel
|
|
7917
7917
|
*/
|
|
7918
|
-
'
|
|
7918
|
+
'photo'?: string | null;
|
|
7919
7919
|
/**
|
|
7920
7920
|
*
|
|
7921
7921
|
* @type {string}
|
|
7922
7922
|
* @memberof HospitalServiceItemModel
|
|
7923
7923
|
*/
|
|
7924
|
-
'
|
|
7924
|
+
'photoThumbnail'?: string | null;
|
|
7925
7925
|
/**
|
|
7926
7926
|
*
|
|
7927
|
-
* @type {
|
|
7927
|
+
* @type {AuditableEntity}
|
|
7928
7928
|
* @memberof HospitalServiceItemModel
|
|
7929
7929
|
*/
|
|
7930
|
-
'
|
|
7930
|
+
'auditableEntity'?: AuditableEntity;
|
|
7931
|
+
}
|
|
7932
|
+
/**
|
|
7933
|
+
*
|
|
7934
|
+
* @export
|
|
7935
|
+
* @interface HospitalServiceModel
|
|
7936
|
+
*/
|
|
7937
|
+
export interface HospitalServiceModel {
|
|
7931
7938
|
/**
|
|
7932
7939
|
*
|
|
7933
7940
|
* @type {string}
|
|
7934
|
-
* @memberof
|
|
7941
|
+
* @memberof HospitalServiceModel
|
|
7935
7942
|
*/
|
|
7936
|
-
'
|
|
7943
|
+
'id'?: string;
|
|
7937
7944
|
/**
|
|
7938
7945
|
*
|
|
7939
7946
|
* @type {string}
|
|
7940
|
-
* @memberof
|
|
7947
|
+
* @memberof HospitalServiceModel
|
|
7941
7948
|
*/
|
|
7942
|
-
'
|
|
7949
|
+
'languageCode'?: string | null;
|
|
7943
7950
|
/**
|
|
7944
7951
|
*
|
|
7945
7952
|
* @type {string}
|
|
7946
|
-
* @memberof
|
|
7953
|
+
* @memberof HospitalServiceModel
|
|
7947
7954
|
*/
|
|
7948
|
-
'
|
|
7955
|
+
'name'?: string | null;
|
|
7949
7956
|
/**
|
|
7950
7957
|
*
|
|
7951
7958
|
* @type {string}
|
|
7952
|
-
* @memberof
|
|
7953
|
-
*/
|
|
7954
|
-
'serviceCategoryName'?: string | null;
|
|
7955
|
-
/**
|
|
7956
|
-
*
|
|
7957
|
-
* @type {MarketingType}
|
|
7958
|
-
* @memberof HospitalServiceItemModel
|
|
7959
|
-
*/
|
|
7960
|
-
'marketingType'?: MarketingType;
|
|
7961
|
-
/**
|
|
7962
|
-
*
|
|
7963
|
-
* @type {Procedure}
|
|
7964
|
-
* @memberof HospitalServiceItemModel
|
|
7965
|
-
*/
|
|
7966
|
-
'procedure'?: Procedure;
|
|
7967
|
-
/**
|
|
7968
|
-
*
|
|
7969
|
-
* @type {number}
|
|
7970
|
-
* @memberof HospitalServiceItemModel
|
|
7971
|
-
*/
|
|
7972
|
-
'minPrice'?: number | null;
|
|
7973
|
-
/**
|
|
7974
|
-
*
|
|
7975
|
-
* @type {number}
|
|
7976
|
-
* @memberof HospitalServiceItemModel
|
|
7959
|
+
* @memberof HospitalServiceModel
|
|
7977
7960
|
*/
|
|
7978
|
-
'
|
|
7961
|
+
'slug'?: string | null;
|
|
7979
7962
|
/**
|
|
7980
7963
|
*
|
|
7981
7964
|
* @type {boolean}
|
|
7982
|
-
* @memberof
|
|
7965
|
+
* @memberof HospitalServiceModel
|
|
7983
7966
|
*/
|
|
7984
|
-
'
|
|
7967
|
+
'confirmed'?: boolean;
|
|
7985
7968
|
/**
|
|
7986
7969
|
*
|
|
7987
7970
|
* @type {number}
|
|
7988
|
-
* @memberof
|
|
7971
|
+
* @memberof HospitalServiceModel
|
|
7989
7972
|
*/
|
|
7990
7973
|
'order'?: number;
|
|
7991
|
-
/**
|
|
7992
|
-
*
|
|
7993
|
-
* @type {boolean}
|
|
7994
|
-
* @memberof HospitalServiceItemModel
|
|
7995
|
-
*/
|
|
7996
|
-
'confirmed'?: boolean;
|
|
7997
7974
|
/**
|
|
7998
7975
|
*
|
|
7999
7976
|
* @type {string}
|
|
8000
|
-
* @memberof
|
|
7977
|
+
* @memberof HospitalServiceModel
|
|
8001
7978
|
*/
|
|
8002
7979
|
'photo'?: string | null;
|
|
8003
7980
|
/**
|
|
8004
7981
|
*
|
|
8005
7982
|
* @type {string}
|
|
8006
|
-
* @memberof
|
|
7983
|
+
* @memberof HospitalServiceModel
|
|
8007
7984
|
*/
|
|
8008
7985
|
'photoThumbnail'?: string | null;
|
|
8009
|
-
/**
|
|
8010
|
-
*
|
|
8011
|
-
* @type {Array<MediaModel>}
|
|
8012
|
-
* @memberof HospitalServiceItemModel
|
|
8013
|
-
*/
|
|
8014
|
-
'medias'?: Array<MediaModel> | null;
|
|
8015
7986
|
/**
|
|
8016
7987
|
*
|
|
8017
7988
|
* @type {AuditableEntity}
|
|
8018
|
-
* @memberof HospitalServiceItemModel
|
|
8019
|
-
*/
|
|
8020
|
-
'auditableEntity'?: AuditableEntity;
|
|
8021
|
-
}
|
|
8022
|
-
/**
|
|
8023
|
-
*
|
|
8024
|
-
* @export
|
|
8025
|
-
* @interface HospitalServiceModel
|
|
8026
|
-
*/
|
|
8027
|
-
export interface HospitalServiceModel {
|
|
8028
|
-
/**
|
|
8029
|
-
*
|
|
8030
|
-
* @type {string}
|
|
8031
7989
|
* @memberof HospitalServiceModel
|
|
8032
7990
|
*/
|
|
8033
|
-
'
|
|
7991
|
+
'auditableEntity'?: AuditableEntity;
|
|
8034
7992
|
/**
|
|
8035
7993
|
*
|
|
8036
7994
|
* @type {string}
|
|
8037
7995
|
* @memberof HospitalServiceModel
|
|
8038
7996
|
*/
|
|
8039
|
-
'
|
|
7997
|
+
'description'?: string | null;
|
|
8040
7998
|
/**
|
|
8041
7999
|
*
|
|
8042
8000
|
* @type {string}
|
|
8043
8001
|
* @memberof HospitalServiceModel
|
|
8044
8002
|
*/
|
|
8045
|
-
'
|
|
8003
|
+
'overview'?: string | null;
|
|
8046
8004
|
/**
|
|
8047
8005
|
*
|
|
8048
8006
|
* @type {string}
|
|
8049
8007
|
* @memberof HospitalServiceModel
|
|
8050
8008
|
*/
|
|
8051
|
-
'
|
|
8009
|
+
'content'?: string | null;
|
|
8052
8010
|
/**
|
|
8053
8011
|
*
|
|
8054
8012
|
* @type {string}
|
|
@@ -8067,18 +8025,6 @@ export interface HospitalServiceModel {
|
|
|
8067
8025
|
* @memberof HospitalServiceModel
|
|
8068
8026
|
*/
|
|
8069
8027
|
'hospitalSlug'?: string | null;
|
|
8070
|
-
/**
|
|
8071
|
-
*
|
|
8072
|
-
* @type {string}
|
|
8073
|
-
* @memberof HospitalServiceModel
|
|
8074
|
-
*/
|
|
8075
|
-
'specialtyTypeId'?: string | null;
|
|
8076
|
-
/**
|
|
8077
|
-
*
|
|
8078
|
-
* @type {string}
|
|
8079
|
-
* @memberof HospitalServiceModel
|
|
8080
|
-
*/
|
|
8081
|
-
'specialtyTypeName'?: string | null;
|
|
8082
8028
|
/**
|
|
8083
8029
|
*
|
|
8084
8030
|
* @type {string}
|
|
@@ -8115,12 +8061,6 @@ export interface HospitalServiceModel {
|
|
|
8115
8061
|
* @memberof HospitalServiceModel
|
|
8116
8062
|
*/
|
|
8117
8063
|
'serviceCategoryName'?: string | null;
|
|
8118
|
-
/**
|
|
8119
|
-
*
|
|
8120
|
-
* @type {MarketingType}
|
|
8121
|
-
* @memberof HospitalServiceModel
|
|
8122
|
-
*/
|
|
8123
|
-
'marketingType'?: MarketingType;
|
|
8124
8064
|
/**
|
|
8125
8065
|
*
|
|
8126
8066
|
* @type {Procedure}
|
|
@@ -8145,66 +8085,18 @@ export interface HospitalServiceModel {
|
|
|
8145
8085
|
* @memberof HospitalServiceModel
|
|
8146
8086
|
*/
|
|
8147
8087
|
'priceReuqest'?: boolean;
|
|
8148
|
-
/**
|
|
8149
|
-
*
|
|
8150
|
-
* @type {number}
|
|
8151
|
-
* @memberof HospitalServiceModel
|
|
8152
|
-
*/
|
|
8153
|
-
'order'?: number;
|
|
8154
|
-
/**
|
|
8155
|
-
*
|
|
8156
|
-
* @type {boolean}
|
|
8157
|
-
* @memberof HospitalServiceModel
|
|
8158
|
-
*/
|
|
8159
|
-
'confirmed'?: boolean;
|
|
8160
8088
|
/**
|
|
8161
8089
|
*
|
|
8162
8090
|
* @type {string}
|
|
8163
8091
|
* @memberof HospitalServiceModel
|
|
8164
8092
|
*/
|
|
8165
|
-
'
|
|
8166
|
-
/**
|
|
8167
|
-
*
|
|
8168
|
-
* @type {string}
|
|
8169
|
-
* @memberof HospitalServiceModel
|
|
8170
|
-
*/
|
|
8171
|
-
'photoThumbnail'?: string | null;
|
|
8093
|
+
'customStyle'?: string | null;
|
|
8172
8094
|
/**
|
|
8173
8095
|
*
|
|
8174
8096
|
* @type {Array<MediaModel>}
|
|
8175
8097
|
* @memberof HospitalServiceModel
|
|
8176
8098
|
*/
|
|
8177
8099
|
'medias'?: Array<MediaModel> | null;
|
|
8178
|
-
/**
|
|
8179
|
-
*
|
|
8180
|
-
* @type {AuditableEntity}
|
|
8181
|
-
* @memberof HospitalServiceModel
|
|
8182
|
-
*/
|
|
8183
|
-
'auditableEntity'?: AuditableEntity;
|
|
8184
|
-
/**
|
|
8185
|
-
*
|
|
8186
|
-
* @type {string}
|
|
8187
|
-
* @memberof HospitalServiceModel
|
|
8188
|
-
*/
|
|
8189
|
-
'languageCode'?: string | null;
|
|
8190
|
-
/**
|
|
8191
|
-
*
|
|
8192
|
-
* @type {string}
|
|
8193
|
-
* @memberof HospitalServiceModel
|
|
8194
|
-
*/
|
|
8195
|
-
'content'?: string | null;
|
|
8196
|
-
/**
|
|
8197
|
-
*
|
|
8198
|
-
* @type {string}
|
|
8199
|
-
* @memberof HospitalServiceModel
|
|
8200
|
-
*/
|
|
8201
|
-
'customStyle'?: string | null;
|
|
8202
|
-
/**
|
|
8203
|
-
*
|
|
8204
|
-
* @type {Array<LocalizedUrlModel>}
|
|
8205
|
-
* @memberof HospitalServiceModel
|
|
8206
|
-
*/
|
|
8207
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8208
8100
|
}
|
|
8209
8101
|
/**
|
|
8210
8102
|
*
|
|
@@ -8237,6 +8129,12 @@ export interface HospitalSimpleItemModel {
|
|
|
8237
8129
|
* @memberof HospitalSimpleItemModel
|
|
8238
8130
|
*/
|
|
8239
8131
|
'id'?: string;
|
|
8132
|
+
/**
|
|
8133
|
+
*
|
|
8134
|
+
* @type {string}
|
|
8135
|
+
* @memberof HospitalSimpleItemModel
|
|
8136
|
+
*/
|
|
8137
|
+
'languageCode'?: string | null;
|
|
8240
8138
|
/**
|
|
8241
8139
|
*
|
|
8242
8140
|
* @type {string}
|
|
@@ -8325,6 +8223,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8325
8223
|
* @memberof HospitalSpecialtyItemModel
|
|
8326
8224
|
*/
|
|
8327
8225
|
'id'?: string;
|
|
8226
|
+
/**
|
|
8227
|
+
*
|
|
8228
|
+
* @type {string}
|
|
8229
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8230
|
+
*/
|
|
8231
|
+
'languageCode'?: string | null;
|
|
8328
8232
|
/**
|
|
8329
8233
|
*
|
|
8330
8234
|
* @type {string}
|
|
@@ -8339,10 +8243,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8339
8243
|
'slug'?: string | null;
|
|
8340
8244
|
/**
|
|
8341
8245
|
*
|
|
8342
|
-
* @type {
|
|
8246
|
+
* @type {boolean}
|
|
8343
8247
|
* @memberof HospitalSpecialtyItemModel
|
|
8344
8248
|
*/
|
|
8345
|
-
'
|
|
8249
|
+
'confirmed'?: boolean;
|
|
8346
8250
|
/**
|
|
8347
8251
|
*
|
|
8348
8252
|
* @type {number}
|
|
@@ -8351,40 +8255,40 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8351
8255
|
'order'?: number;
|
|
8352
8256
|
/**
|
|
8353
8257
|
*
|
|
8354
|
-
* @type {
|
|
8258
|
+
* @type {string}
|
|
8355
8259
|
* @memberof HospitalSpecialtyItemModel
|
|
8356
8260
|
*/
|
|
8357
|
-
'
|
|
8261
|
+
'photo'?: string | null;
|
|
8358
8262
|
/**
|
|
8359
8263
|
*
|
|
8360
|
-
* @type {
|
|
8264
|
+
* @type {string}
|
|
8361
8265
|
* @memberof HospitalSpecialtyItemModel
|
|
8362
8266
|
*/
|
|
8363
|
-
'
|
|
8267
|
+
'photoThumbnail'?: string | null;
|
|
8364
8268
|
/**
|
|
8365
8269
|
*
|
|
8366
8270
|
* @type {string}
|
|
8367
8271
|
* @memberof HospitalSpecialtyItemModel
|
|
8368
8272
|
*/
|
|
8369
|
-
'
|
|
8273
|
+
'background'?: string | null;
|
|
8370
8274
|
/**
|
|
8371
8275
|
*
|
|
8372
8276
|
* @type {string}
|
|
8373
8277
|
* @memberof HospitalSpecialtyItemModel
|
|
8374
8278
|
*/
|
|
8375
|
-
'
|
|
8279
|
+
'backgroundThumbnail'?: string | null;
|
|
8376
8280
|
/**
|
|
8377
8281
|
*
|
|
8378
|
-
* @type {
|
|
8282
|
+
* @type {number}
|
|
8379
8283
|
* @memberof HospitalSpecialtyItemModel
|
|
8380
8284
|
*/
|
|
8381
|
-
'
|
|
8285
|
+
'servicesCount'?: number;
|
|
8382
8286
|
/**
|
|
8383
8287
|
*
|
|
8384
|
-
* @type {
|
|
8288
|
+
* @type {string}
|
|
8385
8289
|
* @memberof HospitalSpecialtyItemModel
|
|
8386
8290
|
*/
|
|
8387
|
-
'
|
|
8291
|
+
'specialtyId'?: string;
|
|
8388
8292
|
}
|
|
8389
8293
|
/**
|
|
8390
8294
|
*
|
|
@@ -8403,25 +8307,19 @@ export interface HospitalSpecialtyModel {
|
|
|
8403
8307
|
* @type {string}
|
|
8404
8308
|
* @memberof HospitalSpecialtyModel
|
|
8405
8309
|
*/
|
|
8406
|
-
'
|
|
8310
|
+
'languageCode'?: string | null;
|
|
8407
8311
|
/**
|
|
8408
8312
|
*
|
|
8409
8313
|
* @type {string}
|
|
8410
8314
|
* @memberof HospitalSpecialtyModel
|
|
8411
8315
|
*/
|
|
8412
|
-
'
|
|
8413
|
-
/**
|
|
8414
|
-
*
|
|
8415
|
-
* @type {MarketingType}
|
|
8416
|
-
* @memberof HospitalSpecialtyModel
|
|
8417
|
-
*/
|
|
8418
|
-
'marketingType'?: MarketingType;
|
|
8316
|
+
'name'?: string | null;
|
|
8419
8317
|
/**
|
|
8420
8318
|
*
|
|
8421
|
-
* @type {
|
|
8319
|
+
* @type {string}
|
|
8422
8320
|
* @memberof HospitalSpecialtyModel
|
|
8423
8321
|
*/
|
|
8424
|
-
'
|
|
8322
|
+
'slug'?: string | null;
|
|
8425
8323
|
/**
|
|
8426
8324
|
*
|
|
8427
8325
|
* @type {boolean}
|
|
@@ -8433,109 +8331,103 @@ export interface HospitalSpecialtyModel {
|
|
|
8433
8331
|
* @type {number}
|
|
8434
8332
|
* @memberof HospitalSpecialtyModel
|
|
8435
8333
|
*/
|
|
8436
|
-
'
|
|
8334
|
+
'order'?: number;
|
|
8437
8335
|
/**
|
|
8438
8336
|
*
|
|
8439
8337
|
* @type {string}
|
|
8440
8338
|
* @memberof HospitalSpecialtyModel
|
|
8441
8339
|
*/
|
|
8442
|
-
'
|
|
8340
|
+
'photo'?: string | null;
|
|
8443
8341
|
/**
|
|
8444
8342
|
*
|
|
8445
8343
|
* @type {string}
|
|
8446
8344
|
* @memberof HospitalSpecialtyModel
|
|
8447
8345
|
*/
|
|
8448
|
-
'
|
|
8346
|
+
'photoThumbnail'?: string | null;
|
|
8449
8347
|
/**
|
|
8450
8348
|
*
|
|
8451
8349
|
* @type {string}
|
|
8452
8350
|
* @memberof HospitalSpecialtyModel
|
|
8453
8351
|
*/
|
|
8454
|
-
'
|
|
8455
|
-
/**
|
|
8456
|
-
*
|
|
8457
|
-
* @type {AuditableEntity}
|
|
8458
|
-
* @memberof HospitalSpecialtyModel
|
|
8459
|
-
*/
|
|
8460
|
-
'auditableEntity'?: AuditableEntity;
|
|
8352
|
+
'background'?: string | null;
|
|
8461
8353
|
/**
|
|
8462
8354
|
*
|
|
8463
8355
|
* @type {string}
|
|
8464
8356
|
* @memberof HospitalSpecialtyModel
|
|
8465
8357
|
*/
|
|
8466
|
-
'
|
|
8358
|
+
'backgroundThumbnail'?: string | null;
|
|
8467
8359
|
/**
|
|
8468
8360
|
*
|
|
8469
|
-
* @type {
|
|
8361
|
+
* @type {number}
|
|
8470
8362
|
* @memberof HospitalSpecialtyModel
|
|
8471
8363
|
*/
|
|
8472
|
-
'
|
|
8364
|
+
'servicesCount'?: number;
|
|
8473
8365
|
/**
|
|
8474
8366
|
*
|
|
8475
8367
|
* @type {string}
|
|
8476
8368
|
* @memberof HospitalSpecialtyModel
|
|
8477
8369
|
*/
|
|
8478
|
-
'
|
|
8370
|
+
'specialtyId'?: string;
|
|
8479
8371
|
/**
|
|
8480
8372
|
*
|
|
8481
8373
|
* @type {string}
|
|
8482
8374
|
* @memberof HospitalSpecialtyModel
|
|
8483
8375
|
*/
|
|
8484
|
-
'
|
|
8376
|
+
'description'?: string | null;
|
|
8485
8377
|
/**
|
|
8486
8378
|
*
|
|
8487
8379
|
* @type {string}
|
|
8488
8380
|
* @memberof HospitalSpecialtyModel
|
|
8489
8381
|
*/
|
|
8490
|
-
'
|
|
8382
|
+
'overview'?: string | null;
|
|
8491
8383
|
/**
|
|
8492
8384
|
*
|
|
8493
8385
|
* @type {string}
|
|
8494
8386
|
* @memberof HospitalSpecialtyModel
|
|
8495
8387
|
*/
|
|
8496
|
-
'
|
|
8388
|
+
'content'?: string | null;
|
|
8497
8389
|
/**
|
|
8498
8390
|
*
|
|
8499
8391
|
* @type {string}
|
|
8500
8392
|
* @memberof HospitalSpecialtyModel
|
|
8501
8393
|
*/
|
|
8502
|
-
'
|
|
8394
|
+
'hospitalId'?: string;
|
|
8503
8395
|
/**
|
|
8504
8396
|
*
|
|
8505
8397
|
* @type {string}
|
|
8506
8398
|
* @memberof HospitalSpecialtyModel
|
|
8507
8399
|
*/
|
|
8508
|
-
'
|
|
8400
|
+
'hospitalName'?: string | null;
|
|
8509
8401
|
/**
|
|
8510
8402
|
*
|
|
8511
8403
|
* @type {string}
|
|
8512
8404
|
* @memberof HospitalSpecialtyModel
|
|
8513
8405
|
*/
|
|
8514
|
-
'
|
|
8406
|
+
'hospitalSlug'?: string | null;
|
|
8515
8407
|
/**
|
|
8516
8408
|
*
|
|
8517
8409
|
* @type {string}
|
|
8518
8410
|
* @memberof HospitalSpecialtyModel
|
|
8519
8411
|
*/
|
|
8520
|
-
'
|
|
8412
|
+
'specialtyName'?: string | null;
|
|
8521
8413
|
/**
|
|
8522
8414
|
*
|
|
8523
8415
|
* @type {string}
|
|
8524
8416
|
* @memberof HospitalSpecialtyModel
|
|
8525
8417
|
*/
|
|
8526
|
-
'
|
|
8418
|
+
'specialtyTypeId'?: string;
|
|
8527
8419
|
/**
|
|
8528
8420
|
*
|
|
8529
8421
|
* @type {string}
|
|
8530
8422
|
* @memberof HospitalSpecialtyModel
|
|
8531
8423
|
*/
|
|
8532
|
-
'
|
|
8424
|
+
'customStyle'?: string | null;
|
|
8533
8425
|
/**
|
|
8534
8426
|
*
|
|
8535
|
-
* @type {
|
|
8427
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8536
8428
|
* @memberof HospitalSpecialtyModel
|
|
8537
8429
|
*/
|
|
8538
|
-
'
|
|
8430
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8539
8431
|
/**
|
|
8540
8432
|
*
|
|
8541
8433
|
* @type {Array<MediaModel>}
|
|
@@ -8560,19 +8452,19 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8560
8452
|
* @type {string}
|
|
8561
8453
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8562
8454
|
*/
|
|
8563
|
-
'
|
|
8455
|
+
'languageCode'?: string | null;
|
|
8564
8456
|
/**
|
|
8565
8457
|
*
|
|
8566
8458
|
* @type {string}
|
|
8567
8459
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8568
8460
|
*/
|
|
8569
|
-
'
|
|
8461
|
+
'name'?: string | null;
|
|
8570
8462
|
/**
|
|
8571
8463
|
*
|
|
8572
|
-
* @type {
|
|
8464
|
+
* @type {string}
|
|
8573
8465
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8574
8466
|
*/
|
|
8575
|
-
'
|
|
8467
|
+
'slug'?: string | null;
|
|
8576
8468
|
/**
|
|
8577
8469
|
*
|
|
8578
8470
|
* @type {boolean}
|
|
@@ -8584,25 +8476,7 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8584
8476
|
* @type {number}
|
|
8585
8477
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8586
8478
|
*/
|
|
8587
|
-
'
|
|
8588
|
-
/**
|
|
8589
|
-
*
|
|
8590
|
-
* @type {string}
|
|
8591
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
8592
|
-
*/
|
|
8593
|
-
'specialtyId'?: string;
|
|
8594
|
-
/**
|
|
8595
|
-
*
|
|
8596
|
-
* @type {string}
|
|
8597
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
8598
|
-
*/
|
|
8599
|
-
'specialtyName'?: string | null;
|
|
8600
|
-
/**
|
|
8601
|
-
*
|
|
8602
|
-
* @type {string}
|
|
8603
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
8604
|
-
*/
|
|
8605
|
-
'specialtySlug'?: string | null;
|
|
8479
|
+
'order'?: number;
|
|
8606
8480
|
}
|
|
8607
8481
|
/**
|
|
8608
8482
|
*
|
|
@@ -8914,12 +8788,6 @@ export interface ManagerItemModel {
|
|
|
8914
8788
|
* @memberof ManagerItemModel
|
|
8915
8789
|
*/
|
|
8916
8790
|
'firstName'?: string | null;
|
|
8917
|
-
/**
|
|
8918
|
-
*
|
|
8919
|
-
* @type {string}
|
|
8920
|
-
* @memberof ManagerItemModel
|
|
8921
|
-
*/
|
|
8922
|
-
'middleName'?: string | null;
|
|
8923
8791
|
/**
|
|
8924
8792
|
*
|
|
8925
8793
|
* @type {string}
|
|
@@ -8931,13 +8799,7 @@ export interface ManagerItemModel {
|
|
|
8931
8799
|
* @type {string}
|
|
8932
8800
|
* @memberof ManagerItemModel
|
|
8933
8801
|
*/
|
|
8934
|
-
'
|
|
8935
|
-
/**
|
|
8936
|
-
*
|
|
8937
|
-
* @type {string}
|
|
8938
|
-
* @memberof ManagerItemModel
|
|
8939
|
-
*/
|
|
8940
|
-
'slug'?: string | null;
|
|
8802
|
+
'fullname'?: string | null;
|
|
8941
8803
|
/**
|
|
8942
8804
|
*
|
|
8943
8805
|
* @type {string}
|
|
@@ -8997,19 +8859,31 @@ export interface ManagerItemModel {
|
|
|
8997
8859
|
* @type {string}
|
|
8998
8860
|
* @memberof ManagerItemModel
|
|
8999
8861
|
*/
|
|
9000
|
-
'
|
|
8862
|
+
'userType'?: string | null;
|
|
8863
|
+
/**
|
|
8864
|
+
*
|
|
8865
|
+
* @type {Array<UserLanguageModel>}
|
|
8866
|
+
* @memberof ManagerItemModel
|
|
8867
|
+
*/
|
|
8868
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
8869
|
+
/**
|
|
8870
|
+
*
|
|
8871
|
+
* @type {Array<UserLocationModel>}
|
|
8872
|
+
* @memberof ManagerItemModel
|
|
8873
|
+
*/
|
|
8874
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
9001
8875
|
/**
|
|
9002
8876
|
*
|
|
9003
8877
|
* @type {string}
|
|
9004
8878
|
* @memberof ManagerItemModel
|
|
9005
8879
|
*/
|
|
9006
|
-
'
|
|
8880
|
+
'hospitalId'?: string | null;
|
|
9007
8881
|
/**
|
|
9008
8882
|
*
|
|
9009
8883
|
* @type {string}
|
|
9010
8884
|
* @memberof ManagerItemModel
|
|
9011
8885
|
*/
|
|
9012
|
-
'
|
|
8886
|
+
'hospitalName'?: string | null;
|
|
9013
8887
|
/**
|
|
9014
8888
|
*
|
|
9015
8889
|
* @type {number}
|
|
@@ -9041,12 +8915,6 @@ export interface ManagerModel {
|
|
|
9041
8915
|
* @memberof ManagerModel
|
|
9042
8916
|
*/
|
|
9043
8917
|
'firstName'?: string | null;
|
|
9044
|
-
/**
|
|
9045
|
-
*
|
|
9046
|
-
* @type {string}
|
|
9047
|
-
* @memberof ManagerModel
|
|
9048
|
-
*/
|
|
9049
|
-
'middleName'?: string | null;
|
|
9050
8918
|
/**
|
|
9051
8919
|
*
|
|
9052
8920
|
* @type {string}
|
|
@@ -9058,13 +8926,7 @@ export interface ManagerModel {
|
|
|
9058
8926
|
* @type {string}
|
|
9059
8927
|
* @memberof ManagerModel
|
|
9060
8928
|
*/
|
|
9061
|
-
'
|
|
9062
|
-
/**
|
|
9063
|
-
*
|
|
9064
|
-
* @type {string}
|
|
9065
|
-
* @memberof ManagerModel
|
|
9066
|
-
*/
|
|
9067
|
-
'slug'?: string | null;
|
|
8929
|
+
'fullname'?: string | null;
|
|
9068
8930
|
/**
|
|
9069
8931
|
*
|
|
9070
8932
|
* @type {string}
|
|
@@ -9149,12 +9011,6 @@ export interface ManagerModel {
|
|
|
9149
9011
|
* @memberof ManagerModel
|
|
9150
9012
|
*/
|
|
9151
9013
|
'hospitalName'?: string | null;
|
|
9152
|
-
/**
|
|
9153
|
-
*
|
|
9154
|
-
* @type {string}
|
|
9155
|
-
* @memberof ManagerModel
|
|
9156
|
-
*/
|
|
9157
|
-
'hospitalSlug'?: string | null;
|
|
9158
9014
|
/**
|
|
9159
9015
|
*
|
|
9160
9016
|
* @type {number}
|
|
@@ -9740,12 +9596,6 @@ export interface PatientItemModel {
|
|
|
9740
9596
|
* @memberof PatientItemModel
|
|
9741
9597
|
*/
|
|
9742
9598
|
'firstName'?: string | null;
|
|
9743
|
-
/**
|
|
9744
|
-
*
|
|
9745
|
-
* @type {string}
|
|
9746
|
-
* @memberof PatientItemModel
|
|
9747
|
-
*/
|
|
9748
|
-
'middleName'?: string | null;
|
|
9749
9599
|
/**
|
|
9750
9600
|
*
|
|
9751
9601
|
* @type {string}
|
|
@@ -9757,13 +9607,7 @@ export interface PatientItemModel {
|
|
|
9757
9607
|
* @type {string}
|
|
9758
9608
|
* @memberof PatientItemModel
|
|
9759
9609
|
*/
|
|
9760
|
-
'
|
|
9761
|
-
/**
|
|
9762
|
-
*
|
|
9763
|
-
* @type {string}
|
|
9764
|
-
* @memberof PatientItemModel
|
|
9765
|
-
*/
|
|
9766
|
-
'slug'?: string | null;
|
|
9610
|
+
'fullname'?: string | null;
|
|
9767
9611
|
/**
|
|
9768
9612
|
*
|
|
9769
9613
|
* @type {string}
|
|
@@ -9849,12 +9693,6 @@ export interface PatientModel {
|
|
|
9849
9693
|
* @memberof PatientModel
|
|
9850
9694
|
*/
|
|
9851
9695
|
'firstName'?: string | null;
|
|
9852
|
-
/**
|
|
9853
|
-
*
|
|
9854
|
-
* @type {string}
|
|
9855
|
-
* @memberof PatientModel
|
|
9856
|
-
*/
|
|
9857
|
-
'middleName'?: string | null;
|
|
9858
9696
|
/**
|
|
9859
9697
|
*
|
|
9860
9698
|
* @type {string}
|
|
@@ -9866,13 +9704,7 @@ export interface PatientModel {
|
|
|
9866
9704
|
* @type {string}
|
|
9867
9705
|
* @memberof PatientModel
|
|
9868
9706
|
*/
|
|
9869
|
-
'
|
|
9870
|
-
/**
|
|
9871
|
-
*
|
|
9872
|
-
* @type {string}
|
|
9873
|
-
* @memberof PatientModel
|
|
9874
|
-
*/
|
|
9875
|
-
'slug'?: string | null;
|
|
9707
|
+
'fullname'?: string | null;
|
|
9876
9708
|
/**
|
|
9877
9709
|
*
|
|
9878
9710
|
* @type {string}
|
|
@@ -10614,31 +10446,6 @@ export interface ServiceReviewsModel {
|
|
|
10614
10446
|
*/
|
|
10615
10447
|
'metaData'?: PagedListMetaData;
|
|
10616
10448
|
}
|
|
10617
|
-
/**
|
|
10618
|
-
*
|
|
10619
|
-
* @export
|
|
10620
|
-
* @interface SnsHandle
|
|
10621
|
-
*/
|
|
10622
|
-
export interface SnsHandle {
|
|
10623
|
-
/**
|
|
10624
|
-
*
|
|
10625
|
-
* @type {string}
|
|
10626
|
-
* @memberof SnsHandle
|
|
10627
|
-
*/
|
|
10628
|
-
'id'?: string;
|
|
10629
|
-
/**
|
|
10630
|
-
*
|
|
10631
|
-
* @type {SnsType}
|
|
10632
|
-
* @memberof SnsHandle
|
|
10633
|
-
*/
|
|
10634
|
-
'snsType'?: SnsType;
|
|
10635
|
-
/**
|
|
10636
|
-
*
|
|
10637
|
-
* @type {string}
|
|
10638
|
-
* @memberof SnsHandle
|
|
10639
|
-
*/
|
|
10640
|
-
'handle'?: string | null;
|
|
10641
|
-
}
|
|
10642
10449
|
/**
|
|
10643
10450
|
*
|
|
10644
10451
|
* @export
|
|
@@ -10776,31 +10583,25 @@ export interface SpecialtyItemModel {
|
|
|
10776
10583
|
* @type {string}
|
|
10777
10584
|
* @memberof SpecialtyItemModel
|
|
10778
10585
|
*/
|
|
10779
|
-
'
|
|
10586
|
+
'languageCode'?: string | null;
|
|
10780
10587
|
/**
|
|
10781
10588
|
*
|
|
10782
10589
|
* @type {string}
|
|
10783
10590
|
* @memberof SpecialtyItemModel
|
|
10784
10591
|
*/
|
|
10785
|
-
'
|
|
10592
|
+
'name'?: string | null;
|
|
10786
10593
|
/**
|
|
10787
10594
|
*
|
|
10788
10595
|
* @type {string}
|
|
10789
10596
|
* @memberof SpecialtyItemModel
|
|
10790
10597
|
*/
|
|
10791
|
-
'
|
|
10792
|
-
/**
|
|
10793
|
-
*
|
|
10794
|
-
* @type {number}
|
|
10795
|
-
* @memberof SpecialtyItemModel
|
|
10796
|
-
*/
|
|
10797
|
-
'hospitalSpecialtyCount'?: number;
|
|
10598
|
+
'slug'?: string | null;
|
|
10798
10599
|
/**
|
|
10799
10600
|
*
|
|
10800
|
-
* @type {
|
|
10601
|
+
* @type {boolean}
|
|
10801
10602
|
* @memberof SpecialtyItemModel
|
|
10802
10603
|
*/
|
|
10803
|
-
'
|
|
10604
|
+
'confirmed'?: boolean;
|
|
10804
10605
|
/**
|
|
10805
10606
|
*
|
|
10806
10607
|
* @type {string}
|
|
@@ -10815,22 +10616,16 @@ export interface SpecialtyItemModel {
|
|
|
10815
10616
|
'specialtyTypeName'?: string | null;
|
|
10816
10617
|
/**
|
|
10817
10618
|
*
|
|
10818
|
-
* @type {
|
|
10619
|
+
* @type {Array<MediaModel>}
|
|
10819
10620
|
* @memberof SpecialtyItemModel
|
|
10820
10621
|
*/
|
|
10821
|
-
'
|
|
10622
|
+
'medias'?: Array<MediaModel> | null;
|
|
10822
10623
|
/**
|
|
10823
10624
|
*
|
|
10824
10625
|
* @type {AuditableEntity}
|
|
10825
10626
|
* @memberof SpecialtyItemModel
|
|
10826
10627
|
*/
|
|
10827
10628
|
'auditableEntity'?: AuditableEntity;
|
|
10828
|
-
/**
|
|
10829
|
-
*
|
|
10830
|
-
* @type {Array<MediaModel>}
|
|
10831
|
-
* @memberof SpecialtyItemModel
|
|
10832
|
-
*/
|
|
10833
|
-
'medias'?: Array<MediaModel> | null;
|
|
10834
10629
|
}
|
|
10835
10630
|
/**
|
|
10836
10631
|
*
|
|
@@ -10849,25 +10644,31 @@ export interface SpecialtyItemSimpleModel {
|
|
|
10849
10644
|
* @type {string}
|
|
10850
10645
|
* @memberof SpecialtyItemSimpleModel
|
|
10851
10646
|
*/
|
|
10852
|
-
'
|
|
10647
|
+
'languageCode'?: string | null;
|
|
10853
10648
|
/**
|
|
10854
10649
|
*
|
|
10855
10650
|
* @type {string}
|
|
10856
10651
|
* @memberof SpecialtyItemSimpleModel
|
|
10857
10652
|
*/
|
|
10858
|
-
'
|
|
10653
|
+
'name'?: string | null;
|
|
10859
10654
|
/**
|
|
10860
10655
|
*
|
|
10861
10656
|
* @type {string}
|
|
10862
10657
|
* @memberof SpecialtyItemSimpleModel
|
|
10863
10658
|
*/
|
|
10864
|
-
'
|
|
10659
|
+
'slug'?: string | null;
|
|
10865
10660
|
/**
|
|
10866
10661
|
*
|
|
10867
10662
|
* @type {boolean}
|
|
10868
10663
|
* @memberof SpecialtyItemSimpleModel
|
|
10869
10664
|
*/
|
|
10870
10665
|
'confirmed'?: boolean;
|
|
10666
|
+
/**
|
|
10667
|
+
*
|
|
10668
|
+
* @type {string}
|
|
10669
|
+
* @memberof SpecialtyItemSimpleModel
|
|
10670
|
+
*/
|
|
10671
|
+
'specialtyTypeId'?: string;
|
|
10871
10672
|
}
|
|
10872
10673
|
/**
|
|
10873
10674
|
*
|
|
@@ -10886,31 +10687,25 @@ export interface SpecialtyModel {
|
|
|
10886
10687
|
* @type {string}
|
|
10887
10688
|
* @memberof SpecialtyModel
|
|
10888
10689
|
*/
|
|
10889
|
-
'
|
|
10690
|
+
'languageCode'?: string | null;
|
|
10890
10691
|
/**
|
|
10891
10692
|
*
|
|
10892
10693
|
* @type {string}
|
|
10893
10694
|
* @memberof SpecialtyModel
|
|
10894
10695
|
*/
|
|
10895
|
-
'
|
|
10696
|
+
'name'?: string | null;
|
|
10896
10697
|
/**
|
|
10897
10698
|
*
|
|
10898
10699
|
* @type {string}
|
|
10899
10700
|
* @memberof SpecialtyModel
|
|
10900
10701
|
*/
|
|
10901
|
-
'
|
|
10902
|
-
/**
|
|
10903
|
-
*
|
|
10904
|
-
* @type {number}
|
|
10905
|
-
* @memberof SpecialtyModel
|
|
10906
|
-
*/
|
|
10907
|
-
'hospitalSpecialtyCount'?: number;
|
|
10702
|
+
'slug'?: string | null;
|
|
10908
10703
|
/**
|
|
10909
10704
|
*
|
|
10910
|
-
* @type {
|
|
10705
|
+
* @type {boolean}
|
|
10911
10706
|
* @memberof SpecialtyModel
|
|
10912
10707
|
*/
|
|
10913
|
-
'
|
|
10708
|
+
'confirmed'?: boolean;
|
|
10914
10709
|
/**
|
|
10915
10710
|
*
|
|
10916
10711
|
* @type {string}
|
|
@@ -10925,10 +10720,10 @@ export interface SpecialtyModel {
|
|
|
10925
10720
|
'specialtyTypeName'?: string | null;
|
|
10926
10721
|
/**
|
|
10927
10722
|
*
|
|
10928
|
-
* @type {
|
|
10723
|
+
* @type {Array<MediaModel>}
|
|
10929
10724
|
* @memberof SpecialtyModel
|
|
10930
10725
|
*/
|
|
10931
|
-
'
|
|
10726
|
+
'medias'?: Array<MediaModel> | null;
|
|
10932
10727
|
/**
|
|
10933
10728
|
*
|
|
10934
10729
|
* @type {AuditableEntity}
|
|
@@ -10937,28 +10732,22 @@ export interface SpecialtyModel {
|
|
|
10937
10732
|
'auditableEntity'?: AuditableEntity;
|
|
10938
10733
|
/**
|
|
10939
10734
|
*
|
|
10940
|
-
* @type {
|
|
10735
|
+
* @type {string}
|
|
10941
10736
|
* @memberof SpecialtyModel
|
|
10942
10737
|
*/
|
|
10943
|
-
'
|
|
10738
|
+
'description'?: string | null;
|
|
10944
10739
|
/**
|
|
10945
10740
|
*
|
|
10946
10741
|
* @type {string}
|
|
10947
10742
|
* @memberof SpecialtyModel
|
|
10948
10743
|
*/
|
|
10949
|
-
'
|
|
10744
|
+
'overview'?: string | null;
|
|
10950
10745
|
/**
|
|
10951
10746
|
*
|
|
10952
10747
|
* @type {string}
|
|
10953
10748
|
* @memberof SpecialtyModel
|
|
10954
10749
|
*/
|
|
10955
10750
|
'content'?: string | null;
|
|
10956
|
-
/**
|
|
10957
|
-
*
|
|
10958
|
-
* @type {Array<LocalizedUrlModel>}
|
|
10959
|
-
* @memberof SpecialtyModel
|
|
10960
|
-
*/
|
|
10961
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
10962
10751
|
}
|
|
10963
10752
|
/**
|
|
10964
10753
|
*
|
|
@@ -10977,55 +10766,43 @@ export interface SpecialtyTypeItemModel {
|
|
|
10977
10766
|
* @type {string}
|
|
10978
10767
|
* @memberof SpecialtyTypeItemModel
|
|
10979
10768
|
*/
|
|
10980
|
-
'
|
|
10769
|
+
'languageCode'?: string | null;
|
|
10981
10770
|
/**
|
|
10982
10771
|
*
|
|
10983
10772
|
* @type {string}
|
|
10984
10773
|
* @memberof SpecialtyTypeItemModel
|
|
10985
10774
|
*/
|
|
10986
|
-
'
|
|
10775
|
+
'name'?: string | null;
|
|
10987
10776
|
/**
|
|
10988
10777
|
*
|
|
10989
10778
|
* @type {string}
|
|
10990
10779
|
* @memberof SpecialtyTypeItemModel
|
|
10991
10780
|
*/
|
|
10992
|
-
'
|
|
10781
|
+
'slug'?: string | null;
|
|
10993
10782
|
/**
|
|
10994
10783
|
*
|
|
10995
|
-
* @type {
|
|
10784
|
+
* @type {boolean}
|
|
10996
10785
|
* @memberof SpecialtyTypeItemModel
|
|
10997
10786
|
*/
|
|
10998
|
-
'
|
|
10787
|
+
'confirmed'?: boolean;
|
|
10999
10788
|
/**
|
|
11000
10789
|
*
|
|
11001
|
-
* @type {
|
|
10790
|
+
* @type {string}
|
|
11002
10791
|
* @memberof SpecialtyTypeItemModel
|
|
11003
10792
|
*/
|
|
11004
|
-
'
|
|
10793
|
+
'description'?: string | null;
|
|
11005
10794
|
/**
|
|
11006
10795
|
*
|
|
11007
|
-
* @type {
|
|
10796
|
+
* @type {MarketingType}
|
|
11008
10797
|
* @memberof SpecialtyTypeItemModel
|
|
11009
10798
|
*/
|
|
11010
|
-
'
|
|
10799
|
+
'marketingType'?: MarketingType;
|
|
11011
10800
|
/**
|
|
11012
10801
|
*
|
|
11013
10802
|
* @type {number}
|
|
11014
10803
|
* @memberof SpecialtyTypeItemModel
|
|
11015
10804
|
*/
|
|
11016
|
-
'
|
|
11017
|
-
/**
|
|
11018
|
-
*
|
|
11019
|
-
* @type {Date}
|
|
11020
|
-
* @memberof SpecialtyTypeItemModel
|
|
11021
|
-
*/
|
|
11022
|
-
'created'?: Date;
|
|
11023
|
-
/**
|
|
11024
|
-
*
|
|
11025
|
-
* @type {boolean}
|
|
11026
|
-
* @memberof SpecialtyTypeItemModel
|
|
11027
|
-
*/
|
|
11028
|
-
'confirmed'?: boolean;
|
|
10805
|
+
'specialtiesCount'?: number;
|
|
11029
10806
|
/**
|
|
11030
10807
|
*
|
|
11031
10808
|
* @type {Array<MediaModel>}
|
|
@@ -11056,55 +10833,43 @@ export interface SpecialtyTypeModel {
|
|
|
11056
10833
|
* @type {string}
|
|
11057
10834
|
* @memberof SpecialtyTypeModel
|
|
11058
10835
|
*/
|
|
11059
|
-
'
|
|
10836
|
+
'languageCode'?: string | null;
|
|
11060
10837
|
/**
|
|
11061
10838
|
*
|
|
11062
10839
|
* @type {string}
|
|
11063
10840
|
* @memberof SpecialtyTypeModel
|
|
11064
10841
|
*/
|
|
11065
|
-
'
|
|
10842
|
+
'name'?: string | null;
|
|
11066
10843
|
/**
|
|
11067
10844
|
*
|
|
11068
10845
|
* @type {string}
|
|
11069
10846
|
* @memberof SpecialtyTypeModel
|
|
11070
10847
|
*/
|
|
11071
|
-
'
|
|
10848
|
+
'slug'?: string | null;
|
|
11072
10849
|
/**
|
|
11073
10850
|
*
|
|
11074
|
-
* @type {
|
|
10851
|
+
* @type {boolean}
|
|
11075
10852
|
* @memberof SpecialtyTypeModel
|
|
11076
10853
|
*/
|
|
11077
|
-
'
|
|
10854
|
+
'confirmed'?: boolean;
|
|
11078
10855
|
/**
|
|
11079
10856
|
*
|
|
11080
|
-
* @type {
|
|
10857
|
+
* @type {string}
|
|
11081
10858
|
* @memberof SpecialtyTypeModel
|
|
11082
10859
|
*/
|
|
11083
|
-
'
|
|
10860
|
+
'description'?: string | null;
|
|
11084
10861
|
/**
|
|
11085
10862
|
*
|
|
11086
|
-
* @type {
|
|
10863
|
+
* @type {MarketingType}
|
|
11087
10864
|
* @memberof SpecialtyTypeModel
|
|
11088
10865
|
*/
|
|
11089
|
-
'
|
|
10866
|
+
'marketingType'?: MarketingType;
|
|
11090
10867
|
/**
|
|
11091
10868
|
*
|
|
11092
10869
|
* @type {number}
|
|
11093
10870
|
* @memberof SpecialtyTypeModel
|
|
11094
10871
|
*/
|
|
11095
|
-
'
|
|
11096
|
-
/**
|
|
11097
|
-
*
|
|
11098
|
-
* @type {Date}
|
|
11099
|
-
* @memberof SpecialtyTypeModel
|
|
11100
|
-
*/
|
|
11101
|
-
'created'?: Date;
|
|
11102
|
-
/**
|
|
11103
|
-
*
|
|
11104
|
-
* @type {boolean}
|
|
11105
|
-
* @memberof SpecialtyTypeModel
|
|
11106
|
-
*/
|
|
11107
|
-
'confirmed'?: boolean;
|
|
10872
|
+
'specialtiesCount'?: number;
|
|
11108
10873
|
/**
|
|
11109
10874
|
*
|
|
11110
10875
|
* @type {Array<MediaModel>}
|
|
@@ -11122,19 +10887,13 @@ export interface SpecialtyTypeModel {
|
|
|
11122
10887
|
* @type {string}
|
|
11123
10888
|
* @memberof SpecialtyTypeModel
|
|
11124
10889
|
*/
|
|
11125
|
-
'
|
|
10890
|
+
'overview'?: string | null;
|
|
11126
10891
|
/**
|
|
11127
10892
|
*
|
|
11128
10893
|
* @type {string}
|
|
11129
10894
|
* @memberof SpecialtyTypeModel
|
|
11130
10895
|
*/
|
|
11131
10896
|
'content'?: string | null;
|
|
11132
|
-
/**
|
|
11133
|
-
*
|
|
11134
|
-
* @type {Array<LocalizedUrlModel>}
|
|
11135
|
-
* @memberof SpecialtyTypeModel
|
|
11136
|
-
*/
|
|
11137
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
11138
10897
|
}
|
|
11139
10898
|
/**
|
|
11140
10899
|
*
|
|
@@ -11148,6 +10907,12 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
11148
10907
|
* @memberof SpecialtyTypeSimpleItemModel
|
|
11149
10908
|
*/
|
|
11150
10909
|
'id'?: string;
|
|
10910
|
+
/**
|
|
10911
|
+
*
|
|
10912
|
+
* @type {string}
|
|
10913
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
10914
|
+
*/
|
|
10915
|
+
'languageCode'?: string | null;
|
|
11151
10916
|
/**
|
|
11152
10917
|
*
|
|
11153
10918
|
* @type {string}
|
|
@@ -11734,24 +11499,12 @@ export interface UpdateCHAdminCommand {
|
|
|
11734
11499
|
* @memberof UpdateCHAdminCommand
|
|
11735
11500
|
*/
|
|
11736
11501
|
'firstName'?: string | null;
|
|
11737
|
-
/**
|
|
11738
|
-
*
|
|
11739
|
-
* @type {string}
|
|
11740
|
-
* @memberof UpdateCHAdminCommand
|
|
11741
|
-
*/
|
|
11742
|
-
'middleName'?: string | null;
|
|
11743
11502
|
/**
|
|
11744
11503
|
*
|
|
11745
11504
|
* @type {string}
|
|
11746
11505
|
* @memberof UpdateCHAdminCommand
|
|
11747
11506
|
*/
|
|
11748
11507
|
'lastName'?: string | null;
|
|
11749
|
-
/**
|
|
11750
|
-
*
|
|
11751
|
-
* @type {string}
|
|
11752
|
-
* @memberof UpdateCHAdminCommand
|
|
11753
|
-
*/
|
|
11754
|
-
'slug'?: string | null;
|
|
11755
11508
|
/**
|
|
11756
11509
|
*
|
|
11757
11510
|
* @type {string}
|
|
@@ -11813,24 +11566,12 @@ export interface UpdateCHManagerCommand {
|
|
|
11813
11566
|
* @memberof UpdateCHManagerCommand
|
|
11814
11567
|
*/
|
|
11815
11568
|
'firstName'?: string | null;
|
|
11816
|
-
/**
|
|
11817
|
-
*
|
|
11818
|
-
* @type {string}
|
|
11819
|
-
* @memberof UpdateCHManagerCommand
|
|
11820
|
-
*/
|
|
11821
|
-
'middleName'?: string | null;
|
|
11822
11569
|
/**
|
|
11823
11570
|
*
|
|
11824
11571
|
* @type {string}
|
|
11825
11572
|
* @memberof UpdateCHManagerCommand
|
|
11826
11573
|
*/
|
|
11827
11574
|
'lastName'?: string | null;
|
|
11828
|
-
/**
|
|
11829
|
-
*
|
|
11830
|
-
* @type {string}
|
|
11831
|
-
* @memberof UpdateCHManagerCommand
|
|
11832
|
-
*/
|
|
11833
|
-
'slug'?: string | null;
|
|
11834
11575
|
/**
|
|
11835
11576
|
*
|
|
11836
11577
|
* @type {string}
|
|
@@ -12182,6 +11923,103 @@ export interface UpdateDealsSearchIndexCommand {
|
|
|
12182
11923
|
*/
|
|
12183
11924
|
'reCreate'?: boolean | null;
|
|
12184
11925
|
}
|
|
11926
|
+
/**
|
|
11927
|
+
*
|
|
11928
|
+
* @export
|
|
11929
|
+
* @interface UpdateDoctorAffiliationCommand
|
|
11930
|
+
*/
|
|
11931
|
+
export interface UpdateDoctorAffiliationCommand {
|
|
11932
|
+
/**
|
|
11933
|
+
*
|
|
11934
|
+
* @type {string}
|
|
11935
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11936
|
+
*/
|
|
11937
|
+
'languageCode'?: string | null;
|
|
11938
|
+
/**
|
|
11939
|
+
*
|
|
11940
|
+
* @type {string}
|
|
11941
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11942
|
+
*/
|
|
11943
|
+
'name'?: string | null;
|
|
11944
|
+
/**
|
|
11945
|
+
*
|
|
11946
|
+
* @type {string}
|
|
11947
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11948
|
+
*/
|
|
11949
|
+
'slug'?: string | null;
|
|
11950
|
+
/**
|
|
11951
|
+
*
|
|
11952
|
+
* @type {string}
|
|
11953
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11954
|
+
*/
|
|
11955
|
+
'description'?: string | null;
|
|
11956
|
+
/**
|
|
11957
|
+
*
|
|
11958
|
+
* @type {string}
|
|
11959
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11960
|
+
*/
|
|
11961
|
+
'content'?: string | null;
|
|
11962
|
+
/**
|
|
11963
|
+
*
|
|
11964
|
+
* @type {string}
|
|
11965
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11966
|
+
*/
|
|
11967
|
+
'customStyle'?: string | null;
|
|
11968
|
+
/**
|
|
11969
|
+
*
|
|
11970
|
+
* @type {number}
|
|
11971
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11972
|
+
*/
|
|
11973
|
+
'order'?: number;
|
|
11974
|
+
/**
|
|
11975
|
+
*
|
|
11976
|
+
* @type {string}
|
|
11977
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11978
|
+
*/
|
|
11979
|
+
'photo'?: string | null;
|
|
11980
|
+
/**
|
|
11981
|
+
*
|
|
11982
|
+
* @type {string}
|
|
11983
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11984
|
+
*/
|
|
11985
|
+
'photoThumbnail'?: string | null;
|
|
11986
|
+
/**
|
|
11987
|
+
*
|
|
11988
|
+
* @type {string}
|
|
11989
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11990
|
+
*/
|
|
11991
|
+
'background'?: string | null;
|
|
11992
|
+
/**
|
|
11993
|
+
*
|
|
11994
|
+
* @type {string}
|
|
11995
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11996
|
+
*/
|
|
11997
|
+
'backgroundThumbnail'?: string | null;
|
|
11998
|
+
/**
|
|
11999
|
+
*
|
|
12000
|
+
* @type {boolean}
|
|
12001
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
12002
|
+
*/
|
|
12003
|
+
'consultationEnabled'?: boolean | null;
|
|
12004
|
+
/**
|
|
12005
|
+
*
|
|
12006
|
+
* @type {number}
|
|
12007
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
12008
|
+
*/
|
|
12009
|
+
'consultationFee'?: number | null;
|
|
12010
|
+
/**
|
|
12011
|
+
*
|
|
12012
|
+
* @type {boolean}
|
|
12013
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
12014
|
+
*/
|
|
12015
|
+
'confirmed'?: boolean;
|
|
12016
|
+
/**
|
|
12017
|
+
*
|
|
12018
|
+
* @type {Array<MediaModel>}
|
|
12019
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
12020
|
+
*/
|
|
12021
|
+
'medias'?: Array<MediaModel> | null;
|
|
12022
|
+
}
|
|
12185
12023
|
/**
|
|
12186
12024
|
*
|
|
12187
12025
|
* @export
|
|
@@ -12225,36 +12063,12 @@ export interface UpdateDoctorCommand {
|
|
|
12225
12063
|
* @memberof UpdateDoctorCommand
|
|
12226
12064
|
*/
|
|
12227
12065
|
'firstName'?: string | null;
|
|
12228
|
-
/**
|
|
12229
|
-
*
|
|
12230
|
-
* @type {string}
|
|
12231
|
-
* @memberof UpdateDoctorCommand
|
|
12232
|
-
*/
|
|
12233
|
-
'middleName'?: string | null;
|
|
12234
12066
|
/**
|
|
12235
12067
|
*
|
|
12236
12068
|
* @type {string}
|
|
12237
12069
|
* @memberof UpdateDoctorCommand
|
|
12238
12070
|
*/
|
|
12239
12071
|
'lastName'?: string | null;
|
|
12240
|
-
/**
|
|
12241
|
-
*
|
|
12242
|
-
* @type {string}
|
|
12243
|
-
* @memberof UpdateDoctorCommand
|
|
12244
|
-
*/
|
|
12245
|
-
'description'?: string | null;
|
|
12246
|
-
/**
|
|
12247
|
-
*
|
|
12248
|
-
* @type {string}
|
|
12249
|
-
* @memberof UpdateDoctorCommand
|
|
12250
|
-
*/
|
|
12251
|
-
'overview'?: string | null;
|
|
12252
|
-
/**
|
|
12253
|
-
*
|
|
12254
|
-
* @type {string}
|
|
12255
|
-
* @memberof UpdateDoctorCommand
|
|
12256
|
-
*/
|
|
12257
|
-
'content'?: string | null;
|
|
12258
12072
|
/**
|
|
12259
12073
|
*
|
|
12260
12074
|
* @type {string}
|
|
@@ -12297,6 +12111,12 @@ export interface UpdateDoctorCommand {
|
|
|
12297
12111
|
* @memberof UpdateDoctorCommand
|
|
12298
12112
|
*/
|
|
12299
12113
|
'startPracticeDate'?: Date | null;
|
|
12114
|
+
/**
|
|
12115
|
+
*
|
|
12116
|
+
* @type {string}
|
|
12117
|
+
* @memberof UpdateDoctorCommand
|
|
12118
|
+
*/
|
|
12119
|
+
'overview'?: string | null;
|
|
12300
12120
|
/**
|
|
12301
12121
|
*
|
|
12302
12122
|
* @type {boolean}
|
|
@@ -12315,6 +12135,12 @@ export interface UpdateDoctorCommand {
|
|
|
12315
12135
|
* @memberof UpdateDoctorCommand
|
|
12316
12136
|
*/
|
|
12317
12137
|
'timeZone'?: string | null;
|
|
12138
|
+
/**
|
|
12139
|
+
*
|
|
12140
|
+
* @type {string}
|
|
12141
|
+
* @memberof UpdateDoctorCommand
|
|
12142
|
+
*/
|
|
12143
|
+
'hospitalId'?: string | null;
|
|
12318
12144
|
/**
|
|
12319
12145
|
*
|
|
12320
12146
|
* @type {string}
|
|
@@ -13057,24 +12883,12 @@ export interface UpdateManagerCommand {
|
|
|
13057
12883
|
* @memberof UpdateManagerCommand
|
|
13058
12884
|
*/
|
|
13059
12885
|
'firstName'?: string | null;
|
|
13060
|
-
/**
|
|
13061
|
-
*
|
|
13062
|
-
* @type {string}
|
|
13063
|
-
* @memberof UpdateManagerCommand
|
|
13064
|
-
*/
|
|
13065
|
-
'middleName'?: string | null;
|
|
13066
12886
|
/**
|
|
13067
12887
|
*
|
|
13068
12888
|
* @type {string}
|
|
13069
12889
|
* @memberof UpdateManagerCommand
|
|
13070
12890
|
*/
|
|
13071
12891
|
'lastName'?: string | null;
|
|
13072
|
-
/**
|
|
13073
|
-
*
|
|
13074
|
-
* @type {string}
|
|
13075
|
-
* @memberof UpdateManagerCommand
|
|
13076
|
-
*/
|
|
13077
|
-
'slug'?: string | null;
|
|
13078
12892
|
/**
|
|
13079
12893
|
*
|
|
13080
12894
|
* @type {string}
|
|
@@ -13111,6 +12925,12 @@ export interface UpdateManagerCommand {
|
|
|
13111
12925
|
* @memberof UpdateManagerCommand
|
|
13112
12926
|
*/
|
|
13113
12927
|
'timeZone'?: string | null;
|
|
12928
|
+
/**
|
|
12929
|
+
*
|
|
12930
|
+
* @type {Array<string>}
|
|
12931
|
+
* @memberof UpdateManagerCommand
|
|
12932
|
+
*/
|
|
12933
|
+
'hospitalIds'?: Array<string> | null;
|
|
13114
12934
|
}
|
|
13115
12935
|
/**
|
|
13116
12936
|
*
|
|
@@ -13173,24 +12993,12 @@ export interface UpdatePatientCommand {
|
|
|
13173
12993
|
* @memberof UpdatePatientCommand
|
|
13174
12994
|
*/
|
|
13175
12995
|
'firstName'?: string | null;
|
|
13176
|
-
/**
|
|
13177
|
-
*
|
|
13178
|
-
* @type {string}
|
|
13179
|
-
* @memberof UpdatePatientCommand
|
|
13180
|
-
*/
|
|
13181
|
-
'middleName'?: string | null;
|
|
13182
12996
|
/**
|
|
13183
12997
|
*
|
|
13184
12998
|
* @type {string}
|
|
13185
12999
|
* @memberof UpdatePatientCommand
|
|
13186
13000
|
*/
|
|
13187
13001
|
'lastName'?: string | null;
|
|
13188
|
-
/**
|
|
13189
|
-
*
|
|
13190
|
-
* @type {string}
|
|
13191
|
-
* @memberof UpdatePatientCommand
|
|
13192
|
-
*/
|
|
13193
|
-
'slug'?: string | null;
|
|
13194
13002
|
/**
|
|
13195
13003
|
*
|
|
13196
13004
|
* @type {string}
|
|
@@ -13486,55 +13294,43 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
13486
13294
|
* @type {string}
|
|
13487
13295
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13488
13296
|
*/
|
|
13489
|
-
'
|
|
13297
|
+
'languageCode'?: string | null;
|
|
13490
13298
|
/**
|
|
13491
13299
|
*
|
|
13492
13300
|
* @type {string}
|
|
13493
13301
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13494
13302
|
*/
|
|
13495
|
-
'
|
|
13303
|
+
'name'?: string | null;
|
|
13496
13304
|
/**
|
|
13497
13305
|
*
|
|
13498
13306
|
* @type {string}
|
|
13499
13307
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13500
13308
|
*/
|
|
13501
|
-
'
|
|
13309
|
+
'slug'?: string | null;
|
|
13502
13310
|
/**
|
|
13503
13311
|
*
|
|
13504
|
-
* @type {
|
|
13312
|
+
* @type {boolean}
|
|
13505
13313
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13506
13314
|
*/
|
|
13507
|
-
'
|
|
13315
|
+
'confirmed'?: boolean;
|
|
13508
13316
|
/**
|
|
13509
13317
|
*
|
|
13510
|
-
* @type {
|
|
13318
|
+
* @type {string}
|
|
13511
13319
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13512
13320
|
*/
|
|
13513
|
-
'
|
|
13321
|
+
'description'?: string | null;
|
|
13514
13322
|
/**
|
|
13515
13323
|
*
|
|
13516
|
-
* @type {
|
|
13324
|
+
* @type {MarketingType}
|
|
13517
13325
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13518
13326
|
*/
|
|
13519
|
-
'
|
|
13327
|
+
'marketingType'?: MarketingType;
|
|
13520
13328
|
/**
|
|
13521
13329
|
*
|
|
13522
13330
|
* @type {number}
|
|
13523
13331
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13524
13332
|
*/
|
|
13525
|
-
'
|
|
13526
|
-
/**
|
|
13527
|
-
*
|
|
13528
|
-
* @type {Date}
|
|
13529
|
-
* @memberof UpdateSpecialtyTypeCommand
|
|
13530
|
-
*/
|
|
13531
|
-
'created'?: Date;
|
|
13532
|
-
/**
|
|
13533
|
-
*
|
|
13534
|
-
* @type {boolean}
|
|
13535
|
-
* @memberof UpdateSpecialtyTypeCommand
|
|
13536
|
-
*/
|
|
13537
|
-
'confirmed'?: boolean;
|
|
13333
|
+
'specialtiesCount'?: number;
|
|
13538
13334
|
/**
|
|
13539
13335
|
*
|
|
13540
13336
|
* @type {Array<MediaModel>}
|
|
@@ -13552,19 +13348,13 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
13552
13348
|
* @type {string}
|
|
13553
13349
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13554
13350
|
*/
|
|
13555
|
-
'
|
|
13351
|
+
'overview'?: string | null;
|
|
13556
13352
|
/**
|
|
13557
13353
|
*
|
|
13558
13354
|
* @type {string}
|
|
13559
13355
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13560
13356
|
*/
|
|
13561
13357
|
'content'?: string | null;
|
|
13562
|
-
/**
|
|
13563
|
-
*
|
|
13564
|
-
* @type {Array<LocalizedUrlModel>}
|
|
13565
|
-
* @memberof UpdateSpecialtyTypeCommand
|
|
13566
|
-
*/
|
|
13567
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
13568
13358
|
}
|
|
13569
13359
|
/**
|
|
13570
13360
|
*
|
|
@@ -13725,12 +13515,6 @@ export interface UserModel {
|
|
|
13725
13515
|
* @memberof UserModel
|
|
13726
13516
|
*/
|
|
13727
13517
|
'firstName'?: string | null;
|
|
13728
|
-
/**
|
|
13729
|
-
*
|
|
13730
|
-
* @type {string}
|
|
13731
|
-
* @memberof UserModel
|
|
13732
|
-
*/
|
|
13733
|
-
'middleName'?: string | null;
|
|
13734
13518
|
/**
|
|
13735
13519
|
*
|
|
13736
13520
|
* @type {string}
|
|
@@ -13742,13 +13526,7 @@ export interface UserModel {
|
|
|
13742
13526
|
* @type {string}
|
|
13743
13527
|
* @memberof UserModel
|
|
13744
13528
|
*/
|
|
13745
|
-
'
|
|
13746
|
-
/**
|
|
13747
|
-
*
|
|
13748
|
-
* @type {string}
|
|
13749
|
-
* @memberof UserModel
|
|
13750
|
-
*/
|
|
13751
|
-
'slug'?: string | null;
|
|
13529
|
+
'fullname'?: string | null;
|
|
13752
13530
|
/**
|
|
13753
13531
|
*
|
|
13754
13532
|
* @type {string}
|
|
@@ -24253,27 +24031,29 @@ export class DealsApi extends BaseAPI {
|
|
|
24253
24031
|
|
|
24254
24032
|
|
|
24255
24033
|
/**
|
|
24256
|
-
*
|
|
24034
|
+
* DoctorAffiliationsApi - axios parameter creator
|
|
24257
24035
|
* @export
|
|
24258
24036
|
*/
|
|
24259
|
-
export const
|
|
24037
|
+
export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
24260
24038
|
return {
|
|
24261
24039
|
/**
|
|
24262
24040
|
*
|
|
24263
24041
|
* @summary Get all doctor affiliations.
|
|
24264
|
-
* @param {string}
|
|
24042
|
+
* @param {string} [hospitalId]
|
|
24265
24043
|
* @param {string} [hospitalName]
|
|
24044
|
+
* @param {string} [doctorId]
|
|
24045
|
+
* @param {string} [name]
|
|
24046
|
+
* @param {string} [slug]
|
|
24047
|
+
* @param {string} [languageCode]
|
|
24048
|
+
* @param {boolean} [showHidden]
|
|
24266
24049
|
* @param {number} [page]
|
|
24267
24050
|
* @param {number} [limit]
|
|
24268
24051
|
* @param {Date} [lastRetrieved]
|
|
24269
24052
|
* @param {*} [options] Override http request option.
|
|
24270
24053
|
* @throws {RequiredError}
|
|
24271
24054
|
*/
|
|
24272
|
-
|
|
24273
|
-
|
|
24274
|
-
assertParamExists('apiV1DoctorsDoctorIdAffiliationsGet', 'doctorId', doctorId)
|
|
24275
|
-
const localVarPath = `/api/v1/doctors/{doctorId}/affiliations`
|
|
24276
|
-
.replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)));
|
|
24055
|
+
apiV1DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24056
|
+
const localVarPath = `/api/v1/doctoraffiliations`;
|
|
24277
24057
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24278
24058
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24279
24059
|
let baseOptions;
|
|
@@ -24289,10 +24069,34 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
24289
24069
|
// oauth required
|
|
24290
24070
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
24291
24071
|
|
|
24072
|
+
if (hospitalId !== undefined) {
|
|
24073
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
24074
|
+
}
|
|
24075
|
+
|
|
24292
24076
|
if (hospitalName !== undefined) {
|
|
24293
24077
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
24294
24078
|
}
|
|
24295
24079
|
|
|
24080
|
+
if (doctorId !== undefined) {
|
|
24081
|
+
localVarQueryParameter['DoctorId'] = doctorId;
|
|
24082
|
+
}
|
|
24083
|
+
|
|
24084
|
+
if (name !== undefined) {
|
|
24085
|
+
localVarQueryParameter['Name'] = name;
|
|
24086
|
+
}
|
|
24087
|
+
|
|
24088
|
+
if (slug !== undefined) {
|
|
24089
|
+
localVarQueryParameter['Slug'] = slug;
|
|
24090
|
+
}
|
|
24091
|
+
|
|
24092
|
+
if (languageCode !== undefined) {
|
|
24093
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
24094
|
+
}
|
|
24095
|
+
|
|
24096
|
+
if (showHidden !== undefined) {
|
|
24097
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
24098
|
+
}
|
|
24099
|
+
|
|
24296
24100
|
if (page !== undefined) {
|
|
24297
24101
|
localVarQueryParameter['page'] = page;
|
|
24298
24102
|
}
|
|
@@ -24321,19 +24125,15 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
24321
24125
|
/**
|
|
24322
24126
|
*
|
|
24323
24127
|
* @summary Delete doctor affiliation.
|
|
24324
|
-
* @param {string}
|
|
24325
|
-
* @param {string} hospitalId
|
|
24128
|
+
* @param {string} id
|
|
24326
24129
|
* @param {*} [options] Override http request option.
|
|
24327
24130
|
* @throws {RequiredError}
|
|
24328
24131
|
*/
|
|
24329
|
-
|
|
24330
|
-
// verify required parameter '
|
|
24331
|
-
assertParamExists('
|
|
24332
|
-
|
|
24333
|
-
|
|
24334
|
-
const localVarPath = `/api/v1/doctors/{doctorId}/affiliations/{hospitalId}`
|
|
24335
|
-
.replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)))
|
|
24336
|
-
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
24132
|
+
apiV1DoctoraffiliationsIdDelete: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24133
|
+
// verify required parameter 'id' is not null or undefined
|
|
24134
|
+
assertParamExists('apiV1DoctoraffiliationsIdDelete', 'id', id)
|
|
24135
|
+
const localVarPath = `/api/v1/doctoraffiliations/{id}`
|
|
24136
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
24337
24137
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24338
24138
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24339
24139
|
let baseOptions;
|
|
@@ -24363,19 +24163,15 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
24363
24163
|
/**
|
|
24364
24164
|
*
|
|
24365
24165
|
* @summary Get doctor affiliation.
|
|
24366
|
-
* @param {string}
|
|
24367
|
-
* @param {string} hospitalId
|
|
24166
|
+
* @param {string} id
|
|
24368
24167
|
* @param {*} [options] Override http request option.
|
|
24369
24168
|
* @throws {RequiredError}
|
|
24370
24169
|
*/
|
|
24371
|
-
|
|
24372
|
-
// verify required parameter '
|
|
24373
|
-
assertParamExists('
|
|
24374
|
-
|
|
24375
|
-
|
|
24376
|
-
const localVarPath = `/api/v1/doctors/{doctorId}/affiliations/{hospitalId}`
|
|
24377
|
-
.replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)))
|
|
24378
|
-
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
24170
|
+
apiV1DoctoraffiliationsIdGet: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24171
|
+
// verify required parameter 'id' is not null or undefined
|
|
24172
|
+
assertParamExists('apiV1DoctoraffiliationsIdGet', 'id', id)
|
|
24173
|
+
const localVarPath = `/api/v1/doctoraffiliations/{id}`
|
|
24174
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
24379
24175
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24380
24176
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24381
24177
|
let baseOptions;
|
|
@@ -24404,16 +24200,54 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
24404
24200
|
},
|
|
24405
24201
|
/**
|
|
24406
24202
|
*
|
|
24407
|
-
* @
|
|
24203
|
+
* @summary Update Hospital.
|
|
24204
|
+
* @param {string} id
|
|
24205
|
+
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
24206
|
+
* @param {*} [options] Override http request option.
|
|
24207
|
+
* @throws {RequiredError}
|
|
24208
|
+
*/
|
|
24209
|
+
apiV1DoctoraffiliationsIdPut: async (id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24210
|
+
// verify required parameter 'id' is not null or undefined
|
|
24211
|
+
assertParamExists('apiV1DoctoraffiliationsIdPut', 'id', id)
|
|
24212
|
+
const localVarPath = `/api/v1/doctoraffiliations/{id}`
|
|
24213
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
24214
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24215
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24216
|
+
let baseOptions;
|
|
24217
|
+
if (configuration) {
|
|
24218
|
+
baseOptions = configuration.baseOptions;
|
|
24219
|
+
}
|
|
24220
|
+
|
|
24221
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
24222
|
+
const localVarHeaderParameter = {} as any;
|
|
24223
|
+
const localVarQueryParameter = {} as any;
|
|
24224
|
+
|
|
24225
|
+
// authentication oauth2 required
|
|
24226
|
+
// oauth required
|
|
24227
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
24228
|
+
|
|
24229
|
+
|
|
24230
|
+
|
|
24231
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
24232
|
+
|
|
24233
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24234
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24235
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24236
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateDoctorAffiliationCommand, localVarRequestOptions, configuration)
|
|
24237
|
+
|
|
24238
|
+
return {
|
|
24239
|
+
url: toPathString(localVarUrlObj),
|
|
24240
|
+
options: localVarRequestOptions,
|
|
24241
|
+
};
|
|
24242
|
+
},
|
|
24243
|
+
/**
|
|
24244
|
+
*
|
|
24408
24245
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
24409
24246
|
* @param {*} [options] Override http request option.
|
|
24410
24247
|
* @throws {RequiredError}
|
|
24411
24248
|
*/
|
|
24412
|
-
|
|
24413
|
-
|
|
24414
|
-
assertParamExists('apiV1DoctorsDoctorIdAffiliationsPost', 'doctorId', doctorId)
|
|
24415
|
-
const localVarPath = `/api/v1/doctors/{doctorId}/affiliations`
|
|
24416
|
-
.replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)));
|
|
24249
|
+
apiV1DoctoraffiliationsPost: async (createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24250
|
+
const localVarPath = `/api/v1/doctoraffiliations`;
|
|
24417
24251
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24418
24252
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24419
24253
|
let baseOptions;
|
|
@@ -24443,6 +24277,236 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
24443
24277
|
options: localVarRequestOptions,
|
|
24444
24278
|
};
|
|
24445
24279
|
},
|
|
24280
|
+
}
|
|
24281
|
+
};
|
|
24282
|
+
|
|
24283
|
+
/**
|
|
24284
|
+
* DoctorAffiliationsApi - functional programming interface
|
|
24285
|
+
* @export
|
|
24286
|
+
*/
|
|
24287
|
+
export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
24288
|
+
const localVarAxiosParamCreator = DoctorAffiliationsApiAxiosParamCreator(configuration)
|
|
24289
|
+
return {
|
|
24290
|
+
/**
|
|
24291
|
+
*
|
|
24292
|
+
* @summary Get all doctor affiliations.
|
|
24293
|
+
* @param {string} [hospitalId]
|
|
24294
|
+
* @param {string} [hospitalName]
|
|
24295
|
+
* @param {string} [doctorId]
|
|
24296
|
+
* @param {string} [name]
|
|
24297
|
+
* @param {string} [slug]
|
|
24298
|
+
* @param {string} [languageCode]
|
|
24299
|
+
* @param {boolean} [showHidden]
|
|
24300
|
+
* @param {number} [page]
|
|
24301
|
+
* @param {number} [limit]
|
|
24302
|
+
* @param {Date} [lastRetrieved]
|
|
24303
|
+
* @param {*} [options] Override http request option.
|
|
24304
|
+
* @throws {RequiredError}
|
|
24305
|
+
*/
|
|
24306
|
+
async apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
24307
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, name, slug, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
24308
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24309
|
+
},
|
|
24310
|
+
/**
|
|
24311
|
+
*
|
|
24312
|
+
* @summary Delete doctor affiliation.
|
|
24313
|
+
* @param {string} id
|
|
24314
|
+
* @param {*} [options] Override http request option.
|
|
24315
|
+
* @throws {RequiredError}
|
|
24316
|
+
*/
|
|
24317
|
+
async apiV1DoctoraffiliationsIdDelete(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
24318
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdDelete(id, options);
|
|
24319
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24320
|
+
},
|
|
24321
|
+
/**
|
|
24322
|
+
*
|
|
24323
|
+
* @summary Get doctor affiliation.
|
|
24324
|
+
* @param {string} id
|
|
24325
|
+
* @param {*} [options] Override http request option.
|
|
24326
|
+
* @throws {RequiredError}
|
|
24327
|
+
*/
|
|
24328
|
+
async apiV1DoctoraffiliationsIdGet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
24329
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdGet(id, options);
|
|
24330
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24331
|
+
},
|
|
24332
|
+
/**
|
|
24333
|
+
*
|
|
24334
|
+
* @summary Update Hospital.
|
|
24335
|
+
* @param {string} id
|
|
24336
|
+
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
24337
|
+
* @param {*} [options] Override http request option.
|
|
24338
|
+
* @throws {RequiredError}
|
|
24339
|
+
*/
|
|
24340
|
+
async apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
24341
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdPut(id, updateDoctorAffiliationCommand, options);
|
|
24342
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24343
|
+
},
|
|
24344
|
+
/**
|
|
24345
|
+
*
|
|
24346
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
24347
|
+
* @param {*} [options] Override http request option.
|
|
24348
|
+
* @throws {RequiredError}
|
|
24349
|
+
*/
|
|
24350
|
+
async apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
24351
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand, options);
|
|
24352
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24353
|
+
},
|
|
24354
|
+
}
|
|
24355
|
+
};
|
|
24356
|
+
|
|
24357
|
+
/**
|
|
24358
|
+
* DoctorAffiliationsApi - factory interface
|
|
24359
|
+
* @export
|
|
24360
|
+
*/
|
|
24361
|
+
export const DoctorAffiliationsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
24362
|
+
const localVarFp = DoctorAffiliationsApiFp(configuration)
|
|
24363
|
+
return {
|
|
24364
|
+
/**
|
|
24365
|
+
*
|
|
24366
|
+
* @summary Get all doctor affiliations.
|
|
24367
|
+
* @param {string} [hospitalId]
|
|
24368
|
+
* @param {string} [hospitalName]
|
|
24369
|
+
* @param {string} [doctorId]
|
|
24370
|
+
* @param {string} [name]
|
|
24371
|
+
* @param {string} [slug]
|
|
24372
|
+
* @param {string} [languageCode]
|
|
24373
|
+
* @param {boolean} [showHidden]
|
|
24374
|
+
* @param {number} [page]
|
|
24375
|
+
* @param {number} [limit]
|
|
24376
|
+
* @param {Date} [lastRetrieved]
|
|
24377
|
+
* @param {*} [options] Override http request option.
|
|
24378
|
+
* @throws {RequiredError}
|
|
24379
|
+
*/
|
|
24380
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
24381
|
+
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, name, slug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
24382
|
+
},
|
|
24383
|
+
/**
|
|
24384
|
+
*
|
|
24385
|
+
* @summary Delete doctor affiliation.
|
|
24386
|
+
* @param {string} id
|
|
24387
|
+
* @param {*} [options] Override http request option.
|
|
24388
|
+
* @throws {RequiredError}
|
|
24389
|
+
*/
|
|
24390
|
+
apiV1DoctoraffiliationsIdDelete(id: string, options?: any): AxiosPromise<boolean> {
|
|
24391
|
+
return localVarFp.apiV1DoctoraffiliationsIdDelete(id, options).then((request) => request(axios, basePath));
|
|
24392
|
+
},
|
|
24393
|
+
/**
|
|
24394
|
+
*
|
|
24395
|
+
* @summary Get doctor affiliation.
|
|
24396
|
+
* @param {string} id
|
|
24397
|
+
* @param {*} [options] Override http request option.
|
|
24398
|
+
* @throws {RequiredError}
|
|
24399
|
+
*/
|
|
24400
|
+
apiV1DoctoraffiliationsIdGet(id: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
24401
|
+
return localVarFp.apiV1DoctoraffiliationsIdGet(id, options).then((request) => request(axios, basePath));
|
|
24402
|
+
},
|
|
24403
|
+
/**
|
|
24404
|
+
*
|
|
24405
|
+
* @summary Update Hospital.
|
|
24406
|
+
* @param {string} id
|
|
24407
|
+
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
24408
|
+
* @param {*} [options] Override http request option.
|
|
24409
|
+
* @throws {RequiredError}
|
|
24410
|
+
*/
|
|
24411
|
+
apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
24412
|
+
return localVarFp.apiV1DoctoraffiliationsIdPut(id, updateDoctorAffiliationCommand, options).then((request) => request(axios, basePath));
|
|
24413
|
+
},
|
|
24414
|
+
/**
|
|
24415
|
+
*
|
|
24416
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
24417
|
+
* @param {*} [options] Override http request option.
|
|
24418
|
+
* @throws {RequiredError}
|
|
24419
|
+
*/
|
|
24420
|
+
apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
24421
|
+
return localVarFp.apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand, options).then((request) => request(axios, basePath));
|
|
24422
|
+
},
|
|
24423
|
+
};
|
|
24424
|
+
};
|
|
24425
|
+
|
|
24426
|
+
/**
|
|
24427
|
+
* DoctorAffiliationsApi - object-oriented interface
|
|
24428
|
+
* @export
|
|
24429
|
+
* @class DoctorAffiliationsApi
|
|
24430
|
+
* @extends {BaseAPI}
|
|
24431
|
+
*/
|
|
24432
|
+
export class DoctorAffiliationsApi extends BaseAPI {
|
|
24433
|
+
/**
|
|
24434
|
+
*
|
|
24435
|
+
* @summary Get all doctor affiliations.
|
|
24436
|
+
* @param {string} [hospitalId]
|
|
24437
|
+
* @param {string} [hospitalName]
|
|
24438
|
+
* @param {string} [doctorId]
|
|
24439
|
+
* @param {string} [name]
|
|
24440
|
+
* @param {string} [slug]
|
|
24441
|
+
* @param {string} [languageCode]
|
|
24442
|
+
* @param {boolean} [showHidden]
|
|
24443
|
+
* @param {number} [page]
|
|
24444
|
+
* @param {number} [limit]
|
|
24445
|
+
* @param {Date} [lastRetrieved]
|
|
24446
|
+
* @param {*} [options] Override http request option.
|
|
24447
|
+
* @throws {RequiredError}
|
|
24448
|
+
* @memberof DoctorAffiliationsApi
|
|
24449
|
+
*/
|
|
24450
|
+
public apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
24451
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, name, slug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24452
|
+
}
|
|
24453
|
+
|
|
24454
|
+
/**
|
|
24455
|
+
*
|
|
24456
|
+
* @summary Delete doctor affiliation.
|
|
24457
|
+
* @param {string} id
|
|
24458
|
+
* @param {*} [options] Override http request option.
|
|
24459
|
+
* @throws {RequiredError}
|
|
24460
|
+
* @memberof DoctorAffiliationsApi
|
|
24461
|
+
*/
|
|
24462
|
+
public apiV1DoctoraffiliationsIdDelete(id: string, options?: AxiosRequestConfig) {
|
|
24463
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdDelete(id, options).then((request) => request(this.axios, this.basePath));
|
|
24464
|
+
}
|
|
24465
|
+
|
|
24466
|
+
/**
|
|
24467
|
+
*
|
|
24468
|
+
* @summary Get doctor affiliation.
|
|
24469
|
+
* @param {string} id
|
|
24470
|
+
* @param {*} [options] Override http request option.
|
|
24471
|
+
* @throws {RequiredError}
|
|
24472
|
+
* @memberof DoctorAffiliationsApi
|
|
24473
|
+
*/
|
|
24474
|
+
public apiV1DoctoraffiliationsIdGet(id: string, options?: AxiosRequestConfig) {
|
|
24475
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdGet(id, options).then((request) => request(this.axios, this.basePath));
|
|
24476
|
+
}
|
|
24477
|
+
|
|
24478
|
+
/**
|
|
24479
|
+
*
|
|
24480
|
+
* @summary Update Hospital.
|
|
24481
|
+
* @param {string} id
|
|
24482
|
+
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
24483
|
+
* @param {*} [options] Override http request option.
|
|
24484
|
+
* @throws {RequiredError}
|
|
24485
|
+
* @memberof DoctorAffiliationsApi
|
|
24486
|
+
*/
|
|
24487
|
+
public apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: AxiosRequestConfig) {
|
|
24488
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdPut(id, updateDoctorAffiliationCommand, options).then((request) => request(this.axios, this.basePath));
|
|
24489
|
+
}
|
|
24490
|
+
|
|
24491
|
+
/**
|
|
24492
|
+
*
|
|
24493
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
24494
|
+
* @param {*} [options] Override http request option.
|
|
24495
|
+
* @throws {RequiredError}
|
|
24496
|
+
* @memberof DoctorAffiliationsApi
|
|
24497
|
+
*/
|
|
24498
|
+
public apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig) {
|
|
24499
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand, options).then((request) => request(this.axios, this.basePath));
|
|
24500
|
+
}
|
|
24501
|
+
}
|
|
24502
|
+
|
|
24503
|
+
|
|
24504
|
+
/**
|
|
24505
|
+
* DoctorsApi - axios parameter creator
|
|
24506
|
+
* @export
|
|
24507
|
+
*/
|
|
24508
|
+
export const DoctorsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
24509
|
+
return {
|
|
24446
24510
|
/**
|
|
24447
24511
|
*
|
|
24448
24512
|
* @summary Delete DoctorCertificate.
|
|
@@ -26037,7 +26101,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
26037
26101
|
*
|
|
26038
26102
|
* @summary Get all Doctors.
|
|
26039
26103
|
* @param {string} [hospitalId]
|
|
26040
|
-
* @param {string} [hospitalName]
|
|
26041
26104
|
* @param {string} [languageCode]
|
|
26042
26105
|
* @param {boolean} [returnDefaultValue]
|
|
26043
26106
|
* @param {Array<string>} [ids]
|
|
@@ -26056,7 +26119,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
26056
26119
|
* @param {*} [options] Override http request option.
|
|
26057
26120
|
* @throws {RequiredError}
|
|
26058
26121
|
*/
|
|
26059
|
-
apiV1DoctorsGet: async (hospitalId?: string,
|
|
26122
|
+
apiV1DoctorsGet: async (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<RequestArgs> => {
|
|
26060
26123
|
const localVarPath = `/api/v1/doctors`;
|
|
26061
26124
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
26062
26125
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -26077,10 +26140,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
26077
26140
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
26078
26141
|
}
|
|
26079
26142
|
|
|
26080
|
-
if (hospitalName !== undefined) {
|
|
26081
|
-
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
26082
|
-
}
|
|
26083
|
-
|
|
26084
26143
|
if (languageCode !== undefined) {
|
|
26085
26144
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
26086
26145
|
}
|
|
@@ -26200,7 +26259,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
26200
26259
|
*
|
|
26201
26260
|
* @summary Get all Doctors.
|
|
26202
26261
|
* @param {string} [hospitalId]
|
|
26203
|
-
* @param {string} [hospitalName]
|
|
26204
26262
|
* @param {string} [languageCode]
|
|
26205
26263
|
* @param {boolean} [returnDefaultValue]
|
|
26206
26264
|
* @param {Array<string>} [ids]
|
|
@@ -26219,7 +26277,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
26219
26277
|
* @param {*} [options] Override http request option.
|
|
26220
26278
|
* @throws {RequiredError}
|
|
26221
26279
|
*/
|
|
26222
|
-
apiV1DoctorsSimpleGet: async (hospitalId?: string,
|
|
26280
|
+
apiV1DoctorsSimpleGet: async (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<RequestArgs> => {
|
|
26223
26281
|
const localVarPath = `/api/v1/doctors/simple`;
|
|
26224
26282
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
26225
26283
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -26240,10 +26298,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
26240
26298
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
26241
26299
|
}
|
|
26242
26300
|
|
|
26243
|
-
if (hospitalName !== undefined) {
|
|
26244
|
-
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
26245
|
-
}
|
|
26246
|
-
|
|
26247
26301
|
if (languageCode !== undefined) {
|
|
26248
26302
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
26249
26303
|
}
|
|
@@ -26378,56 +26432,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
26378
26432
|
export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
26379
26433
|
const localVarAxiosParamCreator = DoctorsApiAxiosParamCreator(configuration)
|
|
26380
26434
|
return {
|
|
26381
|
-
/**
|
|
26382
|
-
*
|
|
26383
|
-
* @summary Get all doctor affiliations.
|
|
26384
|
-
* @param {string} doctorId
|
|
26385
|
-
* @param {string} [hospitalName]
|
|
26386
|
-
* @param {number} [page]
|
|
26387
|
-
* @param {number} [limit]
|
|
26388
|
-
* @param {Date} [lastRetrieved]
|
|
26389
|
-
* @param {*} [options] Override http request option.
|
|
26390
|
-
* @throws {RequiredError}
|
|
26391
|
-
*/
|
|
26392
|
-
async apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
26393
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options);
|
|
26394
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26395
|
-
},
|
|
26396
|
-
/**
|
|
26397
|
-
*
|
|
26398
|
-
* @summary Delete doctor affiliation.
|
|
26399
|
-
* @param {string} doctorId
|
|
26400
|
-
* @param {string} hospitalId
|
|
26401
|
-
* @param {*} [options] Override http request option.
|
|
26402
|
-
* @throws {RequiredError}
|
|
26403
|
-
*/
|
|
26404
|
-
async apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
26405
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId, hospitalId, options);
|
|
26406
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26407
|
-
},
|
|
26408
|
-
/**
|
|
26409
|
-
*
|
|
26410
|
-
* @summary Get doctor affiliation.
|
|
26411
|
-
* @param {string} doctorId
|
|
26412
|
-
* @param {string} hospitalId
|
|
26413
|
-
* @param {*} [options] Override http request option.
|
|
26414
|
-
* @throws {RequiredError}
|
|
26415
|
-
*/
|
|
26416
|
-
async apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
26417
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options);
|
|
26418
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26419
|
-
},
|
|
26420
|
-
/**
|
|
26421
|
-
*
|
|
26422
|
-
* @param {string} doctorId
|
|
26423
|
-
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
26424
|
-
* @param {*} [options] Override http request option.
|
|
26425
|
-
* @throws {RequiredError}
|
|
26426
|
-
*/
|
|
26427
|
-
async apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
26428
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsPost(doctorId, createDoctorAffiliationCommand, options);
|
|
26429
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26430
|
-
},
|
|
26431
26435
|
/**
|
|
26432
26436
|
*
|
|
26433
26437
|
* @summary Delete DoctorCertificate.
|
|
@@ -26864,7 +26868,6 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26864
26868
|
*
|
|
26865
26869
|
* @summary Get all Doctors.
|
|
26866
26870
|
* @param {string} [hospitalId]
|
|
26867
|
-
* @param {string} [hospitalName]
|
|
26868
26871
|
* @param {string} [languageCode]
|
|
26869
26872
|
* @param {boolean} [returnDefaultValue]
|
|
26870
26873
|
* @param {Array<string>} [ids]
|
|
@@ -26883,8 +26886,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26883
26886
|
* @param {*} [options] Override http request option.
|
|
26884
26887
|
* @throws {RequiredError}
|
|
26885
26888
|
*/
|
|
26886
|
-
async apiV1DoctorsGet(hospitalId?: string,
|
|
26887
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsGet(hospitalId,
|
|
26889
|
+
async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsModel>> {
|
|
26890
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
|
|
26888
26891
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26889
26892
|
},
|
|
26890
26893
|
/**
|
|
@@ -26902,7 +26905,6 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26902
26905
|
*
|
|
26903
26906
|
* @summary Get all Doctors.
|
|
26904
26907
|
* @param {string} [hospitalId]
|
|
26905
|
-
* @param {string} [hospitalName]
|
|
26906
26908
|
* @param {string} [languageCode]
|
|
26907
26909
|
* @param {boolean} [returnDefaultValue]
|
|
26908
26910
|
* @param {Array<string>} [ids]
|
|
@@ -26921,8 +26923,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26921
26923
|
* @param {*} [options] Override http request option.
|
|
26922
26924
|
* @throws {RequiredError}
|
|
26923
26925
|
*/
|
|
26924
|
-
async apiV1DoctorsSimpleGet(hospitalId?: string,
|
|
26925
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsSimpleGet(hospitalId,
|
|
26926
|
+
async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsSimpleModel>> {
|
|
26927
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
|
|
26926
26928
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26927
26929
|
},
|
|
26928
26930
|
/**
|
|
@@ -26947,52 +26949,6 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26947
26949
|
export const DoctorsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
26948
26950
|
const localVarFp = DoctorsApiFp(configuration)
|
|
26949
26951
|
return {
|
|
26950
|
-
/**
|
|
26951
|
-
*
|
|
26952
|
-
* @summary Get all doctor affiliations.
|
|
26953
|
-
* @param {string} doctorId
|
|
26954
|
-
* @param {string} [hospitalName]
|
|
26955
|
-
* @param {number} [page]
|
|
26956
|
-
* @param {number} [limit]
|
|
26957
|
-
* @param {Date} [lastRetrieved]
|
|
26958
|
-
* @param {*} [options] Override http request option.
|
|
26959
|
-
* @throws {RequiredError}
|
|
26960
|
-
*/
|
|
26961
|
-
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
26962
|
-
return localVarFp.apiV1DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
26963
|
-
},
|
|
26964
|
-
/**
|
|
26965
|
-
*
|
|
26966
|
-
* @summary Delete doctor affiliation.
|
|
26967
|
-
* @param {string} doctorId
|
|
26968
|
-
* @param {string} hospitalId
|
|
26969
|
-
* @param {*} [options] Override http request option.
|
|
26970
|
-
* @throws {RequiredError}
|
|
26971
|
-
*/
|
|
26972
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: any): AxiosPromise<boolean> {
|
|
26973
|
-
return localVarFp.apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId, hospitalId, options).then((request) => request(axios, basePath));
|
|
26974
|
-
},
|
|
26975
|
-
/**
|
|
26976
|
-
*
|
|
26977
|
-
* @summary Get doctor affiliation.
|
|
26978
|
-
* @param {string} doctorId
|
|
26979
|
-
* @param {string} hospitalId
|
|
26980
|
-
* @param {*} [options] Override http request option.
|
|
26981
|
-
* @throws {RequiredError}
|
|
26982
|
-
*/
|
|
26983
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
26984
|
-
return localVarFp.apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options).then((request) => request(axios, basePath));
|
|
26985
|
-
},
|
|
26986
|
-
/**
|
|
26987
|
-
*
|
|
26988
|
-
* @param {string} doctorId
|
|
26989
|
-
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
26990
|
-
* @param {*} [options] Override http request option.
|
|
26991
|
-
* @throws {RequiredError}
|
|
26992
|
-
*/
|
|
26993
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
26994
|
-
return localVarFp.apiV1DoctorsDoctorIdAffiliationsPost(doctorId, createDoctorAffiliationCommand, options).then((request) => request(axios, basePath));
|
|
26995
|
-
},
|
|
26996
26952
|
/**
|
|
26997
26953
|
*
|
|
26998
26954
|
* @summary Delete DoctorCertificate.
|
|
@@ -27396,7 +27352,6 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27396
27352
|
*
|
|
27397
27353
|
* @summary Get all Doctors.
|
|
27398
27354
|
* @param {string} [hospitalId]
|
|
27399
|
-
* @param {string} [hospitalName]
|
|
27400
27355
|
* @param {string} [languageCode]
|
|
27401
27356
|
* @param {boolean} [returnDefaultValue]
|
|
27402
27357
|
* @param {Array<string>} [ids]
|
|
@@ -27415,8 +27370,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27415
27370
|
* @param {*} [options] Override http request option.
|
|
27416
27371
|
* @throws {RequiredError}
|
|
27417
27372
|
*/
|
|
27418
|
-
apiV1DoctorsGet(hospitalId?: string,
|
|
27419
|
-
return localVarFp.apiV1DoctorsGet(hospitalId,
|
|
27373
|
+
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?: any): AxiosPromise<DoctorsModel> {
|
|
27374
|
+
return localVarFp.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
27420
27375
|
},
|
|
27421
27376
|
/**
|
|
27422
27377
|
*
|
|
@@ -27432,7 +27387,6 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27432
27387
|
*
|
|
27433
27388
|
* @summary Get all Doctors.
|
|
27434
27389
|
* @param {string} [hospitalId]
|
|
27435
|
-
* @param {string} [hospitalName]
|
|
27436
27390
|
* @param {string} [languageCode]
|
|
27437
27391
|
* @param {boolean} [returnDefaultValue]
|
|
27438
27392
|
* @param {Array<string>} [ids]
|
|
@@ -27451,8 +27405,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27451
27405
|
* @param {*} [options] Override http request option.
|
|
27452
27406
|
* @throws {RequiredError}
|
|
27453
27407
|
*/
|
|
27454
|
-
apiV1DoctorsSimpleGet(hospitalId?: string,
|
|
27455
|
-
return localVarFp.apiV1DoctorsSimpleGet(hospitalId,
|
|
27408
|
+
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?: any): AxiosPromise<DoctorsSimpleModel> {
|
|
27409
|
+
return localVarFp.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
27456
27410
|
},
|
|
27457
27411
|
/**
|
|
27458
27412
|
*
|
|
@@ -27475,60 +27429,6 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27475
27429
|
* @extends {BaseAPI}
|
|
27476
27430
|
*/
|
|
27477
27431
|
export class DoctorsApi extends BaseAPI {
|
|
27478
|
-
/**
|
|
27479
|
-
*
|
|
27480
|
-
* @summary Get all doctor affiliations.
|
|
27481
|
-
* @param {string} doctorId
|
|
27482
|
-
* @param {string} [hospitalName]
|
|
27483
|
-
* @param {number} [page]
|
|
27484
|
-
* @param {number} [limit]
|
|
27485
|
-
* @param {Date} [lastRetrieved]
|
|
27486
|
-
* @param {*} [options] Override http request option.
|
|
27487
|
-
* @throws {RequiredError}
|
|
27488
|
-
* @memberof DoctorsApi
|
|
27489
|
-
*/
|
|
27490
|
-
public apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
27491
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
27492
|
-
}
|
|
27493
|
-
|
|
27494
|
-
/**
|
|
27495
|
-
*
|
|
27496
|
-
* @summary Delete doctor affiliation.
|
|
27497
|
-
* @param {string} doctorId
|
|
27498
|
-
* @param {string} hospitalId
|
|
27499
|
-
* @param {*} [options] Override http request option.
|
|
27500
|
-
* @throws {RequiredError}
|
|
27501
|
-
* @memberof DoctorsApi
|
|
27502
|
-
*/
|
|
27503
|
-
public apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig) {
|
|
27504
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId, hospitalId, options).then((request) => request(this.axios, this.basePath));
|
|
27505
|
-
}
|
|
27506
|
-
|
|
27507
|
-
/**
|
|
27508
|
-
*
|
|
27509
|
-
* @summary Get doctor affiliation.
|
|
27510
|
-
* @param {string} doctorId
|
|
27511
|
-
* @param {string} hospitalId
|
|
27512
|
-
* @param {*} [options] Override http request option.
|
|
27513
|
-
* @throws {RequiredError}
|
|
27514
|
-
* @memberof DoctorsApi
|
|
27515
|
-
*/
|
|
27516
|
-
public apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig) {
|
|
27517
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options).then((request) => request(this.axios, this.basePath));
|
|
27518
|
-
}
|
|
27519
|
-
|
|
27520
|
-
/**
|
|
27521
|
-
*
|
|
27522
|
-
* @param {string} doctorId
|
|
27523
|
-
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
27524
|
-
* @param {*} [options] Override http request option.
|
|
27525
|
-
* @throws {RequiredError}
|
|
27526
|
-
* @memberof DoctorsApi
|
|
27527
|
-
*/
|
|
27528
|
-
public apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig) {
|
|
27529
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdAffiliationsPost(doctorId, createDoctorAffiliationCommand, options).then((request) => request(this.axios, this.basePath));
|
|
27530
|
-
}
|
|
27531
|
-
|
|
27532
27432
|
/**
|
|
27533
27433
|
*
|
|
27534
27434
|
* @summary Delete DoctorCertificate.
|
|
@@ -27998,7 +27898,6 @@ export class DoctorsApi extends BaseAPI {
|
|
|
27998
27898
|
*
|
|
27999
27899
|
* @summary Get all Doctors.
|
|
28000
27900
|
* @param {string} [hospitalId]
|
|
28001
|
-
* @param {string} [hospitalName]
|
|
28002
27901
|
* @param {string} [languageCode]
|
|
28003
27902
|
* @param {boolean} [returnDefaultValue]
|
|
28004
27903
|
* @param {Array<string>} [ids]
|
|
@@ -28018,8 +27917,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
28018
27917
|
* @throws {RequiredError}
|
|
28019
27918
|
* @memberof DoctorsApi
|
|
28020
27919
|
*/
|
|
28021
|
-
public apiV1DoctorsGet(hospitalId?: string,
|
|
28022
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsGet(hospitalId,
|
|
27920
|
+
public 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) {
|
|
27921
|
+
return DoctorsApiFp(this.configuration).apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
28023
27922
|
}
|
|
28024
27923
|
|
|
28025
27924
|
/**
|
|
@@ -28038,7 +27937,6 @@ export class DoctorsApi extends BaseAPI {
|
|
|
28038
27937
|
*
|
|
28039
27938
|
* @summary Get all Doctors.
|
|
28040
27939
|
* @param {string} [hospitalId]
|
|
28041
|
-
* @param {string} [hospitalName]
|
|
28042
27940
|
* @param {string} [languageCode]
|
|
28043
27941
|
* @param {boolean} [returnDefaultValue]
|
|
28044
27942
|
* @param {Array<string>} [ids]
|
|
@@ -28058,8 +27956,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
28058
27956
|
* @throws {RequiredError}
|
|
28059
27957
|
* @memberof DoctorsApi
|
|
28060
27958
|
*/
|
|
28061
|
-
public apiV1DoctorsSimpleGet(hospitalId?: string,
|
|
28062
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsSimpleGet(hospitalId,
|
|
27959
|
+
public 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) {
|
|
27960
|
+
return DoctorsApiFp(this.configuration).apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
28063
27961
|
}
|
|
28064
27962
|
|
|
28065
27963
|
/**
|
|
@@ -41113,13 +41011,14 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
41113
41011
|
* @param {boolean} [recommended]
|
|
41114
41012
|
* @param {number} [rate]
|
|
41115
41013
|
* @param {ReviewType} [reviewType]
|
|
41014
|
+
* @param {string} [languageCode]
|
|
41116
41015
|
* @param {number} [page]
|
|
41117
41016
|
* @param {number} [limit]
|
|
41118
41017
|
* @param {Date} [lastRetrieved]
|
|
41119
41018
|
* @param {*} [options] Override http request option.
|
|
41120
41019
|
* @throws {RequiredError}
|
|
41121
41020
|
*/
|
|
41122
|
-
apiV1ServicereviewsGet: async (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<RequestArgs> => {
|
|
41021
|
+
apiV1ServicereviewsGet: async (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<RequestArgs> => {
|
|
41123
41022
|
const localVarPath = `/api/v1/servicereviews`;
|
|
41124
41023
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
41125
41024
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -41168,6 +41067,10 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
41168
41067
|
localVarQueryParameter['ReviewType'] = reviewType;
|
|
41169
41068
|
}
|
|
41170
41069
|
|
|
41070
|
+
if (languageCode !== undefined) {
|
|
41071
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
41072
|
+
}
|
|
41073
|
+
|
|
41171
41074
|
if (page !== undefined) {
|
|
41172
41075
|
localVarQueryParameter['page'] = page;
|
|
41173
41076
|
}
|
|
@@ -41606,14 +41509,15 @@ export const ServiceReviewsApiFp = function(configuration?: Configuration) {
|
|
|
41606
41509
|
* @param {boolean} [recommended]
|
|
41607
41510
|
* @param {number} [rate]
|
|
41608
41511
|
* @param {ReviewType} [reviewType]
|
|
41512
|
+
* @param {string} [languageCode]
|
|
41609
41513
|
* @param {number} [page]
|
|
41610
41514
|
* @param {number} [limit]
|
|
41611
41515
|
* @param {Date} [lastRetrieved]
|
|
41612
41516
|
* @param {*} [options] Override http request option.
|
|
41613
41517
|
* @throws {RequiredError}
|
|
41614
41518
|
*/
|
|
41615
|
-
async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
|
|
41616
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, page, limit, lastRetrieved, options);
|
|
41519
|
+
async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
|
|
41520
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options);
|
|
41617
41521
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
41618
41522
|
},
|
|
41619
41523
|
/**
|
|
@@ -41746,14 +41650,15 @@ export const ServiceReviewsApiFactory = function (configuration?: Configuration,
|
|
|
41746
41650
|
* @param {boolean} [recommended]
|
|
41747
41651
|
* @param {number} [rate]
|
|
41748
41652
|
* @param {ReviewType} [reviewType]
|
|
41653
|
+
* @param {string} [languageCode]
|
|
41749
41654
|
* @param {number} [page]
|
|
41750
41655
|
* @param {number} [limit]
|
|
41751
41656
|
* @param {Date} [lastRetrieved]
|
|
41752
41657
|
* @param {*} [options] Override http request option.
|
|
41753
41658
|
* @throws {RequiredError}
|
|
41754
41659
|
*/
|
|
41755
|
-
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
|
|
41756
|
-
return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
41660
|
+
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?: any): AxiosPromise<ServiceReviewsModel> {
|
|
41661
|
+
return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
41757
41662
|
},
|
|
41758
41663
|
/**
|
|
41759
41664
|
*
|
|
@@ -41876,6 +41781,7 @@ export class ServiceReviewsApi extends BaseAPI {
|
|
|
41876
41781
|
* @param {boolean} [recommended]
|
|
41877
41782
|
* @param {number} [rate]
|
|
41878
41783
|
* @param {ReviewType} [reviewType]
|
|
41784
|
+
* @param {string} [languageCode]
|
|
41879
41785
|
* @param {number} [page]
|
|
41880
41786
|
* @param {number} [limit]
|
|
41881
41787
|
* @param {Date} [lastRetrieved]
|
|
@@ -41883,8 +41789,8 @@ export class ServiceReviewsApi extends BaseAPI {
|
|
|
41883
41789
|
* @throws {RequiredError}
|
|
41884
41790
|
* @memberof ServiceReviewsApi
|
|
41885
41791
|
*/
|
|
41886
|
-
public 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) {
|
|
41887
|
-
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
41792
|
+
public 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) {
|
|
41793
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
41888
41794
|
}
|
|
41889
41795
|
|
|
41890
41796
|
/**
|